gristlabs_grist-core/app/common
Paul Fitzpatrick dd8d2e18f5 (core) add an access token mechanism to help with attachments in custom widgets
Summary:
With this, a custom widget can render an attachment by doing:
```
const tokenInfo = await grist.docApi.getAccessToken({readOnly: true});
const img = document.getElementById('the_image');
const id = record.C[0];  // get an id of an attachment
const src = `${tokenInfo.baseUrl}/attachments/${id}/download?auth=${tokenInfo.token}`;
img.setAttribute('src', src)
```

The access token expires after a few mins, so if a user right-clicks on an image
to save it, they may get access denied unless they refresh the page. A little awkward,
but s3 pre-authorized links behave similarly and it generally isn't a deal-breaker.

Test Plan: added tests

Reviewers: dsagal

Reviewed By: dsagal

Subscribers: dsagal

Differential Revision: https://phab.getgrist.com/D3488
2022-07-19 11:55:18 -04:00
..
ACLPermissions.ts
ACLRuleCollection.ts
ActionBundle.ts (core) External requests 2022-06-17 21:53:20 +02:00
ActionDispatcher.ts
ActionGroup.ts
ActionRouter.ts
ActionSummary.ts
ActiveDocAPI.ts (core) add an access token mechanism to help with attachments in custom widgets 2022-07-19 11:55:18 -04:00
ApiError.ts
arrayToString.ts
AsyncCreate.ts
AsyncFlow.ts
asyncIterators.ts
BaseAPI.ts
BasketClientAPI.ts
BigInt.ts
BillingAPI.ts (core) Improving billing page user experience 2022-07-18 14:43:14 +02:00
BinaryIndexedTree.js
BrowserSettings.ts
ColumnFilterFunc.ts (core) Allows range filter for Date, DateTime columns 2022-06-23 13:02:37 +02:00
ColumnGetters.ts
CommTypes.ts (core) Fix issue with 'UNEXPECTED ORDER OF CALLBACKS' in Client.ts. 2022-06-16 23:51:14 -04:00
csvFormat.ts
CustomWidget.ts
declarations.d.ts
delay.ts
DisposableWithEvents.ts
DocActions.ts (core) Speed up and upgrade build. 2022-06-27 16:10:10 -04:00
DocData.ts
DocLimits.ts (core) Faster builds all around. 2022-07-04 10:42:40 -04:00
DocListAPI.ts
DocSnapshot.ts
DocumentSettings.ts
DocUsage.ts
emails.ts
EncActionBundle.ts
ErrorWithCode.ts
Features.ts (core) Improving billing page user experience 2022-07-18 14:43:14 +02:00
FilterState.ts
Formula.ts
GranularAccessClause.ts (core) Speed up and upgrade build. 2022-06-27 16:10:10 -04:00
GristServerAPI.ts
gristTypes.ts (core) Allows range filter for Date, DateTime columns 2022-06-23 13:02:37 +02:00
gristUrls.ts (core) add an access token mechanism to help with attachments in custom widgets 2022-07-19 11:55:18 -04:00
gutil.ts (core) clean up interaction of forward auth with session 2022-06-15 13:06:12 -04:00
InactivityTimer.ts (core) Speed up and upgrade build. 2022-06-27 16:10:10 -04:00
isHiddenTable.ts (core) Show summary tables on Raw Data page 2022-07-06 09:41:48 -07:00
KeyedMutex.ts
KeyedOps.ts
LocaleCodes.ts
Locales.ts (core) Speed up and upgrade build. 2022-06-27 16:10:10 -04:00
LoginSessionAPI.ts
marshal.ts (core) Faster builds all around. 2022-07-04 10:42:40 -04:00
MemBuffer.js
NumberFormat.ts
NumberParse.ts
orgNameUtils.ts
parseDate.ts (core) Faster builds all around. 2022-07-04 10:42:40 -04:00
plugin.ts
PluginInstance.ts
Prefs.ts (core) Polishing upgrade plan UI 2022-06-29 18:28:37 +02:00
RefCountMap.ts
resetOrg.ts
roles.ts
RowFilterFunc.ts
schema.ts (core) Nice summary table IDs 2022-07-14 12:09:56 +02:00
ShareAnnotator.ts
sharing.ts
SortFunc.ts
SortSpec.ts
StringUnion.ts
TableData.ts (core) support granular read access for attachments 2022-07-07 07:22:02 -04:00
TabularDiff.ts
tagManager.ts
tbind.ts
TestState.ts
timeFormat.ts
tpromisified.ts
tsconfig.json
tsvFormat.ts
UIRowId.ts
uploads.ts
urlUtils.ts
UserAPI.ts (core) Faster builds all around. 2022-07-04 10:42:40 -04:00
UserConfig.ts
ValueConverter.ts
ValueFormatter.ts (core) Faster builds all around. 2022-07-04 10:42:40 -04:00
ValueGuesser.ts
ValueParser.ts