2023-03-18 20:24:48 +01:00
|
|
|
import 'package:localstore/localstore.dart';
|
|
|
|
import './resolve_url.dart';
|
|
|
|
|
|
|
|
class User {
|
|
|
|
const User(
|
|
|
|
{required this.username, required this.password, required this.server});
|
|
|
|
|
|
|
|
final String username;
|
|
|
|
final String password;
|
|
|
|
final OutbagServer server;
|
|
|
|
|
|
|
|
Future<void> toDisk() async {
|
|
|
|
final db = Localstore.instance;
|
|
|
|
await db
|
|
|
|
.collection('meta')
|
|
|
|
.doc('auth')
|
|
|
|
.set({'username': username, 'password': password});
|
|
|
|
await server.toDisk();
|
|
|
|
}
|
|
|
|
|
|
|
|
static Future<User> fromDisk() async {
|
|
|
|
final db = Localstore.instance;
|
|
|
|
final data = await db.collection('meta').doc('auth').get();
|
|
|
|
final server = await OutbagServer.fromDisk();
|
|
|
|
|
|
|
|
return User(
|
|
|
|
username: data?['username'],
|
|
|
|
password: data?['password'],
|
|
|
|
server: server,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-03-23 14:48:53 +01:00
|
|
|
static Future<void> removeDisk() async {
|
|
|
|
final db = Localstore.instance;
|
|
|
|
await db.collection('meta').doc('auth').delete();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-03-18 20:24:48 +01:00
|
|
|
static listen(Function(Map<String, dynamic>) cb) async {
|
|
|
|
final db = Localstore.instance;
|
|
|
|
final stream = db.collection('meta').stream;
|
|
|
|
stream.listen(cb);
|
|
|
|
}
|
2023-03-25 14:29:28 +01:00
|
|
|
|
|
|
|
String get humanReadable {
|
|
|
|
return '$username@${server.tag}';
|
|
|
|
}
|
2023-03-18 20:24:48 +01:00
|
|
|
}
|
2023-03-23 10:51:34 +01:00
|
|
|
|
|
|
|
class AccountMeta {
|
|
|
|
final int permissions;
|
|
|
|
final String username;
|
2023-03-25 14:29:28 +01:00
|
|
|
final bool discoverable;
|
2023-03-23 10:51:34 +01:00
|
|
|
final int maxRoomCount;
|
|
|
|
final int maxRoomSize;
|
|
|
|
final int maxRoomMemberCount;
|
|
|
|
|
|
|
|
const AccountMeta(
|
|
|
|
{required this.permissions,
|
|
|
|
required this.username,
|
|
|
|
required this.maxRoomSize,
|
|
|
|
required this.maxRoomCount,
|
|
|
|
required this.maxRoomMemberCount,
|
2023-03-25 14:29:28 +01:00
|
|
|
required this.discoverable});
|
2023-03-23 10:51:34 +01:00
|
|
|
|
|
|
|
factory AccountMeta.fromJSON(dynamic json) {
|
|
|
|
return AccountMeta(
|
2023-03-23 14:48:53 +01:00
|
|
|
permissions: json['rights'],
|
|
|
|
username: json['name'],
|
|
|
|
maxRoomSize: json['maxRoomSize'],
|
|
|
|
maxRoomCount: json['maxRooms'],
|
|
|
|
maxRoomMemberCount: json['maxUsersPerRoom'],
|
2023-03-25 14:29:28 +01:00
|
|
|
discoverable: json['viewable'] == 1);
|
2023-03-23 10:51:34 +01:00
|
|
|
}
|
|
|
|
}
|