76 lines
2.3 KiB
Rust
76 lines
2.3 KiB
Rust
use axum::{
|
|
Json,
|
|
extract::{Extension, State},
|
|
http::StatusCode,
|
|
};
|
|
use serde::Serialize;
|
|
|
|
use crate::{
|
|
api_response::json_success_body, auth::AuthenticatedAccessToken, http_error::AppError,
|
|
request_context::RequestContext, state::AppState,
|
|
};
|
|
|
|
#[derive(Debug, Serialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct AuthMeResponse {
|
|
pub user: AuthMeUserPayload,
|
|
pub available_login_methods: Vec<&'static str>,
|
|
}
|
|
|
|
#[derive(Debug, Serialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct AuthMeUserPayload {
|
|
pub id: String,
|
|
pub username: String,
|
|
pub display_name: String,
|
|
pub phone_number_masked: Option<String>,
|
|
pub login_method: &'static str,
|
|
pub binding_status: &'static str,
|
|
pub wechat_bound: bool,
|
|
}
|
|
|
|
pub async fn auth_me(
|
|
State(state): State<AppState>,
|
|
Extension(request_context): Extension<RequestContext>,
|
|
Extension(authenticated): Extension<AuthenticatedAccessToken>,
|
|
) -> Result<Json<serde_json::Value>, AppError> {
|
|
let user_id = authenticated.claims().user_id().to_string();
|
|
let user = state
|
|
.password_entry_service()
|
|
.get_user_by_id(&user_id)
|
|
.map_err(|error| {
|
|
AppError::from_status(StatusCode::INTERNAL_SERVER_ERROR).with_message(error.to_string())
|
|
})?
|
|
.ok_or_else(|| {
|
|
AppError::from_status(StatusCode::UNAUTHORIZED)
|
|
.with_message("当前登录态已失效,请重新登录")
|
|
})?;
|
|
|
|
Ok(json_success_body(
|
|
Some(&request_context),
|
|
AuthMeResponse {
|
|
user: AuthMeUserPayload {
|
|
id: user.user.id,
|
|
username: user.user.username,
|
|
display_name: user.user.display_name,
|
|
phone_number_masked: user.user.phone_number_masked,
|
|
login_method: user.user.login_method.as_str(),
|
|
binding_status: user.user.binding_status.as_str(),
|
|
wechat_bound: user.user.wechat_bound,
|
|
},
|
|
available_login_methods: build_available_login_methods(&state),
|
|
},
|
|
))
|
|
}
|
|
|
|
fn build_available_login_methods(state: &AppState) -> Vec<&'static str> {
|
|
let mut methods = Vec::new();
|
|
if state.config.sms_auth_enabled {
|
|
methods.push("phone");
|
|
}
|
|
if state.config.wechat_auth_enabled {
|
|
methods.push("wechat");
|
|
}
|
|
methods
|
|
}
|