]> Untitled Git - lemmy.git/blob - crates/api/src/lib.rs
Remove update and read site config. Fixes #2306 (#2329)
[lemmy.git] / crates / api / src / lib.rs
1 use actix_web::{web, web::Data};
2 use captcha::Captcha;
3 use lemmy_api_common::{comment::*, community::*, person::*, post::*, site::*, websocket::*};
4 use lemmy_utils::{error::LemmyError, ConnectionId};
5 use lemmy_websocket::{serialize_websocket_message, LemmyContext, UserOperation};
6 use serde::Deserialize;
7
8 mod comment;
9 mod comment_report;
10 mod community;
11 mod local_user;
12 mod post;
13 mod post_report;
14 mod private_message;
15 mod site;
16 mod websocket;
17
18 #[async_trait::async_trait(?Send)]
19 pub trait Perform {
20   type Response: serde::ser::Serialize + Send;
21
22   async fn perform(
23     &self,
24     context: &Data<LemmyContext>,
25     websocket_id: Option<ConnectionId>,
26   ) -> Result<Self::Response, LemmyError>;
27 }
28
29 pub async fn match_websocket_operation(
30   context: LemmyContext,
31   id: ConnectionId,
32   op: UserOperation,
33   data: &str,
34 ) -> Result<String, LemmyError> {
35   match op {
36     // User ops
37     UserOperation::Login => do_websocket_operation::<Login>(context, id, op, data).await,
38     UserOperation::GetCaptcha => do_websocket_operation::<GetCaptcha>(context, id, op, data).await,
39     UserOperation::GetReplies => do_websocket_operation::<GetReplies>(context, id, op, data).await,
40     UserOperation::AddAdmin => do_websocket_operation::<AddAdmin>(context, id, op, data).await,
41     UserOperation::GetUnreadRegistrationApplicationCount => {
42       do_websocket_operation::<GetUnreadRegistrationApplicationCount>(context, id, op, data).await
43     }
44     UserOperation::ListRegistrationApplications => {
45       do_websocket_operation::<ListRegistrationApplications>(context, id, op, data).await
46     }
47     UserOperation::ApproveRegistrationApplication => {
48       do_websocket_operation::<ApproveRegistrationApplication>(context, id, op, data).await
49     }
50     UserOperation::BanPerson => do_websocket_operation::<BanPerson>(context, id, op, data).await,
51     UserOperation::GetBannedPersons => {
52       do_websocket_operation::<GetBannedPersons>(context, id, op, data).await
53     }
54     UserOperation::BlockPerson => {
55       do_websocket_operation::<BlockPerson>(context, id, op, data).await
56     }
57     UserOperation::GetPersonMentions => {
58       do_websocket_operation::<GetPersonMentions>(context, id, op, data).await
59     }
60     UserOperation::MarkPersonMentionAsRead => {
61       do_websocket_operation::<MarkPersonMentionAsRead>(context, id, op, data).await
62     }
63     UserOperation::MarkAllAsRead => {
64       do_websocket_operation::<MarkAllAsRead>(context, id, op, data).await
65     }
66     UserOperation::PasswordReset => {
67       do_websocket_operation::<PasswordReset>(context, id, op, data).await
68     }
69     UserOperation::PasswordChange => {
70       do_websocket_operation::<PasswordChangeAfterReset>(context, id, op, data).await
71     }
72     UserOperation::UserJoin => do_websocket_operation::<UserJoin>(context, id, op, data).await,
73     UserOperation::PostJoin => do_websocket_operation::<PostJoin>(context, id, op, data).await,
74     UserOperation::CommunityJoin => {
75       do_websocket_operation::<CommunityJoin>(context, id, op, data).await
76     }
77     UserOperation::ModJoin => do_websocket_operation::<ModJoin>(context, id, op, data).await,
78     UserOperation::SaveUserSettings => {
79       do_websocket_operation::<SaveUserSettings>(context, id, op, data).await
80     }
81     UserOperation::ChangePassword => {
82       do_websocket_operation::<ChangePassword>(context, id, op, data).await
83     }
84     UserOperation::GetReportCount => {
85       do_websocket_operation::<GetReportCount>(context, id, op, data).await
86     }
87     UserOperation::GetUnreadCount => {
88       do_websocket_operation::<GetUnreadCount>(context, id, op, data).await
89     }
90     UserOperation::VerifyEmail => {
91       do_websocket_operation::<VerifyEmail>(context, id, op, data).await
92     }
93
94     // Private Message ops
95     UserOperation::MarkPrivateMessageAsRead => {
96       do_websocket_operation::<MarkPrivateMessageAsRead>(context, id, op, data).await
97     }
98
99     // Site ops
100     UserOperation::GetModlog => do_websocket_operation::<GetModlog>(context, id, op, data).await,
101     UserOperation::PurgePerson => {
102       do_websocket_operation::<PurgePerson>(context, id, op, data).await
103     }
104     UserOperation::PurgeCommunity => {
105       do_websocket_operation::<PurgeCommunity>(context, id, op, data).await
106     }
107     UserOperation::PurgePost => do_websocket_operation::<PurgePost>(context, id, op, data).await,
108     UserOperation::PurgeComment => {
109       do_websocket_operation::<PurgeComment>(context, id, op, data).await
110     }
111     UserOperation::Search => do_websocket_operation::<Search>(context, id, op, data).await,
112     UserOperation::ResolveObject => {
113       do_websocket_operation::<ResolveObject>(context, id, op, data).await
114     }
115     UserOperation::TransferCommunity => {
116       do_websocket_operation::<TransferCommunity>(context, id, op, data).await
117     }
118     UserOperation::LeaveAdmin => do_websocket_operation::<LeaveAdmin>(context, id, op, data).await,
119
120     // Community ops
121     UserOperation::FollowCommunity => {
122       do_websocket_operation::<FollowCommunity>(context, id, op, data).await
123     }
124     UserOperation::BlockCommunity => {
125       do_websocket_operation::<BlockCommunity>(context, id, op, data).await
126     }
127     UserOperation::BanFromCommunity => {
128       do_websocket_operation::<BanFromCommunity>(context, id, op, data).await
129     }
130     UserOperation::AddModToCommunity => {
131       do_websocket_operation::<AddModToCommunity>(context, id, op, data).await
132     }
133
134     // Post ops
135     UserOperation::LockPost => do_websocket_operation::<LockPost>(context, id, op, data).await,
136     UserOperation::StickyPost => do_websocket_operation::<StickyPost>(context, id, op, data).await,
137     UserOperation::CreatePostLike => {
138       do_websocket_operation::<CreatePostLike>(context, id, op, data).await
139     }
140     UserOperation::MarkPostAsRead => {
141       do_websocket_operation::<MarkPostAsRead>(context, id, op, data).await
142     }
143     UserOperation::SavePost => do_websocket_operation::<SavePost>(context, id, op, data).await,
144     UserOperation::CreatePostReport => {
145       do_websocket_operation::<CreatePostReport>(context, id, op, data).await
146     }
147     UserOperation::ListPostReports => {
148       do_websocket_operation::<ListPostReports>(context, id, op, data).await
149     }
150     UserOperation::ResolvePostReport => {
151       do_websocket_operation::<ResolvePostReport>(context, id, op, data).await
152     }
153     UserOperation::GetSiteMetadata => {
154       do_websocket_operation::<GetSiteMetadata>(context, id, op, data).await
155     }
156
157     // Comment ops
158     UserOperation::MarkCommentAsRead => {
159       do_websocket_operation::<MarkCommentAsRead>(context, id, op, data).await
160     }
161     UserOperation::SaveComment => {
162       do_websocket_operation::<SaveComment>(context, id, op, data).await
163     }
164     UserOperation::CreateCommentLike => {
165       do_websocket_operation::<CreateCommentLike>(context, id, op, data).await
166     }
167     UserOperation::CreateCommentReport => {
168       do_websocket_operation::<CreateCommentReport>(context, id, op, data).await
169     }
170     UserOperation::ListCommentReports => {
171       do_websocket_operation::<ListCommentReports>(context, id, op, data).await
172     }
173     UserOperation::ResolveCommentReport => {
174       do_websocket_operation::<ResolveCommentReport>(context, id, op, data).await
175     }
176   }
177 }
178
179 async fn do_websocket_operation<'a, 'b, Data>(
180   context: LemmyContext,
181   id: ConnectionId,
182   op: UserOperation,
183   data: &str,
184 ) -> Result<String, LemmyError>
185 where
186   for<'de> Data: Deserialize<'de> + 'a,
187   Data: Perform,
188 {
189   let parsed_data: Data = serde_json::from_str(data)?;
190   let res = parsed_data
191     .perform(&web::Data::new(context), Some(id))
192     .await?;
193   serialize_websocket_message(&op, &res)
194 }
195
196 /// Converts the captcha to a base64 encoded wav audio file
197 pub(crate) fn captcha_as_wav_base64(captcha: &Captcha) -> String {
198   let letters = captcha.as_wav();
199
200   let mut concat_letters: Vec<u8> = Vec::new();
201
202   for letter in letters {
203     let bytes = letter.unwrap_or_default();
204     concat_letters.extend(bytes);
205   }
206
207   // Convert to base64
208   base64::encode(concat_letters)
209 }
210
211 #[cfg(test)]
212 mod tests {
213   use lemmy_api_common::utils::check_validator_time;
214   use lemmy_db_schema::{
215     source::{
216       local_user::{LocalUser, LocalUserForm},
217       person::{Person, PersonForm},
218       secret::Secret,
219     },
220     traits::Crud,
221     utils::establish_unpooled_connection,
222   };
223   use lemmy_utils::{claims::Claims, settings::SETTINGS};
224
225   #[test]
226   fn test_should_not_validate_user_token_after_password_change() {
227     let conn = establish_unpooled_connection();
228     let secret = Secret::init(&conn).unwrap();
229     let settings = &SETTINGS.to_owned();
230
231     let new_person = PersonForm {
232       name: "Gerry9812".into(),
233       ..PersonForm::default()
234     };
235
236     let inserted_person = Person::create(&conn, &new_person).unwrap();
237
238     let local_user_form = LocalUserForm {
239       person_id: Some(inserted_person.id),
240       password_encrypted: Some("123456".to_string()),
241       ..LocalUserForm::default()
242     };
243
244     let inserted_local_user = LocalUser::create(&conn, &local_user_form).unwrap();
245
246     let jwt = Claims::jwt(
247       inserted_local_user.id.0,
248       &secret.jwt_secret,
249       &settings.hostname,
250     )
251     .unwrap();
252     let claims = Claims::decode(&jwt, &secret.jwt_secret).unwrap().claims;
253     let check = check_validator_time(&inserted_local_user.validator_time, &claims);
254     assert!(check.is_ok());
255
256     // The check should fail, since the validator time is now newer than the jwt issue time
257     let updated_local_user =
258       LocalUser::update_password(&conn, inserted_local_user.id, "password111").unwrap();
259     let check_after = check_validator_time(&updated_local_user.validator_time, &claims);
260     assert!(check_after.is_err());
261
262     let num_deleted = Person::delete(&conn, inserted_person.id).unwrap();
263     assert_eq!(1, num_deleted);
264   }
265 }