mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 02:46:47 +01:00
Clean up
This commit is contained in:
parent
11407b7e30
commit
7653eda8b3
4 changed files with 10 additions and 10 deletions
|
@ -123,6 +123,7 @@ describe('Album service', () => {
|
|||
updateAlbum: jest.fn(),
|
||||
getListByAssetId: jest.fn(),
|
||||
getCountByUserId: jest.fn(),
|
||||
getSharedAlbumCount: jest.fn(),
|
||||
};
|
||||
|
||||
assetRepositoryMock = {
|
||||
|
@ -142,6 +143,7 @@ describe('Album service', () => {
|
|||
getAssetWithNoThumbnail: jest.fn(),
|
||||
getAssetWithNoSmartInfo: jest.fn(),
|
||||
getExistingAssets: jest.fn(),
|
||||
countByIdAndUser: jest.fn(),
|
||||
};
|
||||
|
||||
downloadServiceMock = {
|
||||
|
|
|
@ -14,8 +14,6 @@ import {
|
|||
Header,
|
||||
Put,
|
||||
UploadedFiles,
|
||||
HttpException,
|
||||
HttpStatus
|
||||
} from '@nestjs/common';
|
||||
import { Authenticated } from '../../decorators/authenticated.decorator';
|
||||
import { AssetService } from './asset.service';
|
||||
|
|
|
@ -10,11 +10,11 @@ import { CommunicationModule } from '../communication/communication.module';
|
|||
import { QueueNameEnum } from '@app/job/constants/queue-name.constant';
|
||||
import { AssetRepository, ASSET_REPOSITORY } from './asset-repository';
|
||||
import { DownloadModule } from '../../modules/download/download.module';
|
||||
import {ALBUM_REPOSITORY, AlbumRepository} from "../album/album-repository";
|
||||
import {AlbumEntity} from "@app/database/entities/album.entity";
|
||||
import {UserAlbumEntity} from "@app/database/entities/user-album.entity";
|
||||
import {UserEntity} from "@app/database/entities/user.entity";
|
||||
import {AssetAlbumEntity} from "@app/database/entities/asset-album.entity";
|
||||
import { ALBUM_REPOSITORY, AlbumRepository } from '../album/album-repository';
|
||||
import { AlbumEntity } from '@app/database/entities/album.entity';
|
||||
import { UserAlbumEntity } from '@app/database/entities/user-album.entity';
|
||||
import { UserEntity } from '@app/database/entities/user.entity';
|
||||
import { AssetAlbumEntity } from '@app/database/entities/asset-album.entity';
|
||||
|
||||
@Module({
|
||||
imports: [
|
||||
|
|
|
@ -54,7 +54,7 @@ import { InjectQueue } from '@nestjs/bull';
|
|||
import { Queue } from 'bull';
|
||||
import { DownloadService } from '../../modules/download/download.service';
|
||||
import { DownloadDto } from './dto/download-library.dto';
|
||||
import { ALBUM_REPOSITORY, IAlbumRepository } from "../album/album-repository";
|
||||
import { ALBUM_REPOSITORY, IAlbumRepository } from '../album/album-repository';
|
||||
|
||||
const fileInfo = promisify(stat);
|
||||
|
||||
|
@ -634,14 +634,14 @@ export class AssetService {
|
|||
async checkAssetsAccess(authUser: AuthUserDto, assetIds: string[], mustBeOwner = false) {
|
||||
for (const assetId of assetIds) {
|
||||
// Step 1: Check if user owns asset
|
||||
if (await this._assetRepository.countByIdAndUser(assetId, authUser.id) == 1) {
|
||||
if ((await this._assetRepository.countByIdAndUser(assetId, authUser.id)) == 1) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Avoid additional checks if ownership is required
|
||||
if (!mustBeOwner) {
|
||||
// Step 2: Check if asset is part of an album shared with me
|
||||
if (await this._albumRepository.getSharedAlbumCount(authUser.id, assetId) > 0) {
|
||||
if ((await this._albumRepository.getSharedAlbumCount(authUser.id, assetId)) > 0) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue