feat: add about to users
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
ci/woodpecker/push/publish-docs Pipeline was successful

This commit is contained in:
Radical 2025-06-01 22:20:29 +02:00
parent 41defc4a25
commit c4fc23ec85
5 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,2 @@
-- This file should undo anything in `up.sql`
ALTER TABLE users DROP COLUMN about;

View file

@ -0,0 +1,2 @@
-- Your SQL goes here
ALTER TABLE users ADD COLUMN about VARCHAR(200) DEFAULT NULL;

View file

@ -41,6 +41,7 @@ struct NewInfo {
//password: Option<String>, will probably be handled through a reset password link //password: Option<String>, will probably be handled through a reset password link
email: Option<String>, email: Option<String>,
pronouns: Option<String>, pronouns: Option<String>,
about: Option<String>,
} }
#[derive(Debug, MultipartForm)] #[derive(Debug, MultipartForm)]
@ -102,5 +103,9 @@ pub async fn update(
me.set_pronouns(&data, pronouns.clone()).await?; me.set_pronouns(&data, pronouns.clone()).await?;
} }
if let Some(about) = &form.json.about {
me.set_about(&data, about.clone()).await?;
}
Ok(HttpResponse::Ok().finish()) Ok(HttpResponse::Ok().finish())
} }

View file

@ -146,6 +146,8 @@ diesel::table! {
avatar -> Nullable<Varchar>, avatar -> Nullable<Varchar>,
#[max_length = 32] #[max_length = 32]
pronouns -> Nullable<Varchar>, pronouns -> Nullable<Varchar>,
#[max_length = 200]
about -> Nullable<Varchar>,
} }
} }

View file

@ -953,6 +953,7 @@ pub struct User {
display_name: Option<String>, display_name: Option<String>,
avatar: Option<String>, avatar: Option<String>,
pronouns: Option<String>, pronouns: Option<String>,
about: Option<String>,
} }
impl User { impl User {
@ -1004,6 +1005,7 @@ pub struct Me {
display_name: Option<String>, display_name: Option<String>,
avatar: Option<String>, avatar: Option<String>,
pronouns: Option<String>, pronouns: Option<String>,
about: Option<String>,
email: String, email: String,
pub email_verified: bool, pub email_verified: bool,
} }
@ -1198,6 +1200,25 @@ impl Me {
Ok(()) Ok(())
} }
pub async fn set_about(&mut self, data: &Data, new_about: String) -> Result<(), Error> {
let mut conn = data.pool.get().await?;
use users::dsl;
update(users::table)
.filter(dsl::uuid.eq(self.uuid))
.set((
dsl::about.eq(new_about.as_str()),
))
.execute(&mut conn)
.await?;
if data.get_cache_key(self.uuid.to_string()).await.is_ok() {
data.del_cache_key(self.uuid.to_string()).await?
}
Ok(())
}
} }
#[derive(Deserialize)] #[derive(Deserialize)]