2023-01-21 09:11:55 -07:00
|
|
|
import { SystemConfig, UserEntity } from '@app/infra/db/entities';
|
2023-01-18 07:40:15 -07:00
|
|
|
import { AuthUserDto } from '../src';
|
|
|
|
|
|
|
|
export const authStub = {
|
|
|
|
admin: Object.freeze<AuthUserDto>({
|
|
|
|
id: 'admin_id',
|
|
|
|
email: 'admin@test.com',
|
|
|
|
isAdmin: true,
|
|
|
|
isPublicUser: false,
|
|
|
|
isAllowUpload: true,
|
|
|
|
}),
|
|
|
|
user1: Object.freeze<AuthUserDto>({
|
|
|
|
id: 'immich_id',
|
|
|
|
email: 'immich@test.com',
|
|
|
|
isAdmin: false,
|
|
|
|
isPublicUser: false,
|
|
|
|
isAllowUpload: true,
|
|
|
|
}),
|
|
|
|
};
|
|
|
|
|
|
|
|
export const entityStub = {
|
|
|
|
admin: Object.freeze<UserEntity>({
|
|
|
|
...authStub.admin,
|
|
|
|
password: 'admin_password',
|
|
|
|
firstName: 'admin_first_name',
|
|
|
|
lastName: 'admin_last_name',
|
|
|
|
oauthId: '',
|
|
|
|
shouldChangePassword: false,
|
|
|
|
profileImagePath: '',
|
|
|
|
createdAt: '2021-01-01',
|
|
|
|
tags: [],
|
|
|
|
}),
|
|
|
|
user1: Object.freeze<UserEntity>({
|
|
|
|
...authStub.user1,
|
|
|
|
password: 'immich_password',
|
|
|
|
firstName: 'immich_first_name',
|
|
|
|
lastName: 'immich_last_name',
|
|
|
|
oauthId: '',
|
|
|
|
shouldChangePassword: false,
|
|
|
|
profileImagePath: '',
|
|
|
|
createdAt: '2021-01-01',
|
|
|
|
tags: [],
|
|
|
|
}),
|
|
|
|
};
|
2023-01-21 09:11:55 -07:00
|
|
|
|
|
|
|
export const systemConfigStub = {
|
|
|
|
defaults: Object.freeze({
|
|
|
|
ffmpeg: {
|
|
|
|
crf: '23',
|
|
|
|
preset: 'ultrafast',
|
|
|
|
targetAudioCodec: 'mp3',
|
|
|
|
targetScaling: '1280:-2',
|
|
|
|
targetVideoCodec: 'libx264',
|
|
|
|
},
|
|
|
|
oauth: {
|
|
|
|
autoLaunch: false,
|
|
|
|
autoRegister: true,
|
|
|
|
buttonText: 'Login with OAuth',
|
|
|
|
clientId: '',
|
|
|
|
clientSecret: '',
|
|
|
|
enabled: false,
|
|
|
|
issuerUrl: '',
|
|
|
|
mobileOverrideEnabled: false,
|
|
|
|
mobileRedirectUri: '',
|
|
|
|
scope: 'openid email profile',
|
|
|
|
},
|
|
|
|
passwordLogin: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
storageTemplate: {
|
|
|
|
template: '{{y}}/{{y}}-{{MM}}-{{dd}}/{{filename}}',
|
|
|
|
},
|
|
|
|
} as SystemConfig),
|
|
|
|
};
|