2023-06-08 10:01:07 -05:00
|
|
|
import { IAssetRepository } from '@app/domain';
|
2023-02-25 09:12:03 -05:00
|
|
|
|
|
|
|
export const newAssetRepositoryMock = (): jest.Mocked<IAssetRepository> => {
|
|
|
|
return {
|
2023-09-20 06:16:33 -05:00
|
|
|
create: jest.fn(),
|
2023-09-04 21:25:31 -05:00
|
|
|
upsertExif: jest.fn(),
|
2023-11-09 20:55:00 -05:00
|
|
|
upsertJobStatus: jest.fn(),
|
2023-06-14 20:47:18 -05:00
|
|
|
getByDate: jest.fn(),
|
2023-10-04 17:11:11 -05:00
|
|
|
getByDayOfYear: jest.fn(),
|
2023-05-30 12:55:06 -05:00
|
|
|
getByIds: jest.fn().mockResolvedValue([]),
|
2023-06-30 11:24:28 -05:00
|
|
|
getByAlbumId: jest.fn(),
|
|
|
|
getByUserId: jest.fn(),
|
2023-10-06 02:01:14 -05:00
|
|
|
getById: jest.fn(),
|
2023-03-20 10:55:28 -05:00
|
|
|
getWithout: jest.fn(),
|
2023-09-12 22:46:37 -05: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 20:59:30 -05:00
|
|
|
getWith: jest.fn(),
|
2023-09-23 10:28:55 -05:00
|
|
|
getRandom: jest.fn(),
|
2023-03-25 21:46:48 -05:00
|
|
|
getFirstAssetForAlbumId: jest.fn(),
|
2023-06-20 20:00:59 -05:00
|
|
|
getLastUpdatedAssetForAlbumId: jest.fn(),
|
2023-08-04 16:07:15 -05:00
|
|
|
getAll: jest.fn().mockResolvedValue({ items: [], hasNextPage: false }),
|
2024-02-18 13:22:25 -05:00
|
|
|
getAllByFileCreationDate: jest.fn(),
|
2023-11-25 10:46:20 -05:00
|
|
|
getAllByDeviceId: jest.fn(),
|
2023-08-16 15:04:55 -05:00
|
|
|
updateAll: jest.fn(),
|
2023-09-20 06:16:33 -05:00
|
|
|
getByLibraryId: jest.fn(),
|
|
|
|
getByLibraryIdAndOriginalPath: jest.fn(),
|
2024-03-06 22:23:10 -05:00
|
|
|
updateOfflineLibraryAssets: jest.fn(),
|
|
|
|
getPathsNotInLibrary: jest.fn(),
|
2023-02-25 09:12:03 -05:00
|
|
|
deleteAll: jest.fn(),
|
|
|
|
save: jest.fn(),
|
2023-10-06 02:01:14 -05:00
|
|
|
remove: jest.fn(),
|
2023-02-25 09:12:03 -05:00
|
|
|
findLivePhotoMatch: jest.fn(),
|
2023-05-21 01:26:06 -05:00
|
|
|
getMapMarkers: jest.fn(),
|
2023-07-14 08:30:17 -05:00
|
|
|
getStatistics: jest.fn(),
|
2023-11-03 20:33:15 -05:00
|
|
|
getTimeBucket: jest.fn(),
|
2023-08-04 16:07:15 -05:00
|
|
|
getTimeBuckets: jest.fn(),
|
2023-10-06 02:01:14 -05:00
|
|
|
restoreAll: jest.fn(),
|
|
|
|
softDeleteAll: jest.fn(),
|
2023-12-08 11:15:46 -05:00
|
|
|
getAssetIdByCity: jest.fn(),
|
|
|
|
getAssetIdByTag: jest.fn(),
|
|
|
|
searchMetadata: jest.fn(),
|
2023-02-25 09:12:03 -05:00
|
|
|
};
|
|
|
|
};
|