mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-01 10:25:59 +00:00
* feat(server, web): implement share with partner * chore: regenerate api * chore: regenerate api * Pass userId to getAssetCountByTimeBucket and getAssetByTimeBucket * chore: regenerate api * Use AssetGrid to view partner's assets * Remove disableNavBarActions flag * Check access to buckets * Apply suggestions from code review Co-authored-by: Jason Rasmussen <jrasm91@gmail.com> * Remove exception rethrowing * Simplify partner access check * Create new PartnerController * chore api:generate * Use partnerApi * Remove id from PartnerResponseDto * Refactor PartnerEntity * Rename args * Remove duplicate code in getAll * Create composite primary keys for partners table * Move asset access check into PartnerCore * Remove redundant getUserAssets call * Remove unused getUserAssets method * chore: regenerate api * Simplify getAll * Replace ?? with || * Simplify PartnerRepository.create * Introduce PartnerIds interface * Replace two database migrations with one * Simplify getAll * Change PartnerResponseDto to include UserResponseDto * Move partner sharing endpoints to PartnerController * Rename ShareController to SharedLinkController * chore: regenerate api after rebase * refactor: shared link remove return type * refactor: return user response dto * chore: regenerate open api * refactor: partner getAll * refactor: partner settings event typing * chore: remove unused code * refactor: add partners modal trigger * refactor: update url for viewing partner photos * feat: update partner sharing title * refactor: rename service method names * refactor: http exception logic to service, PartnerIds interface * chore: regenerate open api * test: coverage for domain code * fix: addPartner => createPartner * fix: missed rename * refactor: more code cleanup * chore: alphabetize settings order * feat: stop sharing confirmation modal * Enhance contrast of the email in dark mode * Replace button with CircleIconButton * Fix linter warning * Fix date types for PartnerEntity * Fix PartnerEntity creation * Reset assetStore state * Change layout of the partner's assets page * Add bulk download action for partner's assets --------- Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
62 lines
1.7 KiB
TypeScript
62 lines
1.7 KiB
TypeScript
import { DynamicModule, Global, Module, ModuleMetadata, OnApplicationShutdown, Provider } from '@nestjs/common';
|
|
import { AlbumService } from './album';
|
|
import { APIKeyService } from './api-key';
|
|
import { AssetService } from './asset';
|
|
import { AuthService } from './auth';
|
|
import { JobService } from './job';
|
|
import { MediaService } from './media';
|
|
import { OAuthService } from './oauth';
|
|
import { PartnerService } from './partner';
|
|
import { SearchService } from './search';
|
|
import { ServerInfoService } from './server-info';
|
|
import { ShareService } from './share';
|
|
import { SmartInfoService } from './smart-info';
|
|
import { StorageService } from './storage';
|
|
import { StorageTemplateService } from './storage-template';
|
|
import { UserService } from './user';
|
|
import { INITIAL_SYSTEM_CONFIG, SystemConfigService } from './system-config';
|
|
|
|
const providers: Provider[] = [
|
|
AlbumService,
|
|
APIKeyService,
|
|
AssetService,
|
|
AuthService,
|
|
JobService,
|
|
MediaService,
|
|
OAuthService,
|
|
PartnerService,
|
|
SearchService,
|
|
ServerInfoService,
|
|
ShareService,
|
|
SmartInfoService,
|
|
StorageService,
|
|
StorageTemplateService,
|
|
SystemConfigService,
|
|
UserService,
|
|
{
|
|
provide: INITIAL_SYSTEM_CONFIG,
|
|
inject: [SystemConfigService],
|
|
useFactory: async (configService: SystemConfigService) => {
|
|
return configService.getConfig();
|
|
},
|
|
},
|
|
];
|
|
|
|
@Global()
|
|
@Module({})
|
|
export class DomainModule implements OnApplicationShutdown {
|
|
constructor(private searchService: SearchService) {}
|
|
|
|
static register(options: Pick<ModuleMetadata, 'imports'>): DynamicModule {
|
|
return {
|
|
module: DomainModule,
|
|
imports: options.imports,
|
|
providers: [...providers],
|
|
exports: [...providers],
|
|
};
|
|
}
|
|
|
|
onApplicationShutdown() {
|
|
this.searchService.teardown();
|
|
}
|
|
}
|