2023-07-30 02:50:13 +01:00
|
|
|
use skynet_ldap_backend::{
|
|
|
|
db_init, get_config,
|
2023-08-06 14:39:45 +01:00
|
|
|
methods::{account_new, account_recover, account_update::post_update_ldap},
|
2023-07-30 02:50:13 +01:00
|
|
|
State,
|
|
|
|
};
|
2023-05-26 00:02:12 +01:00
|
|
|
|
|
|
|
#[async_std::main]
|
|
|
|
async fn main() -> tide::Result<()> {
|
|
|
|
let config = get_config();
|
2023-06-04 21:16:24 +01:00
|
|
|
let db = db_init(&config).await?;
|
2023-05-26 00:02:12 +01:00
|
|
|
|
|
|
|
let host_port = config.host_port.clone();
|
|
|
|
|
|
|
|
tide::log::start();
|
|
|
|
|
|
|
|
let state = State {
|
|
|
|
db,
|
|
|
|
config,
|
|
|
|
};
|
|
|
|
|
|
|
|
let mut app = tide::with_state(state);
|
|
|
|
|
2023-05-26 00:38:50 +01:00
|
|
|
app.at("/ldap/update").post(post_update_ldap);
|
2023-08-06 14:39:45 +01:00
|
|
|
app.at("/ldap/new/email").post(account_new::post::email::submit);
|
|
|
|
app.at("/ldap/new/account").post(account_new::post::account::submit);
|
|
|
|
app.at("/ldap/recover/password").post(account_recover::password::reset);
|
|
|
|
app.at("/ldap/recover/password/auth").post(account_recover::password::auth);
|
2023-05-26 00:02:12 +01:00
|
|
|
|
|
|
|
app.listen(host_port).await?;
|
|
|
|
Ok(())
|
|
|
|
}
|