@webiny/api-file-manager-s3 0.0.0-mt-2 → 0.0.0-unstable.13771d80a8

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 CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: () => (import("@webiny/handler-graphql/types").GraphQLSchemaPlugin<import("@webiny/api-file-manager/types").FileManagerContext> | import("@webiny/api-file-manager/plugins/definitions/FilePhysicalStoragePlugin").FilePhysicalStoragePlugin)[];
1
+ declare const _default: () => (import("@webiny/handler-graphql/types").GraphQLSchemaPlugin<import("@webiny/api-file-manager/types").FileManagerContext> | import("@webiny/api-file-manager/plugins/FilePhysicalStoragePlugin").FilePhysicalStoragePlugin<import("@webiny/api-file-manager/plugins/FilePhysicalStoragePlugin").FilePhysicalStoragePluginUploadParams, import("@webiny/api-file-manager/plugins/FilePhysicalStoragePlugin").FilePhysicalStoragePluginDeleteParams>)[];
2
2
  export default _default;
package/index.js CHANGED
@@ -1,16 +1,11 @@
1
1
  "use strict";
2
2
 
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
5
4
  Object.defineProperty(exports, "__esModule", {
6
5
  value: true
7
6
  });
8
7
  exports.default = void 0;
9
-
10
8
  var _graphqlFileStorageS = _interopRequireDefault(require("./plugins/graphqlFileStorageS3"));
11
-
12
9
  var _fileStorageS = _interopRequireDefault(require("./plugins/fileStorageS3"));
13
-
14
10
  var _default = () => [(0, _fileStorageS.default)(), _graphqlFileStorageS.default];
15
-
16
11
  exports.default = _default;
package/index.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"names":["fileStorageS3","graphqlFileStorageS3"],"sources":["index.ts"],"sourcesContent":["import graphqlFileStorageS3 from \"./plugins/graphqlFileStorageS3\";\nimport fileStorageS3 from \"./plugins/fileStorageS3\";\n\nexport default () => [fileStorageS3(), graphqlFileStorageS3];\n"],"mappings":";;;;;;;AAAA;AACA;AAAoD,eAErC,MAAM,CAAC,IAAAA,qBAAa,GAAE,EAAEC,4BAAoB,CAAC;AAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webiny/api-file-manager-s3",
3
- "version": "0.0.0-mt-2",
3
+ "version": "0.0.0-unstable.13771d80a8",
4
4
  "main": "index.js",
5
5
  "repository": {
6
6
  "type": "git",
@@ -10,21 +10,25 @@
10
10
  "author": "Webiny Ltd",
11
11
  "license": "MIT",
12
12
  "dependencies": {
13
- "@webiny/api-file-manager": "0.0.0-mt-2",
14
- "@webiny/handler-graphql": "0.0.0-mt-2",
15
- "@webiny/validation": "0.0.0-mt-2",
16
- "form-data": "3.0.1",
17
- "node-fetch": "2.6.5",
18
- "sanitize-filename": "1.6.3",
19
- "uniqid": "5.4.0"
13
+ "@webiny/api-file-manager": "0.0.0-unstable.13771d80a8",
14
+ "@webiny/api-security": "0.0.0-unstable.13771d80a8",
15
+ "@webiny/error": "0.0.0-unstable.13771d80a8",
16
+ "@webiny/handler-graphql": "0.0.0-unstable.13771d80a8",
17
+ "@webiny/validation": "0.0.0-unstable.13771d80a8",
18
+ "form-data": "4.0.0",
19
+ "mdbid": "1.0.0",
20
+ "mime": "3.0.0",
21
+ "node-fetch": "2.6.9",
22
+ "sanitize-filename": "1.6.3"
20
23
  },
21
24
  "devDependencies": {
22
- "@babel/cli": "^7.5.5",
23
- "@babel/core": "^7.5.5",
24
- "@webiny/cli": "^0.0.0-mt-2",
25
- "@webiny/project-utils": "^0.0.0-mt-2",
25
+ "@babel/cli": "^7.19.3",
26
+ "@babel/core": "^7.19.3",
27
+ "@types/node-fetch": "^2.6.1",
28
+ "@webiny/cli": "^0.0.0-unstable.13771d80a8",
29
+ "@webiny/project-utils": "^0.0.0-unstable.13771d80a8",
26
30
  "rimraf": "^3.0.2",
27
- "typescript": "^4.1.3"
31
+ "typescript": "4.7.4"
28
32
  },
29
33
  "publishConfig": {
30
34
  "access": "public",
@@ -34,5 +38,5 @@
34
38
  "build": "yarn webiny run build",
35
39
  "watch": "yarn webiny run watch"
36
40
  },
37
- "gitHead": "3c0dcfb3c22c9f83107fdb97b25014cd03d9db7d"
41
+ "gitHead": "13771d80a8ae3195c9ea1485bf8c01f6667a129e"
38
42
  }
@@ -0,0 +1,5 @@
1
+ import { GetPermission } from "@webiny/api-security/types";
2
+ import { FilePermission } from "@webiny/api-file-manager/types";
3
+ export declare const checkBasePermissions: (getPermission: GetPermission, check?: {
4
+ rwd?: string;
5
+ }) => Promise<FilePermission>;
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.checkBasePermissions = void 0;
7
+ var _apiSecurity = require("@webiny/api-security");
8
+ const checkBasePermissions = async (getPermission, check = {}) => {
9
+ const filePermission = await getPermission("fm.file");
10
+ if (!filePermission) {
11
+ throw new _apiSecurity.NotAuthorizedError();
12
+ }
13
+ if (check.rwd && !hasRwd(filePermission, check.rwd)) {
14
+ throw new _apiSecurity.NotAuthorizedError();
15
+ }
16
+ return filePermission;
17
+ };
18
+ exports.checkBasePermissions = checkBasePermissions;
19
+ const hasRwd = (filesFilePermission, rwd) => {
20
+ if (typeof filesFilePermission.rwd !== "string") {
21
+ return true;
22
+ }
23
+ return filesFilePermission.rwd.includes(rwd);
24
+ };
@@ -0,0 +1 @@
1
+ {"version":3,"names":["checkBasePermissions","getPermission","check","filePermission","NotAuthorizedError","rwd","hasRwd","filesFilePermission","includes"],"sources":["checkBasePermissions.ts"],"sourcesContent":["import { NotAuthorizedError } from \"@webiny/api-security\";\nimport { GetPermission } from \"@webiny/api-security/types\";\nimport { FilePermission } from \"@webiny/api-file-manager/types\";\n\nexport const checkBasePermissions = async (\n getPermission: GetPermission,\n check: { rwd?: string } = {}\n): Promise<FilePermission> => {\n const filePermission = await getPermission<FilePermission>(\"fm.file\");\n\n if (!filePermission) {\n throw new NotAuthorizedError();\n }\n if (check.rwd && !hasRwd(filePermission, check.rwd)) {\n throw new NotAuthorizedError();\n }\n\n return filePermission;\n};\n\nconst hasRwd = (filesFilePermission: FilePermission, rwd: string): boolean => {\n if (typeof filesFilePermission.rwd !== \"string\") {\n return true;\n }\n\n return filesFilePermission.rwd.includes(rwd);\n};\n"],"mappings":";;;;;;AAAA;AAIO,MAAMA,oBAAoB,GAAG,OAChCC,aAA4B,EAC5BC,KAAuB,GAAG,CAAC,CAAC,KACF;EAC1B,MAAMC,cAAc,GAAG,MAAMF,aAAa,CAAiB,SAAS,CAAC;EAErE,IAAI,CAACE,cAAc,EAAE;IACjB,MAAM,IAAIC,+BAAkB,EAAE;EAClC;EACA,IAAIF,KAAK,CAACG,GAAG,IAAI,CAACC,MAAM,CAACH,cAAc,EAAED,KAAK,CAACG,GAAG,CAAC,EAAE;IACjD,MAAM,IAAID,+BAAkB,EAAE;EAClC;EAEA,OAAOD,cAAc;AACzB,CAAC;AAAC;AAEF,MAAMG,MAAM,GAAG,CAACC,mBAAmC,EAAEF,GAAW,KAAc;EAC1E,IAAI,OAAOE,mBAAmB,CAACF,GAAG,KAAK,QAAQ,EAAE;IAC7C,OAAO,IAAI;EACf;EAEA,OAAOE,mBAAmB,CAACF,GAAG,CAACG,QAAQ,CAACH,GAAG,CAAC;AAChD,CAAC"}
@@ -0,0 +1,4 @@
1
+ import { FileManagerContext, FilePermission } from "@webiny/api-file-manager/types";
2
+ export declare const checkPermission: (context: FileManagerContext, check?: {
3
+ rwd?: string;
4
+ }) => Promise<FilePermission>;
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.checkPermission = void 0;
7
+ var _apiSecurity = require("@webiny/api-security");
8
+ const checkPermission = async (context, check = {}) => {
9
+ await context.i18n.checkI18NContentPermission();
10
+ const filePermission = await context.security.getPermission("fm.file");
11
+ if (!filePermission) {
12
+ throw new _apiSecurity.NotAuthorizedError();
13
+ }
14
+ if (check.rwd && !hasRwd(filePermission, check.rwd)) {
15
+ throw new _apiSecurity.NotAuthorizedError();
16
+ }
17
+ return filePermission;
18
+ };
19
+ exports.checkPermission = checkPermission;
20
+ const hasRwd = (filesFilePermission, rwd) => {
21
+ if (typeof filesFilePermission.rwd !== "string") {
22
+ return true;
23
+ }
24
+ return filesFilePermission.rwd.includes(rwd);
25
+ };
@@ -0,0 +1 @@
1
+ {"version":3,"names":["checkPermission","context","check","i18n","checkI18NContentPermission","filePermission","security","getPermission","NotAuthorizedError","rwd","hasRwd","filesFilePermission","includes"],"sources":["checkPermission.ts"],"sourcesContent":["import { FileManagerContext, FilePermission } from \"@webiny/api-file-manager/types\";\nimport { NotAuthorizedError } from \"@webiny/api-security\";\n\nexport const checkPermission = async (\n context: FileManagerContext,\n check: { rwd?: string } = {}\n) => {\n await context.i18n.checkI18NContentPermission();\n\n const filePermission = await context.security.getPermission<FilePermission>(\"fm.file\");\n\n if (!filePermission) {\n throw new NotAuthorizedError();\n }\n if (check.rwd && !hasRwd(filePermission, check.rwd)) {\n throw new NotAuthorizedError();\n }\n\n return filePermission;\n};\n\nconst hasRwd = (filesFilePermission: FilePermission, rwd: string): boolean => {\n if (typeof filesFilePermission.rwd !== \"string\") {\n return true;\n }\n\n return filesFilePermission.rwd.includes(rwd);\n};\n"],"mappings":";;;;;;AACA;AAEO,MAAMA,eAAe,GAAG,OAC3BC,OAA2B,EAC3BC,KAAuB,GAAG,CAAC,CAAC,KAC3B;EACD,MAAMD,OAAO,CAACE,IAAI,CAACC,0BAA0B,EAAE;EAE/C,MAAMC,cAAc,GAAG,MAAMJ,OAAO,CAACK,QAAQ,CAACC,aAAa,CAAiB,SAAS,CAAC;EAEtF,IAAI,CAACF,cAAc,EAAE;IACjB,MAAM,IAAIG,+BAAkB,EAAE;EAClC;EACA,IAAIN,KAAK,CAACO,GAAG,IAAI,CAACC,MAAM,CAACL,cAAc,EAAEH,KAAK,CAACO,GAAG,CAAC,EAAE;IACjD,MAAM,IAAID,+BAAkB,EAAE;EAClC;EAEA,OAAOH,cAAc;AACzB,CAAC;AAAC;AAEF,MAAMK,MAAM,GAAG,CAACC,mBAAmC,EAAEF,GAAW,KAAc;EAC1E,IAAI,OAAOE,mBAAmB,CAACF,GAAG,KAAK,QAAQ,EAAE;IAC7C,OAAO,IAAI;EACf;EAEA,OAAOE,mBAAmB,CAACF,GAAG,CAACG,QAAQ,CAACH,GAAG,CAAC;AAChD,CAAC"}
@@ -1,3 +1,3 @@
1
- import { FilePhysicalStoragePlugin } from "@webiny/api-file-manager/plugins/definitions/FilePhysicalStoragePlugin";
1
+ import { FilePhysicalStoragePlugin } from "@webiny/api-file-manager/plugins/FilePhysicalStoragePlugin";
2
2
  declare const _default: () => FilePhysicalStoragePlugin;
3
3
  export default _default;
@@ -1,53 +1,50 @@
1
1
  "use strict";
2
2
 
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
5
4
  Object.defineProperty(exports, "__esModule", {
6
5
  value: true
7
6
  });
8
7
  exports.default = void 0;
9
-
10
8
  var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
11
-
12
9
  var _s = _interopRequireDefault(require("aws-sdk/clients/s3"));
13
-
14
- var _getPresignedPostPayload = _interopRequireDefault(require("../utils/getPresignedPostPayload"));
15
-
10
+ var _getPresignedPostPayload = require("../utils/getPresignedPostPayload");
16
11
  var _uploadFileToS = _interopRequireDefault(require("../utils/uploadFileToS3"));
17
-
18
- var _FilePhysicalStoragePlugin = require("@webiny/api-file-manager/plugins/definitions/FilePhysicalStoragePlugin");
19
-
12
+ var _FilePhysicalStoragePlugin = require("@webiny/api-file-manager/plugins/FilePhysicalStoragePlugin");
20
13
  const _excluded = ["settings", "buffer"];
21
14
  const S3_BUCKET = process.env.S3_BUCKET;
22
-
23
15
  var _default = () => {
16
+ /**
17
+ * We need to extends the type for FilePhysicalStoragePlugin.
18
+ * Otherwise, the `getPresignedPostPayload` doesn't know it has all required values in params.
19
+ */
24
20
  return new _FilePhysicalStoragePlugin.FilePhysicalStoragePlugin({
25
- upload: async args => {
21
+ upload: async params => {
26
22
  const {
27
- settings,
28
- buffer
29
- } = args,
30
- data = (0, _objectWithoutProperties2.default)(args, _excluded);
23
+ settings,
24
+ buffer
25
+ } = params,
26
+ data = (0, _objectWithoutProperties2.default)(params, _excluded);
31
27
  const {
32
28
  data: preSignedPostPayload,
33
29
  file
34
- } = await (0, _getPresignedPostPayload.default)(data, settings);
30
+ } = await (0, _getPresignedPostPayload.getPresignedPostPayload)(data, settings);
35
31
  const response = await (0, _uploadFileToS.default)(buffer, preSignedPostPayload);
36
-
37
32
  if (!response.ok) {
38
33
  throw Error("Unable to upload file.");
39
34
  }
40
-
41
35
  return {
42
36
  data: preSignedPostPayload,
43
37
  file
44
38
  };
45
39
  },
46
- delete: async args => {
40
+ delete: async params => {
47
41
  const {
48
42
  key
49
- } = args;
43
+ } = params;
50
44
  const s3 = new _s.default();
45
+ if (!key || !S3_BUCKET) {
46
+ return;
47
+ }
51
48
  await s3.deleteObject({
52
49
  Bucket: S3_BUCKET,
53
50
  Key: key
@@ -55,5 +52,4 @@ var _default = () => {
55
52
  }
56
53
  });
57
54
  };
58
-
59
55
  exports.default = _default;
@@ -0,0 +1 @@
1
+ {"version":3,"names":["S3_BUCKET","process","env","FilePhysicalStoragePlugin","upload","params","settings","buffer","data","preSignedPostPayload","file","getPresignedPostPayload","response","uploadFileToS3","ok","Error","delete","key","s3","S3","deleteObject","Bucket","Key","promise"],"sources":["fileStorageS3.ts"],"sourcesContent":["import S3 from \"aws-sdk/clients/s3\";\nimport { getPresignedPostPayload } from \"~/utils/getPresignedPostPayload\";\nimport uploadFileToS3 from \"../utils/uploadFileToS3\";\nimport { FilePhysicalStoragePlugin } from \"@webiny/api-file-manager/plugins/FilePhysicalStoragePlugin\";\nimport { PresignedPostPayloadData } from \"~/types\";\n\nconst S3_BUCKET = process.env.S3_BUCKET;\n\nexport default (): FilePhysicalStoragePlugin => {\n /**\n * We need to extends the type for FilePhysicalStoragePlugin.\n * Otherwise, the `getPresignedPostPayload` doesn't know it has all required values in params.\n */\n return new FilePhysicalStoragePlugin({\n upload: async params => {\n const { settings, buffer, ...data } = params;\n\n const { data: preSignedPostPayload, file } = await getPresignedPostPayload(\n data as PresignedPostPayloadData,\n settings\n );\n\n const response = await uploadFileToS3(buffer, preSignedPostPayload);\n if (!response.ok) {\n throw Error(\"Unable to upload file.\");\n }\n\n return {\n data: preSignedPostPayload,\n file\n };\n },\n delete: async params => {\n const { key } = params;\n const s3 = new S3();\n\n if (!key || !S3_BUCKET) {\n return;\n }\n\n await s3\n .deleteObject({\n Bucket: S3_BUCKET,\n Key: key\n })\n .promise();\n }\n });\n};\n"],"mappings":";;;;;;;;AAAA;AACA;AACA;AACA;AAAuG;AAGvG,MAAMA,SAAS,GAAGC,OAAO,CAACC,GAAG,CAACF,SAAS;AAAC,eAEzB,MAAiC;EAC5C;AACJ;AACA;AACA;EACI,OAAO,IAAIG,oDAAyB,CAAC;IACjCC,MAAM,EAAE,MAAMC,MAAM,IAAI;MACpB,MAAM;UAAEC,QAAQ;UAAEC;QAAgB,CAAC,GAAGF,MAAM;QAAfG,IAAI,0CAAKH,MAAM;MAE5C,MAAM;QAAEG,IAAI,EAAEC,oBAAoB;QAAEC;MAAK,CAAC,GAAG,MAAM,IAAAC,gDAAuB,EACtEH,IAAI,EACJF,QAAQ,CACX;MAED,MAAMM,QAAQ,GAAG,MAAM,IAAAC,sBAAc,EAACN,MAAM,EAAEE,oBAAoB,CAAC;MACnE,IAAI,CAACG,QAAQ,CAACE,EAAE,EAAE;QACd,MAAMC,KAAK,CAAC,wBAAwB,CAAC;MACzC;MAEA,OAAO;QACHP,IAAI,EAAEC,oBAAoB;QAC1BC;MACJ,CAAC;IACL,CAAC;IACDM,MAAM,EAAE,MAAMX,MAAM,IAAI;MACpB,MAAM;QAAEY;MAAI,CAAC,GAAGZ,MAAM;MACtB,MAAMa,EAAE,GAAG,IAAIC,UAAE,EAAE;MAEnB,IAAI,CAACF,GAAG,IAAI,CAACjB,SAAS,EAAE;QACpB;MACJ;MAEA,MAAMkB,EAAE,CACHE,YAAY,CAAC;QACVC,MAAM,EAAErB,SAAS;QACjBsB,GAAG,EAAEL;MACT,CAAC,CAAC,CACDM,OAAO,EAAE;IAClB;EACJ,CAAC,CAAC;AACN,CAAC;AAAA"}
@@ -1,26 +1,20 @@
1
1
  "use strict";
2
2
 
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
5
4
  Object.defineProperty(exports, "__esModule", {
6
5
  value: true
7
6
  });
8
7
  exports.default = void 0;
9
-
10
8
  var _responses = require("@webiny/handler-graphql/responses");
11
-
12
- var _checkBasePermissions = _interopRequireDefault(require("@webiny/api-file-manager/plugins/crud/utils/checkBasePermissions"));
13
-
14
- var _getPresignedPostPayload = _interopRequireDefault(require("../utils/getPresignedPostPayload"));
15
-
9
+ var _getPresignedPostPayload = require("../utils/getPresignedPostPayload");
10
+ var _error = _interopRequireDefault(require("@webiny/error"));
11
+ var _checkPermission = require("./checkPermission");
16
12
  const BATCH_UPLOAD_MAX_FILES = 20;
17
13
  const plugin = {
18
14
  type: "graphql-schema",
19
15
  name: "graphql-schema-api-file-manager-s3",
20
16
  schema: {
21
- typeDefs:
22
- /* GraphQL */
23
- `
17
+ typeDefs: /* GraphQL */`
24
18
  input PreSignedPostPayloadInput {
25
19
  name: String!
26
20
  type: String!
@@ -28,10 +22,11 @@ const plugin = {
28
22
  }
29
23
 
30
24
  type GetPreSignedPostPayloadResponseDataFile {
31
- name: String
32
- type: String
33
- size: Int
34
- key: String
25
+ id: ID!
26
+ name: String!
27
+ type: String!
28
+ size: Int!
29
+ key: String!
35
30
  }
36
31
 
37
32
  type GetPreSignedPostPayloadResponseData {
@@ -63,14 +58,19 @@ const plugin = {
63
58
  FmQuery: {
64
59
  getPreSignedPostPayload: async (_, args, context) => {
65
60
  try {
66
- await (0, _checkBasePermissions.default)(context, {
61
+ await (0, _checkPermission.checkPermission)(context, {
67
62
  rwd: "w"
68
63
  });
69
64
  const {
70
65
  data
71
66
  } = args;
72
- const settings = await context.fileManager.settings.getSettings();
73
- const response = await (0, _getPresignedPostPayload.default)(data, settings);
67
+ const settings = await context.fileManager.getSettings();
68
+ if (!settings) {
69
+ throw new _error.default("Missing File Manager Settings.", "FILE_MANAGER_SETTINGS_ERROR", {
70
+ file: data
71
+ });
72
+ }
73
+ const response = await (0, _getPresignedPostPayload.getPresignedPostPayload)(data, settings);
74
74
  return new _responses.Response(response);
75
75
  } catch (e) {
76
76
  return new _responses.ErrorResponse({
@@ -81,43 +81,41 @@ const plugin = {
81
81
  }
82
82
  },
83
83
  getPreSignedPostPayloads: async (_, args, context) => {
84
- await (0, _checkBasePermissions.default)(context, {
84
+ await (0, _checkPermission.checkPermission)(context, {
85
85
  rwd: "w"
86
86
  });
87
87
  const {
88
88
  data: files
89
89
  } = args;
90
-
91
90
  if (!Array.isArray(files)) {
92
91
  return new _responses.ErrorResponse({
93
92
  code: "UPLOAD_FILES_NON_ARRAY",
94
93
  message: `"data" argument must be an array.`
95
94
  });
96
95
  }
97
-
98
96
  if (files.length === 0) {
99
97
  return new _responses.ErrorResponse({
100
98
  code: "UPLOAD_FILES_MIN_FILES",
101
99
  message: `"data" argument must contain at least one file.`
102
100
  });
103
101
  }
104
-
105
102
  if (files.length > BATCH_UPLOAD_MAX_FILES) {
106
103
  return new _responses.ErrorResponse({
107
104
  code: "UPLOAD_FILES_MAX_FILES",
108
105
  message: `"data" argument must not contain more than ${BATCH_UPLOAD_MAX_FILES} files.`
109
106
  });
110
107
  }
111
-
112
108
  try {
113
- const settings = await context.fileManager.settings.getSettings();
109
+ const settings = await context.fileManager.getSettings();
110
+ if (!settings) {
111
+ throw new _error.default("Missing File Manager Settings.", "FILE_MANAGER_SETTINGS_ERROR", {
112
+ files
113
+ });
114
+ }
114
115
  const promises = [];
115
-
116
- for (let i = 0; i < files.length; i++) {
117
- const item = files[i];
118
- promises.push((0, _getPresignedPostPayload.default)(item, settings));
116
+ for (const item of files) {
117
+ promises.push((0, _getPresignedPostPayload.getPresignedPostPayload)(item, settings));
119
118
  }
120
-
121
119
  return new _responses.Response(await Promise.all(promises));
122
120
  } catch (e) {
123
121
  return new _responses.ErrorResponse({
@@ -0,0 +1 @@
1
+ {"version":3,"names":["BATCH_UPLOAD_MAX_FILES","plugin","type","name","schema","typeDefs","resolvers","FmQuery","getPreSignedPostPayload","_","args","context","checkPermission","rwd","data","settings","fileManager","getSettings","WebinyError","file","response","getPresignedPostPayload","Response","e","ErrorResponse","message","code","getPreSignedPostPayloads","files","Array","isArray","length","promises","item","push","Promise","all"],"sources":["graphqlFileStorageS3.ts"],"sourcesContent":["import { GraphQLSchemaPlugin } from \"@webiny/handler-graphql/types\";\nimport { ErrorResponse, Response } from \"@webiny/handler-graphql/responses\";\nimport { FileManagerContext } from \"@webiny/api-file-manager/types\";\nimport { getPresignedPostPayload } from \"~/utils/getPresignedPostPayload\";\nimport WebinyError from \"@webiny/error\";\nimport { checkPermission } from \"~/plugins/checkPermission\";\n\nconst BATCH_UPLOAD_MAX_FILES = 20;\n\nconst plugin: GraphQLSchemaPlugin<FileManagerContext> = {\n type: \"graphql-schema\",\n name: \"graphql-schema-api-file-manager-s3\",\n schema: {\n typeDefs: /* GraphQL */ `\n input PreSignedPostPayloadInput {\n name: String!\n type: String!\n size: Int!\n }\n\n type GetPreSignedPostPayloadResponseDataFile {\n id: ID!\n name: String!\n type: String!\n size: Int!\n key: String!\n }\n\n type GetPreSignedPostPayloadResponseData {\n # Contains data that is necessary for initiating a file upload.\n data: JSON\n file: UploadFileResponseDataFile\n }\n\n type GetPreSignedPostPayloadResponse {\n error: FileError\n data: GetPreSignedPostPayloadResponseData\n }\n\n type GetPreSignedPostPayloadsResponse {\n error: FileError\n data: [GetPreSignedPostPayloadResponseData]!\n }\n\n extend type FmQuery {\n getPreSignedPostPayload(\n data: PreSignedPostPayloadInput!\n ): GetPreSignedPostPayloadResponse\n getPreSignedPostPayloads(\n data: [PreSignedPostPayloadInput]!\n ): GetPreSignedPostPayloadsResponse\n }\n `,\n resolvers: {\n FmQuery: {\n getPreSignedPostPayload: async (_, args: any, context) => {\n try {\n await checkPermission(context, { rwd: \"w\" });\n\n const { data } = args;\n const settings = await context.fileManager.getSettings();\n if (!settings) {\n throw new WebinyError(\n \"Missing File Manager Settings.\",\n \"FILE_MANAGER_SETTINGS_ERROR\",\n {\n file: data\n }\n );\n }\n const response = await getPresignedPostPayload(data, settings);\n\n return new Response(response);\n } catch (e) {\n return new ErrorResponse({\n message: e.message,\n code: e.code,\n data: e.data\n });\n }\n },\n getPreSignedPostPayloads: async (_, args: any, context) => {\n await checkPermission(context, { rwd: \"w\" });\n\n const { data: files } = args;\n if (!Array.isArray(files)) {\n return new ErrorResponse({\n code: \"UPLOAD_FILES_NON_ARRAY\",\n message: `\"data\" argument must be an array.`\n });\n }\n\n if (files.length === 0) {\n return new ErrorResponse({\n code: \"UPLOAD_FILES_MIN_FILES\",\n message: `\"data\" argument must contain at least one file.`\n });\n }\n\n if (files.length > BATCH_UPLOAD_MAX_FILES) {\n return new ErrorResponse({\n code: \"UPLOAD_FILES_MAX_FILES\",\n message: `\"data\" argument must not contain more than ${BATCH_UPLOAD_MAX_FILES} files.`\n });\n }\n\n try {\n const settings = await context.fileManager.getSettings();\n if (!settings) {\n throw new WebinyError(\n \"Missing File Manager Settings.\",\n \"FILE_MANAGER_SETTINGS_ERROR\",\n {\n files\n }\n );\n }\n\n const promises = [];\n for (const item of files) {\n promises.push(getPresignedPostPayload(item, settings));\n }\n\n return new Response(await Promise.all(promises));\n } catch (e) {\n return new ErrorResponse({\n message: e.message,\n code: e.code,\n data: e.data\n });\n }\n }\n }\n }\n }\n};\n\nexport default plugin;\n"],"mappings":"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"}
package/types.d.ts CHANGED
@@ -0,0 +1,17 @@
1
+ import S3 from "aws-sdk/clients/s3";
2
+ export interface PresignedPostPayloadData {
3
+ name: string;
4
+ type: string;
5
+ size: number;
6
+ keyPrefix: string;
7
+ }
8
+ export interface PresignedPostPayloadDataResponse {
9
+ data: S3.PresignedPost;
10
+ file: {
11
+ id: string;
12
+ name: string;
13
+ key: string;
14
+ type: string;
15
+ size: number;
16
+ };
17
+ }
package/types.js CHANGED
@@ -1 +1,5 @@
1
- "use strict";
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
package/types.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sources":["types.ts"],"sourcesContent":["import S3 from \"aws-sdk/clients/s3\";\n\nexport interface PresignedPostPayloadData {\n name: string;\n type: string;\n size: number;\n keyPrefix: string;\n}\n\nexport interface PresignedPostPayloadDataResponse {\n data: S3.PresignedPost;\n file: {\n id: string;\n name: string;\n key: string;\n type: string;\n size: number;\n };\n}\n"],"mappings":""}
@@ -1,11 +1,3 @@
1
- import S3 from "aws-sdk/clients/s3";
2
- declare const _default: (data: any, settings: any) => Promise<{
3
- data: S3.PresignedPost;
4
- file: {
5
- name: string;
6
- key: string;
7
- type: any;
8
- size: any;
9
- };
10
- }>;
11
- export default _default;
1
+ import { PresignedPostPayloadData, PresignedPostPayloadDataResponse } from "../types";
2
+ import { FileManagerSettings } from "@webiny/api-file-manager/types";
3
+ export declare const getPresignedPostPayload: (data: PresignedPostPayloadData, settings: FileManagerSettings) => Promise<PresignedPostPayloadDataResponse>;
@@ -1,19 +1,16 @@
1
1
  "use strict";
2
2
 
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
5
4
  Object.defineProperty(exports, "__esModule", {
6
5
  value: true
7
6
  });
8
- exports.default = void 0;
9
-
10
- var _uniqid = _interopRequireDefault(require("uniqid"));
11
-
7
+ exports.getPresignedPostPayload = void 0;
8
+ var _mdbid = _interopRequireDefault(require("mdbid"));
12
9
  var _sanitizeFilename = _interopRequireDefault(require("sanitize-filename"));
13
-
14
10
  var _s = _interopRequireDefault(require("aws-sdk/clients/s3"));
15
-
16
11
  var _validation = require("@webiny/validation");
12
+ var _mimeTypes = require("./mimeTypes");
13
+ // @ts-ignore `mdbid` has no type declarations
17
14
 
18
15
  const S3_BUCKET = process.env.S3_BUCKET;
19
16
  const UPLOAD_MAX_FILE_SIZE_DEFAULT = 26214400; // 25MB
@@ -21,38 +18,39 @@ const UPLOAD_MAX_FILE_SIZE_DEFAULT = 26214400; // 25MB
21
18
  const sanitizeFileSizeValue = (value, defaultValue) => {
22
19
  try {
23
20
  _validation.validation.validateSync(value, "required,numeric,gte:0");
24
-
25
21
  return value;
26
22
  } catch (e) {
23
+ // TODO @ts-refactor No need to log the error?
27
24
  return defaultValue;
28
25
  }
29
26
  };
30
-
31
- var _default = async (data, settings) => {
27
+ const getPresignedPostPayload = async (data, settings) => {
32
28
  // If type is missing, let's use the default "application/octet-stream" type,
33
29
  // which is also the default type that the Amazon S3 would use.
34
30
  if (!data.type) {
35
31
  data.type = "application/octet-stream";
36
32
  }
37
-
38
33
  const contentType = data.type;
39
-
40
34
  if (!contentType) {
41
35
  throw Error(`File's content type could not be resolved.`);
42
36
  }
43
-
37
+ const id = (0, _mdbid.default)();
44
38
  let key = (0, _sanitizeFilename.default)(data.name);
45
-
46
39
  if (key) {
47
- key = (0, _uniqid.default)() + "-" + key;
40
+ key = id + "/" + key;
48
41
  }
49
-
50
42
  if (data.keyPrefix) {
51
- key = `${(0, _sanitizeFilename.default)(data.keyPrefix)}-${key}`;
52
- } // Replace all whitespace.
53
-
43
+ key = `${(0, _sanitizeFilename.default)(data.keyPrefix)}${key}`;
44
+ }
54
45
 
46
+ // Replace all whitespace.
55
47
  key = key.replace(/\s/g, "");
48
+
49
+ // Make sure file key contains a file extension
50
+ const extensions = _mimeTypes.mimeTypes[contentType];
51
+ if (!extensions.some(ext => key.endsWith(`.${ext}`))) {
52
+ key = key + `.${extensions[0]}`;
53
+ }
56
54
  const uploadMinFileSize = sanitizeFileSizeValue(settings.uploadMinFileSize, 0);
57
55
  const uploadMaxFileSize = sanitizeFileSizeValue(settings.uploadMaxFileSize, UPLOAD_MAX_FILE_SIZE_DEFAULT);
58
56
  const params = {
@@ -65,22 +63,20 @@ var _default = async (data, settings) => {
65
63
  key
66
64
  }
67
65
  };
68
-
69
66
  if (params.Fields.key.startsWith("/")) {
70
- params.Fields.key = params.Fields.key.substr(1);
67
+ params.Fields.key = params.Fields.key.slice(1);
71
68
  }
72
-
73
69
  const s3 = new _s.default();
74
70
  const payload = s3.createPresignedPost(params);
75
71
  return {
76
72
  data: payload,
77
73
  file: {
78
- name: key,
74
+ id,
75
+ name: data.name,
79
76
  key,
80
77
  type: contentType,
81
78
  size: data.size
82
79
  }
83
80
  };
84
81
  };
85
-
86
- exports.default = _default;
82
+ exports.getPresignedPostPayload = getPresignedPostPayload;
@@ -0,0 +1 @@
1
+ {"version":3,"names":["S3_BUCKET","process","env","UPLOAD_MAX_FILE_SIZE_DEFAULT","sanitizeFileSizeValue","value","defaultValue","validation","validateSync","e","getPresignedPostPayload","data","settings","type","contentType","Error","id","mdbid","key","sanitizeFilename","name","keyPrefix","replace","extensions","mimeTypes","some","ext","endsWith","uploadMinFileSize","uploadMaxFileSize","params","Expires","Bucket","Conditions","Fields","startsWith","slice","s3","S3","payload","createPresignedPost","file","size"],"sources":["getPresignedPostPayload.ts"],"sourcesContent":["// @ts-ignore `mdbid` has no type declarations\nimport mdbid from \"mdbid\";\nimport sanitizeFilename from \"sanitize-filename\";\nimport S3 from \"aws-sdk/clients/s3\";\nimport { validation } from \"@webiny/validation\";\nimport { PresignedPostPayloadData, PresignedPostPayloadDataResponse } from \"~/types\";\nimport { FileManagerSettings } from \"@webiny/api-file-manager/types\";\nimport { mimeTypes } from \"./mimeTypes\";\n\nconst S3_BUCKET = process.env.S3_BUCKET;\nconst UPLOAD_MAX_FILE_SIZE_DEFAULT = 26214400; // 25MB\n\nconst sanitizeFileSizeValue = (value: number, defaultValue: number): number => {\n try {\n validation.validateSync(value, \"required,numeric,gte:0\");\n return value;\n } catch (e) {\n // TODO @ts-refactor No need to log the error?\n return defaultValue;\n }\n};\n\nexport const getPresignedPostPayload = async (\n data: PresignedPostPayloadData,\n settings: FileManagerSettings\n): Promise<PresignedPostPayloadDataResponse> => {\n // If type is missing, let's use the default \"application/octet-stream\" type,\n // which is also the default type that the Amazon S3 would use.\n if (!data.type) {\n data.type = \"application/octet-stream\";\n }\n\n const contentType = data.type;\n if (!contentType) {\n throw Error(`File's content type could not be resolved.`);\n }\n\n const id = mdbid();\n let key = sanitizeFilename(data.name);\n if (key) {\n key = id + \"/\" + key;\n }\n\n if (data.keyPrefix) {\n key = `${sanitizeFilename(data.keyPrefix)}${key}`;\n }\n\n // Replace all whitespace.\n key = key.replace(/\\s/g, \"\");\n\n // Make sure file key contains a file extension\n const extensions = mimeTypes[contentType];\n if (!extensions.some(ext => key.endsWith(`.${ext}`))) {\n key = key + `.${extensions[0]}`;\n }\n\n const uploadMinFileSize = sanitizeFileSizeValue(settings.uploadMinFileSize, 0);\n const uploadMaxFileSize = sanitizeFileSizeValue(\n settings.uploadMaxFileSize,\n UPLOAD_MAX_FILE_SIZE_DEFAULT\n );\n\n const params = {\n Expires: 60,\n Bucket: S3_BUCKET,\n Conditions: [[\"content-length-range\", uploadMinFileSize, uploadMaxFileSize]], // 0 Bytes - 25MB\n Fields: {\n \"Content-Type\": contentType,\n key\n }\n };\n\n if (params.Fields.key.startsWith(\"/\")) {\n params.Fields.key = params.Fields.key.slice(1);\n }\n\n const s3 = new S3();\n const payload = s3.createPresignedPost(params);\n\n return {\n data: payload,\n file: {\n id,\n name: data.name,\n key,\n type: contentType,\n size: data.size\n }\n };\n};\n"],"mappings":";;;;;;;AACA;AACA;AACA;AACA;AAGA;AAPA;;AASA,MAAMA,SAAS,GAAGC,OAAO,CAACC,GAAG,CAACF,SAAS;AACvC,MAAMG,4BAA4B,GAAG,QAAQ,CAAC,CAAC;;AAE/C,MAAMC,qBAAqB,GAAG,CAACC,KAAa,EAAEC,YAAoB,KAAa;EAC3E,IAAI;IACAC,sBAAU,CAACC,YAAY,CAACH,KAAK,EAAE,wBAAwB,CAAC;IACxD,OAAOA,KAAK;EAChB,CAAC,CAAC,OAAOI,CAAC,EAAE;IACR;IACA,OAAOH,YAAY;EACvB;AACJ,CAAC;AAEM,MAAMI,uBAAuB,GAAG,OACnCC,IAA8B,EAC9BC,QAA6B,KACe;EAC5C;EACA;EACA,IAAI,CAACD,IAAI,CAACE,IAAI,EAAE;IACZF,IAAI,CAACE,IAAI,GAAG,0BAA0B;EAC1C;EAEA,MAAMC,WAAW,GAAGH,IAAI,CAACE,IAAI;EAC7B,IAAI,CAACC,WAAW,EAAE;IACd,MAAMC,KAAK,CAAE,4CAA2C,CAAC;EAC7D;EAEA,MAAMC,EAAE,GAAG,IAAAC,cAAK,GAAE;EAClB,IAAIC,GAAG,GAAG,IAAAC,yBAAgB,EAACR,IAAI,CAACS,IAAI,CAAC;EACrC,IAAIF,GAAG,EAAE;IACLA,GAAG,GAAGF,EAAE,GAAG,GAAG,GAAGE,GAAG;EACxB;EAEA,IAAIP,IAAI,CAACU,SAAS,EAAE;IAChBH,GAAG,GAAI,GAAE,IAAAC,yBAAgB,EAACR,IAAI,CAACU,SAAS,CAAE,GAAEH,GAAI,EAAC;EACrD;;EAEA;EACAA,GAAG,GAAGA,GAAG,CAACI,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC;;EAE5B;EACA,MAAMC,UAAU,GAAGC,oBAAS,CAACV,WAAW,CAAC;EACzC,IAAI,CAACS,UAAU,CAACE,IAAI,CAACC,GAAG,IAAIR,GAAG,CAACS,QAAQ,CAAE,IAAGD,GAAI,EAAC,CAAC,CAAC,EAAE;IAClDR,GAAG,GAAGA,GAAG,GAAI,IAAGK,UAAU,CAAC,CAAC,CAAE,EAAC;EACnC;EAEA,MAAMK,iBAAiB,GAAGxB,qBAAqB,CAACQ,QAAQ,CAACgB,iBAAiB,EAAE,CAAC,CAAC;EAC9E,MAAMC,iBAAiB,GAAGzB,qBAAqB,CAC3CQ,QAAQ,CAACiB,iBAAiB,EAC1B1B,4BAA4B,CAC/B;EAED,MAAM2B,MAAM,GAAG;IACXC,OAAO,EAAE,EAAE;IACXC,MAAM,EAAEhC,SAAS;IACjBiC,UAAU,EAAE,CAAC,CAAC,sBAAsB,EAAEL,iBAAiB,EAAEC,iBAAiB,CAAC,CAAC;IAAE;IAC9EK,MAAM,EAAE;MACJ,cAAc,EAAEpB,WAAW;MAC3BI;IACJ;EACJ,CAAC;EAED,IAAIY,MAAM,CAACI,MAAM,CAAChB,GAAG,CAACiB,UAAU,CAAC,GAAG,CAAC,EAAE;IACnCL,MAAM,CAACI,MAAM,CAAChB,GAAG,GAAGY,MAAM,CAACI,MAAM,CAAChB,GAAG,CAACkB,KAAK,CAAC,CAAC,CAAC;EAClD;EAEA,MAAMC,EAAE,GAAG,IAAIC,UAAE,EAAE;EACnB,MAAMC,OAAO,GAAGF,EAAE,CAACG,mBAAmB,CAACV,MAAM,CAAC;EAE9C,OAAO;IACHnB,IAAI,EAAE4B,OAAO;IACbE,IAAI,EAAE;MACFzB,EAAE;MACFI,IAAI,EAAET,IAAI,CAACS,IAAI;MACfF,GAAG;MACHL,IAAI,EAAEC,WAAW;MACjB4B,IAAI,EAAE/B,IAAI,CAAC+B;IACf;EACJ,CAAC;AACL,CAAC;AAAC"}
@@ -0,0 +1,5 @@
1
+ /**
2
+ * We need to get all extensions that are defined for a specific content type.
3
+ * This operation is not available via the `mime` package, so we create such an object ourselves.
4
+ */
5
+ export declare const mimeTypes: Record<string, string[]>;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.mimeTypes = void 0;
8
+ var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
9
+ var _other = _interopRequireDefault(require("mime/types/other"));
10
+ var _standard = _interopRequireDefault(require("mime/types/standard"));
11
+ // @ts-ignore
12
+
13
+ // @ts-ignore
14
+
15
+ /**
16
+ * We need to get all extensions that are defined for a specific content type.
17
+ * This operation is not available via the `mime` package, so we create such an object ourselves.
18
+ */
19
+ const mimeTypes = (0, _objectSpread2.default)((0, _objectSpread2.default)({}, _other.default), _standard.default);
20
+ exports.mimeTypes = mimeTypes;
@@ -0,0 +1 @@
1
+ {"version":3,"names":["mimeTypes","vendorTypes","standardTypes"],"sources":["mimeTypes.ts"],"sourcesContent":["// @ts-ignore\nimport vendorTypes from \"mime/types/other\";\n// @ts-ignore\nimport standardTypes from \"mime/types/standard\";\n\n/**\n * We need to get all extensions that are defined for a specific content type.\n * This operation is not available via the `mime` package, so we create such an object ourselves.\n */\nexport const mimeTypes: Record<string, string[]> = {\n ...vendorTypes,\n ...standardTypes\n};\n"],"mappings":";;;;;;;;AACA;AAEA;AAHA;;AAEA;;AAGA;AACA;AACA;AACA;AACO,MAAMA,SAAmC,+DACzCC,cAAW,GACXC,iBAAa,CACnB;AAAC"}
@@ -1,2 +1,5 @@
1
- declare const _default: (buffer: any, preSignedPostPayload: any) => Promise<import("node-fetch").Response>;
1
+ /// <reference types="node" />
2
+ import { Response } from "node-fetch";
3
+ import S3 from "aws-sdk/clients/s3";
4
+ declare const _default: (buffer: Buffer, preSignedPostPayload: S3.PresignedPost) => Promise<Response>;
2
5
  export default _default;
@@ -1,29 +1,24 @@
1
1
  "use strict";
2
2
 
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
5
4
  Object.defineProperty(exports, "__esModule", {
6
5
  value: true
7
6
  });
8
7
  exports.default = void 0;
9
-
10
8
  var _formData = _interopRequireDefault(require("form-data"));
11
-
12
9
  var _nodeFetch = _interopRequireDefault(require("node-fetch"));
13
-
14
10
  var _default = async (buffer, preSignedPostPayload) => {
15
- const formData = new _formData.default(); // Add all pre signed payload field to "FormData".
16
-
11
+ const formData = new _formData.default();
12
+ // Add all pre signed payload field to "FormData".
17
13
  Object.keys(preSignedPostPayload.fields).forEach(key => {
18
14
  formData.append(key, preSignedPostPayload.fields[key]);
19
- }); // Add file content to "FormData".
20
-
21
- formData.append("file", buffer); // Finally make the upload request to S3.
22
-
15
+ });
16
+ // Add file content to "FormData".
17
+ formData.append("file", buffer);
18
+ // Finally make the upload request to S3.
23
19
  return (0, _nodeFetch.default)(preSignedPostPayload.url, {
24
20
  method: "POST",
25
21
  body: formData
26
22
  });
27
23
  };
28
-
29
24
  exports.default = _default;
@@ -0,0 +1 @@
1
+ {"version":3,"names":["buffer","preSignedPostPayload","formData","FormData","Object","keys","fields","forEach","key","append","fetch","url","method","body"],"sources":["uploadFileToS3.ts"],"sourcesContent":["import FormData from \"form-data\";\nimport fetch, { Response } from \"node-fetch\";\nimport S3 from \"aws-sdk/clients/s3\";\n\nexport default async (\n buffer: Buffer,\n preSignedPostPayload: S3.PresignedPost\n): Promise<Response> => {\n const formData = new FormData();\n // Add all pre signed payload field to \"FormData\".\n Object.keys(preSignedPostPayload.fields).forEach(key => {\n formData.append(key, preSignedPostPayload.fields[key]);\n });\n // Add file content to \"FormData\".\n formData.append(\"file\", buffer);\n // Finally make the upload request to S3.\n return fetch(preSignedPostPayload.url, {\n method: \"POST\",\n body: formData\n });\n};\n"],"mappings":";;;;;;;AAAA;AACA;AAA6C,eAG9B,OACXA,MAAc,EACdC,oBAAsC,KAClB;EACpB,MAAMC,QAAQ,GAAG,IAAIC,iBAAQ,EAAE;EAC/B;EACAC,MAAM,CAACC,IAAI,CAACJ,oBAAoB,CAACK,MAAM,CAAC,CAACC,OAAO,CAACC,GAAG,IAAI;IACpDN,QAAQ,CAACO,MAAM,CAACD,GAAG,EAAEP,oBAAoB,CAACK,MAAM,CAACE,GAAG,CAAC,CAAC;EAC1D,CAAC,CAAC;EACF;EACAN,QAAQ,CAACO,MAAM,CAAC,MAAM,EAAET,MAAM,CAAC;EAC/B;EACA,OAAO,IAAAU,kBAAK,EAACT,oBAAoB,CAACU,GAAG,EAAE;IACnCC,MAAM,EAAE,MAAM;IACdC,IAAI,EAAEX;EACV,CAAC,CAAC;AACN,CAAC;AAAA"}