]> Untitled Git - lemmy.git/blob - crates/api/src/site.rs
Making more fields optional in the API.
[lemmy.git] / crates / api / src / site.rs
1 use crate::Perform;
2 use actix_web::web::Data;
3 use anyhow::Context;
4 use lemmy_api_common::{
5   blocking,
6   build_federated_instances,
7   get_local_user_settings_view_from_jwt,
8   get_local_user_view_from_jwt,
9   get_local_user_view_from_jwt_opt,
10   is_admin,
11   site::*,
12   user_show_bot_accounts,
13   user_show_nsfw,
14 };
15 use lemmy_apub::fetcher::search::search_by_apub_id;
16 use lemmy_db_queries::{
17   from_opt_str_to_opt_enum,
18   source::site::Site_,
19   Crud,
20   ListingType,
21   SearchType,
22   SortType,
23 };
24 use lemmy_db_schema::source::{moderator::*, site::Site};
25 use lemmy_db_views::{
26   comment_view::CommentQueryBuilder,
27   post_view::PostQueryBuilder,
28   site_view::SiteView,
29 };
30 use lemmy_db_views_actor::{
31   community_view::CommunityQueryBuilder,
32   person_view::{PersonQueryBuilder, PersonViewSafe},
33 };
34 use lemmy_db_views_moderator::{
35   mod_add_community_view::ModAddCommunityView,
36   mod_add_view::ModAddView,
37   mod_ban_from_community_view::ModBanFromCommunityView,
38   mod_ban_view::ModBanView,
39   mod_lock_post_view::ModLockPostView,
40   mod_remove_comment_view::ModRemoveCommentView,
41   mod_remove_community_view::ModRemoveCommunityView,
42   mod_remove_post_view::ModRemovePostView,
43   mod_sticky_post_view::ModStickyPostView,
44 };
45 use lemmy_utils::{
46   location_info,
47   settings::structs::Settings,
48   version,
49   ApiError,
50   ConnectionId,
51   LemmyError,
52 };
53 use lemmy_websocket::LemmyContext;
54 use log::debug;
55
56 #[async_trait::async_trait(?Send)]
57 impl Perform for GetModlog {
58   type Response = GetModlogResponse;
59
60   async fn perform(
61     &self,
62     context: &Data<LemmyContext>,
63     _websocket_id: Option<ConnectionId>,
64   ) -> Result<GetModlogResponse, LemmyError> {
65     let data: &GetModlog = &self;
66
67     let community_id = data.community_id;
68     let mod_person_id = data.mod_person_id;
69     let page = data.page;
70     let limit = data.limit;
71     let removed_posts = blocking(context.pool(), move |conn| {
72       ModRemovePostView::list(conn, community_id, mod_person_id, page, limit)
73     })
74     .await??;
75
76     let locked_posts = blocking(context.pool(), move |conn| {
77       ModLockPostView::list(conn, community_id, mod_person_id, page, limit)
78     })
79     .await??;
80
81     let stickied_posts = blocking(context.pool(), move |conn| {
82       ModStickyPostView::list(conn, community_id, mod_person_id, page, limit)
83     })
84     .await??;
85
86     let removed_comments = blocking(context.pool(), move |conn| {
87       ModRemoveCommentView::list(conn, community_id, mod_person_id, page, limit)
88     })
89     .await??;
90
91     let banned_from_community = blocking(context.pool(), move |conn| {
92       ModBanFromCommunityView::list(conn, community_id, mod_person_id, page, limit)
93     })
94     .await??;
95
96     let added_to_community = blocking(context.pool(), move |conn| {
97       ModAddCommunityView::list(conn, community_id, mod_person_id, page, limit)
98     })
99     .await??;
100
101     // These arrays are only for the full modlog, when a community isn't given
102     let (removed_communities, banned, added) = if data.community_id.is_none() {
103       blocking(context.pool(), move |conn| {
104         Ok((
105           ModRemoveCommunityView::list(conn, mod_person_id, page, limit)?,
106           ModBanView::list(conn, mod_person_id, page, limit)?,
107           ModAddView::list(conn, mod_person_id, page, limit)?,
108         )) as Result<_, LemmyError>
109       })
110       .await??
111     } else {
112       (Vec::new(), Vec::new(), Vec::new())
113     };
114
115     // Return the jwt
116     Ok(GetModlogResponse {
117       removed_posts,
118       locked_posts,
119       stickied_posts,
120       removed_comments,
121       removed_communities,
122       banned_from_community,
123       banned,
124       added_to_community,
125       added,
126     })
127   }
128 }
129
130 #[async_trait::async_trait(?Send)]
131 impl Perform for Search {
132   type Response = SearchResponse;
133
134   async fn perform(
135     &self,
136     context: &Data<LemmyContext>,
137     _websocket_id: Option<ConnectionId>,
138   ) -> Result<SearchResponse, LemmyError> {
139     let data: &Search = &self;
140
141     match search_by_apub_id(&data.q, context).await {
142       Ok(r) => return Ok(r),
143       Err(e) => debug!("Failed to resolve search query as activitypub ID: {}", e),
144     }
145
146     let local_user_view = get_local_user_view_from_jwt_opt(&data.auth, context.pool()).await?;
147
148     let show_nsfw = user_show_nsfw(&local_user_view);
149     let show_bot_accounts = user_show_bot_accounts(&local_user_view);
150
151     let person_id = local_user_view.map(|u| u.person.id);
152
153     let mut posts = Vec::new();
154     let mut comments = Vec::new();
155     let mut communities = Vec::new();
156     let mut users = Vec::new();
157
158     // TODO no clean / non-nsfw searching rn
159
160     let q = data.q.to_owned();
161     let page = data.page;
162     let limit = data.limit;
163     let sort: Option<SortType> = from_opt_str_to_opt_enum(&data.sort);
164     let listing_type: Option<ListingType> = from_opt_str_to_opt_enum(&data.listing_type);
165     let search_type: SearchType = from_opt_str_to_opt_enum(&data.type_).unwrap_or(SearchType::All);
166     let community_id = data.community_id;
167     let community_name = data.community_name.to_owned();
168     let creator_id = data.creator_id;
169     match search_type {
170       SearchType::Posts => {
171         posts = blocking(context.pool(), move |conn| {
172           PostQueryBuilder::create(conn)
173             .sort(sort)
174             .show_nsfw(show_nsfw)
175             .show_bot_accounts(show_bot_accounts)
176             .listing_type(listing_type)
177             .community_id(community_id)
178             .community_name(community_name)
179             .creator_id(creator_id)
180             .my_person_id(person_id)
181             .search_term(q)
182             .page(page)
183             .limit(limit)
184             .list()
185         })
186         .await??;
187       }
188       SearchType::Comments => {
189         comments = blocking(context.pool(), move |conn| {
190           CommentQueryBuilder::create(&conn)
191             .sort(sort)
192             .listing_type(listing_type)
193             .search_term(q)
194             .show_bot_accounts(show_bot_accounts)
195             .community_id(community_id)
196             .community_name(community_name)
197             .creator_id(creator_id)
198             .my_person_id(person_id)
199             .page(page)
200             .limit(limit)
201             .list()
202         })
203         .await??;
204       }
205       SearchType::Communities => {
206         communities = blocking(context.pool(), move |conn| {
207           CommunityQueryBuilder::create(conn)
208             .sort(sort)
209             .listing_type(listing_type)
210             .search_term(q)
211             .my_person_id(person_id)
212             .page(page)
213             .limit(limit)
214             .list()
215         })
216         .await??;
217       }
218       SearchType::Users => {
219         users = blocking(context.pool(), move |conn| {
220           PersonQueryBuilder::create(conn)
221             .sort(sort)
222             .search_term(q)
223             .page(page)
224             .limit(limit)
225             .list()
226         })
227         .await??;
228       }
229       SearchType::All => {
230         posts = blocking(context.pool(), move |conn| {
231           PostQueryBuilder::create(conn)
232             .sort(sort)
233             .show_nsfw(show_nsfw)
234             .show_bot_accounts(show_bot_accounts)
235             .listing_type(listing_type)
236             .community_id(community_id)
237             .community_name(community_name)
238             .creator_id(creator_id)
239             .my_person_id(person_id)
240             .search_term(q)
241             .page(page)
242             .limit(limit)
243             .list()
244         })
245         .await??;
246
247         let q = data.q.to_owned();
248         let community_name = data.community_name.to_owned();
249
250         comments = blocking(context.pool(), move |conn| {
251           CommentQueryBuilder::create(conn)
252             .sort(sort)
253             .listing_type(listing_type)
254             .search_term(q)
255             .show_bot_accounts(show_bot_accounts)
256             .community_id(community_id)
257             .community_name(community_name)
258             .creator_id(creator_id)
259             .my_person_id(person_id)
260             .page(page)
261             .limit(limit)
262             .list()
263         })
264         .await??;
265
266         let q = data.q.to_owned();
267
268         communities = blocking(context.pool(), move |conn| {
269           CommunityQueryBuilder::create(conn)
270             .sort(sort)
271             .listing_type(listing_type)
272             .search_term(q)
273             .my_person_id(person_id)
274             .page(page)
275             .limit(limit)
276             .list()
277         })
278         .await??;
279
280         let q = data.q.to_owned();
281
282         users = blocking(context.pool(), move |conn| {
283           PersonQueryBuilder::create(conn)
284             .sort(sort)
285             .search_term(q)
286             .page(page)
287             .limit(limit)
288             .list()
289         })
290         .await??;
291       }
292       SearchType::Url => {
293         posts = blocking(context.pool(), move |conn| {
294           PostQueryBuilder::create(conn)
295             .sort(sort)
296             .show_nsfw(show_nsfw)
297             .show_bot_accounts(show_bot_accounts)
298             .listing_type(listing_type)
299             .my_person_id(person_id)
300             .community_id(community_id)
301             .community_name(community_name)
302             .creator_id(creator_id)
303             .url_search(q)
304             .page(page)
305             .limit(limit)
306             .list()
307         })
308         .await??;
309       }
310     };
311
312     // Return the jwt
313     Ok(SearchResponse {
314       type_: search_type.to_string(),
315       comments,
316       posts,
317       communities,
318       users,
319     })
320   }
321 }
322
323 #[async_trait::async_trait(?Send)]
324 impl Perform for TransferSite {
325   type Response = GetSiteResponse;
326
327   async fn perform(
328     &self,
329     context: &Data<LemmyContext>,
330     _websocket_id: Option<ConnectionId>,
331   ) -> Result<GetSiteResponse, LemmyError> {
332     let data: &TransferSite = &self;
333     let local_user_view = get_local_user_view_from_jwt(&data.auth, context.pool()).await?;
334
335     is_admin(&local_user_view)?;
336
337     let read_site = blocking(context.pool(), move |conn| Site::read_simple(conn)).await??;
338
339     // Make sure user is the creator
340     if read_site.creator_id != local_user_view.person.id {
341       return Err(ApiError::err("not_an_admin").into());
342     }
343
344     let new_creator_id = data.person_id;
345     let transfer_site = move |conn: &'_ _| Site::transfer(conn, new_creator_id);
346     if blocking(context.pool(), transfer_site).await?.is_err() {
347       return Err(ApiError::err("couldnt_update_site").into());
348     };
349
350     // Mod tables
351     let form = ModAddForm {
352       mod_person_id: local_user_view.person.id,
353       other_person_id: data.person_id,
354       removed: Some(false),
355     };
356
357     blocking(context.pool(), move |conn| ModAdd::create(conn, &form)).await??;
358
359     let site_view = blocking(context.pool(), move |conn| SiteView::read(conn)).await??;
360
361     let mut admins = blocking(context.pool(), move |conn| PersonViewSafe::admins(conn)).await??;
362     let creator_index = admins
363       .iter()
364       .position(|r| r.person.id == site_view.creator.id)
365       .context(location_info!())?;
366     let creator_person = admins.remove(creator_index);
367     admins.insert(0, creator_person);
368
369     let banned = blocking(context.pool(), move |conn| PersonViewSafe::banned(conn)).await??;
370     let federated_instances = build_federated_instances(context.pool()).await?;
371
372     let my_user = Some(get_local_user_settings_view_from_jwt(&data.auth, context.pool()).await?);
373
374     Ok(GetSiteResponse {
375       site_view: Some(site_view),
376       admins,
377       banned,
378       online: 0,
379       version: version::VERSION.to_string(),
380       my_user,
381       federated_instances,
382     })
383   }
384 }
385
386 #[async_trait::async_trait(?Send)]
387 impl Perform for GetSiteConfig {
388   type Response = GetSiteConfigResponse;
389
390   async fn perform(
391     &self,
392     context: &Data<LemmyContext>,
393     _websocket_id: Option<ConnectionId>,
394   ) -> Result<GetSiteConfigResponse, LemmyError> {
395     let data: &GetSiteConfig = &self;
396     let local_user_view = get_local_user_view_from_jwt(&data.auth, context.pool()).await?;
397
398     // Only let admins read this
399     is_admin(&local_user_view)?;
400
401     let config_hjson = Settings::read_config_file()?;
402
403     Ok(GetSiteConfigResponse { config_hjson })
404   }
405 }
406
407 #[async_trait::async_trait(?Send)]
408 impl Perform for SaveSiteConfig {
409   type Response = GetSiteConfigResponse;
410
411   async fn perform(
412     &self,
413     context: &Data<LemmyContext>,
414     _websocket_id: Option<ConnectionId>,
415   ) -> Result<GetSiteConfigResponse, LemmyError> {
416     let data: &SaveSiteConfig = &self;
417     let local_user_view = get_local_user_view_from_jwt(&data.auth, context.pool()).await?;
418
419     // Only let admins read this
420     is_admin(&local_user_view)?;
421
422     // Make sure docker doesn't have :ro at the end of the volume, so its not a read-only filesystem
423     let config_hjson = Settings::save_config_file(&data.config_hjson)
424       .map_err(|_| ApiError::err("couldnt_update_site"))?;
425
426     Ok(GetSiteConfigResponse { config_hjson })
427   }
428 }