1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
// Copyright 2022-2024 The Matrix.org Foundation C.I.C.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

use axum::{
    extract::{Form, Query, State},
    response::{Html, IntoResponse, Response},
};
use mas_axum_utils::{
    cookies::CookieJar,
    csrf::{CsrfExt, ProtectedForm},
    FancyError, SessionInfoExt,
};
use mas_data_model::SiteConfig;
use mas_policy::Policy;
use mas_router::UrlBuilder;
use mas_storage::{
    job::{JobRepositoryExt, VerifyEmailJob},
    user::UserEmailRepository,
    BoxClock, BoxRepository, BoxRng,
};
use mas_templates::{EmailAddContext, ErrorContext, TemplateContext, Templates};
use serde::Deserialize;

use crate::{views::shared::OptionalPostAuthAction, BoundActivityTracker, PreferredLanguage};

#[derive(Deserialize, Debug)]
pub struct EmailForm {
    email: String,
}

#[tracing::instrument(name = "handlers.views.account_email_add.get", skip_all, err)]
pub(crate) async fn get(
    mut rng: BoxRng,
    clock: BoxClock,
    PreferredLanguage(locale): PreferredLanguage,
    State(templates): State<Templates>,
    State(url_builder): State<UrlBuilder>,
    State(site_config): State<SiteConfig>,
    activity_tracker: BoundActivityTracker,
    mut repo: BoxRepository,
    cookie_jar: CookieJar,
) -> Result<Response, FancyError> {
    let (csrf_token, cookie_jar) = cookie_jar.csrf_token(&clock, &mut rng);
    let (session_info, cookie_jar) = cookie_jar.session_info();

    let maybe_session = session_info.load_session(&mut repo).await?;

    let Some(session) = maybe_session else {
        let login = mas_router::Login::default();
        return Ok((cookie_jar, url_builder.redirect(&login)).into_response());
    };

    if !site_config.email_change_allowed {
        // XXX: this may not be the best error message, it's not translatable
        return Err(FancyError::new(
            ErrorContext::new()
                .with_description("Email change is not allowed".to_owned())
                .with_details("The site configuration does not allow email changes".to_owned()),
        ));
    }

    activity_tracker
        .record_browser_session(&clock, &session)
        .await;

    let ctx = EmailAddContext::new()
        .with_session(session)
        .with_csrf(csrf_token.form_value())
        .with_language(locale);

    let content = templates.render_account_add_email(&ctx)?;

    Ok((cookie_jar, Html(content)).into_response())
}

#[tracing::instrument(name = "handlers.views.account_email_add.post", skip_all, err)]
pub(crate) async fn post(
    mut rng: BoxRng,
    clock: BoxClock,
    mut repo: BoxRepository,
    PreferredLanguage(locale): PreferredLanguage,
    mut policy: Policy,
    cookie_jar: CookieJar,
    State(url_builder): State<UrlBuilder>,
    State(site_config): State<SiteConfig>,
    activity_tracker: BoundActivityTracker,
    Query(query): Query<OptionalPostAuthAction>,
    Form(form): Form<ProtectedForm<EmailForm>>,
) -> Result<Response, FancyError> {
    let form = cookie_jar.verify_form(&clock, form)?;
    let (session_info, cookie_jar) = cookie_jar.session_info();

    let maybe_session = session_info.load_session(&mut repo).await?;

    let Some(session) = maybe_session else {
        let login = mas_router::Login::default();
        return Ok((cookie_jar, url_builder.redirect(&login)).into_response());
    };

    // XXX: we really should show human readable errors on the form here
    if !site_config.email_change_allowed {
        return Err(FancyError::new(
            ErrorContext::new()
                .with_description("Email change is not allowed".to_owned())
                .with_details("The site configuration does not allow email changes".to_owned()),
        ));
    }

    // Validate the email address
    if form.email.parse::<lettre::Address>().is_err() {
        return Err(anyhow::anyhow!("Invalid email address").into());
    }

    // Run the email policy
    let res = policy.evaluate_email(&form.email).await?;
    if !res.valid() {
        return Err(FancyError::new(
            ErrorContext::new()
                .with_description(format!("Email address {:?} denied by policy", form.email))
                .with_details(format!("{res}")),
        ));
    }

    // Find an existing email address
    let existing_user_email = repo.user_email().find(&session.user, &form.email).await?;
    let user_email = if let Some(user_email) = existing_user_email {
        user_email
    } else {
        repo.user_email()
            .add(&mut rng, &clock, &session.user, form.email)
            .await?
    };

    // If the email was not confirmed, send a confirmation email & redirect to the
    // verify page
    let next = if user_email.confirmed_at.is_none() {
        repo.job()
            .schedule_job(VerifyEmailJob::new(&user_email).with_language(locale.to_string()))
            .await?;

        let next = mas_router::AccountVerifyEmail::new(user_email.id);
        let next = if let Some(action) = query.post_auth_action {
            next.and_then(action)
        } else {
            next
        };

        url_builder.redirect(&next)
    } else {
        query.go_next_or_default(&url_builder, &mas_router::Account::default())
    };

    repo.save().await?;

    activity_tracker
        .record_browser_session(&clock, &session)
        .await;

    Ok((cookie_jar, next).into_response())
}