mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2024-11-27 15:59:21 +00:00
24 lines
793 B
Rust
24 lines
793 B
Rust
//! # Posts controller
|
|
//!
|
|
//! @author Pierre Hubert
|
|
|
|
use crate::api_data::post_api::PostAPI;
|
|
use crate::controllers::routes::RequestResult;
|
|
use crate::data::http_request_handler::HttpRequestHandler;
|
|
use crate::helpers::{posts_helper, user_helper};
|
|
|
|
/// Get the list of posts of a user
|
|
pub fn get_list_user(r: &mut HttpRequestHandler) -> RequestResult {
|
|
let user_id = r.post_user_id("userID")?;
|
|
let start_from = r.post_u64_opt("startFrom", 0)?;
|
|
|
|
if !user_helper::can_see_user_page(r.user_id_ref()?, &user_id)? {
|
|
r.forbidden("You are not allowed to access this user posts !".to_string())?;
|
|
}
|
|
|
|
let posts = posts_helper::PostsQuery::new(r.user_id_opt())
|
|
.set_start_from(start_from)
|
|
.get_user(&user_id)?;
|
|
|
|
r.set_response(PostAPI::for_list(&posts))
|
|
} |