mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-04 03:27:09 -05:00 
			
		
		
		
	* feat(mobile): handle backup iCloud asset * additional state * Download progress * Added a separate page for backup options * handle ingore iCloud asset upload' * fix init backup service * PR feedback * fix negative count * get file title
		
			
				
	
	
		
			87 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
// ignore_for_file: public_member_api_docs, sort_constructors_first
 | 
						|
import 'dart:convert';
 | 
						|
 | 
						|
class CurrentUploadAsset {
 | 
						|
  final String id;
 | 
						|
  final DateTime fileCreatedAt;
 | 
						|
  final String fileName;
 | 
						|
  final String fileType;
 | 
						|
  final bool? iCloudAsset;
 | 
						|
 | 
						|
  CurrentUploadAsset({
 | 
						|
    required this.id,
 | 
						|
    required this.fileCreatedAt,
 | 
						|
    required this.fileName,
 | 
						|
    required this.fileType,
 | 
						|
    this.iCloudAsset,
 | 
						|
  });
 | 
						|
 | 
						|
  CurrentUploadAsset copyWith({
 | 
						|
    String? id,
 | 
						|
    DateTime? fileCreatedAt,
 | 
						|
    String? fileName,
 | 
						|
    String? fileType,
 | 
						|
    bool? iCloudAsset,
 | 
						|
  }) {
 | 
						|
    return CurrentUploadAsset(
 | 
						|
      id: id ?? this.id,
 | 
						|
      fileCreatedAt: fileCreatedAt ?? this.fileCreatedAt,
 | 
						|
      fileName: fileName ?? this.fileName,
 | 
						|
      fileType: fileType ?? this.fileType,
 | 
						|
      iCloudAsset: iCloudAsset ?? this.iCloudAsset,
 | 
						|
    );
 | 
						|
  }
 | 
						|
 | 
						|
  Map<String, dynamic> toMap() {
 | 
						|
    return <String, dynamic>{
 | 
						|
      'id': id,
 | 
						|
      'fileCreatedAt': fileCreatedAt.millisecondsSinceEpoch,
 | 
						|
      'fileName': fileName,
 | 
						|
      'fileType': fileType,
 | 
						|
      'iCloudAsset': iCloudAsset,
 | 
						|
    };
 | 
						|
  }
 | 
						|
 | 
						|
  factory CurrentUploadAsset.fromMap(Map<String, dynamic> map) {
 | 
						|
    return CurrentUploadAsset(
 | 
						|
      id: map['id'] as String,
 | 
						|
      fileCreatedAt:
 | 
						|
          DateTime.fromMillisecondsSinceEpoch(map['fileCreatedAt'] as int),
 | 
						|
      fileName: map['fileName'] as String,
 | 
						|
      fileType: map['fileType'] as String,
 | 
						|
      iCloudAsset:
 | 
						|
          map['iCloudAsset'] != null ? map['iCloudAsset'] as bool : null,
 | 
						|
    );
 | 
						|
  }
 | 
						|
 | 
						|
  String toJson() => json.encode(toMap());
 | 
						|
 | 
						|
  factory CurrentUploadAsset.fromJson(String source) =>
 | 
						|
      CurrentUploadAsset.fromMap(json.decode(source) as Map<String, dynamic>);
 | 
						|
 | 
						|
  @override
 | 
						|
  String toString() {
 | 
						|
    return 'CurrentUploadAsset(id: $id, fileCreatedAt: $fileCreatedAt, fileName: $fileName, fileType: $fileType, iCloudAsset: $iCloudAsset)';
 | 
						|
  }
 | 
						|
 | 
						|
  @override
 | 
						|
  bool operator ==(covariant CurrentUploadAsset other) {
 | 
						|
    if (identical(this, other)) return true;
 | 
						|
 | 
						|
    return other.id == id &&
 | 
						|
        other.fileCreatedAt == fileCreatedAt &&
 | 
						|
        other.fileName == fileName &&
 | 
						|
        other.fileType == fileType &&
 | 
						|
        other.iCloudAsset == iCloudAsset;
 | 
						|
  }
 | 
						|
 | 
						|
  @override
 | 
						|
  int get hashCode {
 | 
						|
    return id.hashCode ^
 | 
						|
        fileCreatedAt.hashCode ^
 | 
						|
        fileName.hashCode ^
 | 
						|
        fileType.hashCode ^
 | 
						|
        iCloudAsset.hashCode;
 | 
						|
  }
 | 
						|
}
 |