Matthias Rupp 2 rokov pred
rodič
commit
7653eda8b3

+ 2 - 0
server/apps/immich/src/api-v1/album/album.service.spec.ts

@@ -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 = {

+ 0 - 2
server/apps/immich/src/api-v1/asset/asset.controller.ts

@@ -14,8 +14,6 @@ import {
   Header,
   Put,
   UploadedFiles,
-  HttpException,
-  HttpStatus
 } from '@nestjs/common';
 import { Authenticated } from '../../decorators/authenticated.decorator';
 import { AssetService } from './asset.service';

+ 5 - 5
server/apps/immich/src/api-v1/asset/asset.module.ts

@@ -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: [

+ 3 - 3
server/apps/immich/src/api-v1/asset/asset.service.ts

@@ -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;
         }