@eluvio/elv-client-js 3.1.73 → 3.1.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/dist/ElvClient-min.js +5 -5
- package/dist/ElvClient-node-min.js +9 -9
- package/dist/ElvFrameClient-min.js +4 -4
- package/dist/src/AuthorizationClient.js +24 -14
- package/dist/src/EthClient.js +21 -11
- package/dist/src/FrameClient.js +1 -1
- package/dist/src/client/ABRPublishing.js +30 -9
- package/dist/src/client/ContentAccess.js +36 -27
- package/dist/src/client/ContentManagement.js +770 -537
- package/dist/src/client/Files.js +72 -50
- package/package-lock.json +1 -1
- package/package.json +1 -1
- package/src/AuthorizationClient.js +4 -1
- package/src/EthClient.js +2 -0
- package/src/FrameClient.js +1 -0
- package/src/client/ABRPublishing.js +18 -3
- package/src/client/ContentAccess.js +5 -3
- package/src/client/ContentManagement.js +108 -11
- package/src/client/Files.js +4 -1
- package/testScripts/logo2.png +0 -0
- package/typeSpecs/DropEventSite.js +692 -185
- package/typeSpecs/Marketplace.js +4 -0
- package/utilities/MezzanineCreate.js +2 -2
package/dist/src/client/Files.js
CHANGED
|
@@ -1094,6 +1094,8 @@ exports.DownloadFile = function _callee12(_ref13) {
|
|
|
1094
1094
|
encryption,
|
|
1095
1095
|
path,
|
|
1096
1096
|
headers,
|
|
1097
|
+
ownerCapKey,
|
|
1098
|
+
ownerCap,
|
|
1097
1099
|
bytesTotal,
|
|
1098
1100
|
_args14 = arguments;
|
|
1099
1101
|
|
|
@@ -1139,33 +1141,53 @@ exports.DownloadFile = function _callee12(_ref13) {
|
|
|
1139
1141
|
headers = _context14.sent;
|
|
1140
1142
|
headers.Accept = "*/*"; // If not owner, indicate re-encryption
|
|
1141
1143
|
|
|
1142
|
-
|
|
1144
|
+
ownerCapKey = "eluv.caps.iusr".concat(this.utils.AddressToHash(this.signer.address));
|
|
1145
|
+
_context14.next = 17;
|
|
1146
|
+
return _regeneratorRuntime.awrap(this.ContentObjectMetadata({
|
|
1147
|
+
libraryId: libraryId,
|
|
1148
|
+
objectId: objectId,
|
|
1149
|
+
metadataSubtree: ownerCapKey
|
|
1150
|
+
}));
|
|
1143
1151
|
|
|
1144
|
-
|
|
1145
|
-
|
|
1152
|
+
case 17:
|
|
1153
|
+
ownerCap = _context14.sent;
|
|
1154
|
+
_context14.t1 = encrypted;
|
|
1155
|
+
|
|
1156
|
+
if (!_context14.t1) {
|
|
1157
|
+
_context14.next = 26;
|
|
1146
1158
|
break;
|
|
1147
1159
|
}
|
|
1148
1160
|
|
|
1149
|
-
_context14.
|
|
1150
|
-
_context14.
|
|
1151
|
-
_context14.next =
|
|
1161
|
+
_context14.t2 = this.utils;
|
|
1162
|
+
_context14.t3 = this.signer.address;
|
|
1163
|
+
_context14.next = 24;
|
|
1152
1164
|
return _regeneratorRuntime.awrap(this.ContentObjectOwner({
|
|
1153
1165
|
objectId: objectId
|
|
1154
1166
|
}));
|
|
1155
1167
|
|
|
1156
|
-
case
|
|
1157
|
-
_context14.
|
|
1158
|
-
_context14.
|
|
1168
|
+
case 24:
|
|
1169
|
+
_context14.t4 = _context14.sent;
|
|
1170
|
+
_context14.t1 = !_context14.t2.EqualAddress.call(_context14.t2, _context14.t3, _context14.t4);
|
|
1171
|
+
|
|
1172
|
+
case 26:
|
|
1173
|
+
_context14.t0 = _context14.t1;
|
|
1159
1174
|
|
|
1160
|
-
case 22:
|
|
1161
1175
|
if (!_context14.t0) {
|
|
1162
|
-
_context14.next =
|
|
1176
|
+
_context14.next = 29;
|
|
1177
|
+
break;
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
_context14.t0 = !ownerCap;
|
|
1181
|
+
|
|
1182
|
+
case 29:
|
|
1183
|
+
if (!_context14.t0) {
|
|
1184
|
+
_context14.next = 31;
|
|
1163
1185
|
break;
|
|
1164
1186
|
}
|
|
1165
1187
|
|
|
1166
1188
|
headers["X-Content-Fabric-Decryption-Mode"] = "reencrypt";
|
|
1167
1189
|
|
|
1168
|
-
case
|
|
1190
|
+
case 31:
|
|
1169
1191
|
// If using server side decryption, specify in header
|
|
1170
1192
|
if (encrypted && !clientSideDecryption) {
|
|
1171
1193
|
headers["X-Content-Fabric-Decryption-Mode"] = "decrypt"; // rep/files_download endpoint doesn't currently support Range header
|
|
@@ -1176,13 +1198,13 @@ exports.DownloadFile = function _callee12(_ref13) {
|
|
|
1176
1198
|
bytesTotal = fileInfo["."].size;
|
|
1177
1199
|
|
|
1178
1200
|
if (!(encrypted && clientSideDecryption)) {
|
|
1179
|
-
_context14.next =
|
|
1201
|
+
_context14.next = 53;
|
|
1180
1202
|
break;
|
|
1181
1203
|
}
|
|
1182
1204
|
|
|
1183
|
-
_context14.
|
|
1184
|
-
_context14.
|
|
1185
|
-
_context14.next =
|
|
1205
|
+
_context14.t5 = _regeneratorRuntime;
|
|
1206
|
+
_context14.t6 = this;
|
|
1207
|
+
_context14.next = 38;
|
|
1186
1208
|
return _regeneratorRuntime.awrap(this.EncryptionConk({
|
|
1187
1209
|
libraryId: libraryId,
|
|
1188
1210
|
objectId: objectId,
|
|
@@ -1190,39 +1212,39 @@ exports.DownloadFile = function _callee12(_ref13) {
|
|
|
1190
1212
|
download: true
|
|
1191
1213
|
}));
|
|
1192
1214
|
|
|
1193
|
-
case
|
|
1194
|
-
_context14.
|
|
1195
|
-
_context14.
|
|
1196
|
-
_context14.
|
|
1197
|
-
_context14.
|
|
1198
|
-
_context14.
|
|
1199
|
-
_context14.
|
|
1200
|
-
_context14.
|
|
1201
|
-
_context14.
|
|
1202
|
-
_context14.
|
|
1203
|
-
conk: _context14.
|
|
1204
|
-
downloadPath: _context14.
|
|
1205
|
-
bytesTotal: _context14.
|
|
1206
|
-
headers: _context14.
|
|
1207
|
-
callback: _context14.
|
|
1208
|
-
format: _context14.
|
|
1209
|
-
clientSideDecryption: _context14.
|
|
1210
|
-
chunked: _context14.
|
|
1215
|
+
case 38:
|
|
1216
|
+
_context14.t7 = _context14.sent;
|
|
1217
|
+
_context14.t8 = path;
|
|
1218
|
+
_context14.t9 = bytesTotal;
|
|
1219
|
+
_context14.t10 = headers;
|
|
1220
|
+
_context14.t11 = callback;
|
|
1221
|
+
_context14.t12 = format;
|
|
1222
|
+
_context14.t13 = clientSideDecryption;
|
|
1223
|
+
_context14.t14 = chunked;
|
|
1224
|
+
_context14.t15 = {
|
|
1225
|
+
conk: _context14.t7,
|
|
1226
|
+
downloadPath: _context14.t8,
|
|
1227
|
+
bytesTotal: _context14.t9,
|
|
1228
|
+
headers: _context14.t10,
|
|
1229
|
+
callback: _context14.t11,
|
|
1230
|
+
format: _context14.t12,
|
|
1231
|
+
clientSideDecryption: _context14.t13,
|
|
1232
|
+
chunked: _context14.t14
|
|
1211
1233
|
};
|
|
1212
|
-
_context14.
|
|
1213
|
-
_context14.next =
|
|
1214
|
-
return _context14.
|
|
1234
|
+
_context14.t16 = _context14.t6.DownloadEncrypted.call(_context14.t6, _context14.t15);
|
|
1235
|
+
_context14.next = 50;
|
|
1236
|
+
return _context14.t5.awrap.call(_context14.t5, _context14.t16);
|
|
1215
1237
|
|
|
1216
|
-
case
|
|
1238
|
+
case 50:
|
|
1217
1239
|
return _context14.abrupt("return", _context14.sent);
|
|
1218
1240
|
|
|
1219
|
-
case
|
|
1241
|
+
case 53:
|
|
1220
1242
|
if (!chunkSize) {
|
|
1221
1243
|
chunkSize = 10000000;
|
|
1222
1244
|
}
|
|
1223
1245
|
|
|
1224
|
-
_context14.prev =
|
|
1225
|
-
_context14.next =
|
|
1246
|
+
_context14.prev = 54;
|
|
1247
|
+
_context14.next = 57;
|
|
1226
1248
|
return _regeneratorRuntime.awrap(this.Download({
|
|
1227
1249
|
downloadPath: path,
|
|
1228
1250
|
bytesTotal: bytesTotal,
|
|
@@ -1233,15 +1255,15 @@ exports.DownloadFile = function _callee12(_ref13) {
|
|
|
1233
1255
|
chunkSize: chunkSize
|
|
1234
1256
|
}));
|
|
1235
1257
|
|
|
1236
|
-
case
|
|
1258
|
+
case 57:
|
|
1237
1259
|
return _context14.abrupt("return", _context14.sent);
|
|
1238
1260
|
|
|
1239
|
-
case
|
|
1240
|
-
_context14.prev =
|
|
1241
|
-
_context14.
|
|
1261
|
+
case 60:
|
|
1262
|
+
_context14.prev = 60;
|
|
1263
|
+
_context14.t17 = _context14["catch"](54);
|
|
1242
1264
|
|
|
1243
1265
|
if (!(encrypted && !clientSideDecryption)) {
|
|
1244
|
-
_context14.next =
|
|
1266
|
+
_context14.next = 64;
|
|
1245
1267
|
break;
|
|
1246
1268
|
}
|
|
1247
1269
|
|
|
@@ -1249,15 +1271,15 @@ exports.DownloadFile = function _callee12(_ref13) {
|
|
|
1249
1271
|
clientSideDecryption: true
|
|
1250
1272
|
})));
|
|
1251
1273
|
|
|
1252
|
-
case
|
|
1253
|
-
throw _context14.
|
|
1274
|
+
case 64:
|
|
1275
|
+
throw _context14.t17;
|
|
1254
1276
|
|
|
1255
|
-
case
|
|
1277
|
+
case 65:
|
|
1256
1278
|
case "end":
|
|
1257
1279
|
return _context14.stop();
|
|
1258
1280
|
}
|
|
1259
1281
|
}
|
|
1260
|
-
}, null, this, [[
|
|
1282
|
+
}, null, this, [[54, 60]]);
|
|
1261
1283
|
};
|
|
1262
1284
|
/* Parts */
|
|
1263
1285
|
|
package/package-lock.json
CHANGED
package/package.json
CHANGED
|
@@ -176,7 +176,10 @@ class AuthorizationClient {
|
|
|
176
176
|
let publicKey;
|
|
177
177
|
if(encryption && encryption !== "none" && objectId && await this.AccessType(objectId) === ACCESS_TYPES.OBJECT) {
|
|
178
178
|
const owner = await this.Owner({id: objectId});
|
|
179
|
-
|
|
179
|
+
const ownerCapKey = `eluv.caps.iusr${Utils.AddressToHash(this.client.signer.address)}`;
|
|
180
|
+
const ownerCap = await client.ContentObjectMetadata({libraryId, objectId, metadataSubtree: ownerCapKey});
|
|
181
|
+
|
|
182
|
+
if(!Utils.EqualAddress(owner, this.client.signer.address) && !ownerCap) {
|
|
180
183
|
const cap = await this.ReEncryptionConk({libraryId, objectId});
|
|
181
184
|
publicKey = cap.public_key;
|
|
182
185
|
}
|
package/src/EthClient.js
CHANGED
|
@@ -285,6 +285,8 @@ class EthClient {
|
|
|
285
285
|
const latestBlock = await this.MakeProviderCall({methodName: "getBlock", args: ["latest"]});
|
|
286
286
|
overrides.gasLimit = latestBlock.gasLimit;
|
|
287
287
|
overrides.gasPrice = overrides.gasPrice ? overrides.gasPrice * 1.50 : 8000000000;
|
|
288
|
+
} else if(error.code === "NONCE_EXPIRED" && error.reason === "nonce has already been used") {
|
|
289
|
+
this.Log(`Retrying method call ${methodName}`);
|
|
288
290
|
} else if(!(error.message || error).includes("invalid response")) {
|
|
289
291
|
this.Log(typeof error === "object" ? JSON.stringify(error, null, 2) : error, true);
|
|
290
292
|
throw error;
|
package/src/FrameClient.js
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
* @module ElvClient/ABRPublishing
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
+
const R = require("ramda");
|
|
9
10
|
const UrlJoin = require("url-join");
|
|
10
11
|
const HttpClient = require("../HttpClient");
|
|
11
12
|
|
|
@@ -355,8 +356,6 @@ exports.CreateABRMezzanine = async function({
|
|
|
355
356
|
...metadata.public.asset_metadata
|
|
356
357
|
};
|
|
357
358
|
|
|
358
|
-
metadata.elv_created_at = new Date().getTime();
|
|
359
|
-
|
|
360
359
|
if(name || !existingMez) {
|
|
361
360
|
metadata.name = name || `${masterName} Mezzanine`;
|
|
362
361
|
metadata.public.name = name || `${masterName} Mezzanine`;
|
|
@@ -367,7 +366,23 @@ exports.CreateABRMezzanine = async function({
|
|
|
367
366
|
metadata.public.description = description || "";
|
|
368
367
|
}
|
|
369
368
|
|
|
370
|
-
|
|
369
|
+
// retrieve existing metadata to merge with updated metadata
|
|
370
|
+
const existingMetadata = await this.ContentObjectMetadata({
|
|
371
|
+
libraryId,
|
|
372
|
+
objectId: id,
|
|
373
|
+
writeToken: write_token,
|
|
374
|
+
});
|
|
375
|
+
// newer metadata values replace existing metadata, unless both new and old values are objects,
|
|
376
|
+
// in which case their keys are merged recursively
|
|
377
|
+
metadata = R.mergeDeepRight(existingMetadata, metadata);
|
|
378
|
+
|
|
379
|
+
if(!existingMez) {
|
|
380
|
+
// set creation date
|
|
381
|
+
metadata.elv_created_at = new Date().getTime();
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
// write metadata to mezzanine object
|
|
385
|
+
await this.ReplaceMetadata({
|
|
371
386
|
libraryId,
|
|
372
387
|
objectId: id,
|
|
373
388
|
writeToken: write_token,
|
|
@@ -473,9 +473,8 @@ exports.LibraryContentTypes = async function({libraryId}) {
|
|
|
473
473
|
* @param {object=} filterOptions - Pagination, sorting and filtering options
|
|
474
474
|
* @param {number=} filterOptions.start - Start index for pagination
|
|
475
475
|
* @param {number=} filterOptions.limit - Max number of objects to return
|
|
476
|
-
* @param {string=} filterOptions.cacheId - Cache ID corresponding a previous query
|
|
477
476
|
* @param {(Array<string> | string)=} filterOptions.sort - Sort by the specified key(s)
|
|
478
|
-
* @param {boolean=} filterOptions.sortDesc
|
|
477
|
+
* @param {boolean=} filterOptions.sortDesc - Sort in descending order
|
|
479
478
|
* @param {(Array<string> | string)=} filterOptions.select - Include only the specified metadata keys (all must start with /public)
|
|
480
479
|
* @param {(Array<object> | object)=} filterOptions.filter - Filter objects by metadata
|
|
481
480
|
* @param {string=} filterOptions.filter.key - Key to filter on (must start with /public)
|
|
@@ -2408,7 +2407,10 @@ exports.EncryptionConk = async function({libraryId, objectId, versionHash, write
|
|
|
2408
2407
|
|
|
2409
2408
|
const owner = await this.authClient.Owner({id: objectId});
|
|
2410
2409
|
|
|
2411
|
-
|
|
2410
|
+
const ownerCapKey = `eluv.caps.iusr${this.utils.AddressToHash(this.signer.address)}`;
|
|
2411
|
+
const ownerCap = await this.ContentObjectMetadata({libraryId, objectId, metadataSubtree: ownerCapKey});
|
|
2412
|
+
|
|
2413
|
+
if(!this.utils.EqualAddress(owner, this.signer.address) && !ownerCap) {
|
|
2412
2414
|
if(download) {
|
|
2413
2415
|
return await this.authClient.ReEncryptionConk({libraryId, objectId, versionHash});
|
|
2414
2416
|
} else {
|
|
@@ -21,7 +21,8 @@ const {
|
|
|
21
21
|
ValidateVersion,
|
|
22
22
|
ValidateWriteToken,
|
|
23
23
|
ValidateParameters,
|
|
24
|
-
ValidatePresence
|
|
24
|
+
ValidatePresence,
|
|
25
|
+
ValidateAddress
|
|
25
26
|
} = require("../Validation");
|
|
26
27
|
|
|
27
28
|
exports.SetVisibility = async function({id, visibility}) {
|
|
@@ -58,8 +59,9 @@ exports.SetVisibility = async function({id, visibility}) {
|
|
|
58
59
|
* @methodGroup Content Objects
|
|
59
60
|
* @param {string} objectId - The ID of the object
|
|
60
61
|
* @param {string} permission - The key for the permission to set - See client.permissionLevels for available permissions
|
|
62
|
+
* @param {string} writeToken - Write token for the content object - If specified, info will be retrieved from the write draft instead of creating a new draft and finalizing
|
|
61
63
|
*/
|
|
62
|
-
exports.SetPermission = async function({objectId, permission}) {
|
|
64
|
+
exports.SetPermission = async function({objectId, permission, writeToken}) {
|
|
63
65
|
ValidateObject(objectId);
|
|
64
66
|
ValidatePresence("permission", permission);
|
|
65
67
|
|
|
@@ -118,14 +120,16 @@ exports.SetPermission = async function({objectId, permission}) {
|
|
|
118
120
|
}
|
|
119
121
|
});
|
|
120
122
|
} else if(!kmsConk && settings.kmsConk) {
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
objectId
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
123
|
+
const finalize = !writeToken;
|
|
124
|
+
if(!writeToken) {
|
|
125
|
+
writeToken = (await this.EditContentObject({libraryId, objectId})).writeToken;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
await this.CreateEncryptionConk({libraryId, objectId, writeToken, createKMSConk: true});
|
|
129
|
+
|
|
130
|
+
if(finalize) {
|
|
131
|
+
await this.FinalizeContentObject({libraryId, objectId, writeToken, commitMessage: `Set permissions to ${permission}`});
|
|
132
|
+
}
|
|
129
133
|
}
|
|
130
134
|
};
|
|
131
135
|
|
|
@@ -622,7 +626,100 @@ exports.CopyContentObject = async function({libraryId, originalVersionHash, opti
|
|
|
622
626
|
|
|
623
627
|
options.copy_from = originalVersionHash;
|
|
624
628
|
|
|
625
|
-
|
|
629
|
+
const {objectId, writeToken} = await this.CreateContentObject({libraryId, options});
|
|
630
|
+
const originalObjectId = this.utils.DecodeVersionHash(originalVersionHash).objectId;
|
|
631
|
+
const metadata = await this.ContentObjectMetadata({versionHash: originalVersionHash});
|
|
632
|
+
const permission = await this.Permission({objectId: originalObjectId});
|
|
633
|
+
|
|
634
|
+
// User CAP
|
|
635
|
+
const userCapKey = `eluv.caps.iusr${this.utils.AddressToHash(this.signer.address)}`;
|
|
636
|
+
|
|
637
|
+
if(metadata[userCapKey]) {
|
|
638
|
+
const isOwner = this.utils.EqualAddress(this.signer.address, await this.ContentObjectOwner({objectId: originalObjectId}));
|
|
639
|
+
|
|
640
|
+
if(!isOwner) {
|
|
641
|
+
throw Error(`Current user is not owner of object ${metadata}`);
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
const userConkKey = await this.Crypto.DecryptCap(metadata[userCapKey], this.signer.signingKey.privateKey);
|
|
645
|
+
userConkKey.qid = objectId;
|
|
646
|
+
|
|
647
|
+
this.ReplaceMetadata({
|
|
648
|
+
libraryId,
|
|
649
|
+
objectId,
|
|
650
|
+
writeToken,
|
|
651
|
+
metadataSubtree: userCapKey,
|
|
652
|
+
metadata: await this.Crypto.EncryptConk(userConkKey, this.signer.signingKey.publicKey)
|
|
653
|
+
});
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
// KMS CAP
|
|
657
|
+
await Promise.all(
|
|
658
|
+
Object.keys(metadata)
|
|
659
|
+
.filter(key => key.startsWith("eluv.caps.ikms"))
|
|
660
|
+
.map(async kmsCapKey => await this.DeleteMetadata({
|
|
661
|
+
libraryId,
|
|
662
|
+
objectId,
|
|
663
|
+
writeToken,
|
|
664
|
+
metadataSubtree: kmsCapKey
|
|
665
|
+
}))
|
|
666
|
+
);
|
|
667
|
+
|
|
668
|
+
if(permission !== "owner") {
|
|
669
|
+
await this.SetPermission({objectId, permission, writeToken});
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
return await this.FinalizeContentObject({libraryId, objectId, writeToken});
|
|
673
|
+
};
|
|
674
|
+
|
|
675
|
+
/**
|
|
676
|
+
* Create a non-owner cap key using the specified public key and address
|
|
677
|
+
*
|
|
678
|
+
* @methodGroup Access Requests
|
|
679
|
+
* @namedParams
|
|
680
|
+
* @param {string} libraryId - ID of the library
|
|
681
|
+
* @param {string} objectId - ID of the object
|
|
682
|
+
* @param {string} publicKey - Public key for the target cap
|
|
683
|
+
* @param {string} publicAddress - Public address for the target cap key
|
|
684
|
+
* @param {string} writeToken - Write token for the content object - If specified, info will be retrieved from the write draft instead of creating a new draft and finalizing
|
|
685
|
+
*
|
|
686
|
+
* @returns {Promise<Object>}
|
|
687
|
+
*/
|
|
688
|
+
exports.CreateNonOwnerCap = async function({objectId, libraryId, publicKey, publicAddress, writeToken}) {
|
|
689
|
+
publicAddress = ValidateAddress(publicAddress);
|
|
690
|
+
const userCapKey = `eluv.caps.iusr${this.utils.AddressToHash(this.signer.address)}`;
|
|
691
|
+
const userCapValue = await this.ContentObjectMetadata({objectId, libraryId, metadataSubtree: userCapKey});
|
|
692
|
+
|
|
693
|
+
if(!userCapValue) {
|
|
694
|
+
throw Error("No user cap found for current user");
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
const userConk = await this.Crypto.DecryptCap(userCapValue, this.signer.signingKey.privateKey);
|
|
698
|
+
|
|
699
|
+
const targetUserCapKey = `eluv.caps.iusr${this.utils.AddressToHash(publicAddress)}`;
|
|
700
|
+
const targetUserCapValue = await this.Crypto.EncryptConk(userConk, publicKey);
|
|
701
|
+
|
|
702
|
+
const finalize = !writeToken;
|
|
703
|
+
if(!writeToken) {
|
|
704
|
+
writeToken = await this.EditContentObject({libraryId, objectId}).writeToken;
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
this.ReplaceMetadata({
|
|
708
|
+
libraryId,
|
|
709
|
+
objectId,
|
|
710
|
+
writeToken,
|
|
711
|
+
metadataSubtree: targetUserCapKey,
|
|
712
|
+
metadata: targetUserCapValue
|
|
713
|
+
});
|
|
714
|
+
|
|
715
|
+
if(finalize) {
|
|
716
|
+
await this.FinalizeContentObject({
|
|
717
|
+
libraryId,
|
|
718
|
+
objectId,
|
|
719
|
+
writeToken,
|
|
720
|
+
commitMessage: "Create non-owner cap"
|
|
721
|
+
});
|
|
722
|
+
}
|
|
626
723
|
};
|
|
627
724
|
|
|
628
725
|
/**
|
package/src/client/Files.js
CHANGED
|
@@ -641,7 +641,10 @@ exports.DownloadFile = async function({
|
|
|
641
641
|
headers.Accept = "*/*";
|
|
642
642
|
|
|
643
643
|
// If not owner, indicate re-encryption
|
|
644
|
-
|
|
644
|
+
const ownerCapKey = `eluv.caps.iusr${this.utils.AddressToHash(this.signer.address)}`;
|
|
645
|
+
const ownerCap = await this.ContentObjectMetadata({libraryId, objectId, metadataSubtree: ownerCapKey});
|
|
646
|
+
|
|
647
|
+
if(encrypted && !this.utils.EqualAddress(this.signer.address, await this.ContentObjectOwner({objectId})) && !ownerCap) {
|
|
645
648
|
headers["X-Content-Fabric-Decryption-Mode"] = "reencrypt";
|
|
646
649
|
}
|
|
647
650
|
|
|
Binary file
|