mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 01:12:58 -04:00
* feat: private view * pr feedback * sql generation * feat: visibility column * fix: set visibility value as the same as the still part after unlinked live photos * fix: test * pr feedback
325 lines
7.2 KiB
TypeScript
325 lines
7.2 KiB
TypeScript
import { randomUUID } from 'node:crypto';
|
|
import {
|
|
Activity,
|
|
ApiKey,
|
|
AuthApiKey,
|
|
AuthSharedLink,
|
|
AuthUser,
|
|
Library,
|
|
Memory,
|
|
Partner,
|
|
Session,
|
|
SidecarWriteAsset,
|
|
User,
|
|
UserAdmin,
|
|
} from 'src/database';
|
|
import { MapAsset } from 'src/dtos/asset-response.dto';
|
|
import { AuthDto } from 'src/dtos/auth.dto';
|
|
import { AssetStatus, AssetType, AssetVisibility, MemoryType, Permission, UserStatus } from 'src/enum';
|
|
import { OnThisDayData } from 'src/types';
|
|
|
|
export const newUuid = () => randomUUID() as string;
|
|
export const newUuids = () =>
|
|
Array.from({ length: 100 })
|
|
.fill(0)
|
|
.map(() => newUuid());
|
|
export const newDate = () => new Date();
|
|
export const newUpdateId = () => 'uuid-v7';
|
|
export const newSha1 = () => Buffer.from('this is a fake hash');
|
|
export const newEmbedding = () => {
|
|
const embedding = Array.from({ length: 512 })
|
|
.fill(0)
|
|
.map(() => Math.random());
|
|
return '[' + embedding + ']';
|
|
};
|
|
|
|
const authFactory = ({
|
|
apiKey,
|
|
session,
|
|
sharedLink,
|
|
user,
|
|
}: {
|
|
apiKey?: Partial<AuthApiKey>;
|
|
session?: { id: string };
|
|
user?: Omit<
|
|
Partial<UserAdmin>,
|
|
'createdAt' | 'updatedAt' | 'deletedAt' | 'fileCreatedAt' | 'fileModifiedAt' | 'localDateTime' | 'profileChangedAt'
|
|
>;
|
|
sharedLink?: Partial<AuthSharedLink>;
|
|
} = {}) => {
|
|
const auth: AuthDto = {
|
|
user: authUserFactory(userAdminFactory(user ?? {})),
|
|
};
|
|
|
|
const userId = auth.user.id;
|
|
|
|
if (apiKey) {
|
|
auth.apiKey = authApiKeyFactory(apiKey);
|
|
}
|
|
|
|
if (session) {
|
|
auth.session = { id: session.id };
|
|
}
|
|
|
|
if (sharedLink) {
|
|
auth.sharedLink = authSharedLinkFactory({ ...sharedLink, userId });
|
|
}
|
|
|
|
return auth;
|
|
};
|
|
|
|
const authSharedLinkFactory = (sharedLink: Partial<AuthSharedLink> = {}) => {
|
|
const {
|
|
id = newUuid(),
|
|
expiresAt = null,
|
|
userId = newUuid(),
|
|
showExif = true,
|
|
allowUpload = false,
|
|
allowDownload = true,
|
|
password = null,
|
|
} = sharedLink;
|
|
|
|
return { id, expiresAt, userId, showExif, allowUpload, allowDownload, password };
|
|
};
|
|
|
|
const authApiKeyFactory = (apiKey: Partial<AuthApiKey> = {}) => ({
|
|
id: newUuid(),
|
|
permissions: [Permission.ALL],
|
|
...apiKey,
|
|
});
|
|
|
|
const authUserFactory = (authUser: Partial<AuthUser> = {}) => {
|
|
const {
|
|
id = newUuid(),
|
|
isAdmin = false,
|
|
name = 'Test User',
|
|
email = 'test@immich.cloud',
|
|
quotaUsageInBytes = 0,
|
|
quotaSizeInBytes = null,
|
|
} = authUser;
|
|
|
|
return { id, isAdmin, name, email, quotaUsageInBytes, quotaSizeInBytes };
|
|
};
|
|
|
|
const partnerFactory = (partner: Partial<Partner> = {}) => {
|
|
const sharedBy = userFactory(partner.sharedBy || {});
|
|
const sharedWith = userFactory(partner.sharedWith || {});
|
|
|
|
return {
|
|
sharedById: sharedBy.id,
|
|
sharedBy,
|
|
sharedWithId: sharedWith.id,
|
|
sharedWith,
|
|
createdAt: newDate(),
|
|
updatedAt: newDate(),
|
|
updateId: newUpdateId(),
|
|
inTimeline: true,
|
|
...partner,
|
|
};
|
|
};
|
|
|
|
const sessionFactory = (session: Partial<Session> = {}) => ({
|
|
id: newUuid(),
|
|
createdAt: newDate(),
|
|
updatedAt: newDate(),
|
|
updateId: newUpdateId(),
|
|
deviceOS: 'android',
|
|
deviceType: 'mobile',
|
|
token: 'abc123',
|
|
userId: newUuid(),
|
|
...session,
|
|
});
|
|
|
|
const stackFactory = () => ({
|
|
id: newUuid(),
|
|
ownerId: newUuid(),
|
|
primaryAssetId: newUuid(),
|
|
});
|
|
|
|
const userFactory = (user: Partial<User> = {}) => ({
|
|
id: newUuid(),
|
|
name: 'Test User',
|
|
email: 'test@immich.cloud',
|
|
avatarColor: null,
|
|
profileImagePath: '',
|
|
profileChangedAt: newDate(),
|
|
...user,
|
|
});
|
|
|
|
const userAdminFactory = (user: Partial<UserAdmin> = {}) => {
|
|
const {
|
|
id = newUuid(),
|
|
name = 'Test User',
|
|
email = 'test@immich.cloud',
|
|
profileImagePath = '',
|
|
profileChangedAt = newDate(),
|
|
storageLabel = null,
|
|
shouldChangePassword = false,
|
|
isAdmin = false,
|
|
avatarColor = null,
|
|
createdAt = newDate(),
|
|
updatedAt = newDate(),
|
|
deletedAt = null,
|
|
oauthId = '',
|
|
quotaSizeInBytes = null,
|
|
quotaUsageInBytes = 0,
|
|
status = UserStatus.ACTIVE,
|
|
metadata = [],
|
|
} = user;
|
|
return {
|
|
id,
|
|
name,
|
|
email,
|
|
profileImagePath,
|
|
profileChangedAt,
|
|
storageLabel,
|
|
shouldChangePassword,
|
|
isAdmin,
|
|
avatarColor,
|
|
createdAt,
|
|
updatedAt,
|
|
deletedAt,
|
|
oauthId,
|
|
quotaSizeInBytes,
|
|
quotaUsageInBytes,
|
|
status,
|
|
metadata,
|
|
};
|
|
};
|
|
|
|
const assetFactory = (asset: Partial<MapAsset> = {}) => ({
|
|
id: newUuid(),
|
|
createdAt: newDate(),
|
|
updatedAt: newDate(),
|
|
deletedAt: null,
|
|
updateId: newUpdateId(),
|
|
status: AssetStatus.ACTIVE,
|
|
checksum: newSha1(),
|
|
deviceAssetId: '',
|
|
deviceId: '',
|
|
duplicateId: null,
|
|
duration: null,
|
|
encodedVideoPath: null,
|
|
fileCreatedAt: newDate(),
|
|
fileModifiedAt: newDate(),
|
|
isExternal: false,
|
|
isFavorite: false,
|
|
isOffline: false,
|
|
libraryId: null,
|
|
livePhotoVideoId: null,
|
|
localDateTime: newDate(),
|
|
originalFileName: 'IMG_123.jpg',
|
|
originalPath: `upload/12/34/IMG_123.jpg`,
|
|
ownerId: newUuid(),
|
|
sidecarPath: null,
|
|
stackId: null,
|
|
thumbhash: null,
|
|
type: AssetType.IMAGE,
|
|
visibility: AssetVisibility.TIMELINE,
|
|
...asset,
|
|
});
|
|
|
|
const activityFactory = (activity: Partial<Activity> = {}) => {
|
|
const userId = activity.userId || newUuid();
|
|
return {
|
|
id: newUuid(),
|
|
comment: null,
|
|
isLiked: false,
|
|
userId,
|
|
user: userFactory({ id: userId }),
|
|
assetId: newUuid(),
|
|
albumId: newUuid(),
|
|
createdAt: newDate(),
|
|
updatedAt: newDate(),
|
|
updateId: newUpdateId(),
|
|
...activity,
|
|
};
|
|
};
|
|
|
|
const apiKeyFactory = (apiKey: Partial<ApiKey> = {}) => ({
|
|
id: newUuid(),
|
|
userId: newUuid(),
|
|
createdAt: newDate(),
|
|
updatedAt: newDate(),
|
|
updateId: newUpdateId(),
|
|
name: 'Api Key',
|
|
permissions: [Permission.ALL],
|
|
...apiKey,
|
|
});
|
|
|
|
const libraryFactory = (library: Partial<Library> = {}) => ({
|
|
id: newUuid(),
|
|
createdAt: newDate(),
|
|
updatedAt: newDate(),
|
|
updateId: newUpdateId(),
|
|
deletedAt: null,
|
|
refreshedAt: null,
|
|
name: 'Library',
|
|
assets: [],
|
|
ownerId: newUuid(),
|
|
importPaths: [],
|
|
exclusionPatterns: [],
|
|
...library,
|
|
});
|
|
|
|
const memoryFactory = (memory: Partial<Memory> = {}) => ({
|
|
id: newUuid(),
|
|
createdAt: newDate(),
|
|
updatedAt: newDate(),
|
|
updateId: newUpdateId(),
|
|
deletedAt: null,
|
|
ownerId: newUuid(),
|
|
type: MemoryType.ON_THIS_DAY,
|
|
data: { year: 2024 } as OnThisDayData,
|
|
isSaved: false,
|
|
memoryAt: newDate(),
|
|
seenAt: null,
|
|
showAt: newDate(),
|
|
hideAt: newDate(),
|
|
assets: [],
|
|
...memory,
|
|
});
|
|
|
|
const versionHistoryFactory = () => ({
|
|
id: newUuid(),
|
|
createdAt: newDate(),
|
|
version: '1.123.45',
|
|
});
|
|
|
|
const assetSidecarWriteFactory = (asset: Partial<SidecarWriteAsset> = {}) => ({
|
|
id: newUuid(),
|
|
sidecarPath: '/path/to/original-path.jpg.xmp',
|
|
originalPath: '/path/to/original-path.jpg.xmp',
|
|
tags: [],
|
|
...asset,
|
|
});
|
|
|
|
export const factory = {
|
|
activity: activityFactory,
|
|
apiKey: apiKeyFactory,
|
|
asset: assetFactory,
|
|
auth: authFactory,
|
|
authApiKey: authApiKeyFactory,
|
|
authUser: authUserFactory,
|
|
library: libraryFactory,
|
|
memory: memoryFactory,
|
|
partner: partnerFactory,
|
|
session: sessionFactory,
|
|
stack: stackFactory,
|
|
user: userFactory,
|
|
userAdmin: userAdminFactory,
|
|
versionHistory: versionHistoryFactory,
|
|
jobAssets: {
|
|
sidecarWrite: assetSidecarWriteFactory,
|
|
},
|
|
uuid: newUuid,
|
|
date: newDate,
|
|
responses: {
|
|
badRequest: (message: any = null) => ({
|
|
error: 'Bad Request',
|
|
statusCode: 400,
|
|
message: message ?? expect.anything(),
|
|
}),
|
|
},
|
|
};
|