@webiny/api-file-manager-ddb 0.0.0-mt-3 → 0.0.0-unstable.06b2ede40f
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/index.d.ts +9 -5
- package/index.js +52 -10
- package/index.js.map +1 -0
- package/operations/AliasesStorageOperations.d.ts +16 -0
- package/operations/AliasesStorageOperations.js +103 -0
- package/operations/AliasesStorageOperations.js.map +1 -0
- package/operations/FilesStorageOperations.d.ts +15 -0
- package/operations/FilesStorageOperations.js +37 -0
- package/operations/FilesStorageOperations.js.map +1 -0
- package/operations/SettingsStorageOperations.d.ts +14 -0
- package/operations/SettingsStorageOperations.js +101 -0
- package/operations/SettingsStorageOperations.js.map +1 -0
- package/operations/SystemStorageOperations.d.ts +13 -0
- package/operations/SystemStorageOperations.js +93 -0
- package/operations/SystemStorageOperations.js.map +1 -0
- package/package.json +17 -27
- package/plugins/SettingsAttributePlugin.d.ts +3 -2
- package/plugins/SettingsAttributePlugin.js +6 -15
- package/plugins/SettingsAttributePlugin.js.map +1 -0
- package/plugins/SystemAttributePlugin.d.ts +3 -2
- package/plugins/SystemAttributePlugin.js +5 -14
- package/plugins/SystemAttributePlugin.js.map +1 -0
- package/plugins/index.d.ts +2 -0
- package/plugins/index.js +29 -0
- package/plugins/index.js.map +1 -0
- package/definitions/filesEntity.d.ts +0 -7
- package/definitions/filesEntity.js +0 -80
- package/definitions/settingsEntity.d.ts +0 -7
- package/definitions/settingsEntity.js +0 -56
- package/definitions/systemEntity.d.ts +0 -7
- package/definitions/systemEntity.js +0 -44
- package/definitions/table.d.ts +0 -6
- package/definitions/table.js +0 -28
- package/operations/configurations.d.ts +0 -14
- package/operations/configurations.js +0 -22
- package/operations/files/FilesStorageOperations.d.ts +0 -22
- package/operations/files/FilesStorageOperations.js +0 -345
- package/operations/files/fields.d.ts +0 -3
- package/operations/files/fields.js +0 -42
- package/operations/files/index.d.ts +0 -6
- package/operations/files/index.js +0 -35
- package/operations/settings/SettingsStorageOperations.d.ts +0 -15
- package/operations/settings/SettingsStorageOperations.js +0 -120
- package/operations/settings/index.d.ts +0 -8
- package/operations/settings/index.js +0 -32
- package/operations/system/SystemStorageOperations.d.ts +0 -14
- package/operations/system/SystemStorageOperations.js +0 -108
- package/operations/system/index.d.ts +0 -8
- package/operations/system/index.js +0 -32
- package/operations/utils.d.ts +0 -4
- package/operations/utils.js +0 -36
- package/plugins/FileAttributePlugin.d.ts +0 -4
- package/plugins/FileAttributePlugin.js +0 -27
- package/plugins/FileDynamoDbFieldPlugin.d.ts +0 -4
- package/plugins/FileDynamoDbFieldPlugin.js +0 -17
- package/types.d.ts +0 -0
- package/types.js +0 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import type { DynamoDBDocument } from "@webiny/aws-sdk/client-dynamodb";
|
|
2
|
+
import type { PluginCollection } from "@webiny/plugins/types";
|
|
3
|
+
import type { FileManagerStorageOperations } from "@webiny/api-file-manager/types";
|
|
4
|
+
export interface StorageOperationsConfig {
|
|
5
|
+
documentClient: DynamoDBDocument;
|
|
6
|
+
plugins?: PluginCollection;
|
|
7
|
+
}
|
|
8
|
+
export * from "./plugins";
|
|
9
|
+
export declare const createFileManagerStorageOperations: ({ documentClient, plugins: userPlugins }: StorageOperationsConfig) => FileManagerStorageOperations;
|
package/index.js
CHANGED
|
@@ -1,16 +1,58 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
3
4
|
Object.defineProperty(exports, "__esModule", {
|
|
4
5
|
value: true
|
|
5
6
|
});
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
var
|
|
11
|
-
|
|
12
|
-
var
|
|
13
|
-
|
|
14
|
-
var
|
|
7
|
+
var _exportNames = {
|
|
8
|
+
createFileManagerStorageOperations: true
|
|
9
|
+
};
|
|
10
|
+
exports.createFileManagerStorageOperations = void 0;
|
|
11
|
+
var _plugins = _interopRequireDefault(require("@webiny/db-dynamodb/plugins"));
|
|
12
|
+
var _plugins2 = require("@webiny/plugins");
|
|
13
|
+
var _FilesStorageOperations = require("./operations/FilesStorageOperations");
|
|
14
|
+
var _SettingsStorageOperations = require("./operations/SettingsStorageOperations");
|
|
15
|
+
var _SystemStorageOperations = require("./operations/SystemStorageOperations");
|
|
16
|
+
var _plugins3 = require("./plugins");
|
|
17
|
+
Object.keys(_plugins3).forEach(function (key) {
|
|
18
|
+
if (key === "default" || key === "__esModule") return;
|
|
19
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
20
|
+
if (key in exports && exports[key] === _plugins3[key]) return;
|
|
21
|
+
Object.defineProperty(exports, key, {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function () {
|
|
24
|
+
return _plugins3[key];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
});
|
|
28
|
+
var _AliasesStorageOperations = require("./operations/AliasesStorageOperations");
|
|
29
|
+
var _api = require("@webiny/api");
|
|
30
|
+
const createFileManagerStorageOperations = ({
|
|
31
|
+
documentClient,
|
|
32
|
+
plugins: userPlugins
|
|
33
|
+
}) => {
|
|
34
|
+
const plugins = new _plugins2.PluginsContainer([(0, _plugins.default)(),
|
|
35
|
+
// User plugins
|
|
36
|
+
...(userPlugins || [])]);
|
|
37
|
+
return {
|
|
38
|
+
beforeInit: async context => {
|
|
39
|
+
const types = [_plugins3.SettingsAttributePlugin.type, _plugins3.SystemAttributePlugin.type, _api.CompressorPlugin.type];
|
|
40
|
+
for (const type of types) {
|
|
41
|
+
plugins.mergeByType(context.plugins, type);
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
files: new _FilesStorageOperations.FilesStorageOperations(),
|
|
45
|
+
aliases: new _AliasesStorageOperations.AliasesStorageOperations({
|
|
46
|
+
documentClient
|
|
47
|
+
}),
|
|
48
|
+
settings: new _SettingsStorageOperations.SettingsStorageOperations({
|
|
49
|
+
documentClient
|
|
50
|
+
}),
|
|
51
|
+
system: new _SystemStorageOperations.SystemStorageOperations({
|
|
52
|
+
documentClient
|
|
53
|
+
})
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
exports.createFileManagerStorageOperations = createFileManagerStorageOperations;
|
|
15
57
|
|
|
16
|
-
|
|
58
|
+
//# sourceMappingURL=index.js.map
|
package/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_plugins","_interopRequireDefault","require","_plugins2","_FilesStorageOperations","_SettingsStorageOperations","_SystemStorageOperations","_plugins3","Object","keys","forEach","key","prototype","hasOwnProperty","call","_exportNames","exports","defineProperty","enumerable","get","_AliasesStorageOperations","_api","createFileManagerStorageOperations","documentClient","plugins","userPlugins","PluginsContainer","ddbPlugins","beforeInit","context","types","SettingsAttributePlugin","type","SystemAttributePlugin","CompressorPlugin","mergeByType","files","FilesStorageOperations","aliases","AliasesStorageOperations","settings","SettingsStorageOperations","system","SystemStorageOperations"],"sources":["index.ts"],"sourcesContent":["import type { DynamoDBDocument } from \"@webiny/aws-sdk/client-dynamodb\";\nimport ddbPlugins from \"@webiny/db-dynamodb/plugins\";\nimport { PluginsContainer } from \"@webiny/plugins\";\nimport type { PluginCollection } from \"@webiny/plugins/types\";\nimport type { FileManagerStorageOperations } from \"@webiny/api-file-manager/types\";\nimport { FilesStorageOperations } from \"~/operations/FilesStorageOperations\";\nimport { SettingsStorageOperations } from \"~/operations/SettingsStorageOperations\";\nimport { SystemStorageOperations } from \"~/operations/SystemStorageOperations\";\nimport { SettingsAttributePlugin, SystemAttributePlugin } from \"./plugins\";\nimport { AliasesStorageOperations } from \"~/operations/AliasesStorageOperations\";\nimport { CompressorPlugin } from \"@webiny/api\";\n\nexport interface StorageOperationsConfig {\n documentClient: DynamoDBDocument;\n plugins?: PluginCollection;\n}\n\nexport * from \"./plugins\";\n\nexport const createFileManagerStorageOperations = ({\n documentClient,\n plugins: userPlugins\n}: StorageOperationsConfig): FileManagerStorageOperations => {\n const plugins = new PluginsContainer([\n ddbPlugins(),\n // User plugins\n ...(userPlugins || [])\n ]);\n\n return {\n beforeInit: async context => {\n const types: string[] = [\n SettingsAttributePlugin.type,\n SystemAttributePlugin.type,\n CompressorPlugin.type\n ];\n for (const type of types) {\n plugins.mergeByType(context.plugins, type);\n }\n },\n files: new FilesStorageOperations(),\n aliases: new AliasesStorageOperations({ documentClient }),\n settings: new SettingsStorageOperations({ documentClient }),\n system: new SystemStorageOperations({ documentClient })\n };\n};\n"],"mappings":";;;;;;;;;;AACA,IAAAA,QAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,SAAA,GAAAD,OAAA;AAGA,IAAAE,uBAAA,GAAAF,OAAA;AACA,IAAAG,0BAAA,GAAAH,OAAA;AACA,IAAAI,wBAAA,GAAAJ,OAAA;AACA,IAAAK,SAAA,GAAAL,OAAA;AASAM,MAAA,CAAAC,IAAA,CAAAF,SAAA,EAAAG,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAH,MAAA,CAAAI,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAC,YAAA,EAAAJ,GAAA;EAAA,IAAAA,GAAA,IAAAK,OAAA,IAAAA,OAAA,CAAAL,GAAA,MAAAJ,SAAA,CAAAI,GAAA;EAAAH,MAAA,CAAAS,cAAA,CAAAD,OAAA,EAAAL,GAAA;IAAAO,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAZ,SAAA,CAAAI,GAAA;IAAA;EAAA;AAAA;AARA,IAAAS,yBAAA,GAAAlB,OAAA;AACA,IAAAmB,IAAA,GAAAnB,OAAA;AASO,MAAMoB,kCAAkC,GAAGA,CAAC;EAC/CC,cAAc;EACdC,OAAO,EAAEC;AACY,CAAC,KAAmC;EACzD,MAAMD,OAAO,GAAG,IAAIE,0BAAgB,CAAC,CACjC,IAAAC,gBAAU,EAAC,CAAC;EACZ;EACA,IAAIF,WAAW,IAAI,EAAE,CAAC,CACzB,CAAC;EAEF,OAAO;IACHG,UAAU,EAAE,MAAMC,OAAO,IAAI;MACzB,MAAMC,KAAe,GAAG,CACpBC,iCAAuB,CAACC,IAAI,EAC5BC,+BAAqB,CAACD,IAAI,EAC1BE,qBAAgB,CAACF,IAAI,CACxB;MACD,KAAK,MAAMA,IAAI,IAAIF,KAAK,EAAE;QACtBN,OAAO,CAACW,WAAW,CAACN,OAAO,CAACL,OAAO,EAAEQ,IAAI,CAAC;MAC9C;IACJ,CAAC;IACDI,KAAK,EAAE,IAAIC,8CAAsB,CAAC,CAAC;IACnCC,OAAO,EAAE,IAAIC,kDAAwB,CAAC;MAAEhB;IAAe,CAAC,CAAC;IACzDiB,QAAQ,EAAE,IAAIC,oDAAyB,CAAC;MAAElB;IAAe,CAAC,CAAC;IAC3DmB,MAAM,EAAE,IAAIC,gDAAuB,CAAC;MAAEpB;IAAe,CAAC;EAC1D,CAAC;AACL,CAAC;AAACP,OAAA,CAAAM,kCAAA,GAAAA,kCAAA","ignoreList":[]}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { DynamoDBDocument } from "@webiny/aws-sdk/client-dynamodb";
|
|
2
|
+
import type { File, FileManagerAliasesStorageOperations } from "@webiny/api-file-manager/types";
|
|
3
|
+
interface AliasesStorageOperationsConfig {
|
|
4
|
+
documentClient: DynamoDBDocument;
|
|
5
|
+
}
|
|
6
|
+
export declare class AliasesStorageOperations implements FileManagerAliasesStorageOperations {
|
|
7
|
+
private readonly aliasEntity;
|
|
8
|
+
private readonly table;
|
|
9
|
+
constructor({ documentClient }: AliasesStorageOperationsConfig);
|
|
10
|
+
deleteAliases(file: File): Promise<void>;
|
|
11
|
+
storeAliases(file: File): Promise<void>;
|
|
12
|
+
private getExistingAliases;
|
|
13
|
+
private createPartitionKey;
|
|
14
|
+
private createNewAliasesRecords;
|
|
15
|
+
}
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.AliasesStorageOperations = void 0;
|
|
7
|
+
var _dbDynamodb = require("@webiny/db-dynamodb");
|
|
8
|
+
class AliasesStorageOperations {
|
|
9
|
+
constructor({
|
|
10
|
+
documentClient
|
|
11
|
+
}) {
|
|
12
|
+
this.table = (0, _dbDynamodb.createTable)({
|
|
13
|
+
documentClient
|
|
14
|
+
});
|
|
15
|
+
this.aliasEntity = (0, _dbDynamodb.createStandardEntity)({
|
|
16
|
+
table: this.table,
|
|
17
|
+
name: "FM.FileAlias"
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
async deleteAliases(file) {
|
|
21
|
+
const aliasItems = await this.getExistingAliases(file);
|
|
22
|
+
const batchWrite = (0, _dbDynamodb.createEntityWriteBatch)({
|
|
23
|
+
entity: this.aliasEntity,
|
|
24
|
+
delete: aliasItems.map(item => {
|
|
25
|
+
return {
|
|
26
|
+
PK: this.createPartitionKey({
|
|
27
|
+
id: item.fileId,
|
|
28
|
+
tenant: item.tenant,
|
|
29
|
+
locale: item.locale
|
|
30
|
+
}),
|
|
31
|
+
SK: `ALIAS#${item.alias}`
|
|
32
|
+
};
|
|
33
|
+
})
|
|
34
|
+
});
|
|
35
|
+
await batchWrite.execute();
|
|
36
|
+
}
|
|
37
|
+
async storeAliases(file) {
|
|
38
|
+
const existingAliases = await this.getExistingAliases(file);
|
|
39
|
+
const newAliases = this.createNewAliasesRecords(file, existingAliases);
|
|
40
|
+
const batchWrite = (0, _dbDynamodb.createEntityWriteBatch)({
|
|
41
|
+
entity: this.aliasEntity
|
|
42
|
+
});
|
|
43
|
+
for (const alias of newAliases) {
|
|
44
|
+
batchWrite.put(alias);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
// Delete aliases that are in the DB but are NOT in the file.
|
|
48
|
+
for (const data of existingAliases) {
|
|
49
|
+
if (!file.aliases.some(alias => data.alias === alias)) {
|
|
50
|
+
batchWrite.delete({
|
|
51
|
+
PK: this.createPartitionKey(file),
|
|
52
|
+
SK: `ALIAS#${data.alias}`
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
await batchWrite.execute();
|
|
57
|
+
}
|
|
58
|
+
async getExistingAliases(file) {
|
|
59
|
+
const aliases = await (0, _dbDynamodb.queryAll)({
|
|
60
|
+
entity: this.aliasEntity,
|
|
61
|
+
partitionKey: this.createPartitionKey(file),
|
|
62
|
+
options: {
|
|
63
|
+
beginsWith: "ALIAS#"
|
|
64
|
+
}
|
|
65
|
+
});
|
|
66
|
+
return aliases.map(alias => alias.data);
|
|
67
|
+
}
|
|
68
|
+
createPartitionKey(params) {
|
|
69
|
+
const {
|
|
70
|
+
tenant,
|
|
71
|
+
locale,
|
|
72
|
+
id
|
|
73
|
+
} = params;
|
|
74
|
+
return `T#${tenant}#L#${locale}#FM#F${id}`;
|
|
75
|
+
}
|
|
76
|
+
createNewAliasesRecords(file, existingAliases = []) {
|
|
77
|
+
return (file.aliases || []).map(alias => {
|
|
78
|
+
// If alias is already in the DB, skip it.
|
|
79
|
+
if (existingAliases.find(item => item.alias === alias)) {
|
|
80
|
+
return null;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// Add a new alias.
|
|
84
|
+
return {
|
|
85
|
+
PK: this.createPartitionKey(file),
|
|
86
|
+
SK: `ALIAS#${alias}`,
|
|
87
|
+
GSI1_PK: `T#${file.tenant}#FM#FILE_ALIASES`,
|
|
88
|
+
GSI1_SK: alias,
|
|
89
|
+
TYPE: "fm.fileAlias",
|
|
90
|
+
data: {
|
|
91
|
+
alias,
|
|
92
|
+
tenant: file.tenant,
|
|
93
|
+
locale: file.locale,
|
|
94
|
+
fileId: file.id,
|
|
95
|
+
key: file.key
|
|
96
|
+
}
|
|
97
|
+
};
|
|
98
|
+
}).filter(Boolean);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
exports.AliasesStorageOperations = AliasesStorageOperations;
|
|
102
|
+
|
|
103
|
+
//# sourceMappingURL=AliasesStorageOperations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_dbDynamodb","require","AliasesStorageOperations","constructor","documentClient","table","createTable","aliasEntity","createStandardEntity","name","deleteAliases","file","aliasItems","getExistingAliases","batchWrite","createEntityWriteBatch","entity","delete","map","item","PK","createPartitionKey","id","fileId","tenant","locale","SK","alias","execute","storeAliases","existingAliases","newAliases","createNewAliasesRecords","put","data","aliases","some","queryAll","partitionKey","options","beginsWith","params","find","GSI1_PK","GSI1_SK","TYPE","key","filter","Boolean","exports"],"sources":["AliasesStorageOperations.ts"],"sourcesContent":["import type { DynamoDBDocument } from \"@webiny/aws-sdk/client-dynamodb\";\nimport type { Entity, Table } from \"@webiny/db-dynamodb/toolbox\";\nimport type {\n File,\n FileAlias,\n FileManagerAliasesStorageOperations\n} from \"@webiny/api-file-manager/types\";\nimport type { DbItem } from \"@webiny/db-dynamodb\";\nimport {\n createEntityWriteBatch,\n createStandardEntity,\n createTable,\n queryAll\n} from \"@webiny/db-dynamodb\";\n\ninterface AliasesStorageOperationsConfig {\n documentClient: DynamoDBDocument;\n}\n\ninterface CreatePartitionKeyParams {\n locale: string;\n tenant: string;\n id: string;\n}\n\nexport class AliasesStorageOperations implements FileManagerAliasesStorageOperations {\n private readonly aliasEntity: Entity<any>;\n private readonly table: Table<string, string, string>;\n\n constructor({ documentClient }: AliasesStorageOperationsConfig) {\n this.table = createTable({ documentClient });\n\n this.aliasEntity = createStandardEntity({\n table: this.table,\n name: \"FM.FileAlias\"\n });\n }\n\n async deleteAliases(file: File): Promise<void> {\n const aliasItems = await this.getExistingAliases(file);\n\n const batchWrite = createEntityWriteBatch({\n entity: this.aliasEntity,\n delete: aliasItems.map(item => {\n return {\n PK: this.createPartitionKey({\n id: item.fileId,\n tenant: item.tenant,\n locale: item.locale\n }),\n SK: `ALIAS#${item.alias}`\n };\n })\n });\n\n await batchWrite.execute();\n }\n\n async storeAliases(file: File): Promise<void> {\n const existingAliases = await this.getExistingAliases(file);\n const newAliases = this.createNewAliasesRecords(file, existingAliases);\n\n const batchWrite = createEntityWriteBatch({\n entity: this.aliasEntity\n });\n for (const alias of newAliases) {\n batchWrite.put(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 batchWrite.delete({\n PK: this.createPartitionKey(file),\n SK: `ALIAS#${data.alias}`\n });\n }\n }\n\n await batchWrite.execute();\n }\n\n private async getExistingAliases(file: File): Promise<FileAlias[]> {\n const aliases = await queryAll<{ data: FileAlias }>({\n entity: this.aliasEntity,\n partitionKey: this.createPartitionKey(file),\n options: {\n beginsWith: \"ALIAS#\"\n }\n });\n\n return aliases.map(alias => alias.data);\n }\n\n private createPartitionKey(params: CreatePartitionKeyParams): string {\n const { tenant, locale, id } = params;\n return `T#${tenant}#L#${locale}#FM#F${id}`;\n }\n\n private createNewAliasesRecords(\n file: File,\n existingAliases: FileAlias[] = []\n ): DbItem<FileAlias>[] {\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 DbItem<FileAlias>[];\n }\n}\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { File, FileManagerFilesStorageOperations, FileManagerFilesStorageOperationsListResponse, FileManagerFilesStorageOperationsTagsResponse } from "@webiny/api-file-manager/types";
|
|
2
|
+
/**
|
|
3
|
+
* This class is here to satisfy TS interface, but it will always be overridden by CMS storage operations
|
|
4
|
+
* within the `api-file-manager` package itself. This will remain here until we find a better approach to organizing
|
|
5
|
+
* storage operations, and connecting app logic to CMS.
|
|
6
|
+
*/
|
|
7
|
+
export declare class FilesStorageOperations implements FileManagerFilesStorageOperations {
|
|
8
|
+
create(): Promise<File>;
|
|
9
|
+
createBatch(): Promise<File[]>;
|
|
10
|
+
delete(): Promise<void>;
|
|
11
|
+
get(): Promise<File | null>;
|
|
12
|
+
list(): Promise<FileManagerFilesStorageOperationsListResponse>;
|
|
13
|
+
tags(): Promise<FileManagerFilesStorageOperationsTagsResponse[]>;
|
|
14
|
+
update(): Promise<File>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.FilesStorageOperations = void 0;
|
|
7
|
+
/**
|
|
8
|
+
* This class is here to satisfy TS interface, but it will always be overridden by CMS storage operations
|
|
9
|
+
* within the `api-file-manager` package itself. This will remain here until we find a better approach to organizing
|
|
10
|
+
* storage operations, and connecting app logic to CMS.
|
|
11
|
+
*/
|
|
12
|
+
class FilesStorageOperations {
|
|
13
|
+
create() {
|
|
14
|
+
throw new Error("api-file-manager-ddb does not implement the Files storage operations.");
|
|
15
|
+
}
|
|
16
|
+
createBatch() {
|
|
17
|
+
throw new Error("api-file-manager-ddb does not implement the Files storage operations.");
|
|
18
|
+
}
|
|
19
|
+
delete() {
|
|
20
|
+
throw new Error("api-file-manager-ddb does not implement the Files storage operations.");
|
|
21
|
+
}
|
|
22
|
+
get() {
|
|
23
|
+
throw new Error("api-file-manager-ddb does not implement the Files storage operations.");
|
|
24
|
+
}
|
|
25
|
+
list() {
|
|
26
|
+
throw new Error("api-file-manager-ddb does not implement the Files storage operations.");
|
|
27
|
+
}
|
|
28
|
+
tags() {
|
|
29
|
+
throw new Error("api-file-manager-ddb does not implement the Files storage operations.");
|
|
30
|
+
}
|
|
31
|
+
update() {
|
|
32
|
+
throw new Error("api-file-manager-ddb does not implement the Files storage operations.");
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
exports.FilesStorageOperations = FilesStorageOperations;
|
|
36
|
+
|
|
37
|
+
//# sourceMappingURL=FilesStorageOperations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["FilesStorageOperations","create","Error","createBatch","delete","get","list","tags","update","exports"],"sources":["FilesStorageOperations.ts"],"sourcesContent":["import type {\n File,\n FileManagerFilesStorageOperations,\n FileManagerFilesStorageOperationsListResponse,\n FileManagerFilesStorageOperationsTagsResponse\n} from \"@webiny/api-file-manager/types\";\n\n/**\n * This class is here to satisfy TS interface, but it will always be overridden by CMS storage operations\n * within the `api-file-manager` package itself. This will remain here until we find a better approach to organizing\n * storage operations, and connecting app logic to CMS.\n */\nexport class FilesStorageOperations implements FileManagerFilesStorageOperations {\n create(): Promise<File> {\n throw new Error(\"api-file-manager-ddb does not implement the Files storage operations.\");\n }\n\n createBatch(): Promise<File[]> {\n throw new Error(\"api-file-manager-ddb does not implement the Files storage operations.\");\n }\n\n delete(): Promise<void> {\n throw new Error(\"api-file-manager-ddb does not implement the Files storage operations.\");\n }\n\n get(): Promise<File | null> {\n throw new Error(\"api-file-manager-ddb does not implement the Files storage operations.\");\n }\n\n list(): Promise<FileManagerFilesStorageOperationsListResponse> {\n throw new Error(\"api-file-manager-ddb does not implement the Files storage operations.\");\n }\n\n tags(): Promise<FileManagerFilesStorageOperationsTagsResponse[]> {\n throw new Error(\"api-file-manager-ddb does not implement the Files storage operations.\");\n }\n\n update(): Promise<File> {\n throw new Error(\"api-file-manager-ddb does not implement the Files storage operations.\");\n }\n}\n"],"mappings":";;;;;;AAOA;AACA;AACA;AACA;AACA;AACO,MAAMA,sBAAsB,CAA8C;EAC7EC,MAAMA,CAAA,EAAkB;IACpB,MAAM,IAAIC,KAAK,CAAC,uEAAuE,CAAC;EAC5F;EAEAC,WAAWA,CAAA,EAAoB;IAC3B,MAAM,IAAID,KAAK,CAAC,uEAAuE,CAAC;EAC5F;EAEAE,MAAMA,CAAA,EAAkB;IACpB,MAAM,IAAIF,KAAK,CAAC,uEAAuE,CAAC;EAC5F;EAEAG,GAAGA,CAAA,EAAyB;IACxB,MAAM,IAAIH,KAAK,CAAC,uEAAuE,CAAC;EAC5F;EAEAI,IAAIA,CAAA,EAA2D;IAC3D,MAAM,IAAIJ,KAAK,CAAC,uEAAuE,CAAC;EAC5F;EAEAK,IAAIA,CAAA,EAA6D;IAC7D,MAAM,IAAIL,KAAK,CAAC,uEAAuE,CAAC;EAC5F;EAEAM,MAAMA,CAAA,EAAkB;IACpB,MAAM,IAAIN,KAAK,CAAC,uEAAuE,CAAC;EAC5F;AACJ;AAACO,OAAA,CAAAT,sBAAA,GAAAA,sBAAA","ignoreList":[]}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { DynamoDBDocument } from "@webiny/aws-sdk/client-dynamodb";
|
|
2
|
+
import type { FileManagerSettings, FileManagerSettingsStorageOperations, FileManagerSettingsStorageOperationsCreateParams, FileManagerSettingsStorageOperationsUpdateParams, FileManagerStorageOperationsDeleteSettings, FileManagerStorageOperationsGetSettingsParams } from "@webiny/api-file-manager/types";
|
|
3
|
+
interface SettingsStorageOperationsConfig {
|
|
4
|
+
documentClient: DynamoDBDocument;
|
|
5
|
+
}
|
|
6
|
+
export declare class SettingsStorageOperations implements FileManagerSettingsStorageOperations {
|
|
7
|
+
private readonly _entity;
|
|
8
|
+
constructor({ documentClient }: SettingsStorageOperationsConfig);
|
|
9
|
+
get({ tenant }: FileManagerStorageOperationsGetSettingsParams): Promise<FileManagerSettings | null>;
|
|
10
|
+
create({ data }: FileManagerSettingsStorageOperationsCreateParams): Promise<FileManagerSettings>;
|
|
11
|
+
update({ data }: FileManagerSettingsStorageOperationsUpdateParams): Promise<FileManagerSettings>;
|
|
12
|
+
delete({ tenant }: FileManagerStorageOperationsDeleteSettings): Promise<void>;
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.SettingsStorageOperations = void 0;
|
|
8
|
+
var _error = _interopRequireDefault(require("@webiny/error"));
|
|
9
|
+
var _dbDynamodb = require("@webiny/db-dynamodb");
|
|
10
|
+
const SORT_KEY = "A";
|
|
11
|
+
class SettingsStorageOperations {
|
|
12
|
+
constructor({
|
|
13
|
+
documentClient
|
|
14
|
+
}) {
|
|
15
|
+
this._entity = (0, _dbDynamodb.createStandardEntity)({
|
|
16
|
+
table: (0, _dbDynamodb.createTable)({
|
|
17
|
+
documentClient
|
|
18
|
+
}),
|
|
19
|
+
name: "FM.Settings"
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
async get({
|
|
23
|
+
tenant
|
|
24
|
+
}) {
|
|
25
|
+
try {
|
|
26
|
+
const settings = await (0, _dbDynamodb.get)({
|
|
27
|
+
entity: this._entity,
|
|
28
|
+
keys: {
|
|
29
|
+
PK: `T#${tenant}#FM#SETTINGS`,
|
|
30
|
+
SK: SORT_KEY
|
|
31
|
+
}
|
|
32
|
+
});
|
|
33
|
+
return settings?.data || null;
|
|
34
|
+
} catch (ex) {
|
|
35
|
+
throw new _error.default(ex.message || "Could not fetch the FileManager settings.", ex.code || "GET_SETTINGS_ERROR");
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
async create({
|
|
39
|
+
data
|
|
40
|
+
}) {
|
|
41
|
+
const original = await this.get({
|
|
42
|
+
tenant: data.tenant
|
|
43
|
+
});
|
|
44
|
+
if (original) {
|
|
45
|
+
return await this.update({
|
|
46
|
+
original,
|
|
47
|
+
data
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
try {
|
|
51
|
+
await (0, _dbDynamodb.put)({
|
|
52
|
+
entity: this._entity,
|
|
53
|
+
item: {
|
|
54
|
+
PK: `T#${data.tenant}#FM#SETTINGS`,
|
|
55
|
+
SK: SORT_KEY,
|
|
56
|
+
TYPE: "fm.settings",
|
|
57
|
+
data
|
|
58
|
+
}
|
|
59
|
+
});
|
|
60
|
+
return data;
|
|
61
|
+
} catch (ex) {
|
|
62
|
+
throw new _error.default(ex.message || "Cannot create FileManager settings.", ex.code || "CREATE_FM_SETTINGS_ERROR", {
|
|
63
|
+
data
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
async update({
|
|
68
|
+
data
|
|
69
|
+
}) {
|
|
70
|
+
try {
|
|
71
|
+
await (0, _dbDynamodb.put)({
|
|
72
|
+
entity: this._entity,
|
|
73
|
+
item: {
|
|
74
|
+
PK: `T#${data.tenant}#FM#SETTINGS`,
|
|
75
|
+
SK: SORT_KEY,
|
|
76
|
+
TYPE: "fm.settings",
|
|
77
|
+
data
|
|
78
|
+
}
|
|
79
|
+
});
|
|
80
|
+
return data;
|
|
81
|
+
} catch (ex) {
|
|
82
|
+
throw new _error.default(ex.message || "Cannot update FileManager settings.", ex.code || "UPDATE_FM_SETTINGS_ERROR", {
|
|
83
|
+
data
|
|
84
|
+
});
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
async delete({
|
|
88
|
+
tenant
|
|
89
|
+
}) {
|
|
90
|
+
await (0, _dbDynamodb.deleteItem)({
|
|
91
|
+
entity: this._entity,
|
|
92
|
+
keys: {
|
|
93
|
+
PK: `T#${tenant}#FM#SETTINGS`,
|
|
94
|
+
SK: SORT_KEY
|
|
95
|
+
}
|
|
96
|
+
});
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
exports.SettingsStorageOperations = SettingsStorageOperations;
|
|
100
|
+
|
|
101
|
+
//# sourceMappingURL=SettingsStorageOperations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_error","_interopRequireDefault","require","_dbDynamodb","SORT_KEY","SettingsStorageOperations","constructor","documentClient","_entity","createStandardEntity","table","createTable","name","get","tenant","settings","entity","keys","PK","SK","data","ex","WebinyError","message","code","create","original","update","put","item","TYPE","delete","deleteItem","exports"],"sources":["SettingsStorageOperations.ts"],"sourcesContent":["import type { Entity } from \"@webiny/db-dynamodb/toolbox\";\nimport type { DynamoDBDocument } from \"@webiny/aws-sdk/client-dynamodb\";\nimport type {\n FileManagerSettings,\n FileManagerSettingsStorageOperations,\n FileManagerSettingsStorageOperationsCreateParams,\n FileManagerSettingsStorageOperationsUpdateParams,\n FileManagerStorageOperationsDeleteSettings,\n FileManagerStorageOperationsGetSettingsParams\n} from \"@webiny/api-file-manager/types\";\nimport WebinyError from \"@webiny/error\";\nimport { createStandardEntity, createTable, deleteItem, get, put } from \"@webiny/db-dynamodb\";\n\ninterface SettingsStorageOperationsConfig {\n documentClient: DynamoDBDocument;\n}\n\nconst SORT_KEY = \"A\";\n\nexport class SettingsStorageOperations implements FileManagerSettingsStorageOperations {\n private readonly _entity: Entity<any>;\n\n public constructor({ documentClient }: SettingsStorageOperationsConfig) {\n this._entity = createStandardEntity({\n table: createTable({ documentClient }),\n name: \"FM.Settings\"\n });\n }\n\n public async get({\n tenant\n }: FileManagerStorageOperationsGetSettingsParams): Promise<FileManagerSettings | null> {\n try {\n const settings = await get<{ data: FileManagerSettings }>({\n entity: this._entity,\n keys: {\n PK: `T#${tenant}#FM#SETTINGS`,\n SK: SORT_KEY\n }\n });\n\n return settings?.data || null;\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not fetch the FileManager settings.\",\n ex.code || \"GET_SETTINGS_ERROR\"\n );\n }\n }\n\n public async create({\n data\n }: FileManagerSettingsStorageOperationsCreateParams): Promise<FileManagerSettings> {\n const original = await this.get({ tenant: data.tenant });\n\n if (original) {\n return await this.update({ original, data });\n }\n\n try {\n await put({\n entity: this._entity,\n item: {\n PK: `T#${data.tenant}#FM#SETTINGS`,\n SK: SORT_KEY,\n TYPE: \"fm.settings\",\n data\n }\n });\n return data;\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Cannot create FileManager settings.\",\n ex.code || \"CREATE_FM_SETTINGS_ERROR\",\n {\n data\n }\n );\n }\n }\n\n public async update({\n data\n }: FileManagerSettingsStorageOperationsUpdateParams): Promise<FileManagerSettings> {\n try {\n await put({\n entity: this._entity,\n item: {\n PK: `T#${data.tenant}#FM#SETTINGS`,\n SK: SORT_KEY,\n TYPE: \"fm.settings\",\n data\n }\n });\n return data;\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Cannot update FileManager settings.\",\n ex.code || \"UPDATE_FM_SETTINGS_ERROR\",\n {\n data\n }\n );\n }\n }\n\n public async delete({ tenant }: FileManagerStorageOperationsDeleteSettings): Promise<void> {\n await deleteItem({\n entity: this._entity,\n keys: {\n PK: `T#${tenant}#FM#SETTINGS`,\n SK: SORT_KEY\n }\n });\n }\n}\n"],"mappings":";;;;;;;AAUA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,WAAA,GAAAD,OAAA;AAMA,MAAME,QAAQ,GAAG,GAAG;AAEb,MAAMC,yBAAyB,CAAiD;EAG5EC,WAAWA,CAAC;IAAEC;EAAgD,CAAC,EAAE;IACpE,IAAI,CAACC,OAAO,GAAG,IAAAC,gCAAoB,EAAC;MAChCC,KAAK,EAAE,IAAAC,uBAAW,EAAC;QAAEJ;MAAe,CAAC,CAAC;MACtCK,IAAI,EAAE;IACV,CAAC,CAAC;EACN;EAEA,MAAaC,GAAGA,CAAC;IACbC;EAC2C,CAAC,EAAuC;IACnF,IAAI;MACA,MAAMC,QAAQ,GAAG,MAAM,IAAAF,eAAG,EAAgC;QACtDG,MAAM,EAAE,IAAI,CAACR,OAAO;QACpBS,IAAI,EAAE;UACFC,EAAE,EAAE,KAAKJ,MAAM,cAAc;UAC7BK,EAAE,EAAEf;QACR;MACJ,CAAC,CAAC;MAEF,OAAOW,QAAQ,EAAEK,IAAI,IAAI,IAAI;IACjC,CAAC,CAAC,OAAOC,EAAE,EAAE;MACT,MAAM,IAAIC,cAAW,CACjBD,EAAE,CAACE,OAAO,IAAI,2CAA2C,EACzDF,EAAE,CAACG,IAAI,IAAI,oBACf,CAAC;IACL;EACJ;EAEA,MAAaC,MAAMA,CAAC;IAChBL;EAC8C,CAAC,EAAgC;IAC/E,MAAMM,QAAQ,GAAG,MAAM,IAAI,CAACb,GAAG,CAAC;MAAEC,MAAM,EAAEM,IAAI,CAACN;IAAO,CAAC,CAAC;IAExD,IAAIY,QAAQ,EAAE;MACV,OAAO,MAAM,IAAI,CAACC,MAAM,CAAC;QAAED,QAAQ;QAAEN;MAAK,CAAC,CAAC;IAChD;IAEA,IAAI;MACA,MAAM,IAAAQ,eAAG,EAAC;QACNZ,MAAM,EAAE,IAAI,CAACR,OAAO;QACpBqB,IAAI,EAAE;UACFX,EAAE,EAAE,KAAKE,IAAI,CAACN,MAAM,cAAc;UAClCK,EAAE,EAAEf,QAAQ;UACZ0B,IAAI,EAAE,aAAa;UACnBV;QACJ;MACJ,CAAC,CAAC;MACF,OAAOA,IAAI;IACf,CAAC,CAAC,OAAOC,EAAE,EAAE;MACT,MAAM,IAAIC,cAAW,CACjBD,EAAE,CAACE,OAAO,IAAI,qCAAqC,EACnDF,EAAE,CAACG,IAAI,IAAI,0BAA0B,EACrC;QACIJ;MACJ,CACJ,CAAC;IACL;EACJ;EAEA,MAAaO,MAAMA,CAAC;IAChBP;EAC8C,CAAC,EAAgC;IAC/E,IAAI;MACA,MAAM,IAAAQ,eAAG,EAAC;QACNZ,MAAM,EAAE,IAAI,CAACR,OAAO;QACpBqB,IAAI,EAAE;UACFX,EAAE,EAAE,KAAKE,IAAI,CAACN,MAAM,cAAc;UAClCK,EAAE,EAAEf,QAAQ;UACZ0B,IAAI,EAAE,aAAa;UACnBV;QACJ;MACJ,CAAC,CAAC;MACF,OAAOA,IAAI;IACf,CAAC,CAAC,OAAOC,EAAE,EAAE;MACT,MAAM,IAAIC,cAAW,CACjBD,EAAE,CAACE,OAAO,IAAI,qCAAqC,EACnDF,EAAE,CAACG,IAAI,IAAI,0BAA0B,EACrC;QACIJ;MACJ,CACJ,CAAC;IACL;EACJ;EAEA,MAAaW,MAAMA,CAAC;IAAEjB;EAAmD,CAAC,EAAiB;IACvF,MAAM,IAAAkB,sBAAU,EAAC;MACbhB,MAAM,EAAE,IAAI,CAACR,OAAO;MACpBS,IAAI,EAAE;QACFC,EAAE,EAAE,KAAKJ,MAAM,cAAc;QAC7BK,EAAE,EAAEf;MACR;IACJ,CAAC,CAAC;EACN;AACJ;AAAC6B,OAAA,CAAA5B,yBAAA,GAAAA,yBAAA","ignoreList":[]}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { DynamoDBDocument } from "@webiny/aws-sdk/client-dynamodb";
|
|
2
|
+
import type { FileManagerSystem, FileManagerSystemStorageOperations, FileManagerSystemStorageOperationsCreateParams, FileManagerSystemStorageOperationsGetParams, FileManagerSystemStorageOperationsUpdateParams } from "@webiny/api-file-manager/types";
|
|
3
|
+
interface SystemStorageOperationsConstructorParams {
|
|
4
|
+
documentClient: DynamoDBDocument;
|
|
5
|
+
}
|
|
6
|
+
export declare class SystemStorageOperations implements FileManagerSystemStorageOperations {
|
|
7
|
+
private readonly _entity;
|
|
8
|
+
constructor({ documentClient }: SystemStorageOperationsConstructorParams);
|
|
9
|
+
get({ tenant }: FileManagerSystemStorageOperationsGetParams): Promise<FileManagerSystem | null>;
|
|
10
|
+
create(params: FileManagerSystemStorageOperationsCreateParams): Promise<FileManagerSystem>;
|
|
11
|
+
update(params: FileManagerSystemStorageOperationsUpdateParams): Promise<FileManagerSystem>;
|
|
12
|
+
}
|
|
13
|
+
export {};
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.SystemStorageOperations = void 0;
|
|
8
|
+
var _error = _interopRequireDefault(require("@webiny/error"));
|
|
9
|
+
var _dbDynamodb = require("@webiny/db-dynamodb");
|
|
10
|
+
const SORT_KEY = "FM";
|
|
11
|
+
class SystemStorageOperations {
|
|
12
|
+
constructor({
|
|
13
|
+
documentClient
|
|
14
|
+
}) {
|
|
15
|
+
this._entity = (0, _dbDynamodb.createLegacyEntity)({
|
|
16
|
+
table: (0, _dbDynamodb.createTable)({
|
|
17
|
+
documentClient
|
|
18
|
+
}),
|
|
19
|
+
name: "System",
|
|
20
|
+
attributes: {
|
|
21
|
+
version: {
|
|
22
|
+
type: "string"
|
|
23
|
+
},
|
|
24
|
+
tenant: {
|
|
25
|
+
type: "string"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
async get({
|
|
31
|
+
tenant
|
|
32
|
+
}) {
|
|
33
|
+
try {
|
|
34
|
+
const system = await (0, _dbDynamodb.get)({
|
|
35
|
+
entity: this._entity,
|
|
36
|
+
keys: {
|
|
37
|
+
PK: `T#${tenant}#SYSTEM`,
|
|
38
|
+
SK: SORT_KEY
|
|
39
|
+
}
|
|
40
|
+
});
|
|
41
|
+
return system || null;
|
|
42
|
+
} catch (ex) {
|
|
43
|
+
throw new _error.default(ex.message || "Could not fetch the FileManager system.", ex.code || "GET_SYSTEM_ERROR");
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
async create(params) {
|
|
47
|
+
const {
|
|
48
|
+
data
|
|
49
|
+
} = params;
|
|
50
|
+
try {
|
|
51
|
+
await (0, _dbDynamodb.put)({
|
|
52
|
+
entity: this._entity,
|
|
53
|
+
item: {
|
|
54
|
+
...data,
|
|
55
|
+
PK: `T#${data.tenant}#SYSTEM`,
|
|
56
|
+
SK: SORT_KEY
|
|
57
|
+
}
|
|
58
|
+
});
|
|
59
|
+
} catch (ex) {
|
|
60
|
+
throw new _error.default("Could not insert new system data into DynamoDB", "CREATE_SYSTEM_ERROR", {
|
|
61
|
+
data
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
return data;
|
|
65
|
+
}
|
|
66
|
+
async update(params) {
|
|
67
|
+
const {
|
|
68
|
+
original,
|
|
69
|
+
data
|
|
70
|
+
} = params;
|
|
71
|
+
try {
|
|
72
|
+
await (0, _dbDynamodb.put)({
|
|
73
|
+
entity: this._entity,
|
|
74
|
+
item: {
|
|
75
|
+
...data,
|
|
76
|
+
PK: `T#${data.tenant}#SYSTEM`,
|
|
77
|
+
SK: SORT_KEY
|
|
78
|
+
}
|
|
79
|
+
});
|
|
80
|
+
} catch (ex) {
|
|
81
|
+
throw new _error.default("Could not update system data in the DynamoDB.", "UPDATE_SYSTEM_ERROR", {
|
|
82
|
+
data
|
|
83
|
+
});
|
|
84
|
+
}
|
|
85
|
+
return {
|
|
86
|
+
...original,
|
|
87
|
+
...data
|
|
88
|
+
};
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
exports.SystemStorageOperations = SystemStorageOperations;
|
|
92
|
+
|
|
93
|
+
//# sourceMappingURL=SystemStorageOperations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_error","_interopRequireDefault","require","_dbDynamodb","SORT_KEY","SystemStorageOperations","constructor","documentClient","_entity","createLegacyEntity","table","createTable","name","attributes","version","type","tenant","get","system","entity","keys","PK","SK","ex","WebinyError","message","code","create","params","data","put","item","update","original","exports"],"sources":["SystemStorageOperations.ts"],"sourcesContent":["import type { DynamoDBDocument } from \"@webiny/aws-sdk/client-dynamodb\";\nimport type { Entity } from \"@webiny/db-dynamodb/toolbox\";\nimport type {\n FileManagerSystem,\n FileManagerSystemStorageOperations,\n FileManagerSystemStorageOperationsCreateParams,\n FileManagerSystemStorageOperationsGetParams,\n FileManagerSystemStorageOperationsUpdateParams\n} from \"@webiny/api-file-manager/types\";\nimport WebinyError from \"@webiny/error\";\nimport { createLegacyEntity, createTable, get, put } from \"@webiny/db-dynamodb\";\n\ninterface SystemStorageOperationsConstructorParams {\n documentClient: DynamoDBDocument;\n}\n\nconst SORT_KEY = \"FM\";\n\nexport class SystemStorageOperations implements FileManagerSystemStorageOperations {\n private readonly _entity: Entity<any>;\n\n public constructor({ documentClient }: SystemStorageOperationsConstructorParams) {\n this._entity = createLegacyEntity({\n table: createTable({ documentClient }),\n name: \"System\",\n attributes: {\n version: {\n type: \"string\"\n },\n tenant: {\n type: \"string\"\n }\n }\n });\n }\n\n public async get({\n tenant\n }: FileManagerSystemStorageOperationsGetParams): Promise<FileManagerSystem | null> {\n try {\n const system = await get<FileManagerSystem>({\n entity: this._entity,\n keys: {\n PK: `T#${tenant}#SYSTEM`,\n SK: SORT_KEY\n }\n });\n return system || null;\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not fetch the FileManager system.\",\n ex.code || \"GET_SYSTEM_ERROR\"\n );\n }\n }\n\n public async create(\n params: FileManagerSystemStorageOperationsCreateParams\n ): Promise<FileManagerSystem> {\n const { data } = params;\n try {\n await put({\n entity: this._entity,\n item: {\n ...data,\n PK: `T#${data.tenant}#SYSTEM`,\n SK: SORT_KEY\n }\n });\n } catch (ex) {\n throw new WebinyError(\n \"Could not insert new system data into DynamoDB\",\n \"CREATE_SYSTEM_ERROR\",\n {\n data\n }\n );\n }\n return data;\n }\n\n public async update(\n params: FileManagerSystemStorageOperationsUpdateParams\n ): Promise<FileManagerSystem> {\n const { original, data } = params;\n\n try {\n await put({\n entity: this._entity,\n item: {\n ...data,\n PK: `T#${data.tenant}#SYSTEM`,\n SK: SORT_KEY\n }\n });\n } catch (ex) {\n throw new WebinyError(\n \"Could not update system data in the DynamoDB.\",\n \"UPDATE_SYSTEM_ERROR\",\n {\n data\n }\n );\n }\n return {\n ...original,\n ...data\n };\n }\n}\n"],"mappings":";;;;;;;AASA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,WAAA,GAAAD,OAAA;AAMA,MAAME,QAAQ,GAAG,IAAI;AAEd,MAAMC,uBAAuB,CAA+C;EAGxEC,WAAWA,CAAC;IAAEC;EAAyD,CAAC,EAAE;IAC7E,IAAI,CAACC,OAAO,GAAG,IAAAC,8BAAkB,EAAC;MAC9BC,KAAK,EAAE,IAAAC,uBAAW,EAAC;QAAEJ;MAAe,CAAC,CAAC;MACtCK,IAAI,EAAE,QAAQ;MACdC,UAAU,EAAE;QACRC,OAAO,EAAE;UACLC,IAAI,EAAE;QACV,CAAC;QACDC,MAAM,EAAE;UACJD,IAAI,EAAE;QACV;MACJ;IACJ,CAAC,CAAC;EACN;EAEA,MAAaE,GAAGA,CAAC;IACbD;EACyC,CAAC,EAAqC;IAC/E,IAAI;MACA,MAAME,MAAM,GAAG,MAAM,IAAAD,eAAG,EAAoB;QACxCE,MAAM,EAAE,IAAI,CAACX,OAAO;QACpBY,IAAI,EAAE;UACFC,EAAE,EAAE,KAAKL,MAAM,SAAS;UACxBM,EAAE,EAAElB;QACR;MACJ,CAAC,CAAC;MACF,OAAOc,MAAM,IAAI,IAAI;IACzB,CAAC,CAAC,OAAOK,EAAE,EAAE;MACT,MAAM,IAAIC,cAAW,CACjBD,EAAE,CAACE,OAAO,IAAI,yCAAyC,EACvDF,EAAE,CAACG,IAAI,IAAI,kBACf,CAAC;IACL;EACJ;EAEA,MAAaC,MAAMA,CACfC,MAAsD,EAC5B;IAC1B,MAAM;MAAEC;IAAK,CAAC,GAAGD,MAAM;IACvB,IAAI;MACA,MAAM,IAAAE,eAAG,EAAC;QACNX,MAAM,EAAE,IAAI,CAACX,OAAO;QACpBuB,IAAI,EAAE;UACF,GAAGF,IAAI;UACPR,EAAE,EAAE,KAAKQ,IAAI,CAACb,MAAM,SAAS;UAC7BM,EAAE,EAAElB;QACR;MACJ,CAAC,CAAC;IACN,CAAC,CAAC,OAAOmB,EAAE,EAAE;MACT,MAAM,IAAIC,cAAW,CACjB,gDAAgD,EAChD,qBAAqB,EACrB;QACIK;MACJ,CACJ,CAAC;IACL;IACA,OAAOA,IAAI;EACf;EAEA,MAAaG,MAAMA,CACfJ,MAAsD,EAC5B;IAC1B,MAAM;MAAEK,QAAQ;MAAEJ;IAAK,CAAC,GAAGD,MAAM;IAEjC,IAAI;MACA,MAAM,IAAAE,eAAG,EAAC;QACNX,MAAM,EAAE,IAAI,CAACX,OAAO;QACpBuB,IAAI,EAAE;UACF,GAAGF,IAAI;UACPR,EAAE,EAAE,KAAKQ,IAAI,CAACb,MAAM,SAAS;UAC7BM,EAAE,EAAElB;QACR;MACJ,CAAC,CAAC;IACN,CAAC,CAAC,OAAOmB,EAAE,EAAE;MACT,MAAM,IAAIC,cAAW,CACjB,+CAA+C,EAC/C,qBAAqB,EACrB;QACIK;MACJ,CACJ,CAAC;IACL;IACA,OAAO;MACH,GAAGI,QAAQ;MACX,GAAGJ;IACP,CAAC;EACL;AACJ;AAACK,OAAA,CAAA7B,uBAAA,GAAAA,uBAAA","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/api-file-manager-ddb",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-unstable.06b2ede40f",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"@webiny/api-file-manager",
|
|
7
7
|
"storage-operations",
|
|
8
|
-
"
|
|
9
|
-
"fm:ddb"
|
|
8
|
+
"ddb"
|
|
10
9
|
],
|
|
11
10
|
"repository": {
|
|
12
11
|
"type": "git",
|
|
@@ -21,36 +20,28 @@
|
|
|
21
20
|
],
|
|
22
21
|
"license": "MIT",
|
|
23
22
|
"dependencies": {
|
|
24
|
-
"@
|
|
25
|
-
"@webiny/api-file-manager": "0.0.0-
|
|
26
|
-
"@webiny/
|
|
27
|
-
"@webiny/
|
|
28
|
-
"@webiny/
|
|
29
|
-
"
|
|
30
|
-
"
|
|
23
|
+
"@webiny/api": "0.0.0-unstable.06b2ede40f",
|
|
24
|
+
"@webiny/api-file-manager": "0.0.0-unstable.06b2ede40f",
|
|
25
|
+
"@webiny/aws-sdk": "0.0.0-unstable.06b2ede40f",
|
|
26
|
+
"@webiny/db-dynamodb": "0.0.0-unstable.06b2ede40f",
|
|
27
|
+
"@webiny/error": "0.0.0-unstable.06b2ede40f",
|
|
28
|
+
"@webiny/plugins": "0.0.0-unstable.06b2ede40f",
|
|
29
|
+
"@webiny/project-utils": "0.0.0-unstable.06b2ede40f"
|
|
31
30
|
},
|
|
32
31
|
"devDependencies": {
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"@babel/preset-typescript": "^7.0.0",
|
|
39
|
-
"@webiny/cli": "^0.0.0-mt-3",
|
|
40
|
-
"jest": "^26.6.3",
|
|
41
|
-
"jest-dynalite": "^3.2.0",
|
|
42
|
-
"jsonpack": "^1.1.5",
|
|
43
|
-
"rimraf": "^3.0.2",
|
|
44
|
-
"ttypescript": "^1.5.12",
|
|
45
|
-
"typescript": "^4.1.3"
|
|
32
|
+
"jest": "29.7.0",
|
|
33
|
+
"jest-dynalite": "3.6.1",
|
|
34
|
+
"jsonpack": "1.1.5",
|
|
35
|
+
"rimraf": "6.0.1",
|
|
36
|
+
"typescript": "5.3.3"
|
|
46
37
|
},
|
|
47
38
|
"publishConfig": {
|
|
48
39
|
"access": "public",
|
|
49
40
|
"directory": "dist"
|
|
50
41
|
},
|
|
51
42
|
"scripts": {
|
|
52
|
-
"watch": "
|
|
53
|
-
"build": "
|
|
43
|
+
"watch": "node ../cli/bin.js run watch",
|
|
44
|
+
"build": "node ../cli/bin.js run build"
|
|
54
45
|
},
|
|
55
46
|
"adio": {
|
|
56
47
|
"ignoreDirs": [
|
|
@@ -58,10 +49,9 @@
|
|
|
58
49
|
],
|
|
59
50
|
"ignore": {
|
|
60
51
|
"src": [
|
|
61
|
-
"aws-sdk",
|
|
62
52
|
"sharp"
|
|
63
53
|
]
|
|
64
54
|
}
|
|
65
55
|
},
|
|
66
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "06b2ede40fc2212a70eeafd74afd50b56fb0ce82"
|
|
67
57
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { AttributePluginParams } from "@webiny/db-dynamodb/plugins/definitions/AttributePlugin";
|
|
2
|
+
import { AttributePlugin } from "@webiny/db-dynamodb/plugins/definitions/AttributePlugin";
|
|
2
3
|
export declare class SettingsAttributePlugin extends AttributePlugin {
|
|
3
|
-
constructor(params: Omit<
|
|
4
|
+
constructor(params: Omit<AttributePluginParams, "entity">);
|
|
4
5
|
}
|