mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-01 02:00:01 +00:00
469 lines
12 KiB
Rust
469 lines
12 KiB
Rust
use super::*;
|
|
use std::str::FromStr;
|
|
use bcrypt::{verify};
|
|
|
|
#[derive(Serialize, Deserialize, Debug)]
|
|
pub struct Login {
|
|
username_or_email: String,
|
|
password: String
|
|
}
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
pub struct Register {
|
|
username: String,
|
|
email: Option<String>,
|
|
password: String,
|
|
password_verify: String,
|
|
admin: bool,
|
|
}
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
pub struct LoginResponse {
|
|
op: String,
|
|
jwt: String
|
|
}
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
pub struct GetUserDetails {
|
|
user_id: Option<i32>,
|
|
username: Option<String>,
|
|
sort: String,
|
|
page: Option<i64>,
|
|
limit: Option<i64>,
|
|
community_id: Option<i32>,
|
|
saved_only: bool,
|
|
auth: Option<String>,
|
|
}
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
pub struct GetUserDetailsResponse {
|
|
op: String,
|
|
user: UserView,
|
|
follows: Vec<CommunityFollowerView>,
|
|
moderates: Vec<CommunityModeratorView>,
|
|
comments: Vec<CommentView>,
|
|
posts: Vec<PostView>,
|
|
}
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
pub struct GetRepliesResponse {
|
|
op: String,
|
|
replies: Vec<ReplyView>,
|
|
}
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
pub struct MarkAllAsRead {
|
|
auth: String
|
|
}
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
pub struct AddAdmin {
|
|
user_id: i32,
|
|
added: bool,
|
|
auth: String
|
|
}
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
pub struct AddAdminResponse {
|
|
op: String,
|
|
admins: Vec<UserView>,
|
|
}
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
pub struct BanUser {
|
|
user_id: i32,
|
|
ban: bool,
|
|
reason: Option<String>,
|
|
expires: Option<i64>,
|
|
auth: String
|
|
}
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
pub struct BanUserResponse {
|
|
op: String,
|
|
user: UserView,
|
|
banned: bool,
|
|
}
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
pub struct GetReplies {
|
|
sort: String,
|
|
page: Option<i64>,
|
|
limit: Option<i64>,
|
|
unread_only: bool,
|
|
auth: String
|
|
}
|
|
|
|
impl Perform<LoginResponse> for Oper<Login> {
|
|
fn perform(&self) -> Result<LoginResponse, Error> {
|
|
let data: &Login = &self.data;
|
|
let conn = establish_connection();
|
|
|
|
// Fetch that username / email
|
|
let user: User_ = match User_::find_by_email_or_username(&conn, &data.username_or_email) {
|
|
Ok(user) => user,
|
|
Err(_e) => return Err(APIError::err(&self.op, "Couldn't find that username or email"))?
|
|
};
|
|
|
|
// Verify the password
|
|
let valid: bool = verify(&data.password, &user.password_encrypted).unwrap_or(false);
|
|
if !valid {
|
|
return Err(APIError::err(&self.op, "Password incorrect"))?
|
|
}
|
|
|
|
// Return the jwt
|
|
Ok(
|
|
LoginResponse {
|
|
op: self.op.to_string(),
|
|
jwt: user.jwt()
|
|
}
|
|
)
|
|
}
|
|
}
|
|
|
|
|
|
impl Perform<LoginResponse> for Oper<Register> {
|
|
fn perform(&self) -> Result<LoginResponse, Error> {
|
|
let data: &Register = &self.data;
|
|
let conn = establish_connection();
|
|
|
|
// Make sure passwords match
|
|
if &data.password != &data.password_verify {
|
|
return Err(APIError::err(&self.op, "Passwords do not match."))?
|
|
}
|
|
|
|
if has_slurs(&data.username) {
|
|
return Err(APIError::err(&self.op, "No slurs"))?
|
|
}
|
|
|
|
// Make sure there are no admins
|
|
if data.admin && UserView::admins(&conn)?.len() > 0 {
|
|
return Err(APIError::err(&self.op, "Sorry, there's already an admin."))?
|
|
}
|
|
|
|
// Register the new user
|
|
let user_form = UserForm {
|
|
name: data.username.to_owned(),
|
|
fedi_name: Settings::get().hostname.into(),
|
|
email: data.email.to_owned(),
|
|
password_encrypted: data.password.to_owned(),
|
|
preferred_username: None,
|
|
updated: None,
|
|
admin: data.admin,
|
|
banned: false,
|
|
};
|
|
|
|
// Create the user
|
|
let inserted_user = match User_::register(&conn, &user_form) {
|
|
Ok(user) => user,
|
|
Err(_e) => {
|
|
return Err(APIError::err(&self.op, "User already exists."))?
|
|
}
|
|
};
|
|
|
|
// Return the jwt
|
|
Ok(
|
|
LoginResponse {
|
|
op: self.op.to_string(),
|
|
jwt: inserted_user.jwt()
|
|
}
|
|
)
|
|
}
|
|
}
|
|
|
|
|
|
impl Perform<GetUserDetailsResponse> for Oper<GetUserDetails> {
|
|
fn perform(&self) -> Result<GetUserDetailsResponse, Error> {
|
|
let data: &GetUserDetails = &self.data;
|
|
let conn = establish_connection();
|
|
|
|
let user_id: Option<i32> = match &data.auth {
|
|
Some(auth) => {
|
|
match Claims::decode(&auth) {
|
|
Ok(claims) => {
|
|
let user_id = claims.claims.id;
|
|
Some(user_id)
|
|
}
|
|
Err(_e) => None
|
|
}
|
|
}
|
|
None => None
|
|
};
|
|
|
|
//TODO add save
|
|
let sort = SortType::from_str(&data.sort)?;
|
|
|
|
let user_details_id = match data.user_id {
|
|
Some(id) => id,
|
|
None => User_::read_from_name(&conn, data.username.to_owned().unwrap_or("admin".to_string()))?.id
|
|
};
|
|
|
|
let user_view = UserView::read(&conn, user_details_id)?;
|
|
|
|
// If its saved only, you don't care what creator it was
|
|
let posts = if data.saved_only {
|
|
PostView::list(&conn,
|
|
PostListingType::All,
|
|
&sort,
|
|
data.community_id,
|
|
None,
|
|
None,
|
|
Some(user_details_id),
|
|
data.saved_only,
|
|
false,
|
|
data.page,
|
|
data.limit)?
|
|
} else {
|
|
PostView::list(&conn,
|
|
PostListingType::All,
|
|
&sort,
|
|
data.community_id,
|
|
Some(user_details_id),
|
|
None,
|
|
user_id,
|
|
data.saved_only,
|
|
false,
|
|
data.page,
|
|
data.limit)?
|
|
};
|
|
let comments = if data.saved_only {
|
|
CommentView::list(&conn,
|
|
&sort,
|
|
None,
|
|
None,
|
|
None,
|
|
Some(user_details_id),
|
|
data.saved_only,
|
|
data.page,
|
|
data.limit)?
|
|
} else {
|
|
CommentView::list(&conn,
|
|
&sort,
|
|
None,
|
|
Some(user_details_id),
|
|
None,
|
|
user_id,
|
|
data.saved_only,
|
|
data.page,
|
|
data.limit)?
|
|
};
|
|
|
|
let follows = CommunityFollowerView::for_user(&conn, user_details_id)?;
|
|
let moderates = CommunityModeratorView::for_user(&conn, user_details_id)?;
|
|
|
|
// Return the jwt
|
|
Ok(
|
|
GetUserDetailsResponse {
|
|
op: self.op.to_string(),
|
|
user: user_view,
|
|
follows: follows,
|
|
moderates: moderates,
|
|
comments: comments,
|
|
posts: posts,
|
|
}
|
|
)
|
|
}
|
|
}
|
|
|
|
|
|
impl Perform<AddAdminResponse> for Oper<AddAdmin> {
|
|
fn perform(&self) -> Result<AddAdminResponse, Error> {
|
|
let data: &AddAdmin = &self.data;
|
|
let conn = establish_connection();
|
|
|
|
let claims = match Claims::decode(&data.auth) {
|
|
Ok(claims) => claims.claims,
|
|
Err(_e) => {
|
|
return Err(APIError::err(&self.op, "Not logged in."))?
|
|
}
|
|
};
|
|
|
|
let user_id = claims.id;
|
|
|
|
// Make sure user is an admin
|
|
if UserView::read(&conn, user_id)?.admin == false {
|
|
return Err(APIError::err(&self.op, "Not an admin."))?
|
|
}
|
|
|
|
let read_user = User_::read(&conn, data.user_id)?;
|
|
|
|
let user_form = UserForm {
|
|
name: read_user.name,
|
|
fedi_name: read_user.fedi_name,
|
|
email: read_user.email,
|
|
password_encrypted: read_user.password_encrypted,
|
|
preferred_username: read_user.preferred_username,
|
|
updated: Some(naive_now()),
|
|
admin: data.added,
|
|
banned: read_user.banned,
|
|
};
|
|
|
|
match User_::update(&conn, data.user_id, &user_form) {
|
|
Ok(user) => user,
|
|
Err(_e) => {
|
|
return Err(APIError::err(&self.op, "Couldn't update user"))?
|
|
}
|
|
};
|
|
|
|
// Mod tables
|
|
let form = ModAddForm {
|
|
mod_user_id: user_id,
|
|
other_user_id: data.user_id,
|
|
removed: Some(!data.added),
|
|
};
|
|
|
|
ModAdd::create(&conn, &form)?;
|
|
|
|
let admins = UserView::admins(&conn)?;
|
|
|
|
Ok(
|
|
AddAdminResponse {
|
|
op: self.op.to_string(),
|
|
admins: admins,
|
|
}
|
|
)
|
|
}
|
|
}
|
|
|
|
impl Perform<BanUserResponse> for Oper<BanUser> {
|
|
fn perform(&self) -> Result<BanUserResponse, Error> {
|
|
let data: &BanUser = &self.data;
|
|
let conn = establish_connection();
|
|
|
|
let claims = match Claims::decode(&data.auth) {
|
|
Ok(claims) => claims.claims,
|
|
Err(_e) => {
|
|
return Err(APIError::err(&self.op, "Not logged in."))?
|
|
}
|
|
};
|
|
|
|
let user_id = claims.id;
|
|
|
|
// Make sure user is an admin
|
|
if UserView::read(&conn, user_id)?.admin == false {
|
|
return Err(APIError::err(&self.op, "Not an admin."))?
|
|
}
|
|
|
|
let read_user = User_::read(&conn, data.user_id)?;
|
|
|
|
let user_form = UserForm {
|
|
name: read_user.name,
|
|
fedi_name: read_user.fedi_name,
|
|
email: read_user.email,
|
|
password_encrypted: read_user.password_encrypted,
|
|
preferred_username: read_user.preferred_username,
|
|
updated: Some(naive_now()),
|
|
admin: read_user.admin,
|
|
banned: data.ban,
|
|
};
|
|
|
|
match User_::update(&conn, data.user_id, &user_form) {
|
|
Ok(user) => user,
|
|
Err(_e) => {
|
|
return Err(APIError::err(&self.op, "Couldn't update user"))?
|
|
}
|
|
};
|
|
|
|
// Mod tables
|
|
let expires = match data.expires {
|
|
Some(time) => Some(naive_from_unix(time)),
|
|
None => None
|
|
};
|
|
|
|
let form = ModBanForm {
|
|
mod_user_id: user_id,
|
|
other_user_id: data.user_id,
|
|
reason: data.reason.to_owned(),
|
|
banned: Some(data.ban),
|
|
expires: expires,
|
|
};
|
|
|
|
ModBan::create(&conn, &form)?;
|
|
|
|
let user_view = UserView::read(&conn, data.user_id)?;
|
|
|
|
Ok(
|
|
BanUserResponse {
|
|
op: self.op.to_string(),
|
|
user: user_view,
|
|
banned: data.ban
|
|
}
|
|
)
|
|
|
|
}
|
|
}
|
|
|
|
impl Perform<GetRepliesResponse> for Oper<GetReplies> {
|
|
fn perform(&self) -> Result<GetRepliesResponse, Error> {
|
|
let data: &GetReplies = &self.data;
|
|
let conn = establish_connection();
|
|
|
|
let claims = match Claims::decode(&data.auth) {
|
|
Ok(claims) => claims.claims,
|
|
Err(_e) => {
|
|
return Err(APIError::err(&self.op, "Not logged in."))?
|
|
}
|
|
};
|
|
|
|
let user_id = claims.id;
|
|
|
|
let sort = SortType::from_str(&data.sort)?;
|
|
|
|
let replies = ReplyView::get_replies(&conn, user_id, &sort, data.unread_only, data.page, data.limit)?;
|
|
|
|
// Return the jwt
|
|
Ok(
|
|
GetRepliesResponse {
|
|
op: self.op.to_string(),
|
|
replies: replies,
|
|
}
|
|
)
|
|
}
|
|
}
|
|
|
|
impl Perform<GetRepliesResponse> for Oper<MarkAllAsRead> {
|
|
fn perform(&self) -> Result<GetRepliesResponse, Error> {
|
|
let data: &MarkAllAsRead = &self.data;
|
|
let conn = establish_connection();
|
|
|
|
let claims = match Claims::decode(&data.auth) {
|
|
Ok(claims) => claims.claims,
|
|
Err(_e) => {
|
|
return Err(APIError::err(&self.op, "Not logged in."))?
|
|
}
|
|
};
|
|
|
|
let user_id = claims.id;
|
|
|
|
let replies = ReplyView::get_replies(&conn, user_id, &SortType::New, true, Some(1), Some(999))?;
|
|
|
|
for reply in &replies {
|
|
let comment_form = CommentForm {
|
|
content: reply.to_owned().content,
|
|
parent_id: reply.to_owned().parent_id,
|
|
post_id: reply.to_owned().post_id,
|
|
creator_id: reply.to_owned().creator_id,
|
|
removed: None,
|
|
deleted: None,
|
|
read: Some(true),
|
|
updated: reply.to_owned().updated
|
|
};
|
|
|
|
let _updated_comment = match Comment::update(&conn, reply.id, &comment_form) {
|
|
Ok(comment) => comment,
|
|
Err(_e) => {
|
|
return Err(APIError::err(&self.op, "Couldn't update Comment"))?
|
|
}
|
|
};
|
|
}
|
|
|
|
let replies = ReplyView::get_replies(&conn, user_id, &SortType::New, true, Some(1), Some(999))?;
|
|
|
|
Ok(
|
|
GetRepliesResponse {
|
|
op: self.op.to_string(),
|
|
replies: replies,
|
|
}
|
|
)
|
|
}
|
|
}
|