fix(cli): ignore web socket when unavailable and skip metadata init (#4748)

This commit is contained in:
Jason Rasmussen 2023-10-31 23:08:21 -04:00 committed by GitHub
parent 197f336b5f
commit 68f6446718
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 4 deletions

View File

@ -67,6 +67,10 @@ describe(MetadataService.name, () => {
);
});
afterEach(async () => {
await sut.teardown();
});
it('should be defined', () => {
expect(sut).toBeDefined();
});

View File

@ -4,6 +4,7 @@ import { ExifDateTime, Tags } from 'exiftool-vendored';
import { firstDateTime } from 'exiftool-vendored/dist/FirstDateTime';
import { constants } from 'fs/promises';
import { Duration } from 'luxon';
import { Subscription } from 'rxjs';
import { usePagination } from '../domain.util';
import { IBaseJob, IEntityJob, JOBS_ASSET_PAGINATION_SIZE, JobName, QueueName } from '../job';
import {
@ -67,6 +68,7 @@ export class MetadataService {
private storageCore: StorageCore;
private configCore: SystemConfigCore;
private oldCities?: string;
private subscription: Subscription | null = null;
constructor(
@Inject(IAlbumRepository) private albumRepository: IAlbumRepository,
@ -81,10 +83,13 @@ export class MetadataService {
) {
this.configCore = SystemConfigCore.create(configRepository);
this.storageCore = StorageCore.create(assetRepository, moveRepository, personRepository, storageRepository);
this.configCore.config$.subscribe(() => this.init());
}
async init(deleteCache = false) {
if (!this.subscription) {
this.subscription = this.configCore.config$.subscribe(() => this.init());
}
const { reverseGeocoding } = await this.configCore.getConfig();
const { citiesFileOverride } = reverseGeocoding;
@ -111,6 +116,7 @@ export class MetadataService {
}
async teardown() {
this.subscription?.unsubscribe();
await this.repository.teardown();
}

View File

@ -10,7 +10,7 @@ export class CommunicationRepository implements OnGatewayConnection, OnGatewayDi
constructor(private authService: AuthService) {}
@WebSocketServer() server!: Server;
@WebSocketServer() server?: Server;
addEventListener(event: 'connect', callback: Callback) {
this.onConnectCallbacks.push(callback);
@ -37,10 +37,10 @@ export class CommunicationRepository implements OnGatewayConnection, OnGatewayDi
}
send(event: CommunicationEvent, userId: string, data: any) {
this.server.to(userId).emit(event, data);
this.server?.to(userId).emit(event, data);
}
broadcast(event: CommunicationEvent, data: any) {
this.server.emit(event, data);
this.server?.emit(event, data);
}
}