mirror of
https://github.com/immich-app/immich.git
synced 2026-03-07 02:27:23 +03:00
376 lines
13 KiB
TypeScript
376 lines
13 KiB
TypeScript
import { Injectable } from '@nestjs/common';
|
|
import { ExpressionBuilder, Insertable, Kysely, sql, Updateable } from 'kysely';
|
|
import { jsonArrayFrom, jsonObjectFrom } from 'kysely/helpers/postgres';
|
|
import { InjectKysely } from 'nestjs-kysely';
|
|
import { columns } from 'src/database';
|
|
import { Albums, DB } from 'src/db';
|
|
import { Chunked, ChunkedArray, ChunkedSet, DummyValue, GenerateSql } from 'src/decorators';
|
|
import { AlbumUserCreateDto } from 'src/dtos/album.dto';
|
|
import { AlbumEntity } from 'src/entities/album.entity';
|
|
|
|
export interface AlbumAssetCount {
|
|
albumId: string;
|
|
assetCount: number;
|
|
startDate: Date | null;
|
|
endDate: Date | null;
|
|
lastModifiedAssetTimestamp: Date | null;
|
|
}
|
|
|
|
export interface AlbumInfoOptions {
|
|
withAssets: boolean;
|
|
}
|
|
|
|
const withOwner = (eb: ExpressionBuilder<DB, 'albums'>) => {
|
|
return jsonObjectFrom(eb.selectFrom('users').select(columns.user).whereRef('users.id', '=', 'albums.ownerId')).as(
|
|
'owner',
|
|
);
|
|
};
|
|
|
|
const withAlbumUsers = (eb: ExpressionBuilder<DB, 'albums'>) => {
|
|
return jsonArrayFrom(
|
|
eb
|
|
.selectFrom('albums_shared_users_users as album_users')
|
|
.select('album_users.role')
|
|
.select((eb) =>
|
|
jsonObjectFrom(eb.selectFrom('users').select(columns.user).whereRef('users.id', '=', 'album_users.usersId')).as(
|
|
'user',
|
|
),
|
|
)
|
|
.whereRef('album_users.albumsId', '=', 'albums.id'),
|
|
).as('albumUsers');
|
|
};
|
|
|
|
const withSharedLink = (eb: ExpressionBuilder<DB, 'albums'>) => {
|
|
return jsonArrayFrom(eb.selectFrom('shared_links').selectAll().whereRef('shared_links.albumId', '=', 'albums.id')).as(
|
|
'sharedLinks',
|
|
);
|
|
};
|
|
|
|
const withAssets = (eb: ExpressionBuilder<DB, 'albums'>) => {
|
|
return eb
|
|
.selectFrom((eb) =>
|
|
eb
|
|
.selectFrom('assets')
|
|
.selectAll('assets')
|
|
.leftJoin('exif', 'assets.id', 'exif.assetId')
|
|
.select((eb) => eb.table('exif').as('exifInfo'))
|
|
.innerJoin('albums_assets_assets', 'albums_assets_assets.assetsId', 'assets.id')
|
|
.whereRef('albums_assets_assets.albumsId', '=', 'albums.id')
|
|
.where('assets.deletedAt', 'is', null)
|
|
.orderBy('assets.fileCreatedAt', 'desc')
|
|
.as('asset'),
|
|
)
|
|
.select((eb) => eb.fn.jsonAgg('asset').as('assets'))
|
|
.as('assets');
|
|
};
|
|
|
|
@Injectable()
|
|
export class AlbumRepository {
|
|
constructor(@InjectKysely() private db: Kysely<DB>) {}
|
|
|
|
@GenerateSql({ params: [DummyValue.UUID, { withAssets: true }] })
|
|
async getById(id: string, options: AlbumInfoOptions): Promise<AlbumEntity | undefined> {
|
|
return this.db
|
|
.selectFrom('albums')
|
|
.selectAll('albums')
|
|
.where('albums.id', '=', id)
|
|
.where('albums.deletedAt', 'is', null)
|
|
.select(withOwner)
|
|
.select(withAlbumUsers)
|
|
.select(withSharedLink)
|
|
.$if(options.withAssets, (eb) => eb.select(withAssets))
|
|
.executeTakeFirst() as Promise<AlbumEntity | undefined>;
|
|
}
|
|
|
|
@GenerateSql({ params: [DummyValue.UUID, DummyValue.UUID] })
|
|
async getByAssetId(ownerId: string, assetId: string): Promise<AlbumEntity[]> {
|
|
return this.db
|
|
.selectFrom('albums')
|
|
.selectAll('albums')
|
|
.innerJoin('albums_assets_assets as album_assets', 'album_assets.albumsId', 'albums.id')
|
|
.where((eb) =>
|
|
eb.or([
|
|
eb('albums.ownerId', '=', ownerId),
|
|
eb.exists(
|
|
eb
|
|
.selectFrom('albums_shared_users_users as album_users')
|
|
.whereRef('album_users.albumsId', '=', 'albums.id')
|
|
.where('album_users.usersId', '=', ownerId),
|
|
),
|
|
]),
|
|
)
|
|
.where('album_assets.assetsId', '=', assetId)
|
|
.where('albums.deletedAt', 'is', null)
|
|
.orderBy('albums.createdAt', 'desc')
|
|
.select(withOwner)
|
|
.select(withAlbumUsers)
|
|
.orderBy('albums.createdAt', 'desc')
|
|
.execute() as unknown as Promise<AlbumEntity[]>;
|
|
}
|
|
|
|
@GenerateSql({ params: [[DummyValue.UUID]] })
|
|
@ChunkedArray()
|
|
async getMetadataForIds(ids: string[]): Promise<AlbumAssetCount[]> {
|
|
// Guard against running invalid query when ids list is empty.
|
|
if (ids.length === 0) {
|
|
return [];
|
|
}
|
|
|
|
return (
|
|
this.db
|
|
.selectFrom('assets')
|
|
.innerJoin('albums_assets_assets as album_assets', 'album_assets.assetsId', 'assets.id')
|
|
.select('album_assets.albumsId as albumId')
|
|
.select((eb) => eb.fn.min(sql<Date>`("assets"."localDateTime" AT TIME ZONE 'UTC'::text)::date`).as('startDate'))
|
|
.select((eb) => eb.fn.max(sql<Date>`("assets"."localDateTime" AT TIME ZONE 'UTC'::text)::date`).as('endDate'))
|
|
// lastModifiedAssetTimestamp is only used in mobile app, please remove if not need
|
|
.select((eb) => eb.fn.max('assets.updatedAt').as('lastModifiedAssetTimestamp'))
|
|
.select((eb) => sql<number>`${eb.fn.count('assets.id')}::int`.as('assetCount'))
|
|
.where('album_assets.albumsId', 'in', ids)
|
|
.where('assets.deletedAt', 'is', null)
|
|
.groupBy('album_assets.albumsId')
|
|
.execute()
|
|
);
|
|
}
|
|
|
|
@GenerateSql({ params: [DummyValue.UUID] })
|
|
async getOwned(ownerId: string): Promise<AlbumEntity[]> {
|
|
return this.db
|
|
.selectFrom('albums')
|
|
.selectAll('albums')
|
|
.select(withOwner)
|
|
.select(withAlbumUsers)
|
|
.select(withSharedLink)
|
|
.where('albums.ownerId', '=', ownerId)
|
|
.where('albums.deletedAt', 'is', null)
|
|
.orderBy('albums.createdAt', 'desc')
|
|
.execute() as unknown as Promise<AlbumEntity[]>;
|
|
}
|
|
|
|
/**
|
|
* Get albums shared with and shared by owner.
|
|
*/
|
|
@GenerateSql({ params: [DummyValue.UUID] })
|
|
async getShared(ownerId: string): Promise<AlbumEntity[]> {
|
|
return this.db
|
|
.selectFrom('albums')
|
|
.selectAll('albums')
|
|
.where((eb) =>
|
|
eb.or([
|
|
eb.exists(
|
|
eb
|
|
.selectFrom('albums_shared_users_users as album_users')
|
|
.whereRef('album_users.albumsId', '=', 'albums.id')
|
|
.where((eb) => eb.or([eb('albums.ownerId', '=', ownerId), eb('album_users.usersId', '=', ownerId)])),
|
|
),
|
|
eb.exists(
|
|
eb
|
|
.selectFrom('shared_links')
|
|
.whereRef('shared_links.albumId', '=', 'albums.id')
|
|
.where('shared_links.userId', '=', ownerId),
|
|
),
|
|
]),
|
|
)
|
|
.where('albums.deletedAt', 'is', null)
|
|
.select(withAlbumUsers)
|
|
.select(withOwner)
|
|
.select(withSharedLink)
|
|
.orderBy('albums.createdAt', 'desc')
|
|
.execute() as unknown as Promise<AlbumEntity[]>;
|
|
}
|
|
|
|
/**
|
|
* Get albums of owner that are _not_ shared
|
|
*/
|
|
@GenerateSql({ params: [DummyValue.UUID] })
|
|
async getNotShared(ownerId: string): Promise<AlbumEntity[]> {
|
|
return this.db
|
|
.selectFrom('albums')
|
|
.selectAll('albums')
|
|
.where('albums.ownerId', '=', ownerId)
|
|
.where('albums.deletedAt', 'is', null)
|
|
.where((eb) =>
|
|
eb.not(
|
|
eb.exists(
|
|
eb
|
|
.selectFrom('albums_shared_users_users as album_users')
|
|
.whereRef('album_users.albumsId', '=', 'albums.id'),
|
|
),
|
|
),
|
|
)
|
|
.where((eb) =>
|
|
eb.not(eb.exists(eb.selectFrom('shared_links').whereRef('shared_links.albumId', '=', 'albums.id'))),
|
|
)
|
|
.select(withOwner)
|
|
.orderBy('albums.createdAt', 'desc')
|
|
.execute() as unknown as Promise<AlbumEntity[]>;
|
|
}
|
|
|
|
async restoreAll(userId: string): Promise<void> {
|
|
await this.db.updateTable('albums').set({ deletedAt: null }).where('ownerId', '=', userId).execute();
|
|
}
|
|
|
|
async softDeleteAll(userId: string): Promise<void> {
|
|
await this.db.updateTable('albums').set({ deletedAt: new Date() }).where('ownerId', '=', userId).execute();
|
|
}
|
|
|
|
async deleteAll(userId: string): Promise<void> {
|
|
await this.db.deleteFrom('albums').where('ownerId', '=', userId).execute();
|
|
}
|
|
|
|
async removeAsset(assetId: string): Promise<void> {
|
|
await this.db.deleteFrom('albums_assets_assets').where('albums_assets_assets.assetsId', '=', assetId).execute();
|
|
}
|
|
|
|
@Chunked({ paramIndex: 1 })
|
|
async removeAssetIds(albumId: string, assetIds: string[]): Promise<void> {
|
|
if (assetIds.length === 0) {
|
|
return;
|
|
}
|
|
|
|
await this.db
|
|
.deleteFrom('albums_assets_assets')
|
|
.where('albums_assets_assets.albumsId', '=', albumId)
|
|
.where('albums_assets_assets.assetsId', 'in', assetIds)
|
|
.execute();
|
|
}
|
|
|
|
/**
|
|
* Get asset IDs for the given album ID.
|
|
*
|
|
* @param albumId Album ID to get asset IDs for.
|
|
* @param assetIds Optional list of asset IDs to filter on.
|
|
* @returns Set of Asset IDs for the given album ID.
|
|
*/
|
|
@GenerateSql({ params: [DummyValue.UUID, [DummyValue.UUID]] })
|
|
@ChunkedSet({ paramIndex: 1 })
|
|
async getAssetIds(albumId: string, assetIds: string[]): Promise<Set<string>> {
|
|
if (assetIds.length === 0) {
|
|
return new Set();
|
|
}
|
|
|
|
return this.db
|
|
.selectFrom('albums_assets_assets')
|
|
.selectAll()
|
|
.where('albums_assets_assets.albumsId', '=', albumId)
|
|
.where('albums_assets_assets.assetsId', 'in', assetIds)
|
|
.execute()
|
|
.then((results) => new Set(results.map(({ assetsId }) => assetsId)));
|
|
}
|
|
|
|
async addAssetIds(albumId: string, assetIds: string[]): Promise<void> {
|
|
await this.addAssets(this.db, albumId, assetIds);
|
|
}
|
|
|
|
create(album: Insertable<Albums>, assetIds: string[], albumUsers: AlbumUserCreateDto[]): Promise<AlbumEntity> {
|
|
return this.db.transaction().execute(async (tx) => {
|
|
const newAlbum = await tx.insertInto('albums').values(album).returning('albums.id').executeTakeFirst();
|
|
|
|
if (!newAlbum) {
|
|
throw new Error('Failed to create album');
|
|
}
|
|
|
|
if (assetIds.length > 0) {
|
|
await this.addAssets(tx, newAlbum.id, assetIds);
|
|
}
|
|
|
|
if (albumUsers.length > 0) {
|
|
await tx
|
|
.insertInto('albums_shared_users_users')
|
|
.values(
|
|
albumUsers.map((albumUser) => ({ albumsId: newAlbum.id, usersId: albumUser.userId, role: albumUser.role })),
|
|
)
|
|
.execute();
|
|
}
|
|
|
|
return tx
|
|
.selectFrom('albums')
|
|
.selectAll()
|
|
.where('id', '=', newAlbum.id)
|
|
.select(withOwner)
|
|
.select(withAssets)
|
|
.select(withAlbumUsers)
|
|
.executeTakeFirst() as unknown as Promise<AlbumEntity>;
|
|
});
|
|
}
|
|
|
|
update(id: string, album: Updateable<Albums>): Promise<AlbumEntity> {
|
|
return this.db
|
|
.updateTable('albums')
|
|
.set(album)
|
|
.where('id', '=', id)
|
|
.returningAll('albums')
|
|
.returning(withOwner)
|
|
.returning(withSharedLink)
|
|
.returning(withAlbumUsers)
|
|
.executeTakeFirst() as unknown as Promise<AlbumEntity>;
|
|
}
|
|
|
|
async delete(id: string): Promise<void> {
|
|
await this.db.deleteFrom('albums').where('id', '=', id).execute();
|
|
}
|
|
|
|
@Chunked({ paramIndex: 2, chunkSize: 30_000 })
|
|
private async addAssets(db: Kysely<DB>, albumId: string, assetIds: string[]): Promise<void> {
|
|
if (assetIds.length === 0) {
|
|
return;
|
|
}
|
|
|
|
await db
|
|
.insertInto('albums_assets_assets')
|
|
.values(assetIds.map((assetId) => ({ albumsId: albumId, assetsId: assetId })))
|
|
.execute();
|
|
}
|
|
|
|
/**
|
|
* Makes sure all thumbnails for albums are updated by:
|
|
* - Removing thumbnails from albums without assets
|
|
* - Removing references of thumbnails to assets outside the album
|
|
* - Setting a thumbnail when none is set and the album contains assets
|
|
*
|
|
* @returns Amount of updated album thumbnails or undefined when unknown
|
|
*/
|
|
async updateThumbnails(): Promise<number | undefined> {
|
|
// Subquery for getting a new thumbnail.
|
|
|
|
const result = await this.db
|
|
.updateTable('albums')
|
|
.set((eb) => ({
|
|
albumThumbnailAssetId: this.updateThumbnailBuilder(eb)
|
|
.select('album_assets.assetsId')
|
|
.orderBy('assets.fileCreatedAt', 'desc')
|
|
.limit(1),
|
|
}))
|
|
.where((eb) =>
|
|
eb.or([
|
|
eb.and([
|
|
eb('albumThumbnailAssetId', 'is', null),
|
|
eb.exists(this.updateThumbnailBuilder(eb).select(sql`1`.as('1'))), // Has assets
|
|
]),
|
|
eb.and([
|
|
eb('albumThumbnailAssetId', 'is not', null),
|
|
eb.not(
|
|
eb.exists(
|
|
this.updateThumbnailBuilder(eb)
|
|
.select(sql`1`.as('1'))
|
|
.whereRef('albums.albumThumbnailAssetId', '=', 'album_assets.assetsId'), // Has invalid assets
|
|
),
|
|
),
|
|
]),
|
|
]),
|
|
)
|
|
.execute();
|
|
|
|
return Number(result[0].numUpdatedRows);
|
|
}
|
|
|
|
private updateThumbnailBuilder(eb: ExpressionBuilder<DB, 'albums'>) {
|
|
return eb
|
|
.selectFrom('albums_assets_assets as album_assets')
|
|
.innerJoin('assets', (join) =>
|
|
join.onRef('album_assets.assetsId', '=', 'assets.id').on('assets.deletedAt', 'is', null),
|
|
)
|
|
.whereRef('album_assets.albumsId', '=', 'albums.id');
|
|
}
|
|
}
|