lemmy/server/src/api/mod.rs

47 lines
787 B
Rust
Raw Normal View History

2020-05-16 14:04:08 +00:00
use crate::websocket::WebsocketInfo;
use diesel::{
r2d2::{ConnectionManager, Pool},
PgConnection,
};
use failure::Error;
2019-05-05 05:20:38 +00:00
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(Fail, Debug)]
2020-01-16 14:39:08 +00:00
#[fail(display = "{{\"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,
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) -> Oper<Data> {
2020-01-16 14:39:08 +00:00
Oper { data }
2019-05-05 05:20:38 +00:00
}
}
pub trait Perform {
2020-04-21 20:40:03 +00:00
type Response: serde::ser::Serialize + Send;
fn perform(
&self,
pool: Pool<ConnectionManager<PgConnection>>,
websocket_info: Option<WebsocketInfo>,
) -> Result<Self::Response, Error>;
2019-05-05 05:20:38 +00:00
}