lemmy/server/src/api/mod.rs

78 lines
1.5 KiB
Rust
Raw Normal View History

use crate::{blocking, websocket::WebsocketInfo, DbPool, LemmyError};
use actix_web::client::Client;
use lemmy_db::{
community::*,
community_view::*,
moderator::*,
site::*,
user::*,
user_view::*,
Crud,
};
use thiserror::Error;
2019-05-05 05:20:38 +00:00
pub mod claims;
pub mod comment;
2019-05-05 05:20:38 +00:00
pub mod community;
pub mod post;
pub mod site;
pub mod user;
2019-05-05 05:20:38 +00:00
#[derive(Debug, Error)]
#[error("{{\"error\":\"{message}\"}}")]
2019-05-05 05:20:38 +00:00
pub struct APIError {
2019-05-05 16:20:30 +00:00
pub message: String,
2019-05-05 05:20:38 +00:00
}
impl APIError {
2020-01-16 14:39:08 +00:00
pub fn err(msg: &str) -> Self {
2019-05-05 05:20:38 +00:00
APIError {
message: msg.to_string(),
}
}
}
pub struct Oper<T> {
data: T,
client: Client,
2019-05-05 05:20:38 +00:00
}
2020-04-24 14:04:36 +00:00
impl<Data> Oper<Data> {
pub fn new(data: Data, client: Client) -> Oper<Data> {
Oper { data, client }
2019-05-05 05:20:38 +00:00
}
}
#[async_trait::async_trait(?Send)]
pub trait Perform {
2020-04-21 20:40:03 +00:00
type Response: serde::ser::Serialize + Send;
async fn perform(
&self,
pool: &DbPool,
websocket_info: Option<WebsocketInfo>,
) -> Result<Self::Response, LemmyError>;
2019-05-05 05:20:38 +00:00
}
pub async fn is_mod_or_admin(
pool: &DbPool,
user_id: i32,
community_id: i32,
) -> Result<(), LemmyError> {
let is_mod_or_admin = blocking(pool, move |conn| {
Community::is_mod_or_admin(conn, user_id, community_id)
})
.await?;
if !is_mod_or_admin {
return Err(APIError::err("not_an_admin").into());
}
Ok(())
}
pub async fn is_admin(pool: &DbPool, user_id: i32) -> Result<(), LemmyError> {
let user = blocking(pool, move |conn| User_::read(conn, user_id)).await??;
if !user.admin {
return Err(APIError::err("not_an_admin").into());
}
Ok(())
}