mirror of
https://github.com/wger-project/flutter.git
synced 2026-02-18 00:17:48 +01:00
757 lines
25 KiB
Dart
757 lines
25 KiB
Dart
/*
|
|
* This file is part of wger Workout Manager <https://github.com/wger-project>.
|
|
* Copyright (C) 2020, 2021 wger Team
|
|
*
|
|
* wger Workout Manager 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import 'dart:async';
|
|
import 'dart:convert';
|
|
import 'dart:developer';
|
|
|
|
import 'package:drift/drift.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
|
import 'package:wger/core/locator.dart';
|
|
import 'package:wger/database/exercises/exercise_database.dart';
|
|
import 'package:wger/exceptions/no_such_entry_exception.dart';
|
|
import 'package:wger/helpers/consts.dart';
|
|
import 'package:wger/models/exercises/alias.dart';
|
|
import 'package:wger/models/exercises/category.dart';
|
|
import 'package:wger/models/exercises/equipment.dart';
|
|
import 'package:wger/models/exercises/exercise.dart';
|
|
import 'package:wger/models/exercises/exercise_base_data.dart';
|
|
import 'package:wger/models/exercises/language.dart';
|
|
import 'package:wger/models/exercises/muscle.dart';
|
|
import 'package:wger/models/exercises/translation.dart';
|
|
import 'package:wger/models/exercises/variation.dart';
|
|
import 'package:wger/providers/base_provider.dart';
|
|
|
|
class ExercisesProvider with ChangeNotifier {
|
|
final WgerBaseProvider baseProvider;
|
|
|
|
ExercisesProvider(this.baseProvider);
|
|
|
|
static const EXERCISE_CACHE_DAYS = 7;
|
|
static const CACHE_VERSION = 4;
|
|
|
|
static const exerciseInfoUrlPath = 'exercisebaseinfo';
|
|
static const exerciseSearchPath = 'exercise/search';
|
|
|
|
static const exerciseVariationsUrlPath = 'variation';
|
|
static const categoriesUrlPath = 'exercisecategory';
|
|
static const musclesUrlPath = 'muscle';
|
|
static const equipmentUrlPath = 'equipment';
|
|
static const languageUrlPath = 'language';
|
|
|
|
List<Exercise> _exercises = [];
|
|
|
|
set exerciseBases(List<Exercise> exercisesBases) {
|
|
_exercises = exercisesBases;
|
|
}
|
|
|
|
List<ExerciseCategory> _categories = [];
|
|
List<Muscle> _muscles = [];
|
|
List<Equipment> _equipment = [];
|
|
List<Language> _languages = [];
|
|
List<Variation> _variations = [];
|
|
|
|
Filters? _filters;
|
|
|
|
Filters? get filters => _filters;
|
|
|
|
Future<void> setFilters(Filters? newFilters) async {
|
|
_filters = newFilters;
|
|
await findByFilters();
|
|
}
|
|
|
|
List<Exercise> _filteredExercises = [];
|
|
|
|
List<Exercise> get filteredExercises => _filteredExercises;
|
|
|
|
set filteredExercises(List<Exercise> newFilteredExercises) {
|
|
_filteredExercises = newFilteredExercises;
|
|
notifyListeners();
|
|
}
|
|
|
|
Map<int, List<Exercise>> get exerciseBasesByVariation {
|
|
final Map<int, List<Exercise>> variations = {};
|
|
|
|
for (final exercise in _exercises.where((e) => e.variationId != null)) {
|
|
if (!variations.containsKey(exercise.variationId)) {
|
|
variations[exercise.variationId!] = [];
|
|
}
|
|
|
|
variations[exercise.variationId]!.add(exercise);
|
|
}
|
|
|
|
return variations;
|
|
}
|
|
|
|
List<Exercise> get bases => [..._exercises];
|
|
|
|
List<ExerciseCategory> get categories => [..._categories];
|
|
|
|
List<Muscle> get muscles => [..._muscles];
|
|
|
|
List<Equipment> get equipment => [..._equipment];
|
|
|
|
List<Language> get languages => [..._languages];
|
|
|
|
set languages(List<Language> languages) {
|
|
_languages = languages;
|
|
}
|
|
|
|
// Initialize filters for exercises search in exercises list
|
|
void _initFilters() {
|
|
if (_muscles.isEmpty || _equipment.isEmpty || _filters != null) {
|
|
return;
|
|
}
|
|
|
|
setFilters(
|
|
Filters(
|
|
exerciseCategories: FilterCategory<ExerciseCategory>(
|
|
title: 'Category',
|
|
items: Map.fromEntries(
|
|
_categories.map(
|
|
(category) => MapEntry<ExerciseCategory, bool>(category, false),
|
|
),
|
|
),
|
|
),
|
|
equipment: FilterCategory<Equipment>(
|
|
title: 'Equipment',
|
|
items: Map.fromEntries(
|
|
_equipment.map(
|
|
(singleEquipment) => MapEntry<Equipment, bool>(singleEquipment, false),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
Future<void> findByFilters() async {
|
|
// Filters not initialized
|
|
if (filters == null) {
|
|
filteredExercises = [];
|
|
return;
|
|
}
|
|
|
|
// Filters are initialized and nothing is marked
|
|
if (filters!.isNothingMarked && filters!.searchTerm.length <= 1) {
|
|
filteredExercises = _exercises;
|
|
return;
|
|
}
|
|
|
|
filteredExercises = [];
|
|
|
|
List<Exercise> filteredItems = _exercises;
|
|
if (filters!.searchTerm.length > 1) {
|
|
filteredItems = await searchExercise(filters!.searchTerm);
|
|
}
|
|
|
|
// Filter by exercise category and equipment (REPLACE WITH HTTP REQUEST)
|
|
filteredExercises = filteredItems.where((exercise) {
|
|
final bool isInAnyCategory = filters!.exerciseCategories.selected.contains(exercise.category);
|
|
|
|
final bool doesContainAnyEquipment = filters!.equipment.selected.any(
|
|
(selectedEquipment) => exercise.equipment.contains(selectedEquipment),
|
|
);
|
|
|
|
return (isInAnyCategory || filters!.exerciseCategories.selected.isEmpty) &&
|
|
(doesContainAnyEquipment || filters!.equipment.selected.isEmpty);
|
|
}).toList();
|
|
}
|
|
|
|
/// Clears all lists
|
|
void clear() {
|
|
_equipment = [];
|
|
_muscles = [];
|
|
_categories = [];
|
|
_languages = [];
|
|
_exercises = [];
|
|
}
|
|
|
|
/// Find exercise base by ID
|
|
Exercise findExerciseById(int id) {
|
|
return _exercises.firstWhere(
|
|
(base) => base.id == id,
|
|
orElse: () => throw NoSuchEntryException(),
|
|
);
|
|
}
|
|
|
|
/// Find exercise bases by variation IDs
|
|
///
|
|
/// exerciseIdToExclude: the ID of the exercise to exclude from the list of
|
|
/// returned exercises. Since this is typically called by one exercise, we are
|
|
/// not interested in seeing that same exercise returned in the list of variations.
|
|
/// If this parameter is not passed, all exercises are returned.
|
|
List<Exercise> findExerciseBasesByVariationId(int id, {int? exerciseBaseIdToExclude}) {
|
|
var out = _exercises.where((base) => base.variationId == id).toList();
|
|
|
|
if (exerciseBaseIdToExclude != null) {
|
|
out = out.where((e) => e.id != exerciseBaseIdToExclude).toList();
|
|
}
|
|
return out;
|
|
}
|
|
|
|
/// Find category by ID
|
|
ExerciseCategory findCategoryById(int id) {
|
|
return _categories.firstWhere(
|
|
(cat) => cat.id == id,
|
|
orElse: () => throw NoSuchEntryException(),
|
|
);
|
|
}
|
|
|
|
/// Find equipment by ID
|
|
Equipment findEquipmentById(int id) {
|
|
return _equipment.firstWhere(
|
|
(equipment) => equipment.id == id,
|
|
orElse: () => throw NoSuchEntryException(),
|
|
);
|
|
}
|
|
|
|
/// Find muscle by ID
|
|
Muscle findMuscleById(int id) {
|
|
return _muscles.firstWhere(
|
|
(muscle) => muscle.id == id,
|
|
orElse: () => throw NoSuchEntryException(),
|
|
);
|
|
}
|
|
|
|
/// Find language by ID
|
|
Language findLanguageById(int id) {
|
|
return _languages.firstWhere(
|
|
(language) => language.id == id,
|
|
orElse: () => throw NoSuchEntryException(),
|
|
);
|
|
}
|
|
|
|
Future<void> fetchAndSetCategoriesFromApi() async {
|
|
final categories = await baseProvider.fetchPaginated(baseProvider.makeUrl(categoriesUrlPath));
|
|
for (final category in categories) {
|
|
_categories.add(ExerciseCategory.fromJson(category));
|
|
}
|
|
}
|
|
|
|
Future<void> fetchAndSetVariationsFromApi() async {
|
|
final variations =
|
|
await baseProvider.fetchPaginated(baseProvider.makeUrl(exerciseVariationsUrlPath));
|
|
for (final variation in variations) {
|
|
_variations.add(Variation.fromJson(variation));
|
|
}
|
|
}
|
|
|
|
Future<void> fetchAndSetMusclesFromApi() async {
|
|
final muscles = await baseProvider.fetchPaginated(baseProvider.makeUrl(musclesUrlPath));
|
|
|
|
for (final muscle in muscles) {
|
|
_muscles.add(Muscle.fromJson(muscle));
|
|
}
|
|
}
|
|
|
|
Future<void> fetchAndSetEquipmentsFromApi() async {
|
|
final equipments = await baseProvider.fetchPaginated(baseProvider.makeUrl(equipmentUrlPath));
|
|
|
|
for (final equipment in equipments) {
|
|
_equipment.add(Equipment.fromJson(equipment));
|
|
}
|
|
}
|
|
|
|
Future<void> fetchAndSetLanguagesFromApi() async {
|
|
final languageData = await baseProvider.fetchPaginated(baseProvider.makeUrl(languageUrlPath));
|
|
|
|
for (final language in languageData) {
|
|
_languages.add(Language.fromJson(language));
|
|
}
|
|
}
|
|
|
|
Future<Language> fetchAndSetLanguageFromApi(int id) async {
|
|
final language = await baseProvider.fetch(baseProvider.makeUrl(languageUrlPath, id: id));
|
|
return Language.fromJson(language);
|
|
}
|
|
|
|
/// Returns the exercise with the given ID
|
|
///
|
|
/// If the exercise is not known locally, it is fetched from the server.
|
|
/// This method is called when a workout is first loaded, after that the
|
|
/// regular not-async getById method can be used
|
|
Future<Exercise> fetchAndSetExercise(int exerciseId) async {
|
|
try {
|
|
return findExerciseById(exerciseId);
|
|
} on NoSuchEntryException {
|
|
final baseData = await baseProvider.fetch(
|
|
baseProvider.makeUrl(exerciseInfoUrlPath, id: exerciseId),
|
|
);
|
|
|
|
final exercise = readExerciseFromBaseInfo(ExerciseBaseData.fromJson(baseData));
|
|
final database = locator<ExerciseDatabase>();
|
|
|
|
final exerciseDb = await (database.select(database.exercises)
|
|
..where((e) => e.id.equals(baseData['id'])))
|
|
.getSingleOrNull();
|
|
|
|
// New exercise, insert
|
|
if (exerciseDb == null) {
|
|
database.into(database.exercises).insert(
|
|
ExercisesCompanion.insert(
|
|
id: baseData['id'],
|
|
data: jsonEncode(baseData),
|
|
lastUpdate: DateTime.parse(baseData['last_update_global']),
|
|
),
|
|
);
|
|
}
|
|
|
|
// If there were updates on the server, update
|
|
final lastUpdateApi = DateTime.parse(baseData['last_update_global']);
|
|
if (exerciseDb != null && lastUpdateApi.isAfter(exerciseDb.lastUpdate)) {
|
|
(database.update(database.exercises)..where((e) => e.id.equals(baseData['id']))).write(
|
|
ExercisesCompanion(
|
|
id: Value(baseData['id']),
|
|
data: Value(jsonEncode(baseData)),
|
|
lastUpdate: Value(DateTime.parse(baseData['last_update_global'])),
|
|
),
|
|
);
|
|
}
|
|
|
|
_exercises.add(exercise);
|
|
return exercise;
|
|
}
|
|
}
|
|
|
|
/// Parses the response from the "exercisebaseinfo" endpoint and returns
|
|
/// a full exercise base
|
|
Exercise readExerciseFromBaseInfo(ExerciseBaseData baseData) {
|
|
final List<Translation> translations = [];
|
|
for (final translationData in baseData.exercises) {
|
|
final translation = Translation(
|
|
id: translationData.id,
|
|
uuid: translationData.uuid,
|
|
name: translationData.name,
|
|
description: translationData.description,
|
|
exerciseId: baseData.id,
|
|
);
|
|
translation.aliases = translationData.aliases
|
|
.map((e) => Alias(exerciseId: translation.id ?? 0, alias: e.alias))
|
|
.toList();
|
|
translation.notes = translationData.notes;
|
|
translation.language = findLanguageById(translationData.languageId);
|
|
translations.add(translation);
|
|
}
|
|
|
|
return Exercise(
|
|
id: baseData.id,
|
|
uuid: baseData.uuid,
|
|
created: baseData.created,
|
|
lastUpdate: baseData.lastUpdate,
|
|
lastUpdateGlobal: baseData.lastUpdateGlobal,
|
|
musclesSecondary: baseData.muscles,
|
|
muscles: baseData.muscles,
|
|
equipment: baseData.equipment,
|
|
category: baseData.category,
|
|
images: baseData.images,
|
|
translations: translations,
|
|
videos: baseData.videos,
|
|
);
|
|
}
|
|
|
|
/// Checks the required cache version
|
|
///
|
|
/// This is needed since the content of the exercise cache (the API response)
|
|
/// can change and we need to invalidate it as a result
|
|
Future<void> checkExerciseCacheVersion() async {
|
|
final prefs = await SharedPreferences.getInstance();
|
|
final database = locator<ExerciseDatabase>();
|
|
if (prefs.containsKey(PREFS_EXERCISE_CACHE_VERSION)) {
|
|
final cacheVersion = prefs.getInt(PREFS_EXERCISE_CACHE_VERSION)!;
|
|
|
|
// Cache has has a different version, reset
|
|
if (cacheVersion != CACHE_VERSION) {
|
|
database.delete(database.exercises).go();
|
|
}
|
|
await prefs.setInt(PREFS_EXERCISE_CACHE_VERSION, CACHE_VERSION);
|
|
|
|
// Cache has no version key, reset
|
|
// Note: this is only needed for very old apps that update and could probably
|
|
// be just removed in the future
|
|
} else {
|
|
database.delete(database.exercises).go();
|
|
await prefs.setInt(PREFS_EXERCISE_CACHE_VERSION, CACHE_VERSION);
|
|
}
|
|
}
|
|
|
|
Future<void> initCacheTimesLocalPrefs() async {
|
|
final prefs = await SharedPreferences.getInstance();
|
|
|
|
// TODO: The exercise data was previously saved in PREFS_EXERCISES. This
|
|
// can now be deleted. After some time when we can be sure all users
|
|
// have updated their app, we can also remove this line and the
|
|
// PREFS_EXERCISES constant
|
|
if (prefs.containsKey(PREFS_EXERCISES)) {
|
|
prefs.remove(PREFS_EXERCISES);
|
|
}
|
|
|
|
final initDate = DateTime(2023, 1, 1).toIso8601String();
|
|
|
|
if (!prefs.containsKey(PREFS_LAST_UPDATED_MUSCLES)) {
|
|
await prefs.setString(PREFS_LAST_UPDATED_MUSCLES, initDate);
|
|
}
|
|
if (!prefs.containsKey(PREFS_LAST_UPDATED_EQUIPMENT)) {
|
|
await prefs.setString(PREFS_LAST_UPDATED_EQUIPMENT, initDate);
|
|
}
|
|
if (!prefs.containsKey(PREFS_LAST_UPDATED_LANGUAGES)) {
|
|
await prefs.setString(PREFS_LAST_UPDATED_LANGUAGES, initDate);
|
|
}
|
|
if (!prefs.containsKey(PREFS_LAST_UPDATED_CATEGORIES)) {
|
|
await prefs.setString(PREFS_LAST_UPDATED_CATEGORIES, initDate);
|
|
}
|
|
}
|
|
|
|
Future<void> clearAllCachesAndPrefs() async {
|
|
final database = locator<ExerciseDatabase>();
|
|
await database.deleteEverything();
|
|
|
|
await initCacheTimesLocalPrefs();
|
|
}
|
|
|
|
/// Loads all needed data for the exercises from the local cache, or if not available,
|
|
/// from the API:
|
|
/// - Muscles
|
|
/// - Categories
|
|
/// - Languages
|
|
/// - Equipment
|
|
/// - Exercises
|
|
Future<void> fetchAndSetInitialData() async {
|
|
clear();
|
|
|
|
final database = locator<ExerciseDatabase>();
|
|
|
|
await initCacheTimesLocalPrefs();
|
|
await checkExerciseCacheVersion();
|
|
|
|
// Load categories, muscles, equipment and languages
|
|
await Future.wait([
|
|
fetchAndSetMuscles(database),
|
|
fetchAndSetCategories(database),
|
|
fetchAndSetLanguages(database),
|
|
fetchAndSetEquipments(database),
|
|
]);
|
|
await fetchAndSetExercises(database);
|
|
|
|
_initFilters();
|
|
notifyListeners();
|
|
}
|
|
|
|
/// Fetches and sets the available exercises
|
|
///
|
|
/// We first try to read from the local DB, and from the API if the data is too old
|
|
Future<void> fetchAndSetExercises(ExerciseDatabase database,
|
|
{bool forceDeleteCache = false}) async {
|
|
if (forceDeleteCache) {
|
|
await database.delete(database.exercises).go();
|
|
}
|
|
|
|
final exercises = await database.select(database.exercises).get();
|
|
log('Loaded ${exercises.length} exercises from cache');
|
|
|
|
_exercises = exercises
|
|
.map((e) => readExerciseFromBaseInfo(ExerciseBaseData.fromJson(json.decode(e.data))))
|
|
//.map((e) => e.data)
|
|
.toList();
|
|
|
|
// updateExerciseCache(database);
|
|
}
|
|
|
|
Future<void> updateExerciseCache(ExerciseDatabase database) async {
|
|
final data = await Future.wait<dynamic>([
|
|
baseProvider.fetch(baseProvider.makeUrl(exerciseInfoUrlPath, query: {'limit': '1000'})),
|
|
// TODO: variations!
|
|
//fetchAndSetVariationsFromApi(),
|
|
]);
|
|
|
|
final List<dynamic> exercisesData = data[0]['results'];
|
|
final exerciseBaseData = exercisesData.map((e) => ExerciseBaseData.fromJson(e)).toList();
|
|
_exercises = exerciseBaseData.map((e) => readExerciseFromBaseInfo(e)).toList();
|
|
|
|
// Insert new entries and update ones that have been edited
|
|
Future.forEach(exercisesData, (exerciseData) async {
|
|
final exercise = await (database.select(database.exercises)
|
|
..where((e) => e.id.equals(exerciseData['id'])))
|
|
.getSingleOrNull();
|
|
|
|
// New exercise, insert
|
|
if (exercise == null) {
|
|
database.into(database.exercises).insert(
|
|
ExercisesCompanion.insert(
|
|
id: exerciseData['id'],
|
|
data: jsonEncode(exerciseData),
|
|
lastUpdate: DateTime.parse(exerciseData['last_update_global']),
|
|
),
|
|
);
|
|
}
|
|
|
|
// If there were updates on the server, update
|
|
final lastUpdateApi = DateTime.parse(exerciseData['last_update_global']);
|
|
if (exercise != null && lastUpdateApi.isAfter(exercise.lastUpdate)) {
|
|
// TODO: timezones 🥳
|
|
print(
|
|
'Exercise ${exercise.id}: update API $lastUpdateApi | Update DB: ${exercise.lastUpdate}');
|
|
(database.update(database.exercises)..where((e) => e.id.equals(exerciseData['id']))).write(
|
|
ExercisesCompanion(
|
|
id: Value(exerciseData['id']),
|
|
data: Value(jsonEncode(exerciseData)),
|
|
lastUpdate: Value(DateTime.parse(exerciseData['last_update_global'])),
|
|
),
|
|
);
|
|
}
|
|
});
|
|
}
|
|
|
|
/// Fetches and sets the available muscles
|
|
///
|
|
/// We first try to read from the local DB, and from the API if the data is too old
|
|
Future<void> fetchAndSetMuscles(ExerciseDatabase database) async {
|
|
final prefs = await SharedPreferences.getInstance();
|
|
var validTill = DateTime.parse(prefs.getString(PREFS_LAST_UPDATED_MUSCLES)!);
|
|
|
|
// Cache still valid, return it
|
|
if (validTill.isAfter(DateTime.now())) {
|
|
final muscles = await database.select(database.muscles).get();
|
|
|
|
if (muscles.isNotEmpty) {
|
|
_muscles = muscles.map((e) => e.data).toList();
|
|
log('Loaded ${_muscles.length} muscles from cache');
|
|
return;
|
|
}
|
|
}
|
|
|
|
// Fetch from API and save to DB
|
|
await fetchAndSetMusclesFromApi();
|
|
await database.delete(database.muscles).go();
|
|
await Future.forEach(_muscles, (e) async {
|
|
await database.into(database.muscles).insert(
|
|
MusclesCompanion.insert(
|
|
id: e.id,
|
|
data: e,
|
|
),
|
|
);
|
|
});
|
|
validTill = DateTime.now().add(const Duration(days: EXERCISE_CACHE_DAYS));
|
|
await prefs.setString(PREFS_LAST_UPDATED_MUSCLES, validTill.toIso8601String());
|
|
log('Wrote ${_muscles.length} muscles from cache. Valid till $validTill');
|
|
}
|
|
|
|
/// Fetches and sets the available categories
|
|
///
|
|
/// We first try to read from the local DB, and from the API if the data is too old
|
|
Future<void> fetchAndSetCategories(ExerciseDatabase database) async {
|
|
final prefs = await SharedPreferences.getInstance();
|
|
var validTill = DateTime.parse(prefs.getString(PREFS_LAST_UPDATED_CATEGORIES)!);
|
|
|
|
// Cache still valid, return it
|
|
if (validTill.isAfter(DateTime.now())) {
|
|
final categories = await database.select(database.categories).get();
|
|
|
|
if (categories.isNotEmpty) {
|
|
_categories = categories.map((e) => e.data).toList();
|
|
log('Loaded ${categories.length} categories from cache');
|
|
return;
|
|
}
|
|
}
|
|
|
|
// Fetch from API and save to DB
|
|
await fetchAndSetCategoriesFromApi();
|
|
await database.delete(database.categories).go();
|
|
await Future.forEach(_categories, (e) async {
|
|
await database.into(database.categories).insert(
|
|
CategoriesCompanion.insert(
|
|
id: e.id,
|
|
data: e,
|
|
),
|
|
);
|
|
});
|
|
validTill = DateTime.now().add(const Duration(days: EXERCISE_CACHE_DAYS));
|
|
await prefs.setString(PREFS_LAST_UPDATED_CATEGORIES, validTill.toIso8601String());
|
|
}
|
|
|
|
/// Fetches and sets the available languages
|
|
///
|
|
/// We first try to read from the local DB, and from the API if the data is too old
|
|
Future<void> fetchAndSetLanguages(ExerciseDatabase database) async {
|
|
final prefs = await SharedPreferences.getInstance();
|
|
var validTill = DateTime.parse(prefs.getString(PREFS_LAST_UPDATED_LANGUAGES)!);
|
|
|
|
// Cache still valid, return it
|
|
if (validTill.isAfter(DateTime.now())) {
|
|
final languages = await database.select(database.languages).get();
|
|
|
|
if (languages.isNotEmpty) {
|
|
_languages = languages.map((e) => e.data).toList();
|
|
return;
|
|
}
|
|
}
|
|
|
|
// Fetch from API and save to DB
|
|
await fetchAndSetLanguagesFromApi();
|
|
await database.delete(database.languages).go();
|
|
await Future.forEach(_languages, (e) async {
|
|
await database.into(database.languages).insert(
|
|
LanguagesCompanion.insert(
|
|
id: e.id,
|
|
data: e,
|
|
),
|
|
);
|
|
});
|
|
validTill = DateTime.now().add(const Duration(days: EXERCISE_CACHE_DAYS));
|
|
await prefs.setString(PREFS_LAST_UPDATED_LANGUAGES, validTill.toIso8601String());
|
|
}
|
|
|
|
/// Fetches and sets the available equipment
|
|
///
|
|
/// We first try to read from the local DB, and from the API if the data is too old
|
|
Future<void> fetchAndSetEquipments(ExerciseDatabase database) async {
|
|
final prefs = await SharedPreferences.getInstance();
|
|
var validTill = DateTime.parse(prefs.getString(PREFS_LAST_UPDATED_EQUIPMENT)!);
|
|
|
|
// Cache still valid, return it
|
|
if (validTill.isAfter(DateTime.now())) {
|
|
final equipments = await database.select(database.equipments).get();
|
|
|
|
if (equipments.isNotEmpty) {
|
|
_equipment = equipments.map((e) => e.data).toList();
|
|
log('Loaded ${equipment.length} equipment from cache');
|
|
return;
|
|
}
|
|
}
|
|
|
|
// Fetch from API and save to DB
|
|
await fetchAndSetEquipmentsFromApi();
|
|
await database.delete(database.equipments).go();
|
|
await Future.forEach(_equipment, (e) async {
|
|
await database.into(database.equipments).insert(
|
|
EquipmentsCompanion.insert(
|
|
id: e.id,
|
|
data: e,
|
|
),
|
|
);
|
|
});
|
|
validTill = DateTime.now().add(const Duration(days: EXERCISE_CACHE_DAYS));
|
|
await prefs.setString(PREFS_LAST_UPDATED_EQUIPMENT, validTill.toIso8601String());
|
|
}
|
|
|
|
/// Searches for an exercise
|
|
///
|
|
/// We could do this locally, but the server has better text searching capabilities
|
|
/// with postgresql.
|
|
Future<List<Exercise>> searchExercise(String name,
|
|
{String languageCode = LANGUAGE_SHORT_ENGLISH, bool searchEnglish = false}) async {
|
|
if (name.length <= 1) {
|
|
return [];
|
|
}
|
|
|
|
final languages = [languageCode];
|
|
if (searchEnglish && languageCode != LANGUAGE_SHORT_ENGLISH) {
|
|
languages.add(LANGUAGE_SHORT_ENGLISH);
|
|
}
|
|
|
|
// Send the request
|
|
final result = await baseProvider.fetch(
|
|
baseProvider.makeUrl(
|
|
exerciseSearchPath,
|
|
query: {'term': name, 'language': languages.join(',')},
|
|
),
|
|
);
|
|
|
|
// Process the response
|
|
return Future.wait(
|
|
(result['suggestions'] as List).map<Future<Exercise>>(
|
|
(entry) => fetchAndSetExercise(entry['data']['base_id']),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class FilterCategory<T> {
|
|
bool isExpanded;
|
|
final Map<T, bool> items;
|
|
final String title;
|
|
|
|
List<T> get selected => [...items.keys].where((key) => items[key]!).toList();
|
|
|
|
FilterCategory({
|
|
required this.title,
|
|
required this.items,
|
|
this.isExpanded = false,
|
|
});
|
|
|
|
FilterCategory<T> copyWith({
|
|
bool? isExpanded,
|
|
Map<T, bool>? items,
|
|
String? title,
|
|
}) {
|
|
return FilterCategory<T>(
|
|
isExpanded: isExpanded ?? this.isExpanded,
|
|
items: items ?? this.items,
|
|
title: title ?? this.title,
|
|
);
|
|
}
|
|
}
|
|
|
|
class Filters {
|
|
final FilterCategory<ExerciseCategory> exerciseCategories;
|
|
final FilterCategory<Equipment> equipment;
|
|
String searchTerm;
|
|
|
|
Filters({
|
|
required this.exerciseCategories,
|
|
required this.equipment,
|
|
this.searchTerm = '',
|
|
bool doesNeedUpdate = false,
|
|
}) : _doesNeedUpdate = doesNeedUpdate;
|
|
|
|
List<FilterCategory> get filterCategories => [exerciseCategories, equipment];
|
|
|
|
bool get isNothingMarked {
|
|
final isExerciseCategoryMarked = exerciseCategories.items.values.any((isMarked) => isMarked);
|
|
final isEquipmentMarked = equipment.items.values.any((isMarked) => isMarked);
|
|
return !isExerciseCategoryMarked && !isEquipmentMarked;
|
|
}
|
|
|
|
bool _doesNeedUpdate = false;
|
|
|
|
bool get doesNeedUpdate => _doesNeedUpdate;
|
|
|
|
void markNeedsUpdate() {
|
|
_doesNeedUpdate = true;
|
|
}
|
|
|
|
void markUpdated() {
|
|
_doesNeedUpdate = false;
|
|
}
|
|
|
|
Filters copyWith({
|
|
FilterCategory<ExerciseCategory>? exerciseCategories,
|
|
FilterCategory<Equipment>? equipment,
|
|
String? searchTerm,
|
|
bool? doesNeedUpdate,
|
|
}) {
|
|
return Filters(
|
|
exerciseCategories: exerciseCategories ?? this.exerciseCategories,
|
|
equipment: equipment ?? this.equipment,
|
|
searchTerm: searchTerm ?? this.searchTerm,
|
|
doesNeedUpdate: doesNeedUpdate ?? this._doesNeedUpdate,
|
|
);
|
|
}
|
|
}
|