@jrmc/adonis-attachment 3.0.0 → 3.1.0
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/build/bin/test.d.ts +1 -0
- package/build/bin/test.js +34 -0
- package/build/providers/attachment_provider.d.ts +1 -1
- package/build/src/adapters/exif.d.ts +7 -1
- package/build/src/adapters/exif.js +8 -5
- package/build/src/attachment_manager.d.ts +3 -0
- package/build/src/attachment_manager.js +20 -3
- package/build/src/errors.d.ts +18 -14
- package/build/src/errors.js +4 -0
- package/build/src/mixins/attachmentable.d.ts +127 -112
- package/build/src/mixins/attachmentable.js +2 -2
- package/build/src/utils/helpers.d.ts +2 -0
- package/build/src/utils/helpers.js +35 -1
- package/build/tests/attachment-manager.spec.d.ts +7 -0
- package/build/tests/attachment-manager.spec.js +234 -0
- package/build/tests/attachment.spec.d.ts +7 -0
- package/build/tests/attachment.spec.js +16 -0
- package/build/tests/commands.spec.d.ts +7 -0
- package/build/tests/commands.spec.js +58 -0
- package/build/tests/fixtures/converters/image_converter.d.ts +12 -0
- package/build/tests/fixtures/converters/image_converter.js +12 -0
- package/build/tests/fixtures/factories/user.d.ts +8 -0
- package/build/tests/fixtures/factories/user.js +19 -0
- package/build/tests/fixtures/factories/user_with_variants.d.ts +8 -0
- package/build/tests/fixtures/factories/user_with_variants.js +19 -0
- package/build/tests/fixtures/migrations/create_users_table.d.ts +12 -0
- package/build/tests/fixtures/migrations/create_users_table.js +23 -0
- package/build/tests/fixtures/models/user.d.ts +466 -0
- package/build/tests/fixtures/models/user.js +36 -0
- package/build/tests/fixtures/models/user_with_variants.d.ts +465 -0
- package/build/tests/fixtures/models/user_with_variants.js +33 -0
- package/build/tests/helpers/app.d.ts +29 -0
- package/build/tests/helpers/app.js +104 -0
- package/build/tests/helpers/index.d.ts +7 -0
- package/build/tests/helpers/index.js +7 -0
- package/build/tests/options.spec.d.ts +7 -0
- package/build/tests/options.spec.js +126 -0
- package/build/tests/variants.spec.d.ts +7 -0
- package/build/tests/variants.spec.js +21 -0
- package/package.json +39 -14
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { assert } from '@japa/assert';
|
|
2
|
+
import { expectTypeOf } from '@japa/expect-type';
|
|
3
|
+
import { processCLIArgs, configure, run } from '@japa/runner';
|
|
4
|
+
import { createApp, initializeDatabase } from '../tests/helpers/app.js';
|
|
5
|
+
import { fileSystem } from '@japa/file-system';
|
|
6
|
+
import app from '@adonisjs/core/services/app';
|
|
7
|
+
import { BASE_URL } from '../tests/helpers/index.js';
|
|
8
|
+
let testApp;
|
|
9
|
+
processCLIArgs(process.argv.slice(2));
|
|
10
|
+
configure({
|
|
11
|
+
files: ['tests/**/*.spec.ts'],
|
|
12
|
+
plugins: [assert(), fileSystem({ basePath: BASE_URL }), expectTypeOf()],
|
|
13
|
+
setup: [
|
|
14
|
+
async () => {
|
|
15
|
+
testApp = await createApp();
|
|
16
|
+
await initializeDatabase(testApp);
|
|
17
|
+
},
|
|
18
|
+
],
|
|
19
|
+
teardown: [
|
|
20
|
+
async () => {
|
|
21
|
+
await app.terminate();
|
|
22
|
+
await testApp.terminate();
|
|
23
|
+
},
|
|
24
|
+
],
|
|
25
|
+
});
|
|
26
|
+
/*
|
|
27
|
+
|--------------------------------------------------------------------------
|
|
28
|
+
| Run tests
|
|
29
|
+
|--------------------------------------------------------------------------
|
|
30
|
+
|
|
|
31
|
+
| The following "run" method is required to execute all the tests.
|
|
32
|
+
|
|
|
33
|
+
*/
|
|
34
|
+
run();
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* @copyright Jeremy Chaufourier <jeremy@chaufourier.fr>
|
|
6
6
|
*/
|
|
7
7
|
import type { ApplicationService } from '@adonisjs/core/types';
|
|
8
|
-
import { AttachmentService } from '../src/types/config.js';
|
|
8
|
+
import type { AttachmentService } from '../src/types/config.js';
|
|
9
9
|
declare module '@adonisjs/core/types' {
|
|
10
10
|
interface ContainerBindings {
|
|
11
11
|
'jrmc.attachment': AttachmentService;
|
|
@@ -5,4 +5,10 @@
|
|
|
5
5
|
* @copyright Jeremy Chaufourier <jeremy@chaufourier.fr>
|
|
6
6
|
*/
|
|
7
7
|
import type { Exif, Input } from '../types/input.js';
|
|
8
|
-
|
|
8
|
+
import { ResolvedAttachmentConfig } from '../define_config.js';
|
|
9
|
+
import { Converter } from '../types/converter.js';
|
|
10
|
+
type KnownConverters = Record<string, Converter>;
|
|
11
|
+
declare const _default: {
|
|
12
|
+
exif(input: Input, config: ResolvedAttachmentConfig<KnownConverters>): Promise<Exif | undefined>;
|
|
13
|
+
};
|
|
14
|
+
export default _default;
|
|
@@ -9,8 +9,12 @@ import ExifReader from 'exifreader';
|
|
|
9
9
|
import logger from '@adonisjs/core/services/logger';
|
|
10
10
|
import { fileTypeFromBuffer, fileTypeFromFile } from 'file-type';
|
|
11
11
|
import { bufferToTempFile, cleanObject, use } from '../utils/helpers.js';
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
export default {
|
|
13
|
+
async exif(input, config) {
|
|
14
|
+
return exif(input, config);
|
|
15
|
+
},
|
|
16
|
+
};
|
|
17
|
+
const exif = async (input, config) => {
|
|
14
18
|
let fileType;
|
|
15
19
|
let buffer;
|
|
16
20
|
if (Buffer.isBuffer(input)) {
|
|
@@ -26,7 +30,7 @@ export const exif = async (input) => {
|
|
|
26
30
|
}
|
|
27
31
|
}
|
|
28
32
|
if (fileType?.mime.includes('video')) {
|
|
29
|
-
return videoExif(input);
|
|
33
|
+
return videoExif(input, config);
|
|
30
34
|
}
|
|
31
35
|
if (buffer && fileType?.mime.includes('image')) {
|
|
32
36
|
return imageExif(buffer);
|
|
@@ -103,7 +107,7 @@ async function imageExif(buffer) {
|
|
|
103
107
|
}
|
|
104
108
|
return cleanObject(data);
|
|
105
109
|
}
|
|
106
|
-
async function videoExif(input) {
|
|
110
|
+
async function videoExif(input, config) {
|
|
107
111
|
return new Promise(async (resolve) => {
|
|
108
112
|
const ffmpeg = await use('fluent-ffmpeg');
|
|
109
113
|
let file = input;
|
|
@@ -111,7 +115,6 @@ async function videoExif(input) {
|
|
|
111
115
|
file = await bufferToTempFile(input);
|
|
112
116
|
}
|
|
113
117
|
const ff = ffmpeg(file);
|
|
114
|
-
const config = attachmentManager.getConfig();
|
|
115
118
|
if (config.bin) {
|
|
116
119
|
if (config.bin.ffprobePath) {
|
|
117
120
|
ff.setFfprobePath(config.bin.ffprobePath);
|
|
@@ -17,8 +17,11 @@ export declare class AttachmentManager<KnownConverters extends Record<string, Co
|
|
|
17
17
|
getConfig(): ResolvedAttachmentConfig<KnownConverters>;
|
|
18
18
|
createFromDbResponse(response: any): AttachmentType | null;
|
|
19
19
|
createFromFile(file: MultipartFile): Promise<AttachmentType>;
|
|
20
|
+
createFromPath(path: string, name?: string): Promise<AttachmentType>;
|
|
20
21
|
createFromBuffer(buffer: Buffer, name?: string): Promise<AttachmentType>;
|
|
21
22
|
createFromBase64(data: string, name?: string): Promise<AttachmentType>;
|
|
23
|
+
createFromUrl(url: URL, name?: string): Promise<AttachmentType>;
|
|
24
|
+
createFromStream(stream: NodeJS.ReadableStream, name?: string): Promise<AttachmentType>;
|
|
22
25
|
getConverter(key: string): Promise<void | Converter>;
|
|
23
26
|
computeUrl(attachment: AttachmentType | AttachmentBase, signedUrlOptions?: SignedURLOptions): Promise<void>;
|
|
24
27
|
preComputeUrl(attachment: AttachmentType): Promise<void>;
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
import { DeferQueue } from '@poppinss/defer';
|
|
8
8
|
import * as errors from './errors.js';
|
|
9
9
|
import { Attachment } from './attachments/attachment.js';
|
|
10
|
-
import { createAttachmentAttributes, isBase64 } from './utils/helpers.js';
|
|
11
|
-
import
|
|
10
|
+
import { createAttachmentAttributes, downloadToTempFile, isBase64, streamToTempFile } from './utils/helpers.js';
|
|
11
|
+
import ExifAdapter from './adapters/exif.js';
|
|
12
12
|
const REQUIRED_ATTRIBUTES = ['name', 'size', 'extname', 'mimeType'];
|
|
13
13
|
export class AttachmentManager {
|
|
14
14
|
queue;
|
|
@@ -49,6 +49,11 @@ export class AttachmentManager {
|
|
|
49
49
|
const attachment = new Attachment(this.#drive, attributes, file.tmpPath);
|
|
50
50
|
return this.#configureAttachment(attachment);
|
|
51
51
|
}
|
|
52
|
+
async createFromPath(path, name) {
|
|
53
|
+
const attributes = await createAttachmentAttributes(path, name);
|
|
54
|
+
const attachment = new Attachment(this.#drive, attributes, path);
|
|
55
|
+
return this.#configureAttachment(attachment);
|
|
56
|
+
}
|
|
52
57
|
async createFromBuffer(buffer, name) {
|
|
53
58
|
if (!Buffer.isBuffer(buffer)) {
|
|
54
59
|
throw new errors.E_ISNOT_BUFFER();
|
|
@@ -65,6 +70,18 @@ export class AttachmentManager {
|
|
|
65
70
|
const buffer = Buffer.from(base64Data, 'base64');
|
|
66
71
|
return await this.createFromBuffer(buffer, name);
|
|
67
72
|
}
|
|
73
|
+
async createFromUrl(url, name) {
|
|
74
|
+
const path = await downloadToTempFile(url);
|
|
75
|
+
const attributes = await createAttachmentAttributes(path, name);
|
|
76
|
+
const attachment = new Attachment(this.#drive, attributes, path);
|
|
77
|
+
return this.#configureAttachment(attachment);
|
|
78
|
+
}
|
|
79
|
+
async createFromStream(stream, name) {
|
|
80
|
+
const path = await streamToTempFile(stream);
|
|
81
|
+
const attributes = await createAttachmentAttributes(path, name);
|
|
82
|
+
const attachment = new Attachment(this.#drive, attributes, path);
|
|
83
|
+
return this.#configureAttachment(attachment);
|
|
84
|
+
}
|
|
68
85
|
async getConverter(key) {
|
|
69
86
|
if (this.#config.converters) {
|
|
70
87
|
return this.#config.converters[key];
|
|
@@ -96,7 +113,7 @@ export class AttachmentManager {
|
|
|
96
113
|
async save(attachment) {
|
|
97
114
|
const destinationPath = attachment.path;
|
|
98
115
|
if (attachment.options?.meta) {
|
|
99
|
-
attachment.meta = await exif(attachment.input);
|
|
116
|
+
attachment.meta = await ExifAdapter.exif(attachment.input, this.#config);
|
|
100
117
|
}
|
|
101
118
|
else {
|
|
102
119
|
attachment.meta = undefined;
|
package/build/src/errors.d.ts
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
/**
|
|
8
8
|
* Unable to write file to the destination
|
|
9
9
|
*/
|
|
10
|
-
export declare const E_CANNOT_WRITE_FILE: new (args: [key: string], options?: ErrorOptions) => import("@
|
|
10
|
+
export declare const E_CANNOT_WRITE_FILE: new (args: [key: string], options?: ErrorOptions) => import("@poppinss/utils/exception").Exception;
|
|
11
11
|
/**
|
|
12
12
|
* Unable to read file
|
|
13
13
|
*/
|
|
@@ -15,52 +15,56 @@ export declare const E_CANNOT_READ_FILE: new (args: [key: string], options?: Err
|
|
|
15
15
|
/**
|
|
16
16
|
* Unable to read file
|
|
17
17
|
*/
|
|
18
|
-
"@
|
|
18
|
+
"@poppinss/utils/exception").Exception;
|
|
19
19
|
/**
|
|
20
20
|
* Unable to delete file
|
|
21
21
|
*/
|
|
22
|
-
export declare const E_CANNOT_DELETE_FILE: new (args: [key: string], options?: ErrorOptions) => import("@
|
|
22
|
+
export declare const E_CANNOT_DELETE_FILE: new (args: [key: string], options?: ErrorOptions) => import("@poppinss/utils/exception").Exception;
|
|
23
23
|
/**
|
|
24
24
|
* Unable to set file visibility
|
|
25
25
|
*/
|
|
26
|
-
export declare const E_CANNOT_SET_VISIBILITY: new (args: [key: string], options?: ErrorOptions) => import("@
|
|
26
|
+
export declare const E_CANNOT_SET_VISIBILITY: new (args: [key: string], options?: ErrorOptions) => import("@poppinss/utils/exception").Exception;
|
|
27
27
|
/**
|
|
28
28
|
* Unable to generate URL for a file
|
|
29
29
|
*/
|
|
30
|
-
export declare const E_CANNOT_GENERATE_URL: new (args: [key: string], options?: ErrorOptions) => import("@
|
|
30
|
+
export declare const E_CANNOT_GENERATE_URL: new (args: [key: string], options?: ErrorOptions) => import("@poppinss/utils/exception").Exception;
|
|
31
|
+
/**
|
|
32
|
+
* Unable to generate temp file
|
|
33
|
+
*/
|
|
34
|
+
export declare const E_CANNOT_GENERATE_TEMP_FILE: new (args: [key: string], options?: ErrorOptions) => import("@poppinss/utils/exception").Exception;
|
|
31
35
|
/**
|
|
32
36
|
* The file key has unallowed set of characters
|
|
33
37
|
*/
|
|
34
|
-
export declare const E_UNALLOWED_CHARACTERS: new (args: [key: string], options?: ErrorOptions) => import("@
|
|
38
|
+
export declare const E_UNALLOWED_CHARACTERS: new (args: [key: string], options?: ErrorOptions) => import("@poppinss/utils/exception").Exception;
|
|
35
39
|
/**
|
|
36
40
|
* Key post normalization leads to an empty string
|
|
37
41
|
*/
|
|
38
|
-
export declare const E_INVALID_KEY: new (args: [key: string], options?: ErrorOptions) => import("@
|
|
42
|
+
export declare const E_INVALID_KEY: new (args: [key: string], options?: ErrorOptions) => import("@poppinss/utils/exception").Exception;
|
|
39
43
|
/**
|
|
40
44
|
* Missing package
|
|
41
45
|
*/
|
|
42
|
-
export declare const E_MISSING_PACKAGE: new (args: [key: string], options?: ErrorOptions) => import("@
|
|
46
|
+
export declare const E_MISSING_PACKAGE: new (args: [key: string], options?: ErrorOptions) => import("@poppinss/utils/exception").Exception;
|
|
43
47
|
/**
|
|
44
48
|
* Unable to create Attachment Object
|
|
45
49
|
*/
|
|
46
|
-
export declare const E_CANNOT_CREATE_ATTACHMENT: new (args: [key: string], options?: ErrorOptions) => import("@
|
|
50
|
+
export declare const E_CANNOT_CREATE_ATTACHMENT: new (args: [key: string], options?: ErrorOptions) => import("@poppinss/utils/exception").Exception;
|
|
47
51
|
/**
|
|
48
52
|
* Unable to create variant
|
|
49
53
|
*/
|
|
50
|
-
export declare const E_CANNOT_CREATE_VARIANT: new (args: [key: string], options?: ErrorOptions) => import("@
|
|
54
|
+
export declare const E_CANNOT_CREATE_VARIANT: new (args: [key: string], options?: ErrorOptions) => import("@poppinss/utils/exception").Exception;
|
|
51
55
|
/**
|
|
52
56
|
* Missing path
|
|
53
57
|
*/
|
|
54
|
-
export declare const E_CANNOT_PATH_BY_CONVERTER: new (args?: any, options?: ErrorOptions) => import("@
|
|
58
|
+
export declare const E_CANNOT_PATH_BY_CONVERTER: new (args?: any, options?: ErrorOptions) => import("@poppinss/utils/exception").Exception;
|
|
55
59
|
/**
|
|
56
60
|
* Is not a Buffer
|
|
57
61
|
*/
|
|
58
|
-
export declare const E_ISNOT_BUFFER: new (args?: any, options?: ErrorOptions) => import("@
|
|
62
|
+
export declare const E_ISNOT_BUFFER: new (args?: any, options?: ErrorOptions) => import("@poppinss/utils/exception").Exception;
|
|
59
63
|
/**
|
|
60
64
|
* Is not a Base64
|
|
61
65
|
*/
|
|
62
|
-
export declare const E_ISNOT_BASE64: new (args?: any, options?: ErrorOptions) => import("@
|
|
66
|
+
export declare const E_ISNOT_BASE64: new (args?: any, options?: ErrorOptions) => import("@poppinss/utils/exception").Exception;
|
|
63
67
|
/**
|
|
64
68
|
* Unable to read file
|
|
65
69
|
*/
|
|
66
|
-
export declare const ENOENT: new (args?: any, options?: ErrorOptions) => import("@
|
|
70
|
+
export declare const ENOENT: new (args?: any, options?: ErrorOptions) => import("@poppinss/utils/exception").Exception;
|
package/build/src/errors.js
CHANGED
|
@@ -26,6 +26,10 @@ export const E_CANNOT_SET_VISIBILITY = errors.E_CANNOT_SET_VISIBILITY;
|
|
|
26
26
|
* Unable to generate URL for a file
|
|
27
27
|
*/
|
|
28
28
|
export const E_CANNOT_GENERATE_URL = errors.E_CANNOT_GENERATE_URL;
|
|
29
|
+
/**
|
|
30
|
+
* Unable to generate temp file
|
|
31
|
+
*/
|
|
32
|
+
export const E_CANNOT_GENERATE_TEMP_FILE = createError('Cannot generate temp file "%s"', 'E_CANNOT_GENERATE_TEMP_FILE');
|
|
29
33
|
/**
|
|
30
34
|
* The file key has unallowed set of characters
|
|
31
35
|
*/
|