mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2024-12-31 16:08:51 +00:00
129 lines
4.1 KiB
Rust
129 lines
4.1 KiB
Rust
//! # Comments controller
|
|
//!
|
|
//! @author Pierre Hubert
|
|
|
|
use crate::api_data::comment_api::CommentAPI;
|
|
use crate::api_data::res_create_comment::ResCreateComment;
|
|
use crate::constants::PATH_COMMENTS_IMAGES;
|
|
use crate::routes::RequestResult;
|
|
use crate::controllers::user_ws_controller;
|
|
use crate::data::base_request_handler::BaseRequestHandler;
|
|
use crate::data::comment::Comment;
|
|
use crate::data::error::Res;
|
|
use crate::data::http_request_handler::HttpRequestHandler;
|
|
use crate::data::notification::NotifEventType;
|
|
use crate::data::post::PostAccessLevel;
|
|
use crate::data::user_ws_message::UserWsMessage;
|
|
use crate::helpers::{comments_helper, events_helper, notifications_helper, posts_helper};
|
|
use crate::helpers::events_helper::Event;
|
|
use crate::utils::date_utils::time;
|
|
use crate::utils::string_utils::remove_html_nodes;
|
|
|
|
/// Create a new comment
|
|
pub fn create(r: &mut HttpRequestHandler) -> RequestResult {
|
|
let post = r.post_post_with_access("postID", PostAccessLevel::BASIC_ACCESS)?;
|
|
|
|
if !posts_helper::allow_comments_on_post(&post)? {
|
|
r.forbidden("You can not create comments on this post!".to_string())?;
|
|
}
|
|
|
|
let (content, image) = if r.has_file("image") {
|
|
(
|
|
remove_html_nodes(&r.post_string_opt("content", 0, false)?),
|
|
Some(r.save_post_image("image", PATH_COMMENTS_IMAGES, 700, 700)?)
|
|
)
|
|
} else {
|
|
(
|
|
r.post_content("content", 2, true)?,
|
|
None
|
|
)
|
|
};
|
|
|
|
|
|
let comment = Comment {
|
|
id: 0,
|
|
time_sent: time(),
|
|
user_id: r.user_id()?,
|
|
post_id: post.id,
|
|
content,
|
|
image_path: image,
|
|
};
|
|
|
|
let comment_id = comments_helper::create(&comment)?;
|
|
|
|
// Create notifications
|
|
notifications_helper::create_post_notification(&r.user_id()?, post.id, NotifEventType::COMMENT_CREATED)?;
|
|
|
|
// Remove notifications targeting current user about the post
|
|
notifications_helper::delete_all_post_notifications_targeting_user(r.user_id_ref()?, post.id)?;
|
|
|
|
r.set_response(ResCreateComment::new(comment_id))
|
|
}
|
|
|
|
/// Get information about a single comment
|
|
pub fn get_single(r: &mut HttpRequestHandler) -> RequestResult {
|
|
let comment = r.post_comment_with_access("commentID")?;
|
|
|
|
r.set_response(CommentAPI::new(&comment, &r.user_id_opt())?)
|
|
}
|
|
|
|
/// Change a comment's content
|
|
pub fn edit(r: &mut HttpRequestHandler) -> RequestResult {
|
|
let comment = r.post_comment_with_full_access("commentID")?;
|
|
let new_content = r.post_content("content", 2, true)?;
|
|
|
|
comments_helper::edit(comment.id, &new_content)?;
|
|
|
|
r.success("Content updated.")
|
|
}
|
|
|
|
/// Delete a comment
|
|
pub fn delete(r: &mut HttpRequestHandler) -> RequestResult {
|
|
let comment = r.post_comment_with_full_access("commentID")?;
|
|
|
|
comments_helper::delete(&comment)?;
|
|
|
|
r.success("Comment deleted.")
|
|
}
|
|
|
|
/// Events handler
|
|
pub fn handle_event(e: &events_helper::Event) -> Res {
|
|
match e {
|
|
Event::NewComment(comment) => {
|
|
user_ws_controller::send_message_to_specific_connections(
|
|
|c| c.posts.contains(&comment.post_id),
|
|
|c| UserWsMessage::no_id_message(
|
|
"new_comment",
|
|
CommentAPI::new(comment, &Some(c.user_id().clone()))?,
|
|
),
|
|
None::<fn(&_) -> _>,
|
|
)?;
|
|
}
|
|
|
|
Event::UpdatedComment(comment) => {
|
|
user_ws_controller::send_message_to_specific_connections(
|
|
|c| c.posts.contains(&comment.post_id),
|
|
|c| UserWsMessage::no_id_message(
|
|
"comment_updated",
|
|
CommentAPI::new(comment, &Some(c.user_id().clone()))?,
|
|
),
|
|
None::<fn(&_) -> _>,
|
|
)?;
|
|
}
|
|
|
|
Event::DeletedComment(comment) => {
|
|
user_ws_controller::send_message_to_specific_connections(
|
|
|c| c.posts.contains(&comment.post_id),
|
|
|_| UserWsMessage::no_id_message(
|
|
"comment_deleted",
|
|
comment.id.clone(),
|
|
),
|
|
None::<fn(&_) -> _>,
|
|
)?;
|
|
}
|
|
|
|
_ => {}
|
|
}
|
|
|
|
Ok(())
|
|
} |