drapcode-utility 2.4.6-preview → 2.4.7
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.
|
@@ -132,6 +132,7 @@ const drapcodeEncryptDecrypt = async (data, encrypt) => {
|
|
|
132
132
|
};
|
|
133
133
|
exports.drapcodeEncryptDecrypt = drapcodeEncryptDecrypt;
|
|
134
134
|
const cryptFile = async (filePath, encryption, decrypt) => {
|
|
135
|
+
console.log("encryption cryptFile:>> ", encryption);
|
|
135
136
|
const data = await (0, file_1.processFileEncryptionDecryption)(filePath, encryption, decrypt);
|
|
136
137
|
return data;
|
|
137
138
|
};
|
package/build/utils/s3-util.js
CHANGED
|
@@ -33,6 +33,7 @@ const createS3Client = (awsConfig) => {
|
|
|
33
33
|
exports.createS3Client = createS3Client;
|
|
34
34
|
const fileUploadToS3 = async (files, s3Client, s3Config, publicS3Client, publicS3Config, isGenerateIcons, encryption, options = {}, encrypted = false) => {
|
|
35
35
|
if (Array.isArray(files)) {
|
|
36
|
+
console.log("Multiple file");
|
|
36
37
|
const fileOptions = [];
|
|
37
38
|
const s3Key = s3Config.key;
|
|
38
39
|
for (const file of files) {
|
|
@@ -48,17 +49,21 @@ const fileUploadToS3 = async (files, s3Client, s3Config, publicS3Client, publicS
|
|
|
48
49
|
return fileOptions;
|
|
49
50
|
}
|
|
50
51
|
else {
|
|
52
|
+
console.log("Single file");
|
|
51
53
|
const fileSlug = slugifyFileName(files.originalname);
|
|
52
54
|
if (s3Config.append) {
|
|
53
55
|
s3Config.key = `${s3Config.key}/${(0, uuid_1.v4)()}/${fileSlug}`;
|
|
54
56
|
}
|
|
57
|
+
console.log("encryption :>> ", encryption);
|
|
55
58
|
return await processFileUploadToS3(files, s3Client, s3Config, publicS3Client, publicS3Config, isGenerateIcons, encryption, options, encrypted);
|
|
56
59
|
}
|
|
57
60
|
};
|
|
58
61
|
exports.fileUploadToS3 = fileUploadToS3;
|
|
59
62
|
const processFileUploadToS3 = async (file, s3Client, s3Config, publicS3Client, publicS3Config, isGenerateIcons, encryption, options = {}, encrypt = false) => {
|
|
60
63
|
try {
|
|
64
|
+
console.log("encrypt :>> ", encrypt);
|
|
61
65
|
const contentType = mime_types_1.default.lookup(file.originalname) || "";
|
|
66
|
+
console.log("s3Config :>> ", s3Config);
|
|
62
67
|
const { acl, key, bucket } = s3Config;
|
|
63
68
|
let params = null;
|
|
64
69
|
let encryptedFilePath = null;
|
|
@@ -83,6 +88,8 @@ const processFileUploadToS3 = async (file, s3Client, s3Config, publicS3Client, p
|
|
|
83
88
|
...options,
|
|
84
89
|
};
|
|
85
90
|
}
|
|
91
|
+
console.log("encryptedFilePath :>> ", encryptedFilePath);
|
|
92
|
+
console.log("params :>> ", params);
|
|
86
93
|
const parallelUploads3 = new lib_storage_1.Upload({ client: s3Client, params });
|
|
87
94
|
const data = await parallelUploads3.done();
|
|
88
95
|
const { smallIcon, mediumIcon, largeIcon } = await handleIconUpload(file, contentType, publicS3Client, publicS3Config, isGenerateIcons, key, options);
|
package/build/utils/util.js
CHANGED
|
@@ -299,6 +299,7 @@ const replaceDataValueIntoExpression = (expression, data, user, tenant, userSett
|
|
|
299
299
|
const contentList = expression
|
|
300
300
|
.match(/{{(.*?)}}/g)
|
|
301
301
|
?.map((b) => b.replace(/{{(.*?)}}/g, "$1"));
|
|
302
|
+
console.log("1 replaceDataValueIntoExpression");
|
|
302
303
|
contentList?.forEach((prop) => {
|
|
303
304
|
const needle = `{{${prop}}}`;
|
|
304
305
|
let dataOfItem = "";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "drapcode-utility",
|
|
3
|
-
"version": "2.4.
|
|
4
|
-
"description": "",
|
|
3
|
+
"version": "2.4.7",
|
|
4
|
+
"description": "DrapCode Utility",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
7
7
|
"files": [
|
|
@@ -42,9 +42,9 @@
|
|
|
42
42
|
"axios": "^1.1.2",
|
|
43
43
|
"date-fns": "^4.1.0",
|
|
44
44
|
"dompurify": "^3.1.7",
|
|
45
|
-
"drapcode-constant": "^
|
|
45
|
+
"drapcode-constant": "^2.0.1",
|
|
46
46
|
"drapcode-logger": "^1.3.5",
|
|
47
|
-
"drapcode-redis": "^1.
|
|
47
|
+
"drapcode-redis": "^1.4.8",
|
|
48
48
|
"exiftool-vendored": "^28.2.1",
|
|
49
49
|
"express": "^4.17.1",
|
|
50
50
|
"gm": "^1.25.0",
|