2026-06-01 21:57:07 +02:00
|
|
|
//! Magic-link redemption endpoint.
|
|
|
|
|
//!
|
|
|
|
|
//! Single public route: `GET /magic/v1/{token}`. Validating the token is
|
|
|
|
|
//! the entire authentication — the URL is the credential.
|
|
|
|
|
//!
|
|
|
|
|
//! Successful redemption:
|
|
|
|
|
//! 1. Atomically marks the token used (single-use, race-free).
|
|
|
|
|
//! 2. Issues access + refresh JWT for the token's owning user.
|
|
|
|
|
//! 3. Sets the standard `oxicloud_access` / `oxicloud_refresh` /
|
|
|
|
|
//! `oxicloud_csrf` cookies (same as `POST /api/auth/login`).
|
|
|
|
|
//! 4. 302-redirects to a frontend hash-route based on the token's
|
|
|
|
|
//! resource target:
|
|
|
|
|
//! - Folder → `/#/files/folder/{id}`
|
|
|
|
|
//! - File or NULL → `/#/sharedwithme`
|
|
|
|
|
//!
|
|
|
|
|
//! Files don't have a deep-link route today; v1 lands file invitations
|
|
|
|
|
//! on Shared With Me where the file shows up.
|
|
|
|
|
//!
|
|
|
|
|
//! Failure cases (all return 4xx without setting cookies):
|
|
|
|
|
//! - Token not found / expired / already used → 410 Gone.
|
|
|
|
|
//! - Magic-link feature disabled (no SMTP / repo) → 503.
|
|
|
|
|
//! - Owning user deactivated → 410 Gone.
|
|
|
|
|
|
|
|
|
|
use std::sync::Arc;
|
|
|
|
|
|
|
|
|
|
use axum::{
|
|
|
|
|
Router,
|
2026-06-02 23:12:41 +02:00
|
|
|
extract::{Path, Query, State},
|
|
|
|
|
http::{HeaderMap, HeaderValue, StatusCode, header::CONTENT_TYPE, header::LOCATION},
|
2026-06-01 21:57:07 +02:00
|
|
|
response::{IntoResponse, Response},
|
2026-06-03 11:13:43 +02:00
|
|
|
routing::{get, post},
|
2026-06-01 21:57:07 +02:00
|
|
|
};
|
2026-06-02 23:12:41 +02:00
|
|
|
use serde::Deserialize;
|
2026-06-01 21:57:07 +02:00
|
|
|
|
2026-06-02 23:12:41 +02:00
|
|
|
use crate::application::services::auth_application_service::{
|
|
|
|
|
MagicLinkRedeemResult, MagicLinkRedemption,
|
|
|
|
|
};
|
2026-06-03 11:13:43 +02:00
|
|
|
use crate::application::services::magic_link_invite_service::ResendRecipientHint;
|
2026-06-01 21:57:07 +02:00
|
|
|
use crate::common::di::AppState;
|
|
|
|
|
use crate::common::errors::ErrorKind;
|
|
|
|
|
use crate::domain::entities::magic_link_token::MagicLinkResourceKind;
|
|
|
|
|
use crate::interfaces::api::cookie_auth;
|
2026-06-03 11:13:43 +02:00
|
|
|
use crate::interfaces::middleware::rate_limit::extract_client_ip;
|
2026-06-01 21:57:07 +02:00
|
|
|
|
|
|
|
|
/// Build the `/magic/v1/{token}` router. Mounted at the top of the
|
|
|
|
|
/// application tree in `main.rs` — no auth middleware, no CSRF (the
|
|
|
|
|
/// token is the credential, the route is GET-only).
|
2026-06-03 11:13:43 +02:00
|
|
|
///
|
|
|
|
|
/// `POST /magic/v1/{token}/resend` is a sibling endpoint that lets the
|
|
|
|
|
/// 410-Gone page offer a one-click "send me a fresh link" button. The
|
|
|
|
|
/// recipient email is looked up server-side from the (expired/used)
|
|
|
|
|
/// token row — no PII in the URL — and the rate limits attached to
|
|
|
|
|
/// `POST /api/auth/magic-link/send` apply identically.
|
2026-06-01 21:57:07 +02:00
|
|
|
pub fn magic_link_routes() -> Router<Arc<AppState>> {
|
2026-06-03 11:13:43 +02:00
|
|
|
Router::new()
|
|
|
|
|
.route("/magic/v1/{token}", get(redeem_magic_link))
|
|
|
|
|
.route("/magic/v1/{token}/resend", post(resend_magic_link))
|
2026-06-01 21:57:07 +02:00
|
|
|
}
|
|
|
|
|
|
2026-06-02 23:12:41 +02:00
|
|
|
#[derive(Debug, Deserialize)]
|
|
|
|
|
struct RedeemQuery {
|
|
|
|
|
/// PR 22: `?confirm=1` means the user clicked the cross-browser
|
|
|
|
|
/// confirmation prompt's Continue button. The service skips the
|
|
|
|
|
/// challenge-cookie check on this re-entry.
|
|
|
|
|
#[serde(default)]
|
|
|
|
|
confirm: Option<String>,
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-01 21:57:07 +02:00
|
|
|
#[utoipa::path(
|
|
|
|
|
get,
|
|
|
|
|
path = "/magic/v1/{token}",
|
|
|
|
|
params(("token" = String, Path, description = "Opaque magic-link token")),
|
|
|
|
|
responses(
|
2026-06-02 23:12:41 +02:00
|
|
|
(status = 200, description = "Cross-browser confirmation prompt (HTML page)"),
|
2026-06-01 21:57:07 +02:00
|
|
|
(status = 302, description = "Redemption succeeded — redirects to the resource or to /#/sharedwithme"),
|
|
|
|
|
(status = 410, description = "Token is unknown, expired, or already used"),
|
|
|
|
|
(status = 503, description = "Magic-link feature is not configured on this server"),
|
|
|
|
|
),
|
|
|
|
|
tag = "magic-link",
|
|
|
|
|
)]
|
|
|
|
|
async fn redeem_magic_link(
|
|
|
|
|
State(state): State<Arc<AppState>>,
|
|
|
|
|
Path(token): Path<String>,
|
2026-06-02 23:12:41 +02:00
|
|
|
Query(query): Query<RedeemQuery>,
|
|
|
|
|
headers: HeaderMap,
|
2026-06-01 21:57:07 +02:00
|
|
|
) -> Response {
|
|
|
|
|
let Some(auth_svc) = state.auth_service.as_ref() else {
|
|
|
|
|
return error_page(
|
|
|
|
|
StatusCode::SERVICE_UNAVAILABLE,
|
|
|
|
|
"Authentication subsystem is not configured.",
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
2026-06-02 23:12:41 +02:00
|
|
|
// PR 22 browser binding: read the per-request challenge from the
|
|
|
|
|
// cookie (set by `POST /api/auth/magic-link/send` on the originating
|
|
|
|
|
// browser). The service compares it to the token's stored
|
|
|
|
|
// challenge. `confirm=1` means the user just clicked through the
|
|
|
|
|
// cross-browser prompt and is fine redeeming from a different
|
|
|
|
|
// browser anyway.
|
|
|
|
|
let incoming_challenge =
|
|
|
|
|
cookie_auth::extract_cookie_value(&headers, cookie_auth::MAGIC_REQUEST_COOKIE);
|
|
|
|
|
let cross_browser_confirmed = query
|
|
|
|
|
.confirm
|
|
|
|
|
.as_deref()
|
|
|
|
|
.map(|v| v == "1" || v == "true")
|
|
|
|
|
.unwrap_or(false);
|
|
|
|
|
|
2026-06-01 21:57:07 +02:00
|
|
|
match auth_svc
|
|
|
|
|
.auth_application_service
|
2026-06-02 23:12:41 +02:00
|
|
|
.redeem_magic_link(
|
|
|
|
|
&token,
|
|
|
|
|
incoming_challenge.as_deref(),
|
|
|
|
|
cross_browser_confirmed,
|
|
|
|
|
)
|
2026-06-01 21:57:07 +02:00
|
|
|
.await
|
|
|
|
|
{
|
2026-06-02 23:12:41 +02:00
|
|
|
Ok(MagicLinkRedeemResult::Allowed(redemption)) => {
|
|
|
|
|
build_success_response(&state, *redemption)
|
|
|
|
|
}
|
|
|
|
|
Ok(MagicLinkRedeemResult::NeedsCrossBrowserConfirm) => {
|
|
|
|
|
cross_browser_confirmation_page(&token)
|
|
|
|
|
}
|
2026-06-01 21:57:07 +02:00
|
|
|
Err(e) => {
|
|
|
|
|
// Log the cause for ops; the user gets a generic page so the
|
|
|
|
|
// outcome can't be used as an enumeration oracle.
|
|
|
|
|
tracing::info!(
|
|
|
|
|
target: "audit",
|
|
|
|
|
event = "magic_link.redemption_failed",
|
|
|
|
|
error_kind = ?e.kind,
|
|
|
|
|
error = %e.message,
|
|
|
|
|
);
|
|
|
|
|
match e.kind {
|
|
|
|
|
ErrorKind::NotImplemented => error_page(
|
|
|
|
|
StatusCode::SERVICE_UNAVAILABLE,
|
|
|
|
|
"Magic-link sign-in is not enabled on this server.",
|
|
|
|
|
),
|
2026-06-03 11:13:43 +02:00
|
|
|
ErrorKind::NotFound | ErrorKind::AccessDenied => {
|
|
|
|
|
expired_or_used_page(&state, &token).await
|
|
|
|
|
}
|
2026-06-01 21:57:07 +02:00
|
|
|
_ => error_page(
|
|
|
|
|
StatusCode::INTERNAL_SERVER_ERROR,
|
|
|
|
|
"Something went wrong while signing you in. Please try again.",
|
|
|
|
|
),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-03 11:13:43 +02:00
|
|
|
/// `POST /magic/v1/{token}/resend` — one-click handler behind the
|
|
|
|
|
/// "Send a fresh link" button on the 410-Gone page.
|
|
|
|
|
///
|
|
|
|
|
/// The token in the URL serves as a *recipient-discovery key*, never as
|
|
|
|
|
/// a credential: the server looks up the (expired or used) row, walks
|
|
|
|
|
/// to the owning user, and dispatches a fresh login-via-email magic-
|
|
|
|
|
/// link to that user's email. The endpoint never trusts client-supplied
|
|
|
|
|
/// email and never echoes the resolved address back, so the resend
|
|
|
|
|
/// URL is safe to leave in browser history.
|
|
|
|
|
///
|
|
|
|
|
/// Anti-abuse:
|
|
|
|
|
/// - **Per-source-IP** (200/h, shared with `/api/auth/magic-link/send`)
|
|
|
|
|
/// bounds burst from a single attacker.
|
|
|
|
|
/// - **Per-target-email** (5/h, also shared) caps actual mail volume
|
|
|
|
|
/// to the recipient regardless of how many IPs hammer the endpoint.
|
|
|
|
|
/// - **Uniform response** on every outcome — rate-limited, no-account,
|
|
|
|
|
/// SMTP-failed, succeeded — so the page shape is not an oracle.
|
|
|
|
|
/// - **Audit log** carries the truth via the `auth.magic_link_send`
|
|
|
|
|
/// events emitted by `MagicLinkInviteService::send_login_link`.
|
|
|
|
|
async fn resend_magic_link(
|
|
|
|
|
State(state): State<Arc<AppState>>,
|
|
|
|
|
Path(token): Path<String>,
|
|
|
|
|
req: axum::http::Request<axum::body::Body>,
|
|
|
|
|
) -> Response {
|
|
|
|
|
let confirmation = || {
|
|
|
|
|
resend_confirmation_page(
|
|
|
|
|
"If the sign-in link belonged to an active account, a fresh \
|
|
|
|
|
link has just been sent. Please check your inbox.",
|
|
|
|
|
)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
let Some(invite_svc) = state.magic_link_invite_service.as_ref() else {
|
|
|
|
|
return error_page(
|
|
|
|
|
StatusCode::SERVICE_UNAVAILABLE,
|
|
|
|
|
"Magic-link sign-in is not enabled on this server.",
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
let client_ip = extract_client_ip(&req);
|
|
|
|
|
|
|
|
|
|
// Per-IP backstop runs unconditionally — burns through the budget
|
|
|
|
|
// even when the token doesn't resolve, so the endpoint can't be
|
|
|
|
|
// used to spread probes thin across many tokens.
|
|
|
|
|
if state
|
|
|
|
|
.magic_link_send_per_ip_rate_limiter
|
|
|
|
|
.check_and_increment(&client_ip)
|
|
|
|
|
.is_err()
|
|
|
|
|
{
|
|
|
|
|
tracing::warn!(
|
|
|
|
|
target: "audit",
|
|
|
|
|
event = "auth.magic_link_send",
|
|
|
|
|
reason = "rate_limited_ip",
|
|
|
|
|
ip = %client_ip,
|
|
|
|
|
"Per-IP rate limit exceeded on /magic/v1/{{token}}/resend"
|
|
|
|
|
);
|
|
|
|
|
return confirmation();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let hint = match invite_svc.lookup_resend_recipient(&token).await {
|
|
|
|
|
Ok(Some(h)) => h,
|
|
|
|
|
_ => {
|
|
|
|
|
// Unknown / pending / deactivated — uniform response so the
|
|
|
|
|
// outcome is not an oracle for "is this a known token".
|
|
|
|
|
return confirmation();
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Per-target-email cap — keyed on the recipient we just resolved.
|
|
|
|
|
// Locks the mail volume to a single recipient regardless of how
|
|
|
|
|
// many distinct IPs the attacker spreads across.
|
|
|
|
|
if state
|
|
|
|
|
.magic_link_send_per_email_rate_limiter
|
|
|
|
|
.check_and_increment(&hint.email)
|
|
|
|
|
.is_err()
|
|
|
|
|
{
|
|
|
|
|
tracing::warn!(
|
|
|
|
|
target: "audit",
|
|
|
|
|
event = "auth.magic_link_send",
|
|
|
|
|
reason = "rate_limited_email",
|
|
|
|
|
ip = %client_ip,
|
|
|
|
|
"Per-target-email rate limit exceeded on /magic/v1/{{token}}/resend"
|
|
|
|
|
);
|
|
|
|
|
return confirmation();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let challenge = cookie_auth::generate_magic_request_challenge();
|
|
|
|
|
let login_ttl_secs = (state.core.config.magic_link.login_ttl_minutes * 60) as i64;
|
|
|
|
|
|
|
|
|
|
// Service swallows operational outcomes and audits the truth; we
|
|
|
|
|
// surface only DB / unexpected errors as 500.
|
|
|
|
|
if let Err(e) = invite_svc.send_login_link(&hint.email, &challenge).await {
|
|
|
|
|
tracing::error!(
|
|
|
|
|
target: "audit",
|
|
|
|
|
event = "auth.magic_link_send",
|
|
|
|
|
reason = "internal_error",
|
|
|
|
|
error = %e.message,
|
|
|
|
|
"Resend dispatch failed for an unexpected reason"
|
|
|
|
|
);
|
|
|
|
|
return error_page(
|
|
|
|
|
StatusCode::INTERNAL_SERVER_ERROR,
|
|
|
|
|
"Something went wrong while sending the link. Please try again.",
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let mut response = confirmation();
|
|
|
|
|
cookie_auth::append_magic_request_cookie(response.headers_mut(), &challenge, login_ttl_secs);
|
|
|
|
|
response
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Plain HTML confirmation rendered after the resend button is clicked.
|
|
|
|
|
/// Same shape on every outcome — see [`resend_magic_link`] for why.
|
|
|
|
|
fn resend_confirmation_page(message: &str) -> Response {
|
|
|
|
|
let body = format!(
|
|
|
|
|
"<!doctype html><html><head><meta charset=\"utf-8\"><title>OxiCloud</title>\
|
|
|
|
|
<style>body{{font-family:system-ui,sans-serif;max-width:560px;margin:6em auto;\
|
|
|
|
|
padding:0 1em;color:#333;line-height:1.5}}h1{{font-size:1.4em}}\
|
|
|
|
|
.muted{{color:#666;font-size:.9em;margin-top:2em}}</style>\
|
|
|
|
|
</head><body>\
|
|
|
|
|
<h1>Check your inbox</h1>\
|
|
|
|
|
<p>{}</p>\
|
|
|
|
|
<p class=\"muted\"><a href=\"/\">Return to OxiCloud</a></p>\
|
|
|
|
|
</body></html>",
|
|
|
|
|
html_escape(message)
|
|
|
|
|
);
|
|
|
|
|
let mut response = (StatusCode::OK, body).into_response();
|
|
|
|
|
response.headers_mut().insert(
|
|
|
|
|
CONTENT_TYPE,
|
|
|
|
|
HeaderValue::from_static("text/html; charset=utf-8"),
|
|
|
|
|
);
|
|
|
|
|
response
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Render the 410-Gone landing for a token that's either expired,
|
|
|
|
|
/// already used, or unknown. When the token belongs to an active user
|
|
|
|
|
/// (i.e. the redemption failed because the row exists but is past its
|
|
|
|
|
/// useful state), the page carries a one-click "send a fresh link"
|
|
|
|
|
/// form pre-targeted at the recipient's masked email. When the token
|
|
|
|
|
/// is unknown, the user is deactivated, or any plumbing is missing,
|
|
|
|
|
/// the page falls back to the existing generic message — by design
|
|
|
|
|
/// the two responses are indistinguishable to the caller.
|
|
|
|
|
async fn expired_or_used_page(state: &Arc<AppState>, token: &str) -> Response {
|
|
|
|
|
let generic = || {
|
|
|
|
|
error_page(
|
|
|
|
|
StatusCode::GONE,
|
|
|
|
|
"This sign-in link is no longer valid. It may have already been \
|
|
|
|
|
used or expired. Request a fresh link from the login page.",
|
|
|
|
|
)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
let Some(invite_svc) = state.magic_link_invite_service.as_ref() else {
|
|
|
|
|
return generic();
|
|
|
|
|
};
|
|
|
|
|
let hint = match invite_svc.lookup_resend_recipient(token).await {
|
|
|
|
|
Ok(Some(h)) => h,
|
|
|
|
|
_ => return generic(),
|
|
|
|
|
};
|
|
|
|
|
resend_offer_page(token, &hint)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// HTML body for the enriched 410 page: explains the outcome and
|
|
|
|
|
/// offers a single-button form posting to `POST /magic/v1/{token}/resend`.
|
|
|
|
|
/// Plain HTML — no JavaScript, no external assets — so it works the
|
|
|
|
|
/// same in any mail-client embedded browser. The form action is the
|
|
|
|
|
/// only place the token round-trips; the masked email is the only
|
|
|
|
|
/// thing rendered, so screenshots / shoulder-surfing don't expose the
|
|
|
|
|
/// full address.
|
|
|
|
|
fn resend_offer_page(token: &str, hint: &ResendRecipientHint) -> Response {
|
|
|
|
|
let action = format!("/magic/v1/{}/resend", html_escape(token));
|
|
|
|
|
let masked = html_escape(&hint.masked_email);
|
|
|
|
|
let body = format!(
|
|
|
|
|
"<!doctype html><html><head><meta charset=\"utf-8\"><title>OxiCloud</title>\
|
|
|
|
|
<style>body{{font-family:system-ui,sans-serif;max-width:560px;margin:6em auto;\
|
|
|
|
|
padding:0 1em;color:#333;line-height:1.5}}h1{{font-size:1.4em}}\
|
|
|
|
|
.btn{{display:inline-block;padding:.7em 1.4em;background:#2563eb;color:#fff;\
|
|
|
|
|
border-radius:6px;text-decoration:none;font-weight:600;margin-top:.4em;\
|
|
|
|
|
border:0;cursor:pointer;font-size:1em}}.btn:hover{{background:#1d4ed8}}\
|
|
|
|
|
.muted{{color:#666;font-size:.9em;margin-top:2em}}</style>\
|
|
|
|
|
</head><body>\
|
|
|
|
|
<h1>This sign-in link is no longer valid</h1>\
|
|
|
|
|
<p>The link may have expired or already been used. \
|
|
|
|
|
We can send you a fresh one — it'll arrive in your inbox in a few seconds.</p>\
|
|
|
|
|
<form method=\"post\" action=\"{action}\">\
|
|
|
|
|
<button type=\"submit\" class=\"btn\">Send a fresh link to {masked}</button>\
|
|
|
|
|
</form>\
|
|
|
|
|
<p class=\"muted\"><a href=\"/\">Return to OxiCloud</a></p>\
|
|
|
|
|
</body></html>"
|
|
|
|
|
);
|
|
|
|
|
let mut response = (StatusCode::GONE, body).into_response();
|
|
|
|
|
response.headers_mut().insert(
|
|
|
|
|
CONTENT_TYPE,
|
|
|
|
|
HeaderValue::from_static("text/html; charset=utf-8"),
|
|
|
|
|
);
|
|
|
|
|
response
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-01 21:57:07 +02:00
|
|
|
fn build_success_response(state: &Arc<AppState>, redemption: MagicLinkRedemption) -> Response {
|
2026-06-02 22:26:11 +02:00
|
|
|
let target = redirect_target(&redemption);
|
2026-06-01 21:57:07 +02:00
|
|
|
|
|
|
|
|
let mut response = (StatusCode::FOUND, [(LOCATION, target.as_str())]).into_response();
|
|
|
|
|
|
|
|
|
|
cookie_auth::append_auth_cookies(
|
|
|
|
|
response.headers_mut(),
|
|
|
|
|
&redemption.auth.access_token,
|
|
|
|
|
&redemption.auth.refresh_token,
|
|
|
|
|
redemption.auth.expires_in,
|
|
|
|
|
state.core.config.auth.refresh_token_expiry_secs,
|
|
|
|
|
);
|
|
|
|
|
cookie_auth::append_csrf_cookie(response.headers_mut(), redemption.auth.expires_in);
|
2026-06-02 23:12:41 +02:00
|
|
|
// Clear the request-challenge cookie — it's single-use and we don't
|
|
|
|
|
// want a stale value on the browser confusing a later flow.
|
|
|
|
|
cookie_auth::append_clear_magic_request_cookie(response.headers_mut());
|
2026-06-01 21:57:07 +02:00
|
|
|
|
|
|
|
|
response
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-02 23:12:41 +02:00
|
|
|
/// Render the cross-browser confirmation page (PR 22). Shown when the
|
|
|
|
|
/// magic-link token carries a `request_challenge` (login-via-email)
|
|
|
|
|
/// but the inbound cookie didn't match — typically because the user
|
|
|
|
|
/// requested the link from one browser and clicked it from another
|
|
|
|
|
/// (phone vs desktop, work vs personal). The Continue button submits
|
|
|
|
|
/// back to the same endpoint with `?confirm=1` so the service skips
|
|
|
|
|
/// the challenge check and proceeds with redemption. Audit-logged at
|
|
|
|
|
/// `magic_link.redeemed reason="cross_browser_confirmed"`.
|
|
|
|
|
fn cross_browser_confirmation_page(token: &str) -> Response {
|
|
|
|
|
let confirm_url = format!("/magic/v1/{}?confirm=1", html_escape(token));
|
|
|
|
|
let body = format!(
|
|
|
|
|
"<!doctype html><html><head><meta charset=\"utf-8\">\
|
|
|
|
|
<title>Sign in — OxiCloud</title>\
|
|
|
|
|
<style>body{{font-family:system-ui,sans-serif;max-width:520px;margin:6em auto;\
|
|
|
|
|
padding:0 1em;color:#333;line-height:1.5}}\
|
|
|
|
|
h1{{font-size:1.4em}}.btn{{display:inline-block;padding:.7em 1.4em;\
|
|
|
|
|
background:#2563eb;color:#fff;border-radius:6px;text-decoration:none;\
|
|
|
|
|
font-weight:600;margin-top:1em}}.btn:hover{{background:#1d4ed8}}\
|
|
|
|
|
.note{{background:#fef3c7;border-left:3px solid #f59e0b;\
|
|
|
|
|
padding:.75em 1em;margin:1.5em 0;border-radius:4px;font-size:.95em}}</style>\
|
|
|
|
|
</head><body>\
|
|
|
|
|
<h1>Continue signing in on this device?</h1>\
|
|
|
|
|
<p>You opened this sign-in link in a different browser or device than \
|
|
|
|
|
the one where you requested it.</p>\
|
|
|
|
|
<p class=\"note\">If <strong>you</strong> requested this link, it's safe to continue. \
|
|
|
|
|
If you didn't request it, close this page — clicking Continue would sign \
|
|
|
|
|
someone else into your account.</p>\
|
|
|
|
|
<p><a class=\"btn\" href=\"{confirm_url}\">Continue and sign in</a></p>\
|
|
|
|
|
</body></html>",
|
|
|
|
|
confirm_url = confirm_url,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
let mut response = (StatusCode::OK, body).into_response();
|
|
|
|
|
response.headers_mut().insert(
|
|
|
|
|
CONTENT_TYPE,
|
|
|
|
|
HeaderValue::from_static("text/html; charset=utf-8"),
|
|
|
|
|
);
|
|
|
|
|
response
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-01 21:57:07 +02:00
|
|
|
/// Build the SPA hash-route the redemption should land on. Mirrors the
|
|
|
|
|
/// front-end's `deserializeHash()` parser at `static/js/app/main.js`.
|
2026-06-02 22:26:11 +02:00
|
|
|
///
|
|
|
|
|
/// - **Resource token** (folder invitation): deep-link to the resource.
|
|
|
|
|
/// - **NULL-resource token + external user**: land on `/#/sharedwithme`
|
|
|
|
|
/// (their entry point — they own no folders themselves).
|
|
|
|
|
/// - **NULL-resource token + internal user**: land on `/#/files` (the
|
|
|
|
|
/// user has a home folder; the "shared with me" view would be empty
|
|
|
|
|
/// on first signup, so home is the better welcome). Internal users
|
|
|
|
|
/// on NULL-resource tokens come from the email-only-signup welcome
|
|
|
|
|
/// path (PR 18) or from a magic-link they requested themselves
|
|
|
|
|
/// while password-eligible-and-lenient-mode (PR 19).
|
|
|
|
|
fn redirect_target(redemption: &MagicLinkRedemption) -> String {
|
|
|
|
|
match (redemption.resource_kind, redemption.resource_id) {
|
2026-06-01 21:57:07 +02:00
|
|
|
(Some(MagicLinkResourceKind::Folder), Some(folder_id)) => {
|
|
|
|
|
format!("/#/files/folder/{}", folder_id)
|
|
|
|
|
}
|
2026-06-02 22:26:11 +02:00
|
|
|
_ if redemption.auth.user.is_external => "/#/sharedwithme".to_string(),
|
|
|
|
|
_ => "/#/files".to_string(),
|
2026-06-01 21:57:07 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn error_page(status: StatusCode, message: &str) -> Response {
|
|
|
|
|
let body = format!(
|
|
|
|
|
"<!doctype html><html><head><meta charset=\"utf-8\"><title>OxiCloud</title>\
|
|
|
|
|
<style>body{{font-family:system-ui,sans-serif;max-width:640px;margin:6em auto;\
|
|
|
|
|
padding:0 1em;color:#333}}h1{{font-size:1.4em}}p{{line-height:1.5}}</style>\
|
|
|
|
|
</head><body><h1>Sign-in link</h1><p>{}</p>\
|
|
|
|
|
<p><a href=\"/\">Return to OxiCloud</a></p></body></html>",
|
|
|
|
|
html_escape(message)
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
let mut response = (status, body).into_response();
|
|
|
|
|
response.headers_mut().insert(
|
|
|
|
|
CONTENT_TYPE,
|
|
|
|
|
HeaderValue::from_static("text/html; charset=utf-8"),
|
|
|
|
|
);
|
|
|
|
|
response
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Tiny HTML escape — only used in the error fallback page. Anything more
|
|
|
|
|
/// elaborate belongs in a templating layer (not in scope here).
|
|
|
|
|
fn html_escape(s: &str) -> String {
|
|
|
|
|
s.replace('&', "&")
|
|
|
|
|
.replace('<', "<")
|
|
|
|
|
.replace('>', ">")
|
|
|
|
|
}
|