261 lines
7.3 KiB
Dart
261 lines
7.3 KiB
Dart
import 'dart:collection';
|
|
import 'dart:convert';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:lemmy_api_client/lemmy_api_client.dart';
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
|
|
|
import 'shared_pref_keys.dart';
|
|
|
|
/// 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['instanceUrl']['username']`
|
|
HashMap<String, HashMap<String, Jwt>> get tokens => _tokens;
|
|
HashMap<String, HashMap<String, Jwt>> _tokens;
|
|
|
|
/// default account for a given instance
|
|
/// map where keys are instanceUrls and values are usernames
|
|
HashMap<String, String> _defaultAccounts;
|
|
|
|
/// default account for the app
|
|
/// It is in a form of `username@instanceUrl`
|
|
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) ?? '{}')
|
|
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
|
|
_tokens = nestedMapsCast((json) => Jwt(json['raw']));
|
|
_defaultAccount = prefs.getString(SharedPrefKeys.defaultAccount);
|
|
_defaultAccounts = HashMap.of(Map.castFrom(
|
|
jsonDecode(prefs.getString(SharedPrefKeys.defaultAccounts) ?? 'null') ??
|
|
{}));
|
|
|
|
notifyListeners();
|
|
}
|
|
|
|
Future<void> save() async {
|
|
final prefs = await SharedPreferences.getInstance();
|
|
|
|
await prefs.setString(SharedPrefKeys.defaultAccount, _defaultAccount);
|
|
await prefs.setString(
|
|
SharedPrefKeys.defaultAccounts, jsonEncode(_defaultAccounts));
|
|
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) ||
|
|
!tokens[instance].containsKey(username)) {
|
|
return instance;
|
|
}
|
|
}).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) ||
|
|
!tokens[instance].containsKey(username)) {
|
|
_defaultAccount = null;
|
|
}
|
|
}
|
|
|
|
// set local defaults
|
|
for (final instanceUrl in instances) {
|
|
// if this instance is not in defaults
|
|
if (!_defaultAccounts.containsKey(instanceUrl)) {
|
|
// select first account in this instance, if any
|
|
if (!isAnonymousFor(instanceUrl)) {
|
|
setDefaultAccountFor(instanceUrl, tokens[instanceUrl].keys.first);
|
|
}
|
|
}
|
|
}
|
|
|
|
// set global default
|
|
if (_defaultAccount == null) {
|
|
// select first account of first instance
|
|
for (final instanceUrl in instances) {
|
|
// select first account in this instance, if any
|
|
if (!isAnonymousFor(instanceUrl)) {
|
|
setDefaultAccount(instanceUrl, tokens[instanceUrl].keys.first);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
String get defaultUsername {
|
|
if (_defaultAccount == null) {
|
|
return null;
|
|
}
|
|
|
|
return _defaultAccount.split('@')[0];
|
|
}
|
|
|
|
String get defaultInstanceUrl {
|
|
if (_defaultAccount == null) {
|
|
return null;
|
|
}
|
|
|
|
return _defaultAccount.split('@')[1];
|
|
}
|
|
|
|
String defaultUsernameFor(String instanceUrl) {
|
|
if (isAnonymousFor(instanceUrl)) {
|
|
return null;
|
|
}
|
|
|
|
return _defaultAccounts[instanceUrl];
|
|
}
|
|
|
|
Jwt get defaultToken {
|
|
if (_defaultAccount == null) {
|
|
return null;
|
|
}
|
|
|
|
final userTag = _defaultAccount.split('@');
|
|
return tokens[userTag[1]][userTag[0]];
|
|
}
|
|
|
|
Jwt defaultTokenFor(String instanceUrl) {
|
|
if (isAnonymousFor(instanceUrl)) {
|
|
return null;
|
|
}
|
|
|
|
return tokens[instanceUrl][_defaultAccounts[instanceUrl]];
|
|
}
|
|
|
|
/// sets globally default account
|
|
void setDefaultAccount(String instanceUrl, String username) {
|
|
_defaultAccount = '$username@$instanceUrl';
|
|
|
|
notifyListeners();
|
|
save();
|
|
}
|
|
|
|
/// sets default account for given instance
|
|
void setDefaultAccountFor(String instanceUrl, String username) {
|
|
_defaultAccounts[instanceUrl] = username;
|
|
|
|
notifyListeners();
|
|
save();
|
|
}
|
|
|
|
/// An instance is considered anonymous if it was not
|
|
/// added or there are no accounts assigned to it.
|
|
bool isAnonymousFor(String instanceUrl) {
|
|
if (!instances.contains(instanceUrl)) {
|
|
return true;
|
|
}
|
|
|
|
return tokens[instanceUrl].isEmpty;
|
|
}
|
|
|
|
/// `true` if no added instance has an account assigned to it
|
|
bool get hasNoAccount => loggedInInstances.isEmpty;
|
|
|
|
Iterable<String> get instances => tokens.keys;
|
|
|
|
Iterable<String> get loggedInInstances =>
|
|
instances.where((e) => !isAnonymousFor(e));
|
|
|
|
/// 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 instanceUrl,
|
|
String usernameOrEmail,
|
|
String password,
|
|
) async {
|
|
if (!instances.contains(instanceUrl)) {
|
|
throw Exception('No such instance was added');
|
|
}
|
|
|
|
final lemmy = LemmyApi(instanceUrl).v1;
|
|
|
|
final token = await lemmy.login(
|
|
usernameOrEmail: usernameOrEmail,
|
|
password: password,
|
|
);
|
|
final userData =
|
|
await lemmy.getSite(auth: token.raw).then((value) => value.myUser);
|
|
|
|
tokens[instanceUrl][userData.name] = token;
|
|
|
|
_assignDefaultAccounts();
|
|
notifyListeners();
|
|
save();
|
|
}
|
|
|
|
/// adds a new instance with no accounts associated with it.
|
|
/// Additionally makes a test `GET /site` request to check if the instance exists.
|
|
/// Check is skipped when [assumeValid] is `true`
|
|
Future<void> addInstance(
|
|
String instanceUrl, {
|
|
bool assumeValid = false,
|
|
}) async {
|
|
if (instances.contains(instanceUrl)) {
|
|
throw Exception('This instance has already been added');
|
|
}
|
|
|
|
if (!assumeValid) {
|
|
try {
|
|
await LemmyApi(instanceUrl).v1.getSite();
|
|
// ignore: avoid_catches_without_on_clauses
|
|
} catch (_) {
|
|
throw Exception('This instance seems to not exist');
|
|
}
|
|
}
|
|
|
|
tokens[instanceUrl] = HashMap();
|
|
|
|
_assignDefaultAccounts();
|
|
notifyListeners();
|
|
save();
|
|
}
|
|
|
|
/// This also removes all accounts assigned to this instance
|
|
void removeInstance(String instanceUrl) {
|
|
tokens.remove(instanceUrl);
|
|
|
|
_assignDefaultAccounts();
|
|
notifyListeners();
|
|
save();
|
|
}
|
|
|
|
void removeAccount(String instanceUrl, String username) {
|
|
tokens[instanceUrl].remove(username);
|
|
|
|
_assignDefaultAccounts();
|
|
notifyListeners();
|
|
save();
|
|
}
|
|
}
|