mirror of
https://github.com/immich-app/immich.git
synced 2024-11-24 08:52:28 +02:00
84 lines
2.1 KiB
TypeScript
84 lines
2.1 KiB
TypeScript
import { AuthDto } from 'src/dtos/auth.dto';
|
|
import { SessionEntity } from 'src/entities/session.entity';
|
|
import { SharedLinkEntity } from 'src/entities/shared-link.entity';
|
|
import { UserMetadataEntity } from 'src/entities/user-metadata.entity';
|
|
import { UserEntity } from 'src/entities/user.entity';
|
|
|
|
export const authStub = {
|
|
admin: Object.freeze<AuthDto>({
|
|
user: {
|
|
id: 'admin_id',
|
|
email: 'admin@test.com',
|
|
isAdmin: true,
|
|
metadata: [] as UserMetadataEntity[],
|
|
} as UserEntity,
|
|
}),
|
|
user1: Object.freeze<AuthDto>({
|
|
user: {
|
|
id: 'user-id',
|
|
email: 'immich@test.com',
|
|
isAdmin: false,
|
|
metadata: [] as UserMetadataEntity[],
|
|
} as UserEntity,
|
|
session: {
|
|
id: 'token-id',
|
|
} as SessionEntity,
|
|
}),
|
|
user2: Object.freeze<AuthDto>({
|
|
user: {
|
|
id: 'user-2',
|
|
email: 'user2@immich.app',
|
|
isAdmin: false,
|
|
metadata: [] as UserMetadataEntity[],
|
|
} as UserEntity,
|
|
session: {
|
|
id: 'token-id',
|
|
} as SessionEntity,
|
|
}),
|
|
adminSharedLink: Object.freeze<AuthDto>({
|
|
user: {
|
|
id: 'admin_id',
|
|
email: 'admin@test.com',
|
|
isAdmin: true,
|
|
metadata: [] as UserMetadataEntity[],
|
|
} as UserEntity,
|
|
sharedLink: {
|
|
id: '123',
|
|
showExif: true,
|
|
allowDownload: true,
|
|
allowUpload: true,
|
|
key: Buffer.from('shared-link-key'),
|
|
} as SharedLinkEntity,
|
|
}),
|
|
adminSharedLinkNoExif: Object.freeze<AuthDto>({
|
|
user: {
|
|
id: 'admin_id',
|
|
email: 'admin@test.com',
|
|
isAdmin: true,
|
|
metadata: [] as UserMetadataEntity[],
|
|
} as UserEntity,
|
|
sharedLink: {
|
|
id: '123',
|
|
showExif: false,
|
|
allowDownload: true,
|
|
allowUpload: true,
|
|
key: Buffer.from('shared-link-key'),
|
|
} as SharedLinkEntity,
|
|
}),
|
|
passwordSharedLink: Object.freeze<AuthDto>({
|
|
user: {
|
|
id: 'admin_id',
|
|
email: 'admin@test.com',
|
|
isAdmin: true,
|
|
metadata: [] as UserMetadataEntity[],
|
|
} as UserEntity,
|
|
sharedLink: {
|
|
id: '123',
|
|
allowUpload: false,
|
|
allowDownload: false,
|
|
password: 'password-123',
|
|
showExif: true,
|
|
} as SharedLinkEntity,
|
|
}),
|
|
};
|