mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00

This is a massive change to all the components, since the interface changed. There are opportunities to greatly simplify some components by turning them into functional_components, but this work has tried to stay as mechanical as possible.
225 lines
7.9 KiB
Rust
225 lines
7.9 KiB
Rust
use crate::{
|
|
components::router::{AppRoute, Link},
|
|
infra::{
|
|
api::HostService,
|
|
common_component::{CommonComponent, CommonComponentParts},
|
|
},
|
|
};
|
|
use anyhow::{anyhow, bail, Result};
|
|
use gloo_console::error;
|
|
use lldap_auth::*;
|
|
use validator_derive::Validate;
|
|
use yew::prelude::*;
|
|
use yew_form::Form;
|
|
use yew_form_derive::Model;
|
|
|
|
pub struct LoginForm {
|
|
common: CommonComponentParts<Self>,
|
|
form: Form<FormModel>,
|
|
refreshing: bool,
|
|
}
|
|
|
|
/// The fields of the form, with the constraints.
|
|
#[derive(Model, Validate, PartialEq, Eq, Clone, Default)]
|
|
pub struct FormModel {
|
|
#[validate(length(min = 1, message = "Missing username"))]
|
|
username: String,
|
|
#[validate(length(min = 8, message = "Invalid password. Min length: 8"))]
|
|
password: String,
|
|
}
|
|
|
|
#[derive(Clone, PartialEq, Properties)]
|
|
pub struct Props {
|
|
pub on_logged_in: Callback<(String, bool)>,
|
|
pub password_reset_enabled: bool,
|
|
}
|
|
|
|
pub enum Msg {
|
|
Update,
|
|
Submit,
|
|
AuthenticationRefreshResponse(Result<(String, bool)>),
|
|
AuthenticationStartResponse(
|
|
(
|
|
opaque::client::login::ClientLogin,
|
|
Result<Box<login::ServerLoginStartResponse>>,
|
|
),
|
|
),
|
|
AuthenticationFinishResponse(Result<(String, bool)>),
|
|
}
|
|
|
|
impl CommonComponent<LoginForm> for LoginForm {
|
|
fn handle_msg(
|
|
&mut self,
|
|
ctx: &Context<Self>,
|
|
msg: <Self as Component>::Message,
|
|
) -> Result<bool> {
|
|
use anyhow::Context;
|
|
match msg {
|
|
Msg::Update => Ok(true),
|
|
Msg::Submit => {
|
|
if !self.form.validate() {
|
|
bail!("Check the form for errors");
|
|
}
|
|
let FormModel { username, password } = self.form.model();
|
|
let mut rng = rand::rngs::OsRng;
|
|
let opaque::client::login::ClientLoginStartResult { state, message } =
|
|
opaque::client::login::start_login(&password, &mut rng)
|
|
.context("Could not initialize login")?;
|
|
let req = login::ClientLoginStartRequest {
|
|
username,
|
|
login_start_request: message,
|
|
};
|
|
self.common
|
|
.call_backend(ctx, HostService::login_start(req), move |r| {
|
|
Msg::AuthenticationStartResponse((state, r))
|
|
});
|
|
Ok(true)
|
|
}
|
|
Msg::AuthenticationStartResponse((login_start, res)) => {
|
|
let res = res.context("Could not log in (invalid response to login start)")?;
|
|
let login_finish =
|
|
match opaque::client::login::finish_login(login_start, res.credential_response)
|
|
{
|
|
Err(e) => {
|
|
// Common error, we want to print a full error to the console but only a
|
|
// simple one to the user.
|
|
error!(&format!("Invalid username or password: {}", e));
|
|
self.common.error = Some(anyhow!("Invalid username or password"));
|
|
return Ok(true);
|
|
}
|
|
Ok(l) => l,
|
|
};
|
|
let req = login::ClientLoginFinishRequest {
|
|
server_data: res.server_data,
|
|
credential_finalization: login_finish.message,
|
|
};
|
|
self.common.call_backend(
|
|
ctx,
|
|
HostService::login_finish(req),
|
|
Msg::AuthenticationFinishResponse,
|
|
);
|
|
Ok(false)
|
|
}
|
|
Msg::AuthenticationFinishResponse(user_info) => {
|
|
ctx.props()
|
|
.on_logged_in
|
|
.emit(user_info.context("Could not log in")?);
|
|
Ok(true)
|
|
}
|
|
Msg::AuthenticationRefreshResponse(user_info) => {
|
|
self.refreshing = false;
|
|
if let Ok(user_info) = user_info {
|
|
ctx.props().on_logged_in.emit(user_info);
|
|
}
|
|
Ok(true)
|
|
}
|
|
}
|
|
}
|
|
|
|
fn mut_common(&mut self) -> &mut CommonComponentParts<Self> {
|
|
&mut self.common
|
|
}
|
|
}
|
|
|
|
impl Component for LoginForm {
|
|
type Message = Msg;
|
|
type Properties = Props;
|
|
|
|
fn create(ctx: &Context<Self>) -> Self {
|
|
let mut app = LoginForm {
|
|
common: CommonComponentParts::<Self>::create(),
|
|
form: Form::<FormModel>::new(FormModel::default()),
|
|
refreshing: true,
|
|
};
|
|
app.common.call_backend(
|
|
ctx,
|
|
HostService::refresh(),
|
|
Msg::AuthenticationRefreshResponse,
|
|
);
|
|
app
|
|
}
|
|
|
|
fn update(&mut self, ctx: &Context<Self>, msg: Self::Message) -> bool {
|
|
CommonComponentParts::<Self>::update(self, ctx, msg)
|
|
}
|
|
|
|
fn view(&self, ctx: &Context<Self>) -> Html {
|
|
type Field = yew_form::Field<FormModel>;
|
|
let password_reset_enabled = ctx.props().password_reset_enabled;
|
|
let link = &ctx.link();
|
|
if self.refreshing {
|
|
html! {
|
|
<div>
|
|
<img src={"spinner.gif"} alt={"Loading"} />
|
|
</div>
|
|
}
|
|
} else {
|
|
html! {
|
|
<form
|
|
class="form center-block col-sm-4 col-offset-4">
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text">
|
|
<i class="bi-person-fill"/>
|
|
</span>
|
|
</div>
|
|
<Field
|
|
class="form-control"
|
|
class_invalid="is-invalid has-error"
|
|
class_valid="has-success"
|
|
form={&self.form}
|
|
field_name="username"
|
|
placeholder="Username"
|
|
autocomplete="username"
|
|
oninput={link.callback(|_| Msg::Update)} />
|
|
</div>
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text">
|
|
<i class="bi-lock-fill"/>
|
|
</span>
|
|
</div>
|
|
<Field
|
|
class="form-control"
|
|
class_invalid="is-invalid has-error"
|
|
class_valid="has-success"
|
|
form={&self.form}
|
|
field_name="password"
|
|
input_type="password"
|
|
placeholder="Password"
|
|
autocomplete="current-password" />
|
|
</div>
|
|
<div class="form-group mt-3">
|
|
<button
|
|
type="submit"
|
|
class="btn btn-primary"
|
|
disabled={self.common.is_task_running()}
|
|
onclick={link.callback(|e: MouseEvent| {e.prevent_default(); Msg::Submit})}>
|
|
<i class="bi-box-arrow-in-right me-2"/>
|
|
{"Login"}
|
|
</button>
|
|
{ if password_reset_enabled {
|
|
html! {
|
|
<Link
|
|
classes="btn-link btn"
|
|
disabled={self.common.is_task_running()}
|
|
to={AppRoute::StartResetPassword}>
|
|
{"Forgot your password?"}
|
|
</Link>
|
|
}
|
|
} else {
|
|
html!{}
|
|
}}
|
|
</div>
|
|
<div class="form-group">
|
|
{ if let Some(e) = &self.common.error {
|
|
html! { e.to_string() }
|
|
} else { html! {} }
|
|
}
|
|
</div>
|
|
</form>
|
|
}
|
|
}
|
|
}
|
|
}
|