@webiny/api-file-manager-ddb 0.0.0-unstable.e3f4727c56 → 0.0.0-unstable.ecd8734205

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.
@@ -1,38 +1,76 @@
1
1
  "use strict";
2
2
 
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
+
3
5
  Object.defineProperty(exports, "__esModule", {
4
6
  value: true
5
7
  });
6
8
  exports.default = void 0;
9
+
10
+ var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
11
+
7
12
  var _dynamodbToolbox = require("dynamodb-toolbox");
13
+
14
+ var _attributes = require("@webiny/db-dynamodb/utils/attributes");
15
+
8
16
  var _default = params => {
9
17
  const {
18
+ context,
10
19
  table
11
20
  } = params;
12
- const entityName = "FM.File";
21
+ const entityName = "Files";
22
+ const attributes = (0, _attributes.getExtraAttributes)(context, entityName);
13
23
  return new _dynamodbToolbox.Entity({
14
24
  name: entityName,
15
25
  table,
16
- attributes: {
26
+ attributes: (0, _objectSpread2.default)({
17
27
  PK: {
18
28
  partitionKey: true
19
29
  },
20
30
  SK: {
21
31
  sortKey: true
22
32
  },
23
- GSI1_PK: {
33
+ TYPE: {
34
+ type: "string"
35
+ },
36
+ id: {
24
37
  type: "string"
25
38
  },
26
- GSI1_SK: {
39
+ key: {
27
40
  type: "string"
28
41
  },
29
- TYPE: {
42
+ size: {
43
+ type: "number"
44
+ },
45
+ type: {
46
+ type: "string"
47
+ },
48
+ name: {
30
49
  type: "string"
31
50
  },
32
- data: {
51
+ meta: {
33
52
  type: "map"
53
+ },
54
+ tags: {
55
+ type: "list"
56
+ },
57
+ createdOn: {
58
+ type: "string"
59
+ },
60
+ createdBy: {
61
+ type: "map"
62
+ },
63
+ tenant: {
64
+ type: "string"
65
+ },
66
+ locale: {
67
+ type: "string"
68
+ },
69
+ webinyVersion: {
70
+ type: "string"
34
71
  }
35
- }
72
+ }, attributes)
36
73
  });
37
74
  };
75
+
38
76
  exports.default = _default;
@@ -1 +1 @@
1
- {"version":3,"names":["params","table","entityName","Entity","name","attributes","PK","partitionKey","SK","sortKey","GSI1_PK","type","GSI1_SK","TYPE","data"],"sources":["filesEntity.ts"],"sourcesContent":["import { Entity, Table } from \"dynamodb-toolbox\";\nimport { FileManagerContext } from \"@webiny/api-file-manager/types\";\n\nexport interface FilesEntityParams {\n context: FileManagerContext;\n table: Table;\n}\nexport default (params: FilesEntityParams): Entity<any> => {\n const { table } = params;\n const entityName = \"FM.File\";\n return new Entity({\n name: entityName,\n table,\n attributes: {\n PK: {\n partitionKey: true\n },\n SK: {\n sortKey: true\n },\n GSI1_PK: {\n type: \"string\"\n },\n GSI1_SK: {\n type: \"string\"\n },\n TYPE: {\n type: \"string\"\n },\n data: {\n type: \"map\"\n }\n }\n });\n};\n"],"mappings":";;;;;;AAAA;AAAiD,eAOjCA,MAAyB,IAAkB;EACvD,MAAM;IAAEC;EAAM,CAAC,GAAGD,MAAM;EACxB,MAAME,UAAU,GAAG,SAAS;EAC5B,OAAO,IAAIC,uBAAM,CAAC;IACdC,IAAI,EAAEF,UAAU;IAChBD,KAAK;IACLI,UAAU,EAAE;MACRC,EAAE,EAAE;QACAC,YAAY,EAAE;MAClB,CAAC;MACDC,EAAE,EAAE;QACAC,OAAO,EAAE;MACb,CAAC;MACDC,OAAO,EAAE;QACLC,IAAI,EAAE;MACV,CAAC;MACDC,OAAO,EAAE;QACLD,IAAI,EAAE;MACV,CAAC;MACDE,IAAI,EAAE;QACFF,IAAI,EAAE;MACV,CAAC;MACDG,IAAI,EAAE;QACFH,IAAI,EAAE;MACV;IACJ;EACJ,CAAC,CAAC;AACN,CAAC;AAAA"}
1
+ {"version":3,"names":["params","context","table","entityName","attributes","getExtraAttributes","Entity","name","PK","partitionKey","SK","sortKey","TYPE","type","id","key","size","meta","tags","createdOn","createdBy","tenant","locale","webinyVersion"],"sources":["filesEntity.ts"],"sourcesContent":["import { Entity, Table } from \"dynamodb-toolbox\";\nimport { FileManagerContext } from \"@webiny/api-file-manager/types\";\nimport { getExtraAttributes } from \"@webiny/db-dynamodb/utils/attributes\";\n\nexport interface FilesEntityParams {\n context: FileManagerContext;\n table: Table;\n}\nexport default (params: FilesEntityParams): Entity<any> => {\n const { context, table } = params;\n const entityName = \"Files\";\n const attributes = getExtraAttributes(context, entityName);\n return new Entity({\n name: entityName,\n table,\n attributes: {\n PK: {\n partitionKey: true\n },\n SK: {\n sortKey: true\n },\n TYPE: {\n type: \"string\"\n },\n id: {\n type: \"string\"\n },\n key: {\n type: \"string\"\n },\n size: {\n type: \"number\"\n },\n type: {\n type: \"string\"\n },\n name: {\n type: \"string\"\n },\n meta: {\n type: \"map\"\n },\n tags: {\n type: \"list\"\n },\n createdOn: {\n type: \"string\"\n },\n createdBy: {\n type: \"map\"\n },\n tenant: {\n type: \"string\"\n },\n locale: {\n type: \"string\"\n },\n webinyVersion: {\n type: \"string\"\n },\n ...attributes\n }\n });\n};\n"],"mappings":";;;;;;;;;;;AAAA;;AAEA;;eAMgBA,MAAD,IAA4C;EACvD,MAAM;IAAEC,OAAF;IAAWC;EAAX,IAAqBF,MAA3B;EACA,MAAMG,UAAU,GAAG,OAAnB;EACA,MAAMC,UAAU,GAAG,IAAAC,8BAAA,EAAmBJ,OAAnB,EAA4BE,UAA5B,CAAnB;EACA,OAAO,IAAIG,uBAAJ,CAAW;IACdC,IAAI,EAAEJ,UADQ;IAEdD,KAFc;IAGdE,UAAU;MACNI,EAAE,EAAE;QACAC,YAAY,EAAE;MADd,CADE;MAINC,EAAE,EAAE;QACAC,OAAO,EAAE;MADT,CAJE;MAONC,IAAI,EAAE;QACFC,IAAI,EAAE;MADJ,CAPA;MAUNC,EAAE,EAAE;QACAD,IAAI,EAAE;MADN,CAVE;MAaNE,GAAG,EAAE;QACDF,IAAI,EAAE;MADL,CAbC;MAgBNG,IAAI,EAAE;QACFH,IAAI,EAAE;MADJ,CAhBA;MAmBNA,IAAI,EAAE;QACFA,IAAI,EAAE;MADJ,CAnBA;MAsBNN,IAAI,EAAE;QACFM,IAAI,EAAE;MADJ,CAtBA;MAyBNI,IAAI,EAAE;QACFJ,IAAI,EAAE;MADJ,CAzBA;MA4BNK,IAAI,EAAE;QACFL,IAAI,EAAE;MADJ,CA5BA;MA+BNM,SAAS,EAAE;QACPN,IAAI,EAAE;MADC,CA/BL;MAkCNO,SAAS,EAAE;QACPP,IAAI,EAAE;MADC,CAlCL;MAqCNQ,MAAM,EAAE;QACJR,IAAI,EAAE;MADF,CArCF;MAwCNS,MAAM,EAAE;QACJT,IAAI,EAAE;MADF,CAxCF;MA2CNU,aAAa,EAAE;QACXV,IAAI,EAAE;MADK;IA3CT,GA8CHT,UA9CG;EAHI,CAAX,CAAP;AAoDH,C"}
@@ -5,7 +5,8 @@ interface ConstructorParams {
5
5
  export declare class FilesStorageOperations implements FileManagerFilesStorageOperations {
6
6
  private readonly _context;
7
7
  private readonly table;
8
- private readonly entity;
8
+ private readonly fileEntity;
9
+ private readonly aliasEntity;
9
10
  private get context();
10
11
  constructor({ context }: ConstructorParams);
11
12
  get(params: FileManagerFilesStorageOperationsGetParams): Promise<File | null>;
@@ -18,5 +19,6 @@ export declare class FilesStorageOperations implements FileManagerFilesStorageOp
18
19
  private createQueryAllOptions;
19
20
  private createPartitionKey;
20
21
  private createGSI1PartitionKey;
22
+ private createNewAliasesRecords;
21
23
  }
22
24
  export {};
@@ -9,7 +9,6 @@ var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/obje
9
9
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
10
10
  var _error = _interopRequireDefault(require("@webiny/error"));
11
11
  var _table = _interopRequireDefault(require("../../definitions/table"));
12
- var _filesEntity = _interopRequireDefault(require("../../definitions/filesEntity"));
13
12
  var _query = require("@webiny/db-dynamodb/utils/query");
14
13
  var _cursor = require("@webiny/db-dynamodb/utils/cursor");
15
14
  var _filter = require("@webiny/db-dynamodb/utils/filter");
@@ -17,6 +16,7 @@ var _sort = require("@webiny/db-dynamodb/utils/sort");
17
16
  var _FileDynamoDbFieldPlugin = require("../../plugins/FileDynamoDbFieldPlugin");
18
17
  var _batchWrite = require("@webiny/db-dynamodb/utils/batchWrite");
19
18
  var _get = require("@webiny/db-dynamodb/utils/get");
19
+ var _dbDynamodb = require("@webiny/db-dynamodb");
20
20
  class FilesStorageOperations {
21
21
  get context() {
22
22
  return this._context;
@@ -26,15 +26,14 @@ class FilesStorageOperations {
26
26
  }) {
27
27
  (0, _defineProperty2.default)(this, "_context", void 0);
28
28
  (0, _defineProperty2.default)(this, "table", void 0);
29
- (0, _defineProperty2.default)(this, "entity", void 0);
29
+ (0, _defineProperty2.default)(this, "fileEntity", void 0);
30
+ (0, _defineProperty2.default)(this, "aliasEntity", void 0);
30
31
  this._context = context;
31
32
  this.table = (0, _table.default)({
32
33
  context
33
34
  });
34
- this.entity = (0, _filesEntity.default)({
35
- context,
36
- table: this.table
37
- });
35
+ this.fileEntity = (0, _dbDynamodb.createStandardEntity)(this.table, "FM.File");
36
+ this.aliasEntity = (0, _dbDynamodb.createStandardEntity)(this.table, "FM.FileAlias");
38
37
  }
39
38
  async get(params) {
40
39
  const {
@@ -46,7 +45,7 @@ class FilesStorageOperations {
46
45
  };
47
46
  try {
48
47
  const file = await (0, _get.get)({
49
- entity: this.entity,
48
+ entity: this.fileEntity,
50
49
  keys
51
50
  });
52
51
  return file ? file.data : null;
@@ -61,6 +60,7 @@ class FilesStorageOperations {
61
60
  const {
62
61
  file
63
62
  } = params;
63
+ const items = [];
64
64
  const item = {
65
65
  PK: this.createPartitionKey(file),
66
66
  SK: "A",
@@ -69,24 +69,69 @@ class FilesStorageOperations {
69
69
  TYPE: "fm.file",
70
70
  data: file
71
71
  };
72
+ items.push(this.fileEntity.putBatch(item));
73
+ this.createNewAliasesRecords(file).forEach(alias => {
74
+ items.push(this.aliasEntity.putBatch(alias));
75
+ });
72
76
  try {
73
- await this.entity.put(item);
77
+ await (0, _batchWrite.batchWriteAll)({
78
+ table: this.table,
79
+ items
80
+ });
74
81
  } catch (ex) {
75
82
  throw new _error.default(ex.message || "Could not create a new file in the DynamoDB.", ex.code || "CREATE_FILE_ERROR", {
76
83
  error: ex,
77
- item
84
+ items
78
85
  });
79
86
  }
80
87
  return file;
81
88
  }
82
89
  async update(params) {
90
+ const {
91
+ file
92
+ } = params;
93
+ const items = [];
94
+ const item = {
95
+ PK: this.createPartitionKey(file),
96
+ SK: "A",
97
+ GSI1_PK: this.createGSI1PartitionKey(file),
98
+ GSI1_SK: file.id,
99
+ TYPE: "fm.file",
100
+ data: file
101
+ };
102
+ items.push(this.fileEntity.putBatch(item));
103
+ const existingAliases = await (0, _query.queryAll)({
104
+ entity: this.aliasEntity,
105
+ partitionKey: `T#${file.tenant}#L#${file.locale}#FM#FILE#${file.id}`,
106
+ options: {
107
+ beginsWith: `ALIAS#`
108
+ }
109
+ });
110
+ const newAliases = this.createNewAliasesRecords(file, existingAliases.map(alias => alias.data));
111
+ newAliases.forEach(alias => {
112
+ items.push(this.aliasEntity.putBatch(alias));
113
+ });
114
+
115
+ // Delete aliases that are in the DB but are NOT in the file.
116
+ for (const {
117
+ data
118
+ } of existingAliases) {
119
+ if (!file.aliases.some(alias => data.alias === alias)) {
120
+ items.push(this.aliasEntity.deleteBatch({
121
+ PK: this.createPartitionKey(file),
122
+ SK: `ALIAS#${data.alias}`
123
+ }));
124
+ }
125
+ }
83
126
  try {
84
- await this.create(params);
127
+ await (0, _batchWrite.batchWriteAll)({
128
+ table: this.table,
129
+ items
130
+ });
85
131
  } catch (ex) {
86
- if (ex.code === "CREATE_FILE_ERROR") {
87
- throw new _error.default("Could not update a file in the DynamoDB.", "UPDATE_FILE_ERROR", ex.data);
88
- }
89
- throw ex;
132
+ throw new _error.default(ex.message || "Could not update a file in the DynamoDB.", ex.code || "UPDATE_FILE_ERROR", {
133
+ items
134
+ });
90
135
  }
91
136
  return params.file;
92
137
  }
@@ -98,13 +143,37 @@ class FilesStorageOperations {
98
143
  PK: this.createPartitionKey(file),
99
144
  SK: "A"
100
145
  };
146
+ const aliasItems = await (0, _query.queryAll)({
147
+ entity: this.aliasEntity,
148
+ partitionKey: keys.PK,
149
+ options: {
150
+ beginsWith: "ALIAS#"
151
+ }
152
+ });
153
+
154
+ // All items to delete in batch
155
+ const items = [];
101
156
  try {
102
- await this.entity.delete(keys);
157
+ // Delete the main file item
158
+ items.push(this.fileEntity.deleteBatch(keys));
159
+
160
+ // Delete file alias items
161
+ aliasItems.forEach(item => {
162
+ items.push(this.aliasEntity.deleteBatch({
163
+ PK: item.PK,
164
+ SK: item.SK
165
+ }));
166
+ });
167
+ await (0, _batchWrite.batchWriteAll)({
168
+ table: this.table,
169
+ items
170
+ });
103
171
  } catch (ex) {
104
172
  throw new _error.default(ex.message || "Could not delete file from the DynamoDB.", ex.code || "DELETE_FILE_ERROR", {
105
173
  error: ex,
106
174
  file,
107
- keys
175
+ keys,
176
+ aliasItems
108
177
  });
109
178
  }
110
179
  }
@@ -112,19 +181,25 @@ class FilesStorageOperations {
112
181
  const {
113
182
  files
114
183
  } = params;
115
- const items = files.map(file => {
116
- return this.entity.putBatch({
184
+
185
+ // Items to be written in batch
186
+ const items = [];
187
+ files.forEach(file => {
188
+ items.push(this.fileEntity.putBatch({
117
189
  PK: this.createPartitionKey(file),
118
190
  SK: "A",
119
191
  GSI1_PK: this.createGSI1PartitionKey(file),
120
192
  GSI1_SK: file.id,
121
193
  TYPE: "fm.file",
122
194
  data: file
195
+ }));
196
+ this.createNewAliasesRecords(file).forEach(alias => {
197
+ items.push(this.aliasEntity.putBatch(alias));
123
198
  });
124
199
  });
125
200
  try {
126
201
  await (0, _batchWrite.batchWriteAll)({
127
- table: this.entity.table,
202
+ table: this.table,
128
203
  items
129
204
  });
130
205
  } catch (ex) {
@@ -146,7 +221,7 @@ class FilesStorageOperations {
146
221
  where: initialWhere
147
222
  });
148
223
  const queryAllParams = {
149
- entity: this.entity,
224
+ entity: this.fileEntity,
150
225
  partitionKey: this.createGSI1PartitionKey(initialWhere),
151
226
  options
152
227
  };
@@ -221,7 +296,7 @@ class FilesStorageOperations {
221
296
  where: initialWhere
222
297
  } = params;
223
298
  const queryAllParams = {
224
- entity: this.entity,
299
+ entity: this.fileEntity,
225
300
  partitionKey: this.createGSI1PartitionKey(initialWhere),
226
301
  options: {
227
302
  index: "GSI1",
@@ -306,5 +381,29 @@ class FilesStorageOperations {
306
381
  } = params;
307
382
  return `T#${tenant}#L#${locale}#FM#FILES`;
308
383
  }
384
+ createNewAliasesRecords(file, existingAliases = []) {
385
+ return (file.aliases || []).map(alias => {
386
+ // If alias is already in the DB, skip it.
387
+ if (existingAliases.find(item => item.alias === alias)) {
388
+ return null;
389
+ }
390
+
391
+ // Add a new alias.
392
+ return {
393
+ PK: this.createPartitionKey(file),
394
+ SK: `ALIAS#${alias}`,
395
+ GSI1_PK: `T#${file.tenant}#FM#FILE_ALIASES`,
396
+ GSI1_SK: alias,
397
+ TYPE: "fm.fileAlias",
398
+ data: {
399
+ alias,
400
+ tenant: file.tenant,
401
+ locale: file.locale,
402
+ fileId: file.id,
403
+ key: file.key
404
+ }
405
+ };
406
+ }).filter(Boolean);
407
+ }
309
408
  }
310
409
  exports.FilesStorageOperations = FilesStorageOperations;
@@ -1 +1 @@
1
- {"version":3,"names":["FilesStorageOperations","context","_context","constructor","table","defineTable","entity","defineFilesEntity","get","params","where","keys","PK","createPartitionKey","SK","file","getEntityItem","data","ex","WebinyError","message","code","error","create","item","GSI1_PK","createGSI1PartitionKey","GSI1_SK","id","TYPE","put","update","delete","createBatch","files","items","map","putBatch","batchWriteAll","list","initialWhere","limit","after","sort","options","createQueryAllOptions","queryAllParams","partitionKey","dbItems","queryAll","queryParams","name","search","contains","fields","value","plugins","byType","FileDynamoDbFieldPlugin","type","filteredFiles","filterItems","totalCount","length","sortedFiles","sortItems","start","parseInt","decodeCursor","hasMoreItems","end","undefined","slice","cursor","encodeCursor","meta","tags","index","gte","reverse","results","query","filteredItems","tagsObject","reduce","collection","Array","isArray","tag","push","Object","eq","gt","tenant","locale"],"sources":["FilesStorageOperations.ts"],"sourcesContent":["import {\n File,\n FileManagerContext,\n FileManagerFilesStorageOperations,\n FileManagerFilesStorageOperationsCreateBatchParams,\n FileManagerFilesStorageOperationsCreateParams,\n FileManagerFilesStorageOperationsDeleteParams,\n FileManagerFilesStorageOperationsGetParams,\n FileManagerFilesStorageOperationsListParams,\n FileManagerFilesStorageOperationsListParamsWhere,\n FileManagerFilesStorageOperationsListResponse,\n FileManagerFilesStorageOperationsListResponseMeta,\n FileManagerFilesStorageOperationsTagsParams,\n FileManagerFilesStorageOperationsTagsParamsWhere,\n FileManagerFilesStorageOperationsTagsResponse,\n FileManagerFilesStorageOperationsUpdateParams\n} from \"@webiny/api-file-manager/types\";\nimport { Entity, Table } from \"dynamodb-toolbox\";\nimport WebinyError from \"@webiny/error\";\nimport defineTable from \"~/definitions/table\";\nimport defineFilesEntity from \"~/definitions/filesEntity\";\nimport { queryOptions as DynamoDBToolboxQueryOptions } from \"dynamodb-toolbox/dist/classes/Table\";\nimport { queryAll } from \"@webiny/db-dynamodb/utils/query\";\nimport { decodeCursor, encodeCursor } from \"@webiny/db-dynamodb/utils/cursor\";\nimport { filterItems } from \"@webiny/db-dynamodb/utils/filter\";\nimport { sortItems } from \"@webiny/db-dynamodb/utils/sort\";\nimport { FileDynamoDbFieldPlugin } from \"~/plugins/FileDynamoDbFieldPlugin\";\nimport { batchWriteAll } from \"@webiny/db-dynamodb/utils/batchWrite\";\nimport { get as getEntityItem } from \"@webiny/db-dynamodb/utils/get\";\n\ninterface FileItem {\n PK: string;\n SK: string;\n GSI1_PK: string;\n GSI1_SK: string;\n TYPE: string;\n data: File;\n}\n\ninterface ConstructorParams {\n context: FileManagerContext;\n}\n\ninterface QueryAllOptionsParams {\n where: FileManagerFilesStorageOperationsListParamsWhere;\n}\n\ninterface CreatePartitionKeyParams {\n locale: string;\n tenant: string;\n id: string;\n}\n\ntype CreateGSI1PartitionKeyParams = Pick<CreatePartitionKeyParams, \"tenant\" | \"locale\">;\n\nexport class FilesStorageOperations implements FileManagerFilesStorageOperations {\n private readonly _context: FileManagerContext;\n private readonly table: Table;\n private readonly entity: Entity<any>;\n\n private get context(): FileManagerContext {\n return this._context;\n }\n\n public constructor({ context }: ConstructorParams) {\n this._context = context;\n this.table = defineTable({\n context\n });\n\n this.entity = defineFilesEntity({\n context,\n table: this.table\n });\n }\n\n public async get(params: FileManagerFilesStorageOperationsGetParams): Promise<File | null> {\n const { where } = params;\n const keys = {\n PK: this.createPartitionKey(where),\n SK: \"A\"\n };\n try {\n const file = await getEntityItem<{ data: File }>({\n entity: this.entity,\n keys\n });\n\n return file ? file.data : null;\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not fetch requested file.\",\n ex.code || \"GET_FILE_ERROR\",\n {\n error: ex,\n where\n }\n );\n }\n }\n\n public async create(params: FileManagerFilesStorageOperationsCreateParams): Promise<File> {\n const { file } = params;\n\n const item: FileItem = {\n PK: this.createPartitionKey(file),\n SK: \"A\",\n GSI1_PK: this.createGSI1PartitionKey(file),\n GSI1_SK: file.id,\n TYPE: \"fm.file\",\n data: file\n };\n try {\n await this.entity.put(item);\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not create a new file in the DynamoDB.\",\n ex.code || \"CREATE_FILE_ERROR\",\n {\n error: ex,\n item\n }\n );\n }\n\n return file;\n }\n\n public async update(params: FileManagerFilesStorageOperationsUpdateParams): Promise<File> {\n try {\n await this.create(params);\n } catch (ex) {\n if (ex.code === \"CREATE_FILE_ERROR\") {\n throw new WebinyError(\n \"Could not update a file in the DynamoDB.\",\n \"UPDATE_FILE_ERROR\",\n ex.data\n );\n }\n throw ex;\n }\n return params.file;\n }\n\n public async delete(params: FileManagerFilesStorageOperationsDeleteParams): Promise<void> {\n const { file } = params;\n const keys = {\n PK: this.createPartitionKey(file),\n SK: \"A\"\n };\n\n try {\n await this.entity.delete(keys);\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not delete file from the DynamoDB.\",\n ex.code || \"DELETE_FILE_ERROR\",\n {\n error: ex,\n file,\n keys\n }\n );\n }\n }\n\n public async createBatch(\n params: FileManagerFilesStorageOperationsCreateBatchParams\n ): Promise<File[]> {\n const { files } = params;\n\n const items = files.map(file => {\n return this.entity.putBatch({\n PK: this.createPartitionKey(file),\n SK: \"A\",\n GSI1_PK: this.createGSI1PartitionKey(file),\n GSI1_SK: file.id,\n TYPE: \"fm.file\",\n data: file\n });\n });\n\n try {\n await batchWriteAll({\n table: this.entity.table,\n items\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not batch insert a list of files.\",\n ex.code || \"BATCH_CREATE_FILES_ERROR\",\n {\n error: ex,\n files\n }\n );\n }\n return files;\n }\n\n public async list(\n params: FileManagerFilesStorageOperationsListParams\n ): Promise<FileManagerFilesStorageOperationsListResponse> {\n const { where: initialWhere, limit, after, sort } = params;\n\n const options = this.createQueryAllOptions({\n where: initialWhere\n });\n const queryAllParams = {\n entity: this.entity,\n partitionKey: this.createGSI1PartitionKey(initialWhere),\n options\n };\n let items = [];\n try {\n const dbItems = await queryAll<{ data: File }>(queryAllParams);\n items = dbItems.map(item => item.data);\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not query for the files.\",\n ex.code || \"FILE_LIST_ERROR\",\n {\n error: ex,\n where: initialWhere,\n limit,\n after,\n sort,\n queryParams: {\n options,\n partitionKey: queryAllParams.partitionKey,\n entity: queryAllParams.entity.name,\n table: queryAllParams.entity.table.name\n }\n }\n );\n }\n\n const where: Partial<FileManagerFilesStorageOperationsListParamsWhere> & {\n contains?: { fields: string[]; value: string };\n } = {\n ...initialWhere\n };\n if (where.search) {\n where.contains = {\n fields: [\"name\", \"tags\"],\n value: where.search\n };\n }\n delete where[\"tenant\"];\n delete where[\"locale\"];\n delete where[\"search\"];\n\n const fields = this.context.plugins.byType<FileDynamoDbFieldPlugin>(\n FileDynamoDbFieldPlugin.type\n );\n /**\n * Filter the read items via the code.\n * It will build the filters out of the where input and transform the values it is using.\n */\n const filteredFiles = filterItems({\n plugins: this.context.plugins,\n items,\n where,\n fields\n });\n\n const totalCount = filteredFiles.length;\n /**\n * Sorting is also done via the code.\n * It takes the sort input and sorts by it via the lodash sortBy method.\n */\n const sortedFiles = sortItems({\n items: filteredFiles,\n sort,\n fields\n });\n\n const start = parseInt(decodeCursor(after) || \"0\") || 0;\n const hasMoreItems = totalCount > start + limit;\n const end = limit > totalCount + start + limit ? undefined : start + limit;\n const files = sortedFiles.slice(start, end);\n /**\n * Although we do not need a cursor here, we will use it as such to keep it standardized.\n * Number is simply encoded.\n */\n const cursor = files.length > 0 ? encodeCursor(start + limit) : null;\n\n const meta = {\n hasMoreItems,\n totalCount: totalCount,\n cursor\n };\n\n return [files, meta];\n }\n\n public async tags(\n params: FileManagerFilesStorageOperationsTagsParams\n ): Promise<FileManagerFilesStorageOperationsTagsResponse> {\n const { where: initialWhere } = params;\n\n const queryAllParams = {\n entity: this.entity,\n partitionKey: this.createGSI1PartitionKey(initialWhere),\n options: {\n index: \"GSI1\",\n gte: \" \",\n reverse: false\n }\n };\n let results = [];\n try {\n const dbItems = await queryAll<{ data: File }>(queryAllParams);\n results = dbItems.map(item => item.data);\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Error in the DynamoDB query.\",\n ex.code || \"DYNAMODB_ERROR\",\n {\n error: ex,\n query: queryAllParams\n }\n );\n }\n\n const fields = this.context.plugins.byType<FileDynamoDbFieldPlugin>(\n FileDynamoDbFieldPlugin.type\n );\n\n const where: Partial<FileManagerFilesStorageOperationsTagsParamsWhere> = {\n ...initialWhere\n };\n\n delete where[\"tenant\"];\n delete where[\"locale\"];\n\n /**\n * Filter the read items via the code.\n * It will build the filters out of the where input and transform the values it is using.\n */\n const filteredItems = filterItems({\n plugins: this.context.plugins,\n items: results,\n where,\n fields\n });\n\n /**\n * Aggregate all the tags from all the filtered items.\n */\n const tagsObject = filteredItems.reduce((collection, item) => {\n const tags = Array.isArray(item.tags) ? item.tags : [];\n for (const tag of tags) {\n if (!collection[tag]) {\n collection[tag] = [];\n }\n collection[tag].push(item.id);\n }\n return collection;\n }, {} as Record<string, string[]>);\n\n const tags: string[] = Object.keys(tagsObject);\n\n const hasMoreItems = false;\n const totalCount = tags.length;\n\n const meta: FileManagerFilesStorageOperationsListResponseMeta = {\n hasMoreItems,\n totalCount,\n cursor: null\n };\n\n return [tags, meta];\n }\n\n private createQueryAllOptions({ where }: QueryAllOptionsParams): DynamoDBToolboxQueryOptions {\n const options: DynamoDBToolboxQueryOptions = { index: \"GSI1\" };\n if (where.id) {\n options.eq = where.id;\n } else {\n options.gt = \" \";\n }\n return options;\n }\n\n private createPartitionKey(params: CreatePartitionKeyParams): string {\n const { tenant, locale, id } = params;\n return `T#${tenant}#L#${locale}#FM#FILE#${id}`;\n }\n private createGSI1PartitionKey(params: CreateGSI1PartitionKeyParams): string {\n const { tenant, locale } = params;\n return `T#${tenant}#L#${locale}#FM#FILES`;\n }\n}\n"],"mappings":";;;;;;;;;AAkBA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AA2BO,MAAMA,sBAAsB,CAA8C;EAK7E,IAAYC,OAAO,GAAuB;IACtC,OAAO,IAAI,CAACC,QAAQ;EACxB;EAEOC,WAAW,CAAC;IAAEF;EAA2B,CAAC,EAAE;IAAA;IAAA;IAAA;IAC/C,IAAI,CAACC,QAAQ,GAAGD,OAAO;IACvB,IAAI,CAACG,KAAK,GAAG,IAAAC,cAAW,EAAC;MACrBJ;IACJ,CAAC,CAAC;IAEF,IAAI,CAACK,MAAM,GAAG,IAAAC,oBAAiB,EAAC;MAC5BN,OAAO;MACPG,KAAK,EAAE,IAAI,CAACA;IAChB,CAAC,CAAC;EACN;EAEA,MAAaI,GAAG,CAACC,MAAkD,EAAwB;IACvF,MAAM;MAAEC;IAAM,CAAC,GAAGD,MAAM;IACxB,MAAME,IAAI,GAAG;MACTC,EAAE,EAAE,IAAI,CAACC,kBAAkB,CAACH,KAAK,CAAC;MAClCI,EAAE,EAAE;IACR,CAAC;IACD,IAAI;MACA,MAAMC,IAAI,GAAG,MAAM,IAAAC,QAAa,EAAiB;QAC7CV,MAAM,EAAE,IAAI,CAACA,MAAM;QACnBK;MACJ,CAAC,CAAC;MAEF,OAAOI,IAAI,GAAGA,IAAI,CAACE,IAAI,GAAG,IAAI;IAClC,CAAC,CAAC,OAAOC,EAAE,EAAE;MACT,MAAM,IAAIC,cAAW,CACjBD,EAAE,CAACE,OAAO,IAAI,iCAAiC,EAC/CF,EAAE,CAACG,IAAI,IAAI,gBAAgB,EAC3B;QACIC,KAAK,EAAEJ,EAAE;QACTR;MACJ,CAAC,CACJ;IACL;EACJ;EAEA,MAAaa,MAAM,CAACd,MAAqD,EAAiB;IACtF,MAAM;MAAEM;IAAK,CAAC,GAAGN,MAAM;IAEvB,MAAMe,IAAc,GAAG;MACnBZ,EAAE,EAAE,IAAI,CAACC,kBAAkB,CAACE,IAAI,CAAC;MACjCD,EAAE,EAAE,GAAG;MACPW,OAAO,EAAE,IAAI,CAACC,sBAAsB,CAACX,IAAI,CAAC;MAC1CY,OAAO,EAAEZ,IAAI,CAACa,EAAE;MAChBC,IAAI,EAAE,SAAS;MACfZ,IAAI,EAAEF;IACV,CAAC;IACD,IAAI;MACA,MAAM,IAAI,CAACT,MAAM,CAACwB,GAAG,CAACN,IAAI,CAAC;IAC/B,CAAC,CAAC,OAAON,EAAE,EAAE;MACT,MAAM,IAAIC,cAAW,CACjBD,EAAE,CAACE,OAAO,IAAI,8CAA8C,EAC5DF,EAAE,CAACG,IAAI,IAAI,mBAAmB,EAC9B;QACIC,KAAK,EAAEJ,EAAE;QACTM;MACJ,CAAC,CACJ;IACL;IAEA,OAAOT,IAAI;EACf;EAEA,MAAagB,MAAM,CAACtB,MAAqD,EAAiB;IACtF,IAAI;MACA,MAAM,IAAI,CAACc,MAAM,CAACd,MAAM,CAAC;IAC7B,CAAC,CAAC,OAAOS,EAAE,EAAE;MACT,IAAIA,EAAE,CAACG,IAAI,KAAK,mBAAmB,EAAE;QACjC,MAAM,IAAIF,cAAW,CACjB,0CAA0C,EAC1C,mBAAmB,EACnBD,EAAE,CAACD,IAAI,CACV;MACL;MACA,MAAMC,EAAE;IACZ;IACA,OAAOT,MAAM,CAACM,IAAI;EACtB;EAEA,MAAaiB,MAAM,CAACvB,MAAqD,EAAiB;IACtF,MAAM;MAAEM;IAAK,CAAC,GAAGN,MAAM;IACvB,MAAME,IAAI,GAAG;MACTC,EAAE,EAAE,IAAI,CAACC,kBAAkB,CAACE,IAAI,CAAC;MACjCD,EAAE,EAAE;IACR,CAAC;IAED,IAAI;MACA,MAAM,IAAI,CAACR,MAAM,CAAC0B,MAAM,CAACrB,IAAI,CAAC;IAClC,CAAC,CAAC,OAAOO,EAAE,EAAE;MACT,MAAM,IAAIC,cAAW,CACjBD,EAAE,CAACE,OAAO,IAAI,0CAA0C,EACxDF,EAAE,CAACG,IAAI,IAAI,mBAAmB,EAC9B;QACIC,KAAK,EAAEJ,EAAE;QACTH,IAAI;QACJJ;MACJ,CAAC,CACJ;IACL;EACJ;EAEA,MAAasB,WAAW,CACpBxB,MAA0D,EAC3C;IACf,MAAM;MAAEyB;IAAM,CAAC,GAAGzB,MAAM;IAExB,MAAM0B,KAAK,GAAGD,KAAK,CAACE,GAAG,CAACrB,IAAI,IAAI;MAC5B,OAAO,IAAI,CAACT,MAAM,CAAC+B,QAAQ,CAAC;QACxBzB,EAAE,EAAE,IAAI,CAACC,kBAAkB,CAACE,IAAI,CAAC;QACjCD,EAAE,EAAE,GAAG;QACPW,OAAO,EAAE,IAAI,CAACC,sBAAsB,CAACX,IAAI,CAAC;QAC1CY,OAAO,EAAEZ,IAAI,CAACa,EAAE;QAChBC,IAAI,EAAE,SAAS;QACfZ,IAAI,EAAEF;MACV,CAAC,CAAC;IACN,CAAC,CAAC;IAEF,IAAI;MACA,MAAM,IAAAuB,yBAAa,EAAC;QAChBlC,KAAK,EAAE,IAAI,CAACE,MAAM,CAACF,KAAK;QACxB+B;MACJ,CAAC,CAAC;IACN,CAAC,CAAC,OAAOjB,EAAE,EAAE;MACT,MAAM,IAAIC,cAAW,CACjBD,EAAE,CAACE,OAAO,IAAI,yCAAyC,EACvDF,EAAE,CAACG,IAAI,IAAI,0BAA0B,EACrC;QACIC,KAAK,EAAEJ,EAAE;QACTgB;MACJ,CAAC,CACJ;IACL;IACA,OAAOA,KAAK;EAChB;EAEA,MAAaK,IAAI,CACb9B,MAAmD,EACG;IACtD,MAAM;MAAEC,KAAK,EAAE8B,YAAY;MAAEC,KAAK;MAAEC,KAAK;MAAEC;IAAK,CAAC,GAAGlC,MAAM;IAE1D,MAAMmC,OAAO,GAAG,IAAI,CAACC,qBAAqB,CAAC;MACvCnC,KAAK,EAAE8B;IACX,CAAC,CAAC;IACF,MAAMM,cAAc,GAAG;MACnBxC,MAAM,EAAE,IAAI,CAACA,MAAM;MACnByC,YAAY,EAAE,IAAI,CAACrB,sBAAsB,CAACc,YAAY,CAAC;MACvDI;IACJ,CAAC;IACD,IAAIT,KAAK,GAAG,EAAE;IACd,IAAI;MACA,MAAMa,OAAO,GAAG,MAAM,IAAAC,eAAQ,EAAiBH,cAAc,CAAC;MAC9DX,KAAK,GAAGa,OAAO,CAACZ,GAAG,CAACZ,IAAI,IAAIA,IAAI,CAACP,IAAI,CAAC;IAC1C,CAAC,CAAC,OAAOC,EAAE,EAAE;MACT,MAAM,IAAIC,cAAW,CACjBD,EAAE,CAACE,OAAO,IAAI,gCAAgC,EAC9CF,EAAE,CAACG,IAAI,IAAI,iBAAiB,EAC5B;QACIC,KAAK,EAAEJ,EAAE;QACTR,KAAK,EAAE8B,YAAY;QACnBC,KAAK;QACLC,KAAK;QACLC,IAAI;QACJO,WAAW,EAAE;UACTN,OAAO;UACPG,YAAY,EAAED,cAAc,CAACC,YAAY;UACzCzC,MAAM,EAAEwC,cAAc,CAACxC,MAAM,CAAC6C,IAAI;UAClC/C,KAAK,EAAE0C,cAAc,CAACxC,MAAM,CAACF,KAAK,CAAC+C;QACvC;MACJ,CAAC,CACJ;IACL;IAEA,MAAMzC,KAEL,mCACM8B,YAAY,CAClB;IACD,IAAI9B,KAAK,CAAC0C,MAAM,EAAE;MACd1C,KAAK,CAAC2C,QAAQ,GAAG;QACbC,MAAM,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC;QACxBC,KAAK,EAAE7C,KAAK,CAAC0C;MACjB,CAAC;IACL;IACA,OAAO1C,KAAK,CAAC,QAAQ,CAAC;IACtB,OAAOA,KAAK,CAAC,QAAQ,CAAC;IACtB,OAAOA,KAAK,CAAC,QAAQ,CAAC;IAEtB,MAAM4C,MAAM,GAAG,IAAI,CAACrD,OAAO,CAACuD,OAAO,CAACC,MAAM,CACtCC,gDAAuB,CAACC,IAAI,CAC/B;IACD;AACR;AACA;AACA;IACQ,MAAMC,aAAa,GAAG,IAAAC,mBAAW,EAAC;MAC9BL,OAAO,EAAE,IAAI,CAACvD,OAAO,CAACuD,OAAO;MAC7BrB,KAAK;MACLzB,KAAK;MACL4C;IACJ,CAAC,CAAC;IAEF,MAAMQ,UAAU,GAAGF,aAAa,CAACG,MAAM;IACvC;AACR;AACA;AACA;IACQ,MAAMC,WAAW,GAAG,IAAAC,eAAS,EAAC;MAC1B9B,KAAK,EAAEyB,aAAa;MACpBjB,IAAI;MACJW;IACJ,CAAC,CAAC;IAEF,MAAMY,KAAK,GAAGC,QAAQ,CAAC,IAAAC,oBAAY,EAAC1B,KAAK,CAAC,IAAI,GAAG,CAAC,IAAI,CAAC;IACvD,MAAM2B,YAAY,GAAGP,UAAU,GAAGI,KAAK,GAAGzB,KAAK;IAC/C,MAAM6B,GAAG,GAAG7B,KAAK,GAAGqB,UAAU,GAAGI,KAAK,GAAGzB,KAAK,GAAG8B,SAAS,GAAGL,KAAK,GAAGzB,KAAK;IAC1E,MAAMP,KAAK,GAAG8B,WAAW,CAACQ,KAAK,CAACN,KAAK,EAAEI,GAAG,CAAC;IAC3C;AACR;AACA;AACA;IACQ,MAAMG,MAAM,GAAGvC,KAAK,CAAC6B,MAAM,GAAG,CAAC,GAAG,IAAAW,oBAAY,EAACR,KAAK,GAAGzB,KAAK,CAAC,GAAG,IAAI;IAEpE,MAAMkC,IAAI,GAAG;MACTN,YAAY;MACZP,UAAU,EAAEA,UAAU;MACtBW;IACJ,CAAC;IAED,OAAO,CAACvC,KAAK,EAAEyC,IAAI,CAAC;EACxB;EAEA,MAAaC,IAAI,CACbnE,MAAmD,EACG;IACtD,MAAM;MAAEC,KAAK,EAAE8B;IAAa,CAAC,GAAG/B,MAAM;IAEtC,MAAMqC,cAAc,GAAG;MACnBxC,MAAM,EAAE,IAAI,CAACA,MAAM;MACnByC,YAAY,EAAE,IAAI,CAACrB,sBAAsB,CAACc,YAAY,CAAC;MACvDI,OAAO,EAAE;QACLiC,KAAK,EAAE,MAAM;QACbC,GAAG,EAAE,GAAG;QACRC,OAAO,EAAE;MACb;IACJ,CAAC;IACD,IAAIC,OAAO,GAAG,EAAE;IAChB,IAAI;MACA,MAAMhC,OAAO,GAAG,MAAM,IAAAC,eAAQ,EAAiBH,cAAc,CAAC;MAC9DkC,OAAO,GAAGhC,OAAO,CAACZ,GAAG,CAACZ,IAAI,IAAIA,IAAI,CAACP,IAAI,CAAC;IAC5C,CAAC,CAAC,OAAOC,EAAE,EAAE;MACT,MAAM,IAAIC,cAAW,CACjBD,EAAE,CAACE,OAAO,IAAI,8BAA8B,EAC5CF,EAAE,CAACG,IAAI,IAAI,gBAAgB,EAC3B;QACIC,KAAK,EAAEJ,EAAE;QACT+D,KAAK,EAAEnC;MACX,CAAC,CACJ;IACL;IAEA,MAAMQ,MAAM,GAAG,IAAI,CAACrD,OAAO,CAACuD,OAAO,CAACC,MAAM,CACtCC,gDAAuB,CAACC,IAAI,CAC/B;IAED,MAAMjD,KAAgE,mCAC/D8B,YAAY,CAClB;IAED,OAAO9B,KAAK,CAAC,QAAQ,CAAC;IACtB,OAAOA,KAAK,CAAC,QAAQ,CAAC;;IAEtB;AACR;AACA;AACA;IACQ,MAAMwE,aAAa,GAAG,IAAArB,mBAAW,EAAC;MAC9BL,OAAO,EAAE,IAAI,CAACvD,OAAO,CAACuD,OAAO;MAC7BrB,KAAK,EAAE6C,OAAO;MACdtE,KAAK;MACL4C;IACJ,CAAC,CAAC;;IAEF;AACR;AACA;IACQ,MAAM6B,UAAU,GAAGD,aAAa,CAACE,MAAM,CAAC,CAACC,UAAU,EAAE7D,IAAI,KAAK;MAC1D,MAAMoD,IAAI,GAAGU,KAAK,CAACC,OAAO,CAAC/D,IAAI,CAACoD,IAAI,CAAC,GAAGpD,IAAI,CAACoD,IAAI,GAAG,EAAE;MACtD,KAAK,MAAMY,GAAG,IAAIZ,IAAI,EAAE;QACpB,IAAI,CAACS,UAAU,CAACG,GAAG,CAAC,EAAE;UAClBH,UAAU,CAACG,GAAG,CAAC,GAAG,EAAE;QACxB;QACAH,UAAU,CAACG,GAAG,CAAC,CAACC,IAAI,CAACjE,IAAI,CAACI,EAAE,CAAC;MACjC;MACA,OAAOyD,UAAU;IACrB,CAAC,EAAE,CAAC,CAAC,CAA6B;IAElC,MAAMT,IAAc,GAAGc,MAAM,CAAC/E,IAAI,CAACwE,UAAU,CAAC;IAE9C,MAAMd,YAAY,GAAG,KAAK;IAC1B,MAAMP,UAAU,GAAGc,IAAI,CAACb,MAAM;IAE9B,MAAMY,IAAuD,GAAG;MAC5DN,YAAY;MACZP,UAAU;MACVW,MAAM,EAAE;IACZ,CAAC;IAED,OAAO,CAACG,IAAI,EAAED,IAAI,CAAC;EACvB;EAEQ9B,qBAAqB,CAAC;IAAEnC;EAA6B,CAAC,EAA+B;IACzF,MAAMkC,OAAoC,GAAG;MAAEiC,KAAK,EAAE;IAAO,CAAC;IAC9D,IAAInE,KAAK,CAACkB,EAAE,EAAE;MACVgB,OAAO,CAAC+C,EAAE,GAAGjF,KAAK,CAACkB,EAAE;IACzB,CAAC,MAAM;MACHgB,OAAO,CAACgD,EAAE,GAAG,GAAG;IACpB;IACA,OAAOhD,OAAO;EAClB;EAEQ/B,kBAAkB,CAACJ,MAAgC,EAAU;IACjE,MAAM;MAAEoF,MAAM;MAAEC,MAAM;MAAElE;IAAG,CAAC,GAAGnB,MAAM;IACrC,OAAQ,KAAIoF,MAAO,MAAKC,MAAO,YAAWlE,EAAG,EAAC;EAClD;EACQF,sBAAsB,CAACjB,MAAoC,EAAU;IACzE,MAAM;MAAEoF,MAAM;MAAEC;IAAO,CAAC,GAAGrF,MAAM;IACjC,OAAQ,KAAIoF,MAAO,MAAKC,MAAO,WAAU;EAC7C;AACJ;AAAC"}
1
+ {"version":3,"names":["FilesStorageOperations","context","_context","constructor","table","defineTable","fileEntity","createStandardEntity","aliasEntity","get","params","where","keys","PK","createPartitionKey","SK","file","getEntityItem","entity","data","ex","WebinyError","message","code","error","create","items","item","GSI1_PK","createGSI1PartitionKey","GSI1_SK","id","TYPE","push","putBatch","createNewAliasesRecords","forEach","alias","batchWriteAll","update","existingAliases","queryAll","partitionKey","tenant","locale","options","beginsWith","newAliases","map","aliases","some","deleteBatch","delete","aliasItems","createBatch","files","list","initialWhere","limit","after","sort","createQueryAllOptions","queryAllParams","dbItems","queryParams","name","search","contains","fields","value","plugins","byType","FileDynamoDbFieldPlugin","type","filteredFiles","filterItems","totalCount","length","sortedFiles","sortItems","start","parseInt","decodeCursor","hasMoreItems","end","undefined","slice","cursor","encodeCursor","meta","tags","index","gte","reverse","results","query","filteredItems","tagsObject","reduce","collection","Array","isArray","tag","Object","eq","gt","find","fileId","key","filter","Boolean"],"sources":["FilesStorageOperations.ts"],"sourcesContent":["import {\n File,\n FileAlias,\n FileManagerContext,\n FileManagerFilesStorageOperations,\n FileManagerFilesStorageOperationsCreateBatchParams,\n FileManagerFilesStorageOperationsCreateParams,\n FileManagerFilesStorageOperationsDeleteParams,\n FileManagerFilesStorageOperationsGetParams,\n FileManagerFilesStorageOperationsListParams,\n FileManagerFilesStorageOperationsListParamsWhere,\n FileManagerFilesStorageOperationsListResponse,\n FileManagerFilesStorageOperationsListResponseMeta,\n FileManagerFilesStorageOperationsTagsParams,\n FileManagerFilesStorageOperationsTagsParamsWhere,\n FileManagerFilesStorageOperationsTagsResponse,\n FileManagerFilesStorageOperationsUpdateParams\n} from \"@webiny/api-file-manager/types\";\nimport { Entity, Table } from \"dynamodb-toolbox\";\nimport WebinyError from \"@webiny/error\";\nimport defineTable from \"~/definitions/table\";\nimport { queryOptions as DynamoDBToolboxQueryOptions } from \"dynamodb-toolbox/dist/classes/Table\";\nimport { queryAll } from \"@webiny/db-dynamodb/utils/query\";\nimport { decodeCursor, encodeCursor } from \"@webiny/db-dynamodb/utils/cursor\";\nimport { filterItems } from \"@webiny/db-dynamodb/utils/filter\";\nimport { sortItems } from \"@webiny/db-dynamodb/utils/sort\";\nimport { FileDynamoDbFieldPlugin } from \"~/plugins/FileDynamoDbFieldPlugin\";\nimport { batchWriteAll } from \"@webiny/db-dynamodb/utils/batchWrite\";\nimport { get as getEntityItem } from \"@webiny/db-dynamodb/utils/get\";\nimport { createStandardEntity, DbItem } from \"@webiny/db-dynamodb\";\n\ntype FileItem = DbItem<File>;\ntype FileAliasItem = DbItem<FileAlias>;\n\ninterface ConstructorParams {\n context: FileManagerContext;\n}\n\ninterface QueryAllOptionsParams {\n where: FileManagerFilesStorageOperationsListParamsWhere;\n}\n\ninterface CreatePartitionKeyParams {\n locale: string;\n tenant: string;\n id: string;\n}\n\ntype CreateGSI1PartitionKeyParams = Pick<CreatePartitionKeyParams, \"tenant\" | \"locale\">;\n\nexport class FilesStorageOperations implements FileManagerFilesStorageOperations {\n private readonly _context: FileManagerContext;\n private readonly table: Table;\n private readonly fileEntity: Entity<any>;\n private readonly aliasEntity: Entity<any>;\n\n private get context(): FileManagerContext {\n return this._context;\n }\n\n public constructor({ context }: ConstructorParams) {\n this._context = context;\n this.table = defineTable({\n context\n });\n\n this.fileEntity = createStandardEntity(this.table, \"FM.File\");\n this.aliasEntity = createStandardEntity(this.table, \"FM.FileAlias\");\n }\n\n public async get(params: FileManagerFilesStorageOperationsGetParams): Promise<File | null> {\n const { where } = params;\n const keys = {\n PK: this.createPartitionKey(where),\n SK: \"A\"\n };\n try {\n const file = await getEntityItem<{ data: File }>({\n entity: this.fileEntity,\n keys\n });\n\n return file ? file.data : null;\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not fetch requested file.\",\n ex.code || \"GET_FILE_ERROR\",\n {\n error: ex,\n where\n }\n );\n }\n }\n\n public async create(params: FileManagerFilesStorageOperationsCreateParams): Promise<File> {\n const { file } = params;\n\n const items: any[] = [];\n\n const item: FileItem = {\n PK: this.createPartitionKey(file),\n SK: \"A\",\n GSI1_PK: this.createGSI1PartitionKey(file),\n GSI1_SK: file.id,\n TYPE: \"fm.file\",\n data: file\n };\n\n items.push(this.fileEntity.putBatch(item));\n\n this.createNewAliasesRecords(file).forEach(alias => {\n items.push(this.aliasEntity.putBatch(alias));\n });\n\n try {\n await batchWriteAll({\n table: this.table,\n items\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not create a new file in the DynamoDB.\",\n ex.code || \"CREATE_FILE_ERROR\",\n {\n error: ex,\n items\n }\n );\n }\n\n return file;\n }\n\n public async update(params: FileManagerFilesStorageOperationsUpdateParams): Promise<File> {\n const { file } = params;\n\n const items: any[] = [];\n\n const item: FileItem = {\n PK: this.createPartitionKey(file),\n SK: \"A\",\n GSI1_PK: this.createGSI1PartitionKey(file),\n GSI1_SK: file.id,\n TYPE: \"fm.file\",\n data: file\n };\n\n items.push(this.fileEntity.putBatch(item));\n\n const existingAliases = await queryAll<FileAliasItem>({\n entity: this.aliasEntity,\n partitionKey: `T#${file.tenant}#L#${file.locale}#FM#FILE#${file.id}`,\n options: {\n beginsWith: `ALIAS#`\n }\n });\n\n const newAliases = this.createNewAliasesRecords(\n file,\n existingAliases.map(alias => alias.data)\n );\n\n newAliases.forEach(alias => {\n items.push(this.aliasEntity.putBatch(alias));\n });\n\n // Delete aliases that are in the DB but are NOT in the file.\n for (const { data } of existingAliases) {\n if (!file.aliases.some(alias => data.alias === alias)) {\n items.push(\n this.aliasEntity.deleteBatch({\n PK: this.createPartitionKey(file),\n SK: `ALIAS#${data.alias}`\n })\n );\n }\n }\n\n try {\n await batchWriteAll({\n table: this.table,\n items\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not update a file in the DynamoDB.\",\n ex.code || \"UPDATE_FILE_ERROR\",\n {\n items\n }\n );\n }\n return params.file;\n }\n\n public async delete(params: FileManagerFilesStorageOperationsDeleteParams): Promise<void> {\n const { file } = params;\n const keys = {\n PK: this.createPartitionKey(file),\n SK: \"A\"\n };\n\n const aliasItems = await queryAll({\n entity: this.aliasEntity,\n partitionKey: keys.PK,\n options: {\n beginsWith: \"ALIAS#\"\n }\n });\n\n // All items to delete in batch\n const items: any[] = [];\n\n try {\n // Delete the main file item\n items.push(this.fileEntity.deleteBatch(keys));\n\n // Delete file alias items\n aliasItems.forEach(item => {\n items.push(\n this.aliasEntity.deleteBatch({\n PK: item.PK,\n SK: item.SK\n })\n );\n });\n\n await batchWriteAll({ table: this.table, items });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not delete file from the DynamoDB.\",\n ex.code || \"DELETE_FILE_ERROR\",\n {\n error: ex,\n file,\n keys,\n aliasItems\n }\n );\n }\n }\n\n public async createBatch(\n params: FileManagerFilesStorageOperationsCreateBatchParams\n ): Promise<File[]> {\n const { files } = params;\n\n // Items to be written in batch\n const items: any[] = [];\n\n files.forEach(file => {\n items.push(\n this.fileEntity.putBatch({\n PK: this.createPartitionKey(file),\n SK: \"A\",\n GSI1_PK: this.createGSI1PartitionKey(file),\n GSI1_SK: file.id,\n TYPE: \"fm.file\",\n data: file\n })\n );\n\n this.createNewAliasesRecords(file).forEach(alias => {\n items.push(this.aliasEntity.putBatch(alias));\n });\n });\n\n try {\n await batchWriteAll({\n table: this.table,\n items\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not batch insert a list of files.\",\n ex.code || \"BATCH_CREATE_FILES_ERROR\",\n {\n error: ex,\n files\n }\n );\n }\n return files;\n }\n\n public async list(\n params: FileManagerFilesStorageOperationsListParams\n ): Promise<FileManagerFilesStorageOperationsListResponse> {\n const { where: initialWhere, limit, after, sort } = params;\n\n const options = this.createQueryAllOptions({\n where: initialWhere\n });\n const queryAllParams = {\n entity: this.fileEntity,\n partitionKey: this.createGSI1PartitionKey(initialWhere),\n options\n };\n let items = [];\n try {\n const dbItems = await queryAll<{ data: File }>(queryAllParams);\n items = dbItems.map(item => item.data);\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not query for the files.\",\n ex.code || \"FILE_LIST_ERROR\",\n {\n error: ex,\n where: initialWhere,\n limit,\n after,\n sort,\n queryParams: {\n options,\n partitionKey: queryAllParams.partitionKey,\n entity: queryAllParams.entity.name,\n table: queryAllParams.entity.table.name\n }\n }\n );\n }\n\n const where: Partial<FileManagerFilesStorageOperationsListParamsWhere> & {\n contains?: { fields: string[]; value: string };\n } = {\n ...initialWhere\n };\n if (where.search) {\n where.contains = {\n fields: [\"name\", \"tags\"],\n value: where.search\n };\n }\n delete where[\"tenant\"];\n delete where[\"locale\"];\n delete where[\"search\"];\n\n const fields = this.context.plugins.byType<FileDynamoDbFieldPlugin>(\n FileDynamoDbFieldPlugin.type\n );\n /**\n * Filter the read items via the code.\n * It will build the filters out of the where input and transform the values it is using.\n */\n const filteredFiles = filterItems({\n plugins: this.context.plugins,\n items,\n where,\n fields\n });\n\n const totalCount = filteredFiles.length;\n /**\n * Sorting is also done via the code.\n * It takes the sort input and sorts by it via the lodash sortBy method.\n */\n const sortedFiles = sortItems({\n items: filteredFiles,\n sort,\n fields\n });\n\n const start = parseInt(decodeCursor(after) || \"0\") || 0;\n const hasMoreItems = totalCount > start + limit;\n const end = limit > totalCount + start + limit ? undefined : start + limit;\n const files = sortedFiles.slice(start, end);\n /**\n * Although we do not need a cursor here, we will use it as such to keep it standardized.\n * Number is simply encoded.\n */\n const cursor = files.length > 0 ? encodeCursor(start + limit) : null;\n\n const meta = {\n hasMoreItems,\n totalCount: totalCount,\n cursor\n };\n\n return [files, meta];\n }\n\n public async tags(\n params: FileManagerFilesStorageOperationsTagsParams\n ): Promise<FileManagerFilesStorageOperationsTagsResponse> {\n const { where: initialWhere } = params;\n\n const queryAllParams = {\n entity: this.fileEntity,\n partitionKey: this.createGSI1PartitionKey(initialWhere),\n options: {\n index: \"GSI1\",\n gte: \" \",\n reverse: false\n }\n };\n let results = [];\n try {\n const dbItems = await queryAll<{ data: File }>(queryAllParams);\n results = dbItems.map(item => item.data);\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Error in the DynamoDB query.\",\n ex.code || \"DYNAMODB_ERROR\",\n {\n error: ex,\n query: queryAllParams\n }\n );\n }\n\n const fields = this.context.plugins.byType<FileDynamoDbFieldPlugin>(\n FileDynamoDbFieldPlugin.type\n );\n\n const where: Partial<FileManagerFilesStorageOperationsTagsParamsWhere> = {\n ...initialWhere\n };\n\n delete where[\"tenant\"];\n delete where[\"locale\"];\n\n /**\n * Filter the read items via the code.\n * It will build the filters out of the where input and transform the values it is using.\n */\n const filteredItems = filterItems({\n plugins: this.context.plugins,\n items: results,\n where,\n fields\n });\n\n /**\n * Aggregate all the tags from all the filtered items.\n */\n const tagsObject = filteredItems.reduce((collection, item) => {\n const tags = Array.isArray(item.tags) ? item.tags : [];\n for (const tag of tags) {\n if (!collection[tag]) {\n collection[tag] = [];\n }\n collection[tag].push(item.id);\n }\n return collection;\n }, {} as Record<string, string[]>);\n\n const tags: string[] = Object.keys(tagsObject);\n\n const hasMoreItems = false;\n const totalCount = tags.length;\n\n const meta: FileManagerFilesStorageOperationsListResponseMeta = {\n hasMoreItems,\n totalCount,\n cursor: null\n };\n\n return [tags, meta];\n }\n\n private createQueryAllOptions({ where }: QueryAllOptionsParams): DynamoDBToolboxQueryOptions {\n const options: DynamoDBToolboxQueryOptions = { index: \"GSI1\" };\n if (where.id) {\n options.eq = where.id;\n } else {\n options.gt = \" \";\n }\n return options;\n }\n\n private createPartitionKey(params: CreatePartitionKeyParams): string {\n const { tenant, locale, id } = params;\n return `T#${tenant}#L#${locale}#FM#FILE#${id}`;\n }\n private createGSI1PartitionKey(params: CreateGSI1PartitionKeyParams): string {\n const { tenant, locale } = params;\n return `T#${tenant}#L#${locale}#FM#FILES`;\n }\n\n private createNewAliasesRecords(\n file: File,\n existingAliases: FileAlias[] = []\n ): FileAliasItem[] {\n return (file.aliases || [])\n .map(alias => {\n // If alias is already in the DB, skip it.\n if (existingAliases.find(item => item.alias === alias)) {\n return null;\n }\n\n // Add a new alias.\n return {\n PK: this.createPartitionKey(file),\n SK: `ALIAS#${alias}`,\n GSI1_PK: `T#${file.tenant}#FM#FILE_ALIASES`,\n GSI1_SK: alias,\n TYPE: \"fm.fileAlias\",\n data: {\n alias,\n tenant: file.tenant,\n locale: file.locale,\n fileId: file.id,\n key: file.key\n }\n };\n })\n .filter(Boolean) as FileAliasItem[];\n }\n}\n"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webiny/api-file-manager-ddb",
3
- "version": "0.0.0-unstable.e3f4727c56",
3
+ "version": "0.0.0-unstable.ecd8734205",
4
4
  "main": "index.js",
5
5
  "keywords": [
6
6
  "@webiny/api-file-manager",
@@ -22,10 +22,10 @@
22
22
  "license": "MIT",
23
23
  "dependencies": {
24
24
  "@babel/runtime": "7.20.13",
25
- "@webiny/api-file-manager": "0.0.0-unstable.e3f4727c56",
26
- "@webiny/db-dynamodb": "0.0.0-unstable.e3f4727c56",
27
- "@webiny/error": "0.0.0-unstable.e3f4727c56",
28
- "@webiny/project-utils": "0.0.0-unstable.e3f4727c56",
25
+ "@webiny/api-file-manager": "0.0.0-unstable.ecd8734205",
26
+ "@webiny/db-dynamodb": "0.0.0-unstable.ecd8734205",
27
+ "@webiny/error": "0.0.0-unstable.ecd8734205",
28
+ "@webiny/project-utils": "0.0.0-unstable.ecd8734205",
29
29
  "aws-sdk": "2.1310.0",
30
30
  "dynamodb-toolbox": "0.3.5"
31
31
  },
@@ -36,7 +36,7 @@
36
36
  "@babel/plugin-transform-runtime": "^7.16.4",
37
37
  "@babel/preset-env": "^7.19.4",
38
38
  "@babel/preset-typescript": "^7.18.6",
39
- "@webiny/cli": "^0.0.0-unstable.e3f4727c56",
39
+ "@webiny/cli": "^0.0.0-unstable.ecd8734205",
40
40
  "jest": "^28.1.0",
41
41
  "jest-dynalite": "^3.2.0",
42
42
  "jsonpack": "^1.1.5",
@@ -63,5 +63,5 @@
63
63
  ]
64
64
  }
65
65
  },
66
- "gitHead": "e3f4727c567484dc53e1efceacfb37dbacd7f4de"
66
+ "gitHead": "ecd8734205e0e21ae04076c28ff9806dad07a730"
67
67
  }