mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-15 08:54:01 +00:00
83 lines
2 KiB
Rust
83 lines
2 KiB
Rust
use crate::db::category::*;
|
|
use crate::db::comment::*;
|
|
use crate::db::comment_view::*;
|
|
use crate::db::community::*;
|
|
use crate::db::community_view::*;
|
|
use crate::db::moderator::*;
|
|
use crate::db::moderator_views::*;
|
|
use crate::db::password_reset_request::*;
|
|
use crate::db::post::*;
|
|
use crate::db::post_view::*;
|
|
use crate::db::private_message::*;
|
|
use crate::db::private_message_view::*;
|
|
use crate::db::site::*;
|
|
use crate::db::site_view::*;
|
|
use crate::db::user::*;
|
|
use crate::db::user_mention::*;
|
|
use crate::db::user_mention_view::*;
|
|
use crate::db::user_view::*;
|
|
use crate::db::*;
|
|
use crate::{
|
|
extract_usernames, fetch_iframely_and_pictshare_data, generate_random_string, naive_from_unix,
|
|
naive_now, remove_slurs, send_email, slur_check, slurs_vec_to_str,
|
|
};
|
|
|
|
use crate::apub::{
|
|
fetcher::search_by_apub_id,
|
|
signatures::generate_actor_keypair,
|
|
{make_apub_endpoint, ActorType, ApubLikeableType, ApubObjectType, EndpointType},
|
|
};
|
|
use crate::settings::Settings;
|
|
use crate::websocket::{
|
|
server::{
|
|
JoinCommunityRoom, JoinPostRoom, JoinUserRoom, SendAllMessage, SendComment,
|
|
SendCommunityRoomMessage, SendPost, SendUserRoomMessage,
|
|
},
|
|
UserOperation, WebsocketInfo,
|
|
};
|
|
use diesel::r2d2::{ConnectionManager, Pool};
|
|
use diesel::PgConnection;
|
|
use failure::Error;
|
|
use log::{debug, error, info};
|
|
use serde::{Deserialize, Serialize};
|
|
use std::str::FromStr;
|
|
|
|
pub mod comment;
|
|
pub mod community;
|
|
pub mod post;
|
|
pub mod site;
|
|
pub mod user;
|
|
|
|
#[derive(Fail, Debug)]
|
|
#[fail(display = "{{\"error\":\"{}\"}}", message)]
|
|
pub struct APIError {
|
|
pub message: String,
|
|
}
|
|
|
|
impl APIError {
|
|
pub fn err(msg: &str) -> Self {
|
|
APIError {
|
|
message: msg.to_string(),
|
|
}
|
|
}
|
|
}
|
|
|
|
pub struct Oper<T> {
|
|
data: T,
|
|
}
|
|
|
|
impl<Data> Oper<Data> {
|
|
pub fn new(data: Data) -> Oper<Data> {
|
|
Oper { data }
|
|
}
|
|
}
|
|
|
|
pub trait Perform {
|
|
type Response: serde::ser::Serialize + Send;
|
|
|
|
fn perform(
|
|
&self,
|
|
pool: Pool<ConnectionManager<PgConnection>>,
|
|
websocket_info: Option<WebsocketInfo>,
|
|
) -> Result<Self::Response, Error>;
|
|
}
|