@adminforth/upload 1.0.28 → 1.0.30
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/ChangeLog.md +5 -0
- package/custom/imageGenerator.vue +8 -8
- package/custom/preview.vue +1 -1
- package/custom/uploader.vue +4 -1
- package/dist/custom/imageGenerator.vue +8 -8
- package/dist/custom/preview.vue +1 -1
- package/dist/custom/uploader.vue +4 -1
- package/dist/index.js +21 -15
- package/index.ts +18 -9
- package/package.json +1 -1
- package/types.ts +7 -2
package/ChangeLog.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<!-- Modal header -->
|
|
9
9
|
<div class="flex items-center justify-between p-3 md:p-4 border-b rounded-t dark:border-gray-600">
|
|
10
10
|
<h3 class="text-xl font-semibold text-gray-900 dark:text-white">
|
|
11
|
-
{{ $('Generate image with AI') }}
|
|
11
|
+
{{ $t('Generate image with AI') }}
|
|
12
12
|
</h3>
|
|
13
13
|
<button type="button"
|
|
14
14
|
@click="emit('close')"
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
<svg class="w-3 h-3" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
|
|
17
17
|
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m1 1 6 6m0 0 6 6M7 7l6-6M7 7l-6 6"/>
|
|
18
18
|
</svg>
|
|
19
|
-
<span class="sr-only">{{ $('Close modal') }}</span>
|
|
19
|
+
<span class="sr-only">{{ $t('Close modal') }}</span>
|
|
20
20
|
</button>
|
|
21
21
|
</div>
|
|
22
22
|
<!-- Modal body -->
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
>
|
|
34
34
|
<div role="status" class="absolute -translate-x-1/2 -translate-y-1/2 top-2/4 left-1/2">
|
|
35
35
|
<svg aria-hidden="true" class="w-8 h-8 text-gray-200 animate-spin dark:text-gray-600 fill-blue-600" viewBox="0 0 100 101" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z" fill="currentColor"/><path d="M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z" fill="currentFill"/></svg>
|
|
36
|
-
<span class="sr-only">{{ $('Loading...') }}</span>
|
|
36
|
+
<span class="sr-only">{{ $t('Loading...') }}</span>
|
|
37
37
|
</div>
|
|
38
38
|
</div>
|
|
39
39
|
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
|
|
50
50
|
<button @click="generateImages" type="button" class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4
|
|
51
51
|
focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center
|
|
52
|
-
dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800 ms-2">{{ $('Generate images') }}</button>
|
|
52
|
+
dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800 ms-2">{{ $t('Generate images') }}</button>
|
|
53
53
|
|
|
54
54
|
</div>
|
|
55
55
|
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
<svg class="w-4 h-4 text-white dark:text-gray-800 rtl:rotate-180" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 6 10">
|
|
63
63
|
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 1 1 5l4 4"/>
|
|
64
64
|
</svg>
|
|
65
|
-
<span class="sr-only">{{ $('Previous') }}</span>
|
|
65
|
+
<span class="sr-only">{{ $t('Previous') }}</span>
|
|
66
66
|
</span>
|
|
67
67
|
</button>
|
|
68
68
|
<button type="button" class="absolute top-0 end-0 z-30 flex items-center justify-center h-full px-4 cursor-pointer group focus:outline-none"
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
<svg class="w-4 h-4 text-white dark:text-gray-800 rtl:rotate-180" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 6 10">
|
|
73
73
|
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m1 9 4-4-4-4"/>
|
|
74
74
|
</svg>
|
|
75
|
-
<span class="sr-only">{{ $('Next') }}</span>
|
|
75
|
+
<span class="sr-only">{{ $t('Next') }}</span>
|
|
76
76
|
</span>
|
|
77
77
|
</button>
|
|
78
78
|
|
|
@@ -87,10 +87,10 @@
|
|
|
87
87
|
class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center
|
|
88
88
|
dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800
|
|
89
89
|
disabled:opacity-50 disabled:cursor-not-allowed"
|
|
90
|
-
>{{ $('Use image') }}</button>
|
|
90
|
+
>{{ $t('Use image') }}</button>
|
|
91
91
|
<button type="button" class="py-2.5 px-5 ms-3 text-sm font-medium text-gray-900 focus:outline-none bg-white rounded-lg border border-gray-200 hover:bg-gray-100 hover:text-blue-700 focus:z-10 focus:ring-4 focus:ring-gray-100 dark:focus:ring-gray-700 dark:bg-gray-800 dark:text-gray-400 dark:border-gray-600 dark:hover:text-white dark:hover:bg-gray-700"
|
|
92
92
|
@click="emit('close')"
|
|
93
|
-
>{{ $('Cancel') }}</button>
|
|
93
|
+
>{{ $t('Cancel') }}</button>
|
|
94
94
|
</div>
|
|
95
95
|
</div>
|
|
96
96
|
</div>
|
package/custom/preview.vue
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
<svg class="w-4 h-4 me-2" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
|
|
26
26
|
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/>
|
|
27
27
|
</svg>
|
|
28
|
-
{{ $('Download file') }}
|
|
28
|
+
{{ $t('Download file') }}
|
|
29
29
|
</a>
|
|
30
30
|
</template>
|
|
31
31
|
|
package/custom/uploader.vue
CHANGED
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
|
|
51
51
|
</svg>
|
|
52
52
|
<p class="ml-2 text-sm text-green-600 dark:text-green-400 flex items-center">
|
|
53
|
-
{{ $('File uploaded') }}
|
|
53
|
+
{{ $t('File uploaded') }}
|
|
54
54
|
<span class="text-xs text-gray-500 dark:text-gray-400">{{ humanifySize(uploadedSize) }}</span>
|
|
55
55
|
</p>
|
|
56
56
|
|
|
@@ -70,7 +70,9 @@ import { computed, ref, onMounted, watch } from 'vue'
|
|
|
70
70
|
import { callAdminForthApi } from '@/utils'
|
|
71
71
|
import { IconMagic } from '@iconify-prerendered/vue-mdi';
|
|
72
72
|
import { useI18n } from 'vue-i18n';
|
|
73
|
+
import { useRoute } from 'vue-router';
|
|
73
74
|
|
|
75
|
+
const route = useRoute();
|
|
74
76
|
const { t } = useI18n();
|
|
75
77
|
|
|
76
78
|
const inputId = computed(() => `dropzone-file-${props.meta.pluginInstanceId}`);
|
|
@@ -233,6 +235,7 @@ const onFileChange = async (e) => {
|
|
|
233
235
|
contentType: type,
|
|
234
236
|
size,
|
|
235
237
|
originalExtension: extension,
|
|
238
|
+
recordPk: route?.params?.primaryKey,
|
|
236
239
|
},
|
|
237
240
|
});
|
|
238
241
|
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<!-- Modal header -->
|
|
9
9
|
<div class="flex items-center justify-between p-3 md:p-4 border-b rounded-t dark:border-gray-600">
|
|
10
10
|
<h3 class="text-xl font-semibold text-gray-900 dark:text-white">
|
|
11
|
-
{{ $('Generate image with AI') }}
|
|
11
|
+
{{ $t('Generate image with AI') }}
|
|
12
12
|
</h3>
|
|
13
13
|
<button type="button"
|
|
14
14
|
@click="emit('close')"
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
<svg class="w-3 h-3" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
|
|
17
17
|
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m1 1 6 6m0 0 6 6M7 7l6-6M7 7l-6 6"/>
|
|
18
18
|
</svg>
|
|
19
|
-
<span class="sr-only">{{ $('Close modal') }}</span>
|
|
19
|
+
<span class="sr-only">{{ $t('Close modal') }}</span>
|
|
20
20
|
</button>
|
|
21
21
|
</div>
|
|
22
22
|
<!-- Modal body -->
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
>
|
|
34
34
|
<div role="status" class="absolute -translate-x-1/2 -translate-y-1/2 top-2/4 left-1/2">
|
|
35
35
|
<svg aria-hidden="true" class="w-8 h-8 text-gray-200 animate-spin dark:text-gray-600 fill-blue-600" viewBox="0 0 100 101" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z" fill="currentColor"/><path d="M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z" fill="currentFill"/></svg>
|
|
36
|
-
<span class="sr-only">{{ $('Loading...') }}</span>
|
|
36
|
+
<span class="sr-only">{{ $t('Loading...') }}</span>
|
|
37
37
|
</div>
|
|
38
38
|
</div>
|
|
39
39
|
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
|
|
50
50
|
<button @click="generateImages" type="button" class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4
|
|
51
51
|
focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center
|
|
52
|
-
dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800 ms-2">{{ $('Generate images') }}</button>
|
|
52
|
+
dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800 ms-2">{{ $t('Generate images') }}</button>
|
|
53
53
|
|
|
54
54
|
</div>
|
|
55
55
|
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
<svg class="w-4 h-4 text-white dark:text-gray-800 rtl:rotate-180" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 6 10">
|
|
63
63
|
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 1 1 5l4 4"/>
|
|
64
64
|
</svg>
|
|
65
|
-
<span class="sr-only">{{ $('Previous') }}</span>
|
|
65
|
+
<span class="sr-only">{{ $t('Previous') }}</span>
|
|
66
66
|
</span>
|
|
67
67
|
</button>
|
|
68
68
|
<button type="button" class="absolute top-0 end-0 z-30 flex items-center justify-center h-full px-4 cursor-pointer group focus:outline-none"
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
<svg class="w-4 h-4 text-white dark:text-gray-800 rtl:rotate-180" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 6 10">
|
|
73
73
|
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m1 9 4-4-4-4"/>
|
|
74
74
|
</svg>
|
|
75
|
-
<span class="sr-only">{{ $('Next') }}</span>
|
|
75
|
+
<span class="sr-only">{{ $t('Next') }}</span>
|
|
76
76
|
</span>
|
|
77
77
|
</button>
|
|
78
78
|
|
|
@@ -87,10 +87,10 @@
|
|
|
87
87
|
class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center
|
|
88
88
|
dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800
|
|
89
89
|
disabled:opacity-50 disabled:cursor-not-allowed"
|
|
90
|
-
>{{ $('Use image') }}</button>
|
|
90
|
+
>{{ $t('Use image') }}</button>
|
|
91
91
|
<button type="button" class="py-2.5 px-5 ms-3 text-sm font-medium text-gray-900 focus:outline-none bg-white rounded-lg border border-gray-200 hover:bg-gray-100 hover:text-blue-700 focus:z-10 focus:ring-4 focus:ring-gray-100 dark:focus:ring-gray-700 dark:bg-gray-800 dark:text-gray-400 dark:border-gray-600 dark:hover:text-white dark:hover:bg-gray-700"
|
|
92
92
|
@click="emit('close')"
|
|
93
|
-
>{{ $('Cancel') }}</button>
|
|
93
|
+
>{{ $t('Cancel') }}</button>
|
|
94
94
|
</div>
|
|
95
95
|
</div>
|
|
96
96
|
</div>
|
package/dist/custom/preview.vue
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
<svg class="w-4 h-4 me-2" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
|
|
26
26
|
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/>
|
|
27
27
|
</svg>
|
|
28
|
-
{{ $('Download file') }}
|
|
28
|
+
{{ $t('Download file') }}
|
|
29
29
|
</a>
|
|
30
30
|
</template>
|
|
31
31
|
|
package/dist/custom/uploader.vue
CHANGED
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
|
|
51
51
|
</svg>
|
|
52
52
|
<p class="ml-2 text-sm text-green-600 dark:text-green-400 flex items-center">
|
|
53
|
-
{{ $('File uploaded') }}
|
|
53
|
+
{{ $t('File uploaded') }}
|
|
54
54
|
<span class="text-xs text-gray-500 dark:text-gray-400">{{ humanifySize(uploadedSize) }}</span>
|
|
55
55
|
</p>
|
|
56
56
|
|
|
@@ -70,7 +70,9 @@ import { computed, ref, onMounted, watch } from 'vue'
|
|
|
70
70
|
import { callAdminForthApi } from '@/utils'
|
|
71
71
|
import { IconMagic } from '@iconify-prerendered/vue-mdi';
|
|
72
72
|
import { useI18n } from 'vue-i18n';
|
|
73
|
+
import { useRoute } from 'vue-router';
|
|
73
74
|
|
|
75
|
+
const route = useRoute();
|
|
74
76
|
const { t } = useI18n();
|
|
75
77
|
|
|
76
78
|
const inputId = computed(() => `dropzone-file-${props.meta.pluginInstanceId}`);
|
|
@@ -233,6 +235,7 @@ const onFileChange = async (e) => {
|
|
|
233
235
|
contentType: type,
|
|
234
236
|
size,
|
|
235
237
|
originalExtension: extension,
|
|
238
|
+
recordPk: route?.params?.primaryKey,
|
|
236
239
|
},
|
|
237
240
|
});
|
|
238
241
|
|
package/dist/index.js
CHANGED
|
@@ -9,7 +9,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
9
9
|
};
|
|
10
10
|
import { getSignedUrl } from '@aws-sdk/s3-request-presigner';
|
|
11
11
|
import { ExpirationStatus, GetObjectCommand, PutObjectCommand, S3 } from '@aws-sdk/client-s3';
|
|
12
|
-
import { AdminForthPlugin, suggestIfTypo } from "adminforth";
|
|
12
|
+
import { AdminForthPlugin, Filters, suggestIfTypo } from "adminforth";
|
|
13
13
|
import { Readable } from "stream";
|
|
14
14
|
import { RateLimiter } from "adminforth";
|
|
15
15
|
const ADMINFORTH_NOT_YET_USED_TAG = 'adminforth-candidate-for-cleanup';
|
|
@@ -105,7 +105,7 @@ export default class UploadPlugin extends AdminForthPlugin {
|
|
|
105
105
|
const { pathColumnName } = this.options;
|
|
106
106
|
const pathColumnIndex = resourceConfig.columns.findIndex((column) => column.name === pathColumnName);
|
|
107
107
|
if (pathColumnIndex === -1) {
|
|
108
|
-
throw new Error(`Column with name "${pathColumnName}" not found in resource "${resourceConfig.
|
|
108
|
+
throw new Error(`Column with name "${pathColumnName}" not found in resource "${resourceConfig.label}"`);
|
|
109
109
|
}
|
|
110
110
|
if ((_a = this.options.generation) === null || _a === void 0 ? void 0 : _a.fieldsForContext) {
|
|
111
111
|
(_b = this.options.generation) === null || _b === void 0 ? void 0 : _b.fieldsForContext.forEach((field) => {
|
|
@@ -283,8 +283,8 @@ export default class UploadPlugin extends AdminForthPlugin {
|
|
|
283
283
|
return { ok: true };
|
|
284
284
|
}));
|
|
285
285
|
// add edit postSave hook to delete old file and remove tag from new file
|
|
286
|
-
resourceConfig.hooks.edit.afterSave.push((_s) => __awaiter(this, [_s], void 0, function* ({
|
|
287
|
-
if (
|
|
286
|
+
resourceConfig.hooks.edit.afterSave.push((_s) => __awaiter(this, [_s], void 0, function* ({ updates, oldRecord }) {
|
|
287
|
+
if (updates[virtualColumn.name] || updates[virtualColumn.name] === null) {
|
|
288
288
|
const s3 = new S3({
|
|
289
289
|
credentials: {
|
|
290
290
|
accessKeyId: this.options.s3AccessKeyId,
|
|
@@ -313,12 +313,12 @@ export default class UploadPlugin extends AdminForthPlugin {
|
|
|
313
313
|
console.error(`Error setting tag ${ADMINFORTH_NOT_YET_USED_TAG} to true for object ${oldRecord[pathColumnName]}. File will not be auto-cleaned up`, e);
|
|
314
314
|
}
|
|
315
315
|
}
|
|
316
|
-
if (
|
|
316
|
+
if (updates[virtualColumn.name] !== null) {
|
|
317
317
|
// remove tag from new file
|
|
318
318
|
// in this case we let it crash if it fails: this is a new file which just was uploaded.
|
|
319
319
|
yield s3.putObjectTagging({
|
|
320
320
|
Bucket: this.options.s3Bucket,
|
|
321
|
-
Key:
|
|
321
|
+
Key: updates[pathColumnName],
|
|
322
322
|
Tagging: {
|
|
323
323
|
TagSet: []
|
|
324
324
|
}
|
|
@@ -339,14 +339,20 @@ export default class UploadPlugin extends AdminForthPlugin {
|
|
|
339
339
|
method: 'POST',
|
|
340
340
|
path: `/plugin/${this.pluginInstanceId}/get_s3_upload_url`,
|
|
341
341
|
handler: (_a) => __awaiter(this, [_a], void 0, function* ({ body }) {
|
|
342
|
-
var _b;
|
|
343
|
-
const { originalFilename, contentType, size, originalExtension } = body;
|
|
342
|
+
var _b, _c;
|
|
343
|
+
const { originalFilename, contentType, size, originalExtension, recordPk } = body;
|
|
344
344
|
if (this.options.allowedFileExtensions && !this.options.allowedFileExtensions.includes(originalExtension)) {
|
|
345
345
|
return {
|
|
346
346
|
error: `File extension "${originalExtension}" is not allowed, allowed extensions are: ${this.options.allowedFileExtensions.join(', ')}`
|
|
347
347
|
};
|
|
348
348
|
}
|
|
349
|
-
|
|
349
|
+
let record = undefined;
|
|
350
|
+
if (recordPk) {
|
|
351
|
+
// get record by recordPk
|
|
352
|
+
const pkName = (_b = this.resourceConfig.columns.find((column) => column.primaryKey)) === null || _b === void 0 ? void 0 : _b.name;
|
|
353
|
+
record = yield this.adminforth.resource(this.resourceConfig.resourceId).get([Filters.EQ(pkName, recordPk)]);
|
|
354
|
+
}
|
|
355
|
+
const s3Path = this.options.s3Path({ originalFilename, originalExtension, contentType, record });
|
|
350
356
|
if (s3Path.startsWith('/')) {
|
|
351
357
|
throw new Error('s3Path should not start with /, please adjust s3path function to not return / at the start of the path');
|
|
352
358
|
}
|
|
@@ -370,7 +376,7 @@ export default class UploadPlugin extends AdminForthPlugin {
|
|
|
370
376
|
unhoistableHeaders: new Set(['x-amz-tagging']),
|
|
371
377
|
});
|
|
372
378
|
let previewUrl;
|
|
373
|
-
if ((
|
|
379
|
+
if ((_c = this.options.preview) === null || _c === void 0 ? void 0 : _c.previewUrl) {
|
|
374
380
|
previewUrl = this.options.preview.previewUrl({ s3Path });
|
|
375
381
|
}
|
|
376
382
|
else if (this.options.s3ACL === 'public-read') {
|
|
@@ -411,15 +417,15 @@ export default class UploadPlugin extends AdminForthPlugin {
|
|
|
411
417
|
server.endpoint({
|
|
412
418
|
method: 'POST',
|
|
413
419
|
path: `/plugin/${this.pluginInstanceId}/generate_images`,
|
|
414
|
-
handler: (
|
|
415
|
-
var
|
|
420
|
+
handler: (_d) => __awaiter(this, [_d], void 0, function* ({ body, headers }) {
|
|
421
|
+
var _e, _f;
|
|
416
422
|
const { prompt } = body;
|
|
417
423
|
if (this.options.generation.provider !== 'openai-dall-e') {
|
|
418
424
|
throw new Error(`Provider ${this.options.generation.provider} is not supported`);
|
|
419
425
|
}
|
|
420
|
-
if ((
|
|
426
|
+
if ((_e = this.options.generation.rateLimit) === null || _e === void 0 ? void 0 : _e.limit) {
|
|
421
427
|
// rate limit
|
|
422
|
-
const { error } = RateLimiter.checkRateLimit(this.pluginInstanceId, (
|
|
428
|
+
const { error } = RateLimiter.checkRateLimit(this.pluginInstanceId, (_f = this.options.generation.rateLimit) === null || _f === void 0 ? void 0 : _f.limit, this.adminforth.auth.getClientIp(headers));
|
|
423
429
|
if (error) {
|
|
424
430
|
return { error: this.options.generation.rateLimit.errorMessage };
|
|
425
431
|
}
|
|
@@ -455,7 +461,7 @@ export default class UploadPlugin extends AdminForthPlugin {
|
|
|
455
461
|
server.endpoint({
|
|
456
462
|
method: 'GET',
|
|
457
463
|
path: `/plugin/${this.pluginInstanceId}/cors-proxy`,
|
|
458
|
-
handler: (
|
|
464
|
+
handler: (_g) => __awaiter(this, [_g], void 0, function* ({ query, response }) {
|
|
459
465
|
const { url } = query;
|
|
460
466
|
const resp = yield fetch(url);
|
|
461
467
|
response.setHeader('Content-Type', resp.headers.get('Content-Type'));
|
package/index.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { PluginOptions } from './types.js';
|
|
3
3
|
import { getSignedUrl } from '@aws-sdk/s3-request-presigner';
|
|
4
4
|
import { ExpirationStatus, GetObjectCommand, ObjectCannedACL, PutObjectCommand, S3 } from '@aws-sdk/client-s3';
|
|
5
|
-
import { AdminForthPlugin, AdminForthResourceColumn,
|
|
5
|
+
import { AdminForthPlugin, AdminForthResourceColumn, AdminForthResource, Filters, IAdminForth, IHttpServer, suggestIfTypo } from "adminforth";
|
|
6
6
|
import { Readable } from "stream";
|
|
7
7
|
import { RateLimiter } from "adminforth";
|
|
8
8
|
|
|
@@ -94,7 +94,7 @@ export default class UploadPlugin extends AdminForthPlugin {
|
|
|
94
94
|
record[`previewUrl_${this.pluginInstanceId}`] = previewUrl;
|
|
95
95
|
}
|
|
96
96
|
|
|
97
|
-
async modifyResourceConfig(adminforth: IAdminForth, resourceConfig:
|
|
97
|
+
async modifyResourceConfig(adminforth: IAdminForth, resourceConfig: AdminForthResource) {
|
|
98
98
|
super.modifyResourceConfig(adminforth, resourceConfig);
|
|
99
99
|
// after column to store the path of the uploaded file, add new VirtualColumn,
|
|
100
100
|
// show only in edit and create views
|
|
@@ -102,7 +102,7 @@ export default class UploadPlugin extends AdminForthPlugin {
|
|
|
102
102
|
const { pathColumnName } = this.options;
|
|
103
103
|
const pathColumnIndex = resourceConfig.columns.findIndex((column: any) => column.name === pathColumnName);
|
|
104
104
|
if (pathColumnIndex === -1) {
|
|
105
|
-
throw new Error(`Column with name "${pathColumnName}" not found in resource "${resourceConfig.
|
|
105
|
+
throw new Error(`Column with name "${pathColumnName}" not found in resource "${resourceConfig.label}"`);
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
if (this.options.generation?.fieldsForContext) {
|
|
@@ -315,9 +315,9 @@ export default class UploadPlugin extends AdminForthPlugin {
|
|
|
315
315
|
|
|
316
316
|
|
|
317
317
|
// add edit postSave hook to delete old file and remove tag from new file
|
|
318
|
-
resourceConfig.hooks.edit.afterSave.push(async ({
|
|
318
|
+
resourceConfig.hooks.edit.afterSave.push(async ({ updates, oldRecord }: { updates: any, oldRecord: any }) => {
|
|
319
319
|
|
|
320
|
-
if (
|
|
320
|
+
if (updates[virtualColumn.name] || updates[virtualColumn.name] === null) {
|
|
321
321
|
const s3 = new S3({
|
|
322
322
|
credentials: {
|
|
323
323
|
accessKeyId: this.options.s3AccessKeyId,
|
|
@@ -347,12 +347,12 @@ export default class UploadPlugin extends AdminForthPlugin {
|
|
|
347
347
|
console.error(`Error setting tag ${ADMINFORTH_NOT_YET_USED_TAG} to true for object ${oldRecord[pathColumnName]}. File will not be auto-cleaned up`, e);
|
|
348
348
|
}
|
|
349
349
|
}
|
|
350
|
-
if (
|
|
350
|
+
if (updates[virtualColumn.name] !== null) {
|
|
351
351
|
// remove tag from new file
|
|
352
352
|
// in this case we let it crash if it fails: this is a new file which just was uploaded.
|
|
353
353
|
await s3.putObjectTagging({
|
|
354
354
|
Bucket: this.options.s3Bucket,
|
|
355
|
-
Key:
|
|
355
|
+
Key: updates[pathColumnName],
|
|
356
356
|
Tagging: {
|
|
357
357
|
TagSet: []
|
|
358
358
|
}
|
|
@@ -376,7 +376,7 @@ export default class UploadPlugin extends AdminForthPlugin {
|
|
|
376
376
|
method: 'POST',
|
|
377
377
|
path: `/plugin/${this.pluginInstanceId}/get_s3_upload_url`,
|
|
378
378
|
handler: async ({ body }) => {
|
|
379
|
-
const { originalFilename, contentType, size, originalExtension } = body;
|
|
379
|
+
const { originalFilename, contentType, size, originalExtension, recordPk } = body;
|
|
380
380
|
|
|
381
381
|
if (this.options.allowedFileExtensions && !this.options.allowedFileExtensions.includes(originalExtension)) {
|
|
382
382
|
return {
|
|
@@ -384,7 +384,16 @@ export default class UploadPlugin extends AdminForthPlugin {
|
|
|
384
384
|
};
|
|
385
385
|
}
|
|
386
386
|
|
|
387
|
-
|
|
387
|
+
let record = undefined;
|
|
388
|
+
if (recordPk) {
|
|
389
|
+
// get record by recordPk
|
|
390
|
+
const pkName = this.resourceConfig.columns.find((column: any) => column.primaryKey)?.name;
|
|
391
|
+
record = await this.adminforth.resource(this.resourceConfig.resourceId).get(
|
|
392
|
+
[Filters.EQ(pkName, recordPk)]
|
|
393
|
+
)
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
const s3Path: string = this.options.s3Path({ originalFilename, originalExtension, contentType, record });
|
|
388
397
|
if (s3Path.startsWith('/')) {
|
|
389
398
|
throw new Error('s3Path should not start with /, please adjust s3path function to not return / at the start of the path');
|
|
390
399
|
}
|
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -50,11 +50,16 @@ export type PluginOptions = {
|
|
|
50
50
|
* example:
|
|
51
51
|
*
|
|
52
52
|
* ```typescript
|
|
53
|
-
* s3Path: ({
|
|
53
|
+
* s3Path: ({originalFilename}) => `/aparts/${originalFilename}`
|
|
54
54
|
* ```
|
|
55
55
|
*
|
|
56
56
|
*/
|
|
57
|
-
s3Path: ({originalFilename, originalExtension, contentType}
|
|
57
|
+
s3Path: ({originalFilename, originalExtension, contentType, record }: {
|
|
58
|
+
originalFilename: string,
|
|
59
|
+
originalExtension: string,
|
|
60
|
+
contentType: string,
|
|
61
|
+
record?: any,
|
|
62
|
+
}) => string,
|
|
58
63
|
|
|
59
64
|
|
|
60
65
|
preview: {
|