2023-06-08 08:01:07 -07:00
|
|
|
import { IAssetRepository } from '@app/domain';
|
2023-02-25 07:12:03 -07:00
|
|
|
|
|
|
|
export const newAssetRepositoryMock = (): jest.Mocked<IAssetRepository> => {
|
|
|
|
return {
|
2023-09-20 04:16:33 -07:00
|
|
|
create: jest.fn(),
|
2023-09-04 19:25:31 -07:00
|
|
|
upsertExif: jest.fn(),
|
2023-06-14 18:47:18 -07:00
|
|
|
getByDate: jest.fn(),
|
2023-10-04 15:11:11 -07:00
|
|
|
getByDayOfYear: jest.fn(),
|
2023-05-30 10:55:06 -07:00
|
|
|
getByIds: jest.fn().mockResolvedValue([]),
|
2023-06-30 09:24:28 -07:00
|
|
|
getByAlbumId: jest.fn(),
|
|
|
|
getByUserId: jest.fn(),
|
2023-03-20 08:55:28 -07:00
|
|
|
getWithout: jest.fn(),
|
2023-09-12 20:46:37 -07:00
|
|
|
getByChecksum: jest.fn(),
|
feat(server): xmp sidecar metadata (#2466)
* initial commit for XMP sidecar support
* Added support for 'missing' metadata files to include those without sidecar files, now detects sidecar files in the filesystem for media already ingested but the sidecar was created afterwards
* didn't mean to commit default log level during testing
* new sidecar logic for video metadata as well
* Added xml mimetype for sidecars only
* don't need capture group for this regex
* wrong default value reverted
* simplified the move here - keep it in the same try catch since the outcome is to move the media back anyway
* simplified setter logic
Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
* simplified logic per suggestions
* sidecar is now its own queue with a discover and sync, updated UI for the new job queueing
* queue a sidecar job for every asset based on discovery or sync, though the logic is almost identical aside from linking the sidecar
* now queue sidecar jobs for each assset, though logic is mostly the same between discovery and sync
* simplified logic of filename extraction and asset instantiation
* not sure how that got deleted..
* updated code per suggestions and comments in the PR
* stat was not being used, removed the variable set
* better type checking, using in-scope variables for exif getter instead of passing in every time
* removed commented out test
* ran and resolved all lints, formats, checks, and tests
* resolved suggested change in PR
* made getExifProperty more dynamic with multiple possible args for fallbacks, fixed typo, used generic in function for better type checking
* better error handling and moving files back to positions on move or save failure
* regenerated api
* format fixes
* Added XMP documentation
* documentation typo
* Merged in main
* missed merge conflict
* more changes due to a merge
* Resolving conflicts
* added icon for sidecar jobs
---------
Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
2023-05-24 18:59:30 -07:00
|
|
|
getWith: jest.fn(),
|
2023-09-23 08:28:55 -07:00
|
|
|
getRandom: jest.fn(),
|
2023-03-25 19:46:48 -07:00
|
|
|
getFirstAssetForAlbumId: jest.fn(),
|
2023-06-20 18:00:59 -07:00
|
|
|
getLastUpdatedAssetForAlbumId: jest.fn(),
|
2023-08-04 14:07:15 -07:00
|
|
|
getAll: jest.fn().mockResolvedValue({ items: [], hasNextPage: false }),
|
2023-08-16 13:04:55 -07:00
|
|
|
updateAll: jest.fn(),
|
2023-09-20 04:16:33 -07:00
|
|
|
getByLibraryId: jest.fn(),
|
|
|
|
getById: jest.fn(),
|
|
|
|
getByLibraryIdAndOriginalPath: jest.fn(),
|
2023-02-25 07:12:03 -07:00
|
|
|
deleteAll: jest.fn(),
|
|
|
|
save: jest.fn(),
|
|
|
|
findLivePhotoMatch: jest.fn(),
|
2023-05-20 23:26:06 -07:00
|
|
|
getMapMarkers: jest.fn(),
|
2023-07-14 06:30:17 -07:00
|
|
|
getStatistics: jest.fn(),
|
2023-08-04 14:07:15 -07:00
|
|
|
getByTimeBucket: jest.fn(),
|
|
|
|
getTimeBuckets: jest.fn(),
|
2023-09-20 04:16:33 -07:00
|
|
|
remove: jest.fn(),
|
2023-02-25 07:12:03 -07:00
|
|
|
};
|
|
|
|
};
|