selfprivacy.org.app/lib/logic/models/user.dart

43 lines
889 B
Dart
Raw Normal View History

2020-12-03 18:52:53 +02:00
import 'dart:ui';
import 'package:equatable/equatable.dart';
2021-01-06 19:35:57 +02:00
import 'package:hive/hive.dart';
import 'package:selfprivacy/utils/color_utils.dart';
2020-12-03 18:52:53 +02:00
2021-01-06 19:35:57 +02:00
part 'user.g.dart';
@HiveType(typeId: 1)
2020-12-03 18:52:53 +02:00
class User extends Equatable {
User({
2021-03-15 17:39:44 +02:00
required this.login,
this.password,
this.sshKeys = const [],
this.isFoundOnServer = true,
this.note,
2020-12-03 18:52:53 +02:00
});
2021-01-06 19:35:57 +02:00
@HiveField(0)
2020-12-03 18:52:53 +02:00
final String login;
2021-03-15 17:39:44 +02:00
2021-01-06 19:35:57 +02:00
@HiveField(1)
final String? password;
@HiveField(2, defaultValue: const [])
final List<String> sshKeys;
@HiveField(3, defaultValue: true)
final bool isFoundOnServer;
@HiveField(4)
final String? note;
2020-12-03 18:52:53 +02:00
@override
List<Object?> get props => [login, password, sshKeys, isFoundOnServer, note];
2020-12-03 18:52:53 +02:00
Color get color => stringToColor(login);
2021-01-06 19:35:57 +02:00
String toString() {
return '$login, ${isFoundOnServer ? 'found' : 'not found'}, ${sshKeys.length} ssh keys, note: $note';
2021-01-06 19:35:57 +02:00
}
2020-12-03 18:52:53 +02:00
}