feat: add user approval after registration

basically credentials are disabled until approved by admin
This commit is contained in:
əlemi 2024-06-28 05:13:02 +02:00
parent 1ee7eb1498
commit 19ae80f874
Signed by: alemi
GPG key ID: A4895B84D311642C
8 changed files with 48 additions and 0 deletions

View file

@ -51,6 +51,7 @@ pub async fn faker(ctx: upub::Context, count: i64) -> Result<(), sea_orm::DbErr>
actor: Set(test_user.id.clone()),
login: Set("mail@example.net".to_string()),
password: Set(sha256::digest("very-strong-password")),
active: Set(true),
}).exec(db).await?;
let context = uuid::Uuid::new_v4().to_string();

View file

@ -65,6 +65,9 @@ pub struct SecurityConfig {
#[serde(default)]
pub allow_registration: bool,
#[serde(default)] // TODO i don't like the name of this
pub require_user_approval: bool,
#[serde(default)]
pub allow_public_debugger: bool,

View file

@ -9,6 +9,7 @@ pub struct Model {
pub actor: String,
pub login: String,
pub password: String,
pub active: bool,
}
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]

View file

@ -75,6 +75,7 @@ impl Administrable for crate::Context {
actor: Set(ap_id),
login: Set(username),
password: Set(sha256::digest(password)),
active: Set(!self.cfg().security.require_user_approval),
};
crate::model::credential::Entity::insert(credentials_model)

View file

@ -13,6 +13,7 @@ mod m20240609_000001_add_instance_field_to_relations;
mod m20240623_000001_add_dislikes_table;
mod m20240626_000001_add_notifications_table;
mod m20240628_000001_add_followers_following_indexes;
mod m20240628_000002_add_credentials_activated;
pub struct Migrator;
@ -33,6 +34,7 @@ impl MigratorTrait for Migrator {
Box::new(m20240623_000001_add_dislikes_table::Migration),
Box::new(m20240626_000001_add_notifications_table::Migration),
Box::new(m20240628_000001_add_followers_following_indexes::Migration),
Box::new(m20240628_000002_add_credentials_activated::Migration),
]
}
}

View file

@ -21,6 +21,7 @@ pub enum Credentials {
Actor,
Login,
Password,
Active, // ADDED
}
#[derive(DeriveIden)]

View file

@ -0,0 +1,38 @@
use sea_orm_migration::prelude::*;
use crate::m20240524_000003_create_users_auth_and_config::Credentials;
#[derive(DeriveMigrationName)]
pub struct Migration;
#[async_trait::async_trait]
impl MigrationTrait for Migration {
async fn up(&self, manager: &SchemaManager) -> Result<(), DbErr> {
manager
.alter_table(
Table::alter()
.table(Credentials::Table)
.add_column(ColumnDef::new(Credentials::Active).boolean().not_null().default(false))
.to_owned()
)
.await?;
Ok(())
}
async fn down(&self, manager: &SchemaManager) -> Result<(), DbErr> {
manager
.alter_table(
Table::alter()
.table(Credentials::Table)
.drop_column(Credentials::Active)
.to_owned()
)
.await?;
Ok(())
}
}

View file

@ -35,6 +35,7 @@ pub async fn login(
.filter(Condition::all()
.add(upub::model::credential::Column::Login.eq(login.email))
.add(upub::model::credential::Column::Password.eq(sha256::digest(login.password)))
.add(upub::model::credential::Column::Active.eq(true))
)
.one(ctx.db())
.await?