nc-photos/lib/entity/share.dart

149 lines
3.3 KiB
Dart
Raw Normal View History

2021-08-07 22:34:44 +02:00
import 'package:equatable/equatable.dart';
import 'package:nc_photos/account.dart';
import 'package:nc_photos/entity/file.dart';
enum ShareType {
user,
group,
publicLink,
email,
federatedCloudShare,
circle,
talk,
}
extension ShareTypeExtension on ShareType {
static ShareType fromValue(int shareTypeVal) {
switch (shareTypeVal) {
case 0:
return ShareType.user;
case 1:
return ShareType.group;
case 3:
return ShareType.publicLink;
case 4:
return ShareType.email;
case 6:
return ShareType.federatedCloudShare;
case 7:
return ShareType.circle;
case 10:
return ShareType.talk;
default:
throw ArgumentError("Invalid shareType: $shareTypeVal");
}
}
int toValue() {
switch (this) {
case ShareType.user:
return 0;
case ShareType.group:
return 1;
case ShareType.publicLink:
return 3;
case ShareType.email:
return 4;
case ShareType.federatedCloudShare:
return 6;
case ShareType.circle:
return 7;
case ShareType.talk:
return 10;
}
}
}
2021-08-07 22:34:44 +02:00
class Share with EquatableMixin {
Share({
required this.id,
2021-08-13 12:42:31 +02:00
required this.path,
2021-08-07 22:34:44 +02:00
required this.shareType,
required this.shareWith,
required this.shareWithDisplayName,
this.url,
2021-08-07 22:34:44 +02:00
});
@override
toString() {
return "$runtimeType {"
"id: $id, "
2021-08-13 12:42:31 +02:00
"path: $path, "
2021-08-07 22:34:44 +02:00
"shareType: $shareType, "
"shareWith: $shareWith, "
"shareWithDisplayName: $shareWithDisplayName, "
"url: $url, "
2021-08-07 22:34:44 +02:00
"}";
}
@override
get props => [
id,
2021-08-13 12:42:31 +02:00
path,
2021-08-07 22:34:44 +02:00
shareType,
shareWith,
shareWithDisplayName,
url,
2021-08-07 22:34:44 +02:00
];
final String id;
2021-08-13 12:42:31 +02:00
final String path;
final ShareType shareType;
final String? shareWith;
2021-08-07 22:34:44 +02:00
final String shareWithDisplayName;
final String? url;
2021-08-07 22:34:44 +02:00
}
class ShareRepo {
ShareRepo(this.dataSrc);
/// See [ShareDataSource.list]
Future<List<Share>> list(Account account, File file) =>
2021-09-15 08:58:06 +02:00
dataSrc.list(account, file);
2021-08-07 22:34:44 +02:00
2021-08-13 12:42:31 +02:00
/// See [ShareDataSource.listDir]
Future<List<Share>> listDir(Account account, File dir) =>
2021-09-15 08:58:06 +02:00
dataSrc.listDir(account, dir);
2021-08-13 12:42:31 +02:00
2021-08-07 22:34:44 +02:00
/// See [ShareDataSource.create]
Future<Share> create(Account account, File file, String shareWith) =>
2021-09-15 08:58:06 +02:00
dataSrc.create(account, file, shareWith);
2021-08-07 22:34:44 +02:00
/// See [ShareDataSource.createLink]
Future<Share> createLink(
Account account,
File file, {
String? password,
}) =>
dataSrc.createLink(account, file, password: password);
2021-08-07 22:34:44 +02:00
/// See [ShareDataSource.delete]
Future<void> delete(Account account, Share share) =>
2021-09-15 08:58:06 +02:00
dataSrc.delete(account, share);
2021-08-07 22:34:44 +02:00
final ShareDataSource dataSrc;
}
abstract class ShareDataSource {
/// List all shares from a given file
Future<List<Share>> list(Account account, File file);
2021-08-13 12:42:31 +02:00
/// List all shares from a given directory
Future<List<Share>> listDir(Account account, File dir);
2021-08-07 22:34:44 +02:00
/// Share a file/folder with a user
Future<Share> create(Account account, File file, String shareWith);
/// Share a file/folder with a share link
///
/// If [password] is not null, the share link will be password protected
Future<Share> createLink(
Account account,
File file, {
String? password,
});
2021-08-07 22:34:44 +02:00
/// Remove the given share
Future<void> delete(Account account, Share share);
}