mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-04 03:27:09 -05:00 
			
		
		
		
	refactor(server): sync service (#19559)
This commit is contained in:
		
							parent
							
								
									926ff075a3
								
							
						
					
					
						commit
						b96c95beda
					
				@ -13425,6 +13425,7 @@
 | 
			
		||||
        "properties": {
 | 
			
		||||
          "acks": {
 | 
			
		||||
            "items": {
 | 
			
		||||
              "maxLength": 1000,
 | 
			
		||||
              "type": "string"
 | 
			
		||||
            },
 | 
			
		||||
            "type": "array"
 | 
			
		||||
 | 
			
		||||
@ -1,5 +1,5 @@
 | 
			
		||||
import { ApiProperty } from '@nestjs/swagger';
 | 
			
		||||
import { IsEnum, IsInt, IsPositive, IsString } from 'class-validator';
 | 
			
		||||
import { IsEnum, IsInt, IsPositive, IsString, MaxLength } from 'class-validator';
 | 
			
		||||
import { AssetResponseDto } from 'src/dtos/asset-response.dto';
 | 
			
		||||
import { AlbumUserRole, AssetOrder, AssetType, AssetVisibility, SyncEntityType, SyncRequestType } from 'src/enum';
 | 
			
		||||
import { Optional, ValidateDate, ValidateUUID } from 'src/validation';
 | 
			
		||||
@ -217,6 +217,7 @@ export class SyncAckDto {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export class SyncAckSetDto {
 | 
			
		||||
  @MaxLength(1000)
 | 
			
		||||
  @IsString({ each: true })
 | 
			
		||||
  acks!: string[];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -96,10 +96,7 @@ export class SyncService extends BaseService {
 | 
			
		||||
        throw new BadRequestException(`Invalid ack type: ${type}`);
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      if (checkpoints[type]) {
 | 
			
		||||
        throw new BadRequestException('Only one ack per type is allowed');
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      // TODO pick the latest ack for each type, instead of using the last one
 | 
			
		||||
      checkpoints[type] = { sessionId, type, ack };
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user