lemmur-app-android/lib/stores/accounts_store.dart

275 lines
7.7 KiB
Dart
Raw Normal View History

import 'dart:collection';
2020-09-02 10:00:08 +02:00
import 'dart:convert';
import 'package:flutter/foundation.dart';
2020-09-01 13:22:37 +02:00
import 'package:lemmy_api_client/lemmy_api_client.dart';
import 'package:shared_preferences/shared_preferences.dart';
2021-01-03 18:03:59 +01:00
import '../util/unawaited.dart';
import 'shared_pref_keys.dart';
2020-09-30 19:05:00 +02:00
/// Store that manages all accounts
class AccountsStore extends ChangeNotifier {
/// Map containing JWT tokens of specific users.
/// If a token is in this map, the user is considered logged in
/// for that account.
/// `tokens['instanceHost']['username']`
HashMap<String, HashMap<String, Jwt>> _tokens;
2020-09-23 15:27:24 +02:00
/// default account for a given instance
/// map where keys are instanceHosts and values are usernames
HashMap<String, String> _defaultAccounts;
/// default account for the app
/// It is in a form of `username@instanceHost`
String _defaultAccount;
Future<void> load() async {
final prefs = await SharedPreferences.getInstance();
// I barely understand what I did. Long story short it casts a
// raw json into a nested ObservableMap
nestedMapsCast<T>(T f(Map<String, dynamic> json)) => HashMap.of(
(jsonDecode(prefs.getString(SharedPrefKeys.tokens) ??
'{"lemmy.ml":{}}') as Map<String, dynamic>)
?.map(
(k, e) => MapEntry(
k,
HashMap.of(
(e as Map<String, dynamic>)?.map(
(k, e) => MapEntry(
k, e == null ? null : f(e as Map<String, dynamic>)),
),
),
),
),
);
// set saved settings or create defaults
2021-01-03 21:25:05 +01:00
_tokens = nestedMapsCast((json) => Jwt(json['raw'] as String));
_defaultAccount = prefs.getString(SharedPrefKeys.defaultAccount);
_defaultAccounts = HashMap.of(Map.castFrom(
2021-01-03 21:25:05 +01:00
jsonDecode(prefs.getString(SharedPrefKeys.defaultAccounts) ?? 'null')
as Map<dynamic, dynamic> ??
{},
));
notifyListeners();
}
2020-09-23 15:27:24 +02:00
Future<void> save() async {
final prefs = await SharedPreferences.getInstance();
await prefs.setString(SharedPrefKeys.defaultAccount, _defaultAccount);
await prefs.setString(
SharedPrefKeys.defaultAccounts, jsonEncode(_defaultAccounts));
2021-01-17 17:35:47 +01:00
await prefs.setString(SharedPrefKeys.tokens, jsonEncode(_tokens));
}
/// automatically sets default accounts
void _assignDefaultAccounts() {
// remove dangling defaults
_defaultAccounts.entries.map((dft) {
final instance = dft.key;
final username = dft.value;
// if instance or username doesn't exist, remove
if (!instances.contains(instance) ||
2021-01-17 17:35:47 +01:00
!usernamesFor(instance).contains(username)) {
return instance;
2020-09-23 15:27:24 +02:00
}
}).forEach(_defaultAccounts.remove);
if (_defaultAccount != null) {
final instance = _defaultAccount.split('@')[1];
final username = _defaultAccount.split('@')[0];
// if instance or username doesn't exist, remove
if (!instances.contains(instance) ||
2021-01-17 17:35:47 +01:00
!usernamesFor(instance).contains(username)) {
_defaultAccount = null;
2020-09-23 15:27:24 +02:00
}
}
// set local defaults
for (final instanceHost in instances) {
// if this instance is not in defaults
if (!_defaultAccounts.containsKey(instanceHost)) {
// select first account in this instance, if any
if (!isAnonymousFor(instanceHost)) {
2021-01-17 17:35:47 +01:00
setDefaultAccountFor(instanceHost, usernamesFor(instanceHost).first);
2020-09-23 15:27:24 +02:00
}
}
}
2020-09-23 15:27:24 +02:00
// set global default
if (_defaultAccount == null) {
// select first account of first instance
for (final instanceHost in instances) {
// select first account in this instance, if any
if (!isAnonymousFor(instanceHost)) {
2021-01-17 17:35:47 +01:00
setDefaultAccount(instanceHost, usernamesFor(instanceHost).first);
2020-09-23 15:27:24 +02:00
}
}
}
2020-09-01 13:22:37 +02:00
}
String get defaultUsername {
if (_defaultAccount == null) {
return null;
}
return _defaultAccount.split('@')[0];
2020-09-01 13:22:37 +02:00
}
String get defaultInstanceHost {
if (_defaultAccount == null) {
return null;
}
return _defaultAccount.split('@')[1];
2020-09-01 13:22:37 +02:00
}
String defaultUsernameFor(String instanceHost) {
if (isAnonymousFor(instanceHost)) {
return null;
}
return _defaultAccounts[instanceHost];
}
Jwt get defaultToken {
if (_defaultAccount == null) {
return null;
}
final userTag = _defaultAccount.split('@');
2021-01-17 17:35:47 +01:00
return _tokens[userTag[1]][userTag[0]];
}
Jwt defaultTokenFor(String instanceHost) {
if (isAnonymousFor(instanceHost)) {
return null;
}
2021-01-17 17:35:47 +01:00
return _tokens[instanceHost][_defaultAccounts[instanceHost]];
}
Jwt tokenFor(String instanceHost, String username) {
if (!usernamesFor(instanceHost).contains(username)) {
return null;
}
return _tokens[instanceHost][username];
}
2020-09-01 13:22:37 +02:00
2020-09-23 15:27:24 +02:00
/// sets globally default account
void setDefaultAccount(String instanceHost, String username) {
_defaultAccount = '$username@$instanceHost';
notifyListeners();
save();
2020-09-01 13:22:37 +02:00
}
2020-09-23 15:27:24 +02:00
/// sets default account for given instance
void setDefaultAccountFor(String instanceHost, String username) {
_defaultAccounts[instanceHost] = username;
notifyListeners();
save();
2020-09-01 13:22:37 +02:00
}
2020-09-30 19:05:00 +02:00
/// An instance is considered anonymous if it was not
/// added or there are no accounts assigned to it.
bool isAnonymousFor(String instanceHost) {
if (!instances.contains(instanceHost)) {
return true;
}
2021-01-17 17:35:47 +01:00
return _tokens[instanceHost].isEmpty;
}
2020-09-30 19:05:00 +02:00
/// `true` if no added instance has an account assigned to it
2020-09-26 12:43:34 +02:00
bool get hasNoAccount => loggedInInstances.isEmpty;
2021-01-17 17:35:47 +01:00
Iterable<String> get instances => _tokens.keys;
2020-09-22 23:17:02 +02:00
2020-09-26 12:43:34 +02:00
Iterable<String> get loggedInInstances =>
instances.where((e) => !isAnonymousFor(e));
2021-01-17 17:35:47 +01:00
/// Usernames that are assigned to a given instance
Iterable<String> usernamesFor(String instanceHost) =>
_tokens[instanceHost].keys;
2020-09-01 13:22:37 +02:00
/// adds a new account
/// if it's the first account ever the account is
/// set as default for the app
/// if it's the first account for an instance the account is
/// set as default for that instance
Future<void> addAccount(
String instanceHost,
2020-09-01 13:22:37 +02:00
String usernameOrEmail,
String password,
) async {
if (!instances.contains(instanceHost)) {
throw Exception('No such instance was added');
}
final lemmy = LemmyApi(instanceHost).v1;
2020-09-01 13:22:37 +02:00
2020-09-16 23:22:04 +02:00
final token = await lemmy.login(
2020-09-01 13:22:37 +02:00
usernameOrEmail: usernameOrEmail,
password: password,
);
2020-09-16 23:22:04 +02:00
final userData =
2020-09-01 13:22:37 +02:00
await lemmy.getSite(auth: token.raw).then((value) => value.myUser);
2021-01-17 17:35:47 +01:00
_tokens[instanceHost][userData.name] = token;
_assignDefaultAccounts();
notifyListeners();
2021-01-03 18:03:59 +01:00
unawaited(save());
2020-09-01 13:22:37 +02:00
}
2020-09-08 00:34:09 +02:00
/// adds a new instance with no accounts associated with it.
2020-09-30 19:05:00 +02:00
/// Additionally makes a test `GET /site` request to check if the instance exists.
/// Check is skipped when [assumeValid] is `true`
Future<void> addInstance(
String instanceHost, {
bool assumeValid = false,
}) async {
if (instances.contains(instanceHost)) {
throw Exception('This instance has already been added');
}
if (!assumeValid) {
try {
await LemmyApi(instanceHost).v1.getSite();
// ignore: avoid_catches_without_on_clauses
} catch (_) {
throw Exception('This instance seems to not exist');
}
2020-09-08 00:34:09 +02:00
}
2021-01-17 17:35:47 +01:00
_tokens[instanceHost] = HashMap();
_assignDefaultAccounts();
notifyListeners();
2021-01-03 18:03:59 +01:00
unawaited(save());
}
2020-09-30 19:05:00 +02:00
/// This also removes all accounts assigned to this instance
void removeInstance(String instanceHost) {
2021-01-17 17:35:47 +01:00
_tokens.remove(instanceHost);
_assignDefaultAccounts();
notifyListeners();
save();
}
void removeAccount(String instanceHost, String username) {
2021-01-17 17:35:47 +01:00
_tokens[instanceHost].remove(username);
_assignDefaultAccounts();
notifyListeners();
save();
}
2020-09-01 13:22:37 +02:00
}