mirror of
https://github.com/immich-app/immich.git
synced 2025-03-25 02:41:37 -05:00
* Add new cli * Remove old readme * Add documentation to readme file * Add github workflow tests for cli * Fix typo in docs * Add usage info to readme * Add package-lock.json * Fix tsconfig * Cleanup * Fix lint * Cleanup package.json * Fix accidental server change * Remove rootdir from cli * Remove tsbuildinfo * Add prettierignore * Make CLI use internal openapi specs * Add ignore and dry-run features * Sort paths alphabetically * Don't remove substring * Remove shorthand for delete * Remove unused import * Remove chokidar * Set correct openapi cli generator script * Add progress bar * Rename target to asset * Add deletion progress bar * Ignore require statement * Use read streams instead of readfile * Fix github feedback * Fix upload requires * More github comments * Cleanup messages * Cleaner pattern concats * Github comments --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
58 lines
856 B
TypeScript
58 lines
856 B
TypeScript
// Check asset-upload.config.spec.ts for complete list
|
|
// TODO: we should get this list from the server via API in the future
|
|
|
|
// Videos
|
|
const videos = ['mp4', 'webm', 'mov', '3gp', 'avi', 'm2ts', 'mts', 'mpg', 'flv', 'mkv', 'wmv'];
|
|
|
|
// Images
|
|
const heic = ['heic', 'heif'];
|
|
const jpeg = ['jpg', 'jpeg'];
|
|
const png = ['png'];
|
|
const gif = ['gif'];
|
|
const tiff = ['tif', 'tiff'];
|
|
const webp = ['webp'];
|
|
const dng = ['dng'];
|
|
const other = [
|
|
'3fr',
|
|
'ari',
|
|
'arw',
|
|
'avif',
|
|
'cap',
|
|
'cin',
|
|
'cr2',
|
|
'cr3',
|
|
'crw',
|
|
'dcr',
|
|
'nef',
|
|
'erf',
|
|
'fff',
|
|
'iiq',
|
|
'jxl',
|
|
'k25',
|
|
'kdc',
|
|
'mrw',
|
|
'orf',
|
|
'ori',
|
|
'pef',
|
|
'raf',
|
|
'raw',
|
|
'rwl',
|
|
'sr2',
|
|
'srf',
|
|
'srw',
|
|
'orf',
|
|
'ori',
|
|
'x3f',
|
|
];
|
|
|
|
export const ACCEPTED_FILE_EXTENSIONS = [
|
|
...videos,
|
|
...jpeg,
|
|
...png,
|
|
...heic,
|
|
...gif,
|
|
...tiff,
|
|
...webp,
|
|
...dng,
|
|
...other,
|
|
];
|