mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 10:49:11 -04:00 
			
		
		
		
	await all the cache-invalidation operations during logout and catch errors to actually perform all operations.
		
			
				
	
	
		
			54 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'dart:convert';
 | |
| import 'dart:io';
 | |
| 
 | |
| import 'package:path_provider/path_provider.dart';
 | |
| 
 | |
| abstract class JsonCache<T> {
 | |
|   final String cacheFileName;
 | |
| 
 | |
|   JsonCache(this.cacheFileName);
 | |
| 
 | |
|   Future<File> _getCacheFile() async {
 | |
|     final basePath = await getTemporaryDirectory();
 | |
|     final basePathName = basePath.path;
 | |
| 
 | |
|     final file = File("$basePathName/$cacheFileName.bin");
 | |
| 
 | |
|     return file;
 | |
|   }
 | |
| 
 | |
|   Future<bool> isValid() async {
 | |
|     final file = await _getCacheFile();
 | |
|     return await file.exists();
 | |
|   }
 | |
| 
 | |
|   Future<void> invalidate() async {
 | |
|     try {
 | |
|       final file = await _getCacheFile();
 | |
|       await file.delete();
 | |
|     } on FileSystemException {
 | |
|       // file is already deleted
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   Future<void> putRawData(dynamic data) async {
 | |
|     final jsonString = json.encode(data);
 | |
|     final file = await _getCacheFile();
 | |
| 
 | |
|     if (!await file.exists()) {
 | |
|       await file.create();
 | |
|     }
 | |
| 
 | |
|     await file.writeAsString(jsonString);
 | |
|   }
 | |
| 
 | |
|   dynamic readRawData() async {
 | |
|     final file = await _getCacheFile();
 | |
|     final data = await file.readAsString();
 | |
|     return json.decode(data);
 | |
|   }
 | |
| 
 | |
|   void put(T data);
 | |
|   Future<T> get();
 | |
| }
 |