nc-photos/lib/entity/share/data_source.dart
2021-10-28 04:48:51 +08:00

155 lines
5 KiB
Dart

import 'dart:convert';
import 'package:logging/logging.dart';
import 'package:nc_photos/account.dart';
import 'package:nc_photos/api/api.dart';
import 'package:nc_photos/entity/file.dart';
import 'package:nc_photos/entity/share.dart';
import 'package:nc_photos/exception.dart';
import 'package:nc_photos/type.dart';
class ShareRemoteDataSource implements ShareDataSource {
@override
list(Account account, File file) async {
_log.info("[list] ${file.path}");
final response = await Api(account).ocs().filesSharing().shares().get(
path: file.strippedPath,
);
return _onListResult(response);
}
@override
listDir(Account account, File dir) async {
_log.info("[listDir] ${dir.path}");
final response = await Api(account).ocs().filesSharing().shares().get(
path: dir.strippedPath,
subfiles: true,
);
return _onListResult(response);
}
@override
listAll(Account account) async {
_log.info("[listAll] $account");
final response = await Api(account).ocs().filesSharing().shares().get();
return _onListResult(response);
}
@override
reverseListAll(Account account) async {
_log.info("[reverseListAll] $account");
final response = await Api(account).ocs().filesSharing().shares().get(
sharedWithMe: true,
);
return _onListResult(response);
}
@override
create(Account account, File file, String shareWith) async {
_log.info("[create] Share '${file.path}' with '$shareWith'");
final response = await Api(account).ocs().filesSharing().shares().post(
path: file.strippedPath,
shareType: ShareType.user.toValue(),
shareWith: shareWith,
);
if (!response.isGood) {
_log.severe("[create] Failed requesting server: $response");
throw ApiException(
response: response,
message: "Failed communicating with server: ${response.statusCode}");
}
final json = jsonDecode(response.body);
final JsonObj dataJson = json["ocs"]["data"];
return _ShareParser().parseSingle(dataJson);
}
@override
createLink(
Account account,
File file, {
String? password,
}) async {
_log.info("[createLink] Share '${file.path}' with a share link");
final response = await Api(account).ocs().filesSharing().shares().post(
path: file.strippedPath,
shareType: ShareType.publicLink.toValue(),
password: password,
);
if (!response.isGood) {
_log.severe("[create] Failed requesting server: $response");
throw ApiException(
response: response,
message: "Failed communicating with server: ${response.statusCode}");
}
final json = jsonDecode(response.body);
final JsonObj dataJson = json["ocs"]["data"];
return _ShareParser().parseSingle(dataJson);
}
@override
delete(Account account, Share share) async {
_log.info("[delete] $share");
final response =
await Api(account).ocs().filesSharing().share(share.id).delete();
if (!response.isGood) {
_log.severe("[delete] Failed requesting server: $response");
throw ApiException(
response: response,
message: "Failed communicating with server: ${response.statusCode}");
}
}
List<Share> _onListResult(Response response) {
if (!response.isGood) {
_log.severe("[_onListResult] Failed requesting server: $response");
throw ApiException(
response: response,
message: "Failed communicating with server: ${response.statusCode}");
}
final json = jsonDecode(response.body);
final List<JsonObj> dataJson = json["ocs"]["data"].cast<JsonObj>();
return _ShareParser().parseList(dataJson);
}
static final _log = Logger("entity.share.data_source.ShareRemoteDataSource");
}
class _ShareParser {
List<Share> parseList(List<JsonObj> jsons) {
final product = <Share>[];
for (final j in jsons) {
try {
product.add(parseSingle(j));
} catch (e) {
_log.severe("[parseList] Failed parsing json: ${jsonEncode(j)}", e);
}
}
return product;
}
Share parseSingle(JsonObj json) {
final shareType = ShareTypeExtension.fromValue(json["share_type"]);
final itemType = ShareItemTypeExtension.fromValue(json["item_type"]);
return Share(
id: json["id"],
shareType: shareType,
stime: DateTime.fromMillisecondsSinceEpoch(json["stime"] * 1000),
uidOwner: json["uid_owner"],
displaynameOwner: json["displayname_owner"],
path: json["path"],
itemType: itemType,
mimeType: json["mimetype"],
itemSource: json["item_source"],
// when shared with a password protected link, shareWith somehow contains
// the password, which doesn't make sense. We set it to null instead
shareWith: shareType == ShareType.publicLink ? null : json["share_with"],
shareWithDisplayName: json["share_with_displayname"],
url: json["url"],
);
}
static final _log = Logger("entity.share.data_source._ShareParser");
}