2021-03-25 19:19:40 +00:00
|
|
|
use crate::PerformCrud;
|
|
|
|
use actix_web::web::Data;
|
|
|
|
use lemmy_api_common::{
|
|
|
|
blocking,
|
|
|
|
get_local_user_view_from_jwt,
|
|
|
|
is_admin,
|
|
|
|
site::{EditSite, SiteResponse},
|
|
|
|
};
|
|
|
|
use lemmy_db_queries::{diesel_option_overwrite_to_url, source::site::Site_, Crud};
|
|
|
|
use lemmy_db_schema::{
|
|
|
|
naive_now,
|
|
|
|
source::site::{Site, SiteForm},
|
|
|
|
};
|
|
|
|
use lemmy_db_views::site_view::SiteView;
|
|
|
|
use lemmy_utils::{
|
|
|
|
utils::{check_slurs, check_slurs_opt},
|
|
|
|
ApiError,
|
|
|
|
ConnectionId,
|
|
|
|
LemmyError,
|
|
|
|
};
|
2021-03-25 19:30:15 +00:00
|
|
|
use lemmy_websocket::{messages::SendAllMessage, LemmyContext, UserOperationCrud};
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl PerformCrud for EditSite {
|
|
|
|
type Response = SiteResponse;
|
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
websocket_id: Option<ConnectionId>,
|
|
|
|
) -> Result<SiteResponse, LemmyError> {
|
|
|
|
let data: &EditSite = &self;
|
|
|
|
let local_user_view = get_local_user_view_from_jwt(&data.auth, context.pool()).await?;
|
|
|
|
|
|
|
|
check_slurs(&data.name)?;
|
|
|
|
check_slurs_opt(&data.description)?;
|
|
|
|
|
|
|
|
// Make sure user is an admin
|
|
|
|
is_admin(&local_user_view)?;
|
|
|
|
|
|
|
|
let found_site = blocking(context.pool(), move |conn| Site::read_simple(conn)).await??;
|
|
|
|
|
|
|
|
let icon = diesel_option_overwrite_to_url(&data.icon)?;
|
|
|
|
let banner = diesel_option_overwrite_to_url(&data.banner)?;
|
|
|
|
|
|
|
|
let site_form = SiteForm {
|
|
|
|
name: data.name.to_owned(),
|
|
|
|
description: data.description.to_owned(),
|
|
|
|
icon,
|
|
|
|
banner,
|
|
|
|
creator_id: found_site.creator_id,
|
|
|
|
updated: Some(naive_now()),
|
|
|
|
enable_downvotes: data.enable_downvotes,
|
|
|
|
open_registration: data.open_registration,
|
|
|
|
enable_nsfw: data.enable_nsfw,
|
|
|
|
};
|
|
|
|
|
|
|
|
let update_site = move |conn: &'_ _| Site::update(conn, 1, &site_form);
|
|
|
|
if blocking(context.pool(), update_site).await?.is_err() {
|
|
|
|
return Err(ApiError::err("couldnt_update_site").into());
|
|
|
|
}
|
|
|
|
|
|
|
|
let site_view = blocking(context.pool(), move |conn| SiteView::read(conn)).await??;
|
|
|
|
|
|
|
|
let res = SiteResponse { site_view };
|
|
|
|
|
|
|
|
context.chat_server().do_send(SendAllMessage {
|
2021-03-25 19:30:15 +00:00
|
|
|
op: UserOperationCrud::EditSite,
|
2021-03-25 19:19:40 +00:00
|
|
|
response: res.clone(),
|
|
|
|
websocket_id,
|
|
|
|
});
|
|
|
|
|
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
}
|