/* * Copyright (c) 2024-2025 Fabian Freund. * * This file is part of WebLibre * (see https://weblibre.eu). * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ import 'package:exceptions/exceptions.dart'; import 'package:riverpod_annotation/riverpod_annotation.dart'; import 'package:weblibre/features/bangs/data/database/database.dart'; import 'package:weblibre/features/bangs/data/models/bang_group.dart'; import 'package:weblibre/features/bangs/data/providers.dart'; import 'package:weblibre/features/bangs/data/services/data_source.dart'; part 'sync.g.dart'; @Riverpod(keepAlive: true) class BangSyncRepository extends _$BangSyncRepository { static Future> _fetchAndSyncRemote({ required BangDataSourceService sourceService, required BangDatabase db, required Uri url, required BangGroup group, required Duration? syncInterval, }) async { if (syncInterval != null) { final lastSync = await db.syncDao .getLastSyncOfGroup(group) .getSingleOrNull(); if (lastSync != null && DateTime.now().difference(lastSync) < syncInterval) { return Result.success(null); } } final result = await sourceService.fetchRemoteBangs(url, group); return result.flatMapAsync((remoteBangs) async { await db.syncDao.syncBangs( group: group, remoteBangs: remoteBangs, syncTime: DateTime.now(), ); await db.definitionsDrift.optimizeBangFtsIndex(); await db.definitionsDrift.optimizeTriggerFtsIndex(); }); } static Future> _fetchAndSyncBundled({ required BangDataSourceService sourceService, required BangDatabase db, required BangGroup group, }) async { if (group.bundled == null) { return Result.failure( const ErrorMessage(source: 'BangSync', message: 'Not bundled'), ); } if (group.remote == null) { return Result.failure( const ErrorMessage(source: 'BangSync', message: 'No remote source'), ); } final lastSync = await db.syncDao .getLastSyncOfGroup(group) .getSingleOrNull(); final sourceDate = await sourceService.getBundledBangDate( 'assets/bangs/last_sync.txt', ); if (lastSync != null && (sourceDate == lastSync || sourceDate.difference(lastSync).isNegative)) { return Result.success(null); } final result = await sourceService.getBundledBangs(group.bundled!, group); return result.flatMapAsync((remoteBangs) async { await db.syncDao.syncBangs( group: group, remoteBangs: remoteBangs, syncTime: sourceDate, ); await db.definitionsDrift.optimizeBangFtsIndex(); await db.definitionsDrift.optimizeTriggerFtsIndex(); }); } Future> syncRemoteBangGroup( BangGroup group, Duration? syncInterval, ) async { try { return Result.success( await ref .read(bangDatabaseProvider) .computeWithDatabase( connect: BangDatabase.new, computation: (db) async { final ref = ProviderContainer(); final result = await _fetchAndSyncRemote( sourceService: ref.read( bangDataSourceServiceProvider.notifier, ), db: db, url: Uri.parse(group.remote!), group: group, syncInterval: syncInterval, ); //Throw if necessary return result.value; }, ), ); } catch (e) { return Result.failure( ErrorMessage( message: "Failed to sync Bangs (${group.name})", source: 'BangSync', details: e, ), ); } } Future> syncBundledBangGroup(BangGroup group) async { try { final db = ref.read(bangDatabaseProvider); final result = await _fetchAndSyncBundled( sourceService: ref.read(bangDataSourceServiceProvider.notifier), db: db, group: group, ); //Throw if necessary return result; } catch (e) { return Result.failure( ErrorMessage( message: "Failed to sync Bangs (${group.name})", source: 'BangSync', details: e, ), ); } } Stream watchLastSyncOfGroup(BangGroup group) { return ref .read(bangDatabaseProvider) .syncDao .getLastSyncOfGroup(group) .watchSingleOrNull(); } Future>> syncBundledBangGroups({ Set? groups, }) async { //Default to all sources groups ??= BangGroup.values.where((e) => e.bundled != null).toSet(); //Run isolated operations final futures = groups.map( (source) => syncBundledBangGroup( source, ).then((result) => MapEntry(source, result)), ); return Map.fromEntries(await Future.wait(futures)); } @override void build() {} }