updated localstore collection to global constant

This commit is contained in:
2024-04-16 14:39:20 +02:00
parent 19aca8f97f
commit f5407d2477
16 changed files with 24 additions and 23 deletions

View File

@ -1,14 +1,14 @@
import 'package:localstore/localstore.dart';
import '../widget/debug/cacheView.dart';
import '../api/requestCache.dart';
class DataCleaner {
static Future<void> cleanOldCache() async {
var cacheData = await Localstore.instance.collection(CacheView.collection).get();
var cacheData = await Localstore.instance.collection(RequestCache.collection).get();
cacheData?.forEach((key, value) async {
var lastUpdate = DateTime.fromMillisecondsSinceEpoch(value['lastupdate']);
if(DateTime.now().subtract(const Duration(days: 200)).isAfter(lastUpdate)) {
await Localstore.instance.collection(CacheView.collection).doc(key.split('/').last).delete();
await Localstore.instance.collection(RequestCache.collection).doc(key.split('/').last).delete();
}
});
}