mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 02:27:08 -04:00 
			
		
		
		
	* feat(server): extract full-size previews from RAW images * feat(web): load fullsize preview for RAW images when zoomed in * refactor: tweaks for code review * refactor: rename "converted" preview/assets to "fullsize" * feat(web/server): fullsize preview for non-web-friendly images * feat: tweaks for code review * feat(server): require ASSET_DOWNLOAD premission for fullsize previews * test: fix types and interfaces * chore: gen open-api * feat(server): keep only essential exif in fullsize preview * chore: regen openapi * test: revert unnecessary timeout * feat: move full-size preview config to standalone entry * feat(i18n): update en texts * fix: don't return fullsizePath when disabled * test: full-size previews * test(web): full-size previews * chore: make open-api * feat(server): redirect to preview/original URL when fullsize thumbnail not available * fix(server): delete fullsize preview image on thumbnail regen after fullsize preview turned off * refactor(server): AssetRepository.deleteFiles with Kysely * fix(server): type of MediaRepository.writeExif * minor simplification * minor styling changes and condensed wording * simplify * chore: reuild open-api * test(server): fix media.service tests * test(web): fix photo-viewer test * fix(server): use fullsize image when requested * fix file path extension * formatting * use fullsize when zooming back out or when "display original photos" is enabled * simplify condition --------- Co-authored-by: mertalev <101130780+mertalev@users.noreply.github.com>
		
			
				
	
	
		
			132 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
		
			Generated
		
	
	
			
		
		
	
	
			132 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
		
			Generated
		
	
	
| //
 | |
| // AUTO-GENERATED FILE, DO NOT MODIFY!
 | |
| //
 | |
| // @dart=2.18
 | |
| 
 | |
| // ignore_for_file: unused_element, unused_import
 | |
| // ignore_for_file: always_put_required_named_parameters_first
 | |
| // ignore_for_file: constant_identifier_names
 | |
| // ignore_for_file: lines_longer_than_80_chars
 | |
| 
 | |
| part of openapi.api;
 | |
| 
 | |
| class SystemConfigImageDto {
 | |
|   /// Returns a new [SystemConfigImageDto] instance.
 | |
|   SystemConfigImageDto({
 | |
|     required this.colorspace,
 | |
|     required this.extractEmbedded,
 | |
|     required this.fullsize,
 | |
|     required this.preview,
 | |
|     required this.thumbnail,
 | |
|   });
 | |
| 
 | |
|   Colorspace colorspace;
 | |
| 
 | |
|   bool extractEmbedded;
 | |
| 
 | |
|   SystemConfigGeneratedFullsizeImageDto fullsize;
 | |
| 
 | |
|   SystemConfigGeneratedImageDto preview;
 | |
| 
 | |
|   SystemConfigGeneratedImageDto thumbnail;
 | |
| 
 | |
|   @override
 | |
|   bool operator ==(Object other) => identical(this, other) || other is SystemConfigImageDto &&
 | |
|     other.colorspace == colorspace &&
 | |
|     other.extractEmbedded == extractEmbedded &&
 | |
|     other.fullsize == fullsize &&
 | |
|     other.preview == preview &&
 | |
|     other.thumbnail == thumbnail;
 | |
| 
 | |
|   @override
 | |
|   int get hashCode =>
 | |
|     // ignore: unnecessary_parenthesis
 | |
|     (colorspace.hashCode) +
 | |
|     (extractEmbedded.hashCode) +
 | |
|     (fullsize.hashCode) +
 | |
|     (preview.hashCode) +
 | |
|     (thumbnail.hashCode);
 | |
| 
 | |
|   @override
 | |
|   String toString() => 'SystemConfigImageDto[colorspace=$colorspace, extractEmbedded=$extractEmbedded, fullsize=$fullsize, preview=$preview, thumbnail=$thumbnail]';
 | |
| 
 | |
|   Map<String, dynamic> toJson() {
 | |
|     final json = <String, dynamic>{};
 | |
|       json[r'colorspace'] = this.colorspace;
 | |
|       json[r'extractEmbedded'] = this.extractEmbedded;
 | |
|       json[r'fullsize'] = this.fullsize;
 | |
|       json[r'preview'] = this.preview;
 | |
|       json[r'thumbnail'] = this.thumbnail;
 | |
|     return json;
 | |
|   }
 | |
| 
 | |
|   /// Returns a new [SystemConfigImageDto] instance and imports its values from
 | |
|   /// [value] if it's a [Map], null otherwise.
 | |
|   // ignore: prefer_constructors_over_static_methods
 | |
|   static SystemConfigImageDto? fromJson(dynamic value) {
 | |
|     upgradeDto(value, "SystemConfigImageDto");
 | |
|     if (value is Map) {
 | |
|       final json = value.cast<String, dynamic>();
 | |
| 
 | |
|       return SystemConfigImageDto(
 | |
|         colorspace: Colorspace.fromJson(json[r'colorspace'])!,
 | |
|         extractEmbedded: mapValueOfType<bool>(json, r'extractEmbedded')!,
 | |
|         fullsize: SystemConfigGeneratedFullsizeImageDto.fromJson(json[r'fullsize'])!,
 | |
|         preview: SystemConfigGeneratedImageDto.fromJson(json[r'preview'])!,
 | |
|         thumbnail: SystemConfigGeneratedImageDto.fromJson(json[r'thumbnail'])!,
 | |
|       );
 | |
|     }
 | |
|     return null;
 | |
|   }
 | |
| 
 | |
|   static List<SystemConfigImageDto> listFromJson(dynamic json, {bool growable = false,}) {
 | |
|     final result = <SystemConfigImageDto>[];
 | |
|     if (json is List && json.isNotEmpty) {
 | |
|       for (final row in json) {
 | |
|         final value = SystemConfigImageDto.fromJson(row);
 | |
|         if (value != null) {
 | |
|           result.add(value);
 | |
|         }
 | |
|       }
 | |
|     }
 | |
|     return result.toList(growable: growable);
 | |
|   }
 | |
| 
 | |
|   static Map<String, SystemConfigImageDto> mapFromJson(dynamic json) {
 | |
|     final map = <String, SystemConfigImageDto>{};
 | |
|     if (json is Map && json.isNotEmpty) {
 | |
|       json = json.cast<String, dynamic>(); // ignore: parameter_assignments
 | |
|       for (final entry in json.entries) {
 | |
|         final value = SystemConfigImageDto.fromJson(entry.value);
 | |
|         if (value != null) {
 | |
|           map[entry.key] = value;
 | |
|         }
 | |
|       }
 | |
|     }
 | |
|     return map;
 | |
|   }
 | |
| 
 | |
|   // maps a json object with a list of SystemConfigImageDto-objects as value to a dart map
 | |
|   static Map<String, List<SystemConfigImageDto>> mapListFromJson(dynamic json, {bool growable = false,}) {
 | |
|     final map = <String, List<SystemConfigImageDto>>{};
 | |
|     if (json is Map && json.isNotEmpty) {
 | |
|       // ignore: parameter_assignments
 | |
|       json = json.cast<String, dynamic>();
 | |
|       for (final entry in json.entries) {
 | |
|         map[entry.key] = SystemConfigImageDto.listFromJson(entry.value, growable: growable,);
 | |
|       }
 | |
|     }
 | |
|     return map;
 | |
|   }
 | |
| 
 | |
|   /// The list of required keys that must be present in a JSON.
 | |
|   static const requiredKeys = <String>{
 | |
|     'colorspace',
 | |
|     'extractEmbedded',
 | |
|     'fullsize',
 | |
|     'preview',
 | |
|     'thumbnail',
 | |
|   };
 | |
| }
 | |
| 
 |