1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 15:03:22 +00:00
comunicmobile/lib/helpers/comments_helper.dart

74 lines
2.0 KiB
Dart
Raw Normal View History

2019-05-18 12:58:35 +00:00
import 'package:comunic/models/api_request.dart';
2019-05-16 12:52:22 +00:00
import 'package:comunic/models/comment.dart';
2019-05-18 12:58:35 +00:00
import 'package:comunic/models/new_comment.dart';
2019-05-16 12:52:22 +00:00
/// Comments helper
///
/// @author Pierre HUBERT
class CommentsHelper {
2019-05-18 12:58:35 +00:00
/// Send a new comment
///
/// Returns 0 or below in case of failure, the ID of the comment else
Future<int> createComment(NewComment comment) async {
final request = APIRequest(uri: "comments/create", needLogin: true, args: {
"postID": comment.postID.toString(),
"content": comment.hasContent ? comment.content : "",
});
if (comment.hasImage) request.addFile("image", comment.image);
final response = await request.execWithFiles();
if (response.code != 200) return -1;
return response.getObject()["commentID"];
}
2019-05-18 13:05:26 +00:00
/// Get a single comment from the server, specified by its [id]
Future<Comment> getSingle(int id) async {
final response = await APIRequest(
uri: "comments/get_single",
needLogin: true,
args: {"commentID": id.toString()}).exec();
if (response.code != 200) return null;
return apiToComment(response.getObject());
}
2019-05-18 16:48:12 +00:00
/// Update comment content
Future<bool> updateContent(int id, String newContent) async {
return (await APIRequest(uri: "comments/edit", needLogin: true, args: {
"commentID": id.toString(),
"content": newContent,
}).exec())
.isOK;
}
2019-05-18 14:48:19 +00:00
/// Attempt to delete a comment
Future<bool> delete(int id) async {
return (await APIRequest(
2019-05-18 16:48:12 +00:00
uri: "comments/delete",
needLogin: true,
args: {"commentID": id.toString()},
).exec())
.code ==
200;
2019-05-18 14:48:19 +00:00
}
2019-05-16 12:52:22 +00:00
/// Turn an API entry into a [Comment] object
static Comment apiToComment(Map<String, dynamic> entry) {
return Comment(
id: entry["ID"],
userID: entry["userID"],
postID: entry["postID"],
timeSent: entry["time_sent"],
content: entry["content"],
imageURL: entry["img_url"],
likes: entry["likes"],
userLike: entry["userlike"],
);
}
}