lldap/app/src/components/create_user.rs

364 lines
13 KiB
Rust
Raw Normal View History

use crate::{
components::router::AppRoute,
infra::{
api::HostService,
common_component::{CommonComponent, CommonComponentParts},
},
};
2021-09-19 19:02:23 +00:00
use anyhow::{bail, Context, Result};
2021-08-30 07:50:10 +00:00
use graphql_client::GraphQLQuery;
use lldap_auth::{opaque, registration};
2021-09-19 19:02:23 +00:00
use validator_derive::Validate;
2021-06-01 15:30:57 +00:00
use yew::prelude::*;
use yew::services::ConsoleService;
2021-09-19 19:02:23 +00:00
use yew_form_derive::Model;
2021-06-01 15:30:57 +00:00
use yew_router::{
agent::{RouteAgentDispatcher, RouteRequest},
route::Route,
};
2021-08-30 07:50:10 +00:00
#[derive(GraphQLQuery)]
#[graphql(
schema_path = "../schema.graphql",
query_path = "queries/create_user.graphql",
response_derives = "Debug",
custom_scalars_module = "crate::infra::graphql"
2021-08-30 07:50:10 +00:00
)]
pub struct CreateUser;
2021-06-01 15:30:57 +00:00
pub struct CreateUserForm {
common: CommonComponentParts<Self>,
2021-06-01 15:30:57 +00:00
route_dispatcher: RouteAgentDispatcher,
2021-09-19 19:02:23 +00:00
form: yew_form::Form<CreateUserModel>,
2021-06-01 15:30:57 +00:00
}
2022-09-27 04:48:39 +00:00
#[derive(Model, Validate, PartialEq, Eq, Clone, Default)]
2021-09-19 19:02:23 +00:00
pub struct CreateUserModel {
#[validate(length(min = 1, message = "Username is required"))]
username: String,
#[validate(email(message = "A valid email is required"))]
2021-09-19 19:02:23 +00:00
email: String,
display_name: String,
first_name: String,
last_name: String,
#[validate(custom(
function = "empty_or_long",
message = "Password should be longer than 8 characters (or left empty)"
))]
password: String,
#[validate(must_match(other = "password", message = "Passwords must match"))]
confirm_password: String,
}
fn empty_or_long(value: &str) -> Result<(), validator::ValidationError> {
if value.is_empty() || value.len() >= 8 {
Ok(())
} else {
Err(validator::ValidationError::new(""))
}
}
2021-06-01 15:30:57 +00:00
pub enum Msg {
2021-09-19 19:02:23 +00:00
Update,
2021-06-01 15:30:57 +00:00
SubmitForm,
2021-09-19 19:02:23 +00:00
CreateUserResponse(Result<create_user::ResponseData>),
SuccessfulCreation,
2021-09-19 19:02:23 +00:00
RegistrationStartResponse(
(
opaque::client::registration::ClientRegistration,
Result<Box<registration::ServerRegistrationStartResponse>>,
),
),
RegistrationFinishResponse(Result<()>),
}
impl CommonComponent<CreateUserForm> for CreateUserForm {
2021-09-19 19:02:23 +00:00
fn handle_msg(&mut self, msg: <Self as Component>::Message) -> Result<bool> {
match msg {
2021-09-19 19:02:23 +00:00
Msg::Update => Ok(true),
Msg::SubmitForm => {
2021-09-19 19:02:23 +00:00
if !self.form.validate() {
bail!("Check the form for errors");
}
let model = self.form.model();
let to_option = |s: String| if s.is_empty() { None } else { Some(s) };
2021-08-30 07:50:10 +00:00
let req = create_user::Variables {
2021-09-01 08:00:51 +00:00
user: create_user::CreateUserInput {
2021-09-19 19:02:23 +00:00
id: model.username,
email: model.email,
displayName: to_option(model.display_name),
firstName: to_option(model.first_name),
lastName: to_option(model.last_name),
avatar: None,
2021-08-30 07:50:10 +00:00
},
};
self.common.call_graphql::<CreateUser, _>(
2021-08-30 07:50:10 +00:00
req,
Msg::CreateUserResponse,
2021-08-30 07:50:10 +00:00
"Error trying to create user",
);
2021-09-19 19:02:23 +00:00
Ok(true)
}
Msg::CreateUserResponse(r) => {
2021-08-30 07:50:10 +00:00
match r {
Err(e) => return Err(e),
Ok(r) => ConsoleService::log(&format!(
"Created user '{}' at '{}'",
&r.create_user.id, &r.create_user.creation_date
)),
};
2021-09-19 19:02:23 +00:00
let model = self.form.model();
let user_id = model.username;
let password = model.password;
if !password.is_empty() {
// User was successfully created, let's register the password.
let mut rng = rand::rngs::OsRng;
2021-09-19 19:02:23 +00:00
let opaque::client::registration::ClientRegistrationStartResult {
state,
message,
} = opaque::client::registration::start_registration(&password, &mut rng)?;
let req = registration::ClientRegistrationStartRequest {
username: user_id,
2021-09-19 19:02:23 +00:00
registration_start_request: message,
};
self.common
.call_backend(HostService::register_start, req, move |r| {
Msg::RegistrationStartResponse((state, r))
})
.context("Error trying to create user")?;
} else {
self.update(Msg::SuccessfulCreation);
}
2021-09-19 19:02:23 +00:00
Ok(false)
}
2021-09-19 19:02:23 +00:00
Msg::RegistrationStartResponse((registration_start, response)) => {
let response = response?;
let mut rng = rand::rngs::OsRng;
let registration_upload = opaque::client::registration::finish_registration(
2021-09-19 19:02:23 +00:00
registration_start,
response.registration_response,
&mut rng,
)?;
let req = registration::ClientRegistrationFinishRequest {
server_data: response.server_data,
registration_upload: registration_upload.message,
};
self.common
.call_backend(
HostService::register_finish,
req,
Msg::RegistrationFinishResponse,
)
.context("Error trying to register user")?;
2021-09-19 19:02:23 +00:00
Ok(false)
}
Msg::RegistrationFinishResponse(response) => {
2021-09-19 19:02:23 +00:00
response?;
self.handle_msg(Msg::SuccessfulCreation)
}
Msg::SuccessfulCreation => {
self.route_dispatcher
2021-10-11 16:54:53 +00:00
.send(RouteRequest::ChangeRoute(Route::from(AppRoute::ListUsers)));
2021-09-19 19:02:23 +00:00
Ok(true)
2021-06-01 15:30:57 +00:00
}
}
2021-06-01 15:30:57 +00:00
}
fn mut_common(&mut self) -> &mut CommonComponentParts<Self> {
&mut self.common
}
2021-06-01 15:30:57 +00:00
}
impl Component for CreateUserForm {
type Message = Msg;
type Properties = ();
fn create(props: Self::Properties, link: ComponentLink<Self>) -> Self {
2021-06-01 15:30:57 +00:00
Self {
common: CommonComponentParts::<Self>::create(props, link),
2021-06-01 15:30:57 +00:00
route_dispatcher: RouteAgentDispatcher::new(),
2021-09-19 19:02:23 +00:00
form: yew_form::Form::<CreateUserModel>::new(CreateUserModel::default()),
2021-06-01 15:30:57 +00:00
}
}
fn update(&mut self, msg: Self::Message) -> ShouldRender {
CommonComponentParts::<Self>::update(self, msg)
2021-06-01 15:30:57 +00:00
}
2022-06-30 07:27:51 +00:00
fn change(&mut self, props: Self::Properties) -> ShouldRender {
self.common.change(props)
2021-06-01 15:30:57 +00:00
}
fn view(&self) -> Html {
2021-09-19 19:02:23 +00:00
type Field = yew_form::Field<CreateUserModel>;
2021-06-01 15:30:57 +00:00
html! {
<div class="row justify-content-center">
<form class="form py-3" style="max-width: 636px">
<div class="row mb-3">
<h5 class="fw-bold">{"Create a user"}</h5>
</div>
<div class="form-group row mb-3">
2021-09-19 17:44:53 +00:00
<label for="username"
class="form-label col-4 col-form-label">
{"User name"}
<span class="text-danger">{"*"}</span>
{":"}
2021-09-19 17:44:53 +00:00
</label>
<div class="col-8">
2021-09-19 19:02:23 +00:00
<Field
form=&self.form
field_name="username"
2021-09-19 17:44:53 +00:00
class="form-control"
2021-09-19 19:02:23 +00:00
class_invalid="is-invalid has-error"
class_valid="has-success"
2021-09-19 17:44:53 +00:00
autocomplete="username"
oninput=self.common.callback(|_| Msg::Update) />
2021-09-19 19:02:23 +00:00
<div class="invalid-feedback">
{&self.form.field_message("username")}
</div>
2021-06-01 15:30:57 +00:00
</div>
2021-09-19 17:44:53 +00:00
</div>
<div class="form-group row mb-3">
2021-09-19 17:44:53 +00:00
<label for="email"
class="form-label col-4 col-form-label">
{"Email"}
<span class="text-danger">{"*"}</span>
{":"}
2021-09-19 17:44:53 +00:00
</label>
<div class="col-8">
2021-09-19 19:02:23 +00:00
<Field
form=&self.form
input_type="email"
field_name="email"
2021-09-19 17:44:53 +00:00
class="form-control"
2021-09-19 19:02:23 +00:00
class_invalid="is-invalid has-error"
class_valid="has-success"
2021-09-19 17:44:53 +00:00
autocomplete="email"
oninput=self.common.callback(|_| Msg::Update) />
2021-09-19 19:02:23 +00:00
<div class="invalid-feedback">
{&self.form.field_message("email")}
</div>
2021-06-01 15:30:57 +00:00
</div>
2021-09-19 17:44:53 +00:00
</div>
<div class="form-group row mb-3">
2021-09-19 17:44:53 +00:00
<label for="display-name"
class="form-label col-4 col-form-label">
2022-11-21 08:13:25 +00:00
{"Display name:"}
2021-09-19 17:44:53 +00:00
</label>
<div class="col-8">
2021-09-19 19:02:23 +00:00
<Field
form=&self.form
2021-09-19 17:44:53 +00:00
autocomplete="name"
class="form-control"
2021-09-19 19:02:23 +00:00
class_invalid="is-invalid has-error"
class_valid="has-success"
field_name="display_name"
oninput=self.common.callback(|_| Msg::Update) />
2021-09-19 19:02:23 +00:00
<div class="invalid-feedback">
{&self.form.field_message("display_name")}
2021-09-19 17:44:53 +00:00
</div>
2021-09-19 19:02:23 +00:00
</div>
2021-09-19 17:44:53 +00:00
</div>
<div class="form-group row mb-3">
2021-09-19 17:44:53 +00:00
<label for="first-name"
class="form-label col-4 col-form-label">
2021-09-19 17:44:53 +00:00
{"First name:"}
</label>
<div class="col-8">
2021-09-19 19:02:23 +00:00
<Field
form=&self.form
2021-09-19 17:44:53 +00:00
autocomplete="given-name"
class="form-control"
2021-09-19 19:02:23 +00:00
class_invalid="is-invalid has-error"
class_valid="has-success"
field_name="first_name"
oninput=self.common.callback(|_| Msg::Update) />
2021-09-19 19:02:23 +00:00
<div class="invalid-feedback">
{&self.form.field_message("first_name")}
</div>
2021-06-01 15:30:57 +00:00
</div>
2021-09-19 17:44:53 +00:00
</div>
<div class="form-group row mb-3">
2021-09-19 17:44:53 +00:00
<label for="last-name"
class="form-label col-4 col-form-label">
2021-09-19 17:44:53 +00:00
{"Last name:"}
</label>
<div class="col-8">
2021-09-19 19:02:23 +00:00
<Field
form=&self.form
2021-09-19 17:44:53 +00:00
autocomplete="family-name"
class="form-control"
2021-09-19 19:02:23 +00:00
class_invalid="is-invalid has-error"
class_valid="has-success"
field_name="last_name"
oninput=self.common.callback(|_| Msg::Update) />
2021-09-19 19:02:23 +00:00
<div class="invalid-feedback">
{&self.form.field_message("last_name")}
</div>
2021-06-01 15:30:57 +00:00
</div>
2021-09-19 17:44:53 +00:00
</div>
<div class="form-group row mb-3">
2021-09-19 17:44:53 +00:00
<label for="password"
class="form-label col-4 col-form-label">
2021-09-19 17:44:53 +00:00
{"Password:"}
</label>
<div class="col-8">
2021-09-19 19:02:23 +00:00
<Field
form=&self.form
input_type="password"
field_name="password"
2021-09-19 17:44:53 +00:00
class="form-control"
2021-09-19 19:02:23 +00:00
class_invalid="is-invalid has-error"
class_valid="has-success"
2021-09-19 17:44:53 +00:00
autocomplete="new-password"
oninput=self.common.callback(|_| Msg::Update) />
2021-09-19 19:02:23 +00:00
<div class="invalid-feedback">
{&self.form.field_message("password")}
</div>
</div>
</div>
<div class="form-group row mb-3">
2021-09-19 19:02:23 +00:00
<label for="confirm_password"
class="form-label col-4 col-form-label">
2021-09-19 19:02:23 +00:00
{"Confirm password:"}
</label>
<div class="col-8">
2021-09-19 19:02:23 +00:00
<Field
form=&self.form
input_type="password"
field_name="confirm_password"
class="form-control"
class_invalid="is-invalid has-error"
class_valid="has-success"
autocomplete="new-password"
oninput=self.common.callback(|_| Msg::Update) />
2021-09-19 19:02:23 +00:00
<div class="invalid-feedback">
{&self.form.field_message("confirm_password")}
</div>
2021-06-01 15:30:57 +00:00
</div>
2021-09-19 17:44:53 +00:00
</div>
<div class="form-group row justify-content-center">
2021-09-19 17:44:53 +00:00
<button
class="btn btn-primary col-auto col-form-label mt-4"
disabled=self.common.is_task_running()
type="submit"
onclick=self.common.callback(|e: MouseEvent| {e.prevent_default(); Msg::SubmitForm})>
<i class="bi-save me-2"></i>
2021-09-19 19:02:23 +00:00
{"Submit"}
</button>
2021-09-19 17:44:53 +00:00
</div>
2021-06-01 15:30:57 +00:00
</form>
{
if let Some(e) = &self.common.error {
2021-09-19 17:44:53 +00:00
html! {
<div class="alert alert-danger">
{e.to_string() }
</div>
}
} else { html! {} }
}
</div>
2021-06-01 15:30:57 +00:00
}
}
}