mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-02 09:20:22 +08:00
feat: add payment gateway and billing plans
This commit is contained in:
@@ -14,6 +14,7 @@ const ADMIN_BILLING_DATA_UNAVAILABLE_DETAIL: &str = "Admin billing data unavaila
|
||||
|
||||
mod collectors;
|
||||
mod payments;
|
||||
mod plans;
|
||||
mod presets;
|
||||
mod routes;
|
||||
mod rules;
|
||||
@@ -47,6 +48,14 @@ fn build_admin_billing_bad_request_response(detail: impl Into<String>) -> Respon
|
||||
.into_response()
|
||||
}
|
||||
|
||||
fn build_admin_billing_conflict_response(detail: impl Into<String>) -> Response<Body> {
|
||||
(
|
||||
http::StatusCode::CONFLICT,
|
||||
Json(json!({ "detail": detail.into() })),
|
||||
)
|
||||
.into_response()
|
||||
}
|
||||
|
||||
fn build_admin_billing_read_only_response(detail: &'static str) -> Response<Body> {
|
||||
(
|
||||
http::StatusCode::CONFLICT,
|
||||
@@ -239,7 +248,24 @@ pub(crate) async fn maybe_build_local_admin_billing_response(
|
||||
))
|
||||
|| (request_context.method() == http::Method::PUT
|
||||
&& path.starts_with("/api/admin/billing/collectors/")
|
||||
&& path.matches('/').count() == 5);
|
||||
&& path.matches('/').count() == 5)
|
||||
|| (matches!(
|
||||
request_context.method(),
|
||||
&http::Method::GET | &http::Method::POST
|
||||
) && matches!(
|
||||
path,
|
||||
"/api/admin/billing/plans" | "/api/admin/billing/plans/"
|
||||
))
|
||||
|| (request_context.method() == http::Method::PUT
|
||||
&& path.starts_with("/api/admin/billing/plans/")
|
||||
&& path.matches('/').count() == 5)
|
||||
|| (request_context.method() == http::Method::DELETE
|
||||
&& path.starts_with("/api/admin/billing/plans/")
|
||||
&& path.matches('/').count() == 5)
|
||||
|| (request_context.method() == http::Method::PATCH
|
||||
&& path.starts_with("/api/admin/billing/plans/")
|
||||
&& path.ends_with("/status")
|
||||
&& path.matches('/').count() == 6);
|
||||
|
||||
if !is_billing_route {
|
||||
return Ok(None);
|
||||
@@ -269,6 +295,12 @@ pub(crate) async fn maybe_build_local_admin_billing_response(
|
||||
{
|
||||
return Ok(Some(response));
|
||||
}
|
||||
if let Some(response) =
|
||||
plans::maybe_build_local_admin_billing_plans_response(state, request_context, request_body)
|
||||
.await?
|
||||
{
|
||||
return Ok(Some(response));
|
||||
}
|
||||
|
||||
let _ = decision.route_kind.as_deref();
|
||||
Ok(Some(build_admin_billing_data_unavailable_response()))
|
||||
|
||||
@@ -0,0 +1,214 @@
|
||||
use super::{
|
||||
build_admin_payments_backend_unavailable_response, build_admin_payments_bad_request_response,
|
||||
};
|
||||
use crate::handlers::admin::request::{AdminAppState, AdminRequestContext};
|
||||
use crate::{GatewayError, LocalMutationOutcome};
|
||||
use aether_data_contracts::repository::billing::PaymentGatewayConfigWriteInput;
|
||||
use axum::{
|
||||
body::Body,
|
||||
http,
|
||||
response::{IntoResponse, Response},
|
||||
Json,
|
||||
};
|
||||
use serde::Deserialize;
|
||||
use serde_json::json;
|
||||
|
||||
#[derive(Debug, Deserialize)]
|
||||
struct EpayGatewayConfigRequest {
|
||||
#[serde(default)]
|
||||
enabled: bool,
|
||||
endpoint_url: String,
|
||||
#[serde(default)]
|
||||
callback_base_url: Option<String>,
|
||||
merchant_id: String,
|
||||
#[serde(default)]
|
||||
merchant_key: Option<String>,
|
||||
#[serde(default = "default_pay_currency")]
|
||||
pay_currency: String,
|
||||
#[serde(default = "default_usd_exchange_rate")]
|
||||
usd_exchange_rate: f64,
|
||||
#[serde(default = "default_min_recharge_usd")]
|
||||
min_recharge_usd: f64,
|
||||
#[serde(default = "default_channels")]
|
||||
channels: serde_json::Value,
|
||||
}
|
||||
|
||||
fn default_pay_currency() -> String {
|
||||
"CNY".to_string()
|
||||
}
|
||||
|
||||
fn default_usd_exchange_rate() -> f64 {
|
||||
7.2
|
||||
}
|
||||
|
||||
fn default_min_recharge_usd() -> f64 {
|
||||
1.0
|
||||
}
|
||||
|
||||
fn default_channels() -> serde_json::Value {
|
||||
json!([
|
||||
{"channel": "alipay", "display_name": "支付宝"},
|
||||
{"channel": "wxpay", "display_name": "微信支付"}
|
||||
])
|
||||
}
|
||||
|
||||
fn normalize_text(value: impl Into<String>, field: &str, max_len: usize) -> Result<String, String> {
|
||||
let value = value.into();
|
||||
let trimmed = value.trim();
|
||||
if trimmed.is_empty() {
|
||||
return Err(format!("{field} must not be empty"));
|
||||
}
|
||||
if trimmed.chars().count() > max_len {
|
||||
return Err(format!("{field} exceeds maximum length {max_len}"));
|
||||
}
|
||||
Ok(trimmed.to_string())
|
||||
}
|
||||
|
||||
fn normalize_optional_text(
|
||||
value: Option<String>,
|
||||
max_len: usize,
|
||||
) -> Result<Option<String>, String> {
|
||||
let Some(value) = value else {
|
||||
return Ok(None);
|
||||
};
|
||||
let trimmed = value.trim();
|
||||
if trimmed.is_empty() {
|
||||
return Ok(None);
|
||||
}
|
||||
if trimmed.chars().count() > max_len {
|
||||
return Err(format!("field exceeds maximum length {max_len}"));
|
||||
}
|
||||
Ok(Some(trimmed.to_string()))
|
||||
}
|
||||
|
||||
fn gateway_config_payload(
|
||||
record: aether_data_contracts::repository::billing::PaymentGatewayConfigRecord,
|
||||
) -> serde_json::Value {
|
||||
json!({
|
||||
"provider": record.provider,
|
||||
"enabled": record.enabled,
|
||||
"endpoint_url": record.endpoint_url,
|
||||
"callback_base_url": record.callback_base_url,
|
||||
"merchant_id": record.merchant_id,
|
||||
"has_secret": record.merchant_key_encrypted.as_deref().is_some_and(|value| !value.trim().is_empty()),
|
||||
"pay_currency": record.pay_currency,
|
||||
"usd_exchange_rate": record.usd_exchange_rate,
|
||||
"min_recharge_usd": record.min_recharge_usd,
|
||||
"channels": record.channels_json,
|
||||
"created_at": record.created_at_unix_secs,
|
||||
"updated_at": record.updated_at_unix_secs,
|
||||
})
|
||||
}
|
||||
|
||||
pub(super) async fn maybe_build_local_admin_payment_gateways_response(
|
||||
state: &AdminAppState<'_>,
|
||||
_request_context: &AdminRequestContext<'_>,
|
||||
request_body: Option<&axum::body::Bytes>,
|
||||
route_kind: Option<&str>,
|
||||
) -> Result<Option<Response<Body>>, GatewayError> {
|
||||
match route_kind {
|
||||
Some("get_epay_gateway") => {
|
||||
let record = state.app().find_payment_gateway_config("epay").await?;
|
||||
let payload = record.map(gateway_config_payload).unwrap_or_else(
|
||||
|| json!({"provider": "epay", "enabled": false, "has_secret": false}),
|
||||
);
|
||||
Ok(Some(Json(payload).into_response()))
|
||||
}
|
||||
Some("update_epay_gateway") => {
|
||||
let Some(body) = request_body else {
|
||||
return Ok(Some(build_admin_payments_bad_request_response(
|
||||
"缺少请求体",
|
||||
)));
|
||||
};
|
||||
let payload = match serde_json::from_slice::<EpayGatewayConfigRequest>(body) {
|
||||
Ok(value) => value,
|
||||
Err(_) => {
|
||||
return Ok(Some(build_admin_payments_bad_request_response(
|
||||
"输入验证失败",
|
||||
)))
|
||||
}
|
||||
};
|
||||
if !payload.usd_exchange_rate.is_finite() || payload.usd_exchange_rate <= 0.0 {
|
||||
return Ok(Some(build_admin_payments_bad_request_response(
|
||||
"usd_exchange_rate must be positive",
|
||||
)));
|
||||
}
|
||||
if !payload.min_recharge_usd.is_finite() || payload.min_recharge_usd <= 0.0 {
|
||||
return Ok(Some(build_admin_payments_bad_request_response(
|
||||
"min_recharge_usd must be positive",
|
||||
)));
|
||||
}
|
||||
let merchant_key_encrypted = match payload
|
||||
.merchant_key
|
||||
.as_deref()
|
||||
.map(str::trim)
|
||||
.filter(|value| !value.is_empty())
|
||||
{
|
||||
Some(secret) => match state.encrypt_catalog_secret_with_fallbacks(secret) {
|
||||
Some(value) => Some(value),
|
||||
None => {
|
||||
return Ok(Some(build_admin_payments_backend_unavailable_response(
|
||||
"encryption key is not configured",
|
||||
)))
|
||||
}
|
||||
},
|
||||
None => None,
|
||||
};
|
||||
let endpoint_url = match normalize_text(payload.endpoint_url, "endpoint_url", 512) {
|
||||
Ok(value) => value,
|
||||
Err(detail) => return Ok(Some(build_admin_payments_bad_request_response(detail))),
|
||||
};
|
||||
let callback_base_url = match normalize_optional_text(payload.callback_base_url, 512) {
|
||||
Ok(value) => value,
|
||||
Err(detail) => return Ok(Some(build_admin_payments_bad_request_response(detail))),
|
||||
};
|
||||
let merchant_id = match normalize_text(payload.merchant_id, "merchant_id", 128) {
|
||||
Ok(value) => value,
|
||||
Err(detail) => return Ok(Some(build_admin_payments_bad_request_response(detail))),
|
||||
};
|
||||
let pay_currency = match normalize_text(payload.pay_currency, "pay_currency", 16) {
|
||||
Ok(value) => value,
|
||||
Err(detail) => return Ok(Some(build_admin_payments_bad_request_response(detail))),
|
||||
};
|
||||
let input = PaymentGatewayConfigWriteInput {
|
||||
provider: "epay".to_string(),
|
||||
enabled: payload.enabled,
|
||||
endpoint_url,
|
||||
callback_base_url,
|
||||
merchant_id,
|
||||
preserve_existing_secret: merchant_key_encrypted.is_none(),
|
||||
merchant_key_encrypted,
|
||||
pay_currency,
|
||||
usd_exchange_rate: payload.usd_exchange_rate,
|
||||
min_recharge_usd: payload.min_recharge_usd,
|
||||
channels_json: payload.channels,
|
||||
};
|
||||
match state.app().upsert_payment_gateway_config(&input).await? {
|
||||
LocalMutationOutcome::Applied(record) => {
|
||||
Ok(Some(Json(gateway_config_payload(record)).into_response()))
|
||||
}
|
||||
_ => Ok(Some(build_admin_payments_backend_unavailable_response(
|
||||
"payment gateway config backend unavailable",
|
||||
))),
|
||||
}
|
||||
}
|
||||
Some("test_epay_gateway") => {
|
||||
let status = state.app().find_payment_gateway_config("epay").await?;
|
||||
let ok = status
|
||||
.as_ref()
|
||||
.is_some_and(|record| record.enabled && record.merchant_key_encrypted.is_some());
|
||||
Ok(Some(
|
||||
(
|
||||
if ok {
|
||||
http::StatusCode::OK
|
||||
} else {
|
||||
http::StatusCode::BAD_REQUEST
|
||||
},
|
||||
Json(json!({"ok": ok, "provider": "epay"})),
|
||||
)
|
||||
.into_response(),
|
||||
))
|
||||
}
|
||||
_ => Ok(None),
|
||||
}
|
||||
}
|
||||
@@ -3,6 +3,7 @@ use crate::GatewayError;
|
||||
use axum::{body::Body, response::Response};
|
||||
|
||||
mod callbacks;
|
||||
mod gateways;
|
||||
mod orders;
|
||||
#[path = "../../payment/postgres.rs"]
|
||||
mod payment_postgres;
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
use super::{
|
||||
build_admin_payments_data_unavailable_response,
|
||||
callbacks::maybe_build_local_admin_payment_callbacks_response,
|
||||
gateways::maybe_build_local_admin_payment_gateways_response,
|
||||
orders::maybe_build_local_admin_payment_orders_response,
|
||||
redeem_codes::maybe_build_local_admin_redeem_codes_response,
|
||||
};
|
||||
@@ -29,6 +30,12 @@ pub(super) async fn maybe_build_local_admin_payments_response(
|
||||
};
|
||||
let is_payments_route = (request_context.method() == http::Method::GET
|
||||
&& path == "/api/admin/payments/orders")
|
||||
|| (matches!(
|
||||
request_context.method(),
|
||||
&http::Method::GET | &http::Method::PUT
|
||||
) && path == "/api/admin/payments/gateways/epay")
|
||||
|| (request_context.method() == http::Method::POST
|
||||
&& path == "/api/admin/payments/gateways/epay/test")
|
||||
|| (request_context.method() == http::Method::GET
|
||||
&& path.starts_with("/api/admin/payments/orders/")
|
||||
&& path.matches('/').count() == 5)
|
||||
@@ -75,6 +82,16 @@ pub(super) async fn maybe_build_local_admin_payments_response(
|
||||
}
|
||||
|
||||
let route_kind = decision.route_kind.as_deref();
|
||||
if let Some(response) = maybe_build_local_admin_payment_gateways_response(
|
||||
state,
|
||||
request_context,
|
||||
request_body,
|
||||
route_kind,
|
||||
)
|
||||
.await?
|
||||
{
|
||||
return Ok(Some(response));
|
||||
}
|
||||
if let Some(response) = maybe_build_local_admin_payment_orders_response(
|
||||
state,
|
||||
request_context,
|
||||
|
||||
394
apps/aether-gateway/src/handlers/admin/billing/plans.rs
Normal file
394
apps/aether-gateway/src/handlers/admin/billing/plans.rs
Normal file
@@ -0,0 +1,394 @@
|
||||
use super::{
|
||||
build_admin_billing_bad_request_response, build_admin_billing_conflict_response,
|
||||
build_admin_billing_data_unavailable_response, build_admin_billing_not_found_response,
|
||||
};
|
||||
use crate::handlers::admin::request::{AdminAppState, AdminRequestContext};
|
||||
use crate::{GatewayError, LocalMutationOutcome};
|
||||
use aether_data_contracts::repository::billing::{BillingPlanRecord, BillingPlanWriteInput};
|
||||
use axum::{
|
||||
body::{Body, Bytes},
|
||||
http,
|
||||
response::{IntoResponse, Response},
|
||||
Json,
|
||||
};
|
||||
use serde::Deserialize;
|
||||
use serde_json::json;
|
||||
|
||||
#[derive(Debug, Deserialize)]
|
||||
struct BillingPlanRequest {
|
||||
title: String,
|
||||
#[serde(default)]
|
||||
description: Option<String>,
|
||||
price_amount: f64,
|
||||
#[serde(default = "default_price_currency")]
|
||||
price_currency: String,
|
||||
duration_unit: String,
|
||||
duration_value: i64,
|
||||
#[serde(default = "default_enabled")]
|
||||
enabled: bool,
|
||||
#[serde(default)]
|
||||
sort_order: i64,
|
||||
#[serde(default = "default_max_active_per_user")]
|
||||
max_active_per_user: i64,
|
||||
#[serde(default = "default_purchase_limit_scope")]
|
||||
purchase_limit_scope: String,
|
||||
entitlements: serde_json::Value,
|
||||
}
|
||||
|
||||
#[derive(Debug, Deserialize)]
|
||||
struct BillingPlanStatusRequest {
|
||||
enabled: bool,
|
||||
}
|
||||
|
||||
fn default_price_currency() -> String {
|
||||
"CNY".to_string()
|
||||
}
|
||||
|
||||
fn default_enabled() -> bool {
|
||||
true
|
||||
}
|
||||
|
||||
fn default_max_active_per_user() -> i64 {
|
||||
1
|
||||
}
|
||||
|
||||
fn default_purchase_limit_scope() -> String {
|
||||
"active_period".to_string()
|
||||
}
|
||||
|
||||
fn normalize_text(value: impl Into<String>, field: &str, max_len: usize) -> Result<String, String> {
|
||||
let value = value.into();
|
||||
let trimmed = value.trim();
|
||||
if trimmed.is_empty() {
|
||||
return Err(format!("{field} must not be empty"));
|
||||
}
|
||||
if trimmed.chars().count() > max_len {
|
||||
return Err(format!("{field} exceeds maximum length {max_len}"));
|
||||
}
|
||||
Ok(trimmed.to_string())
|
||||
}
|
||||
|
||||
fn normalize_optional_text(
|
||||
value: Option<String>,
|
||||
max_len: usize,
|
||||
) -> Result<Option<String>, String> {
|
||||
let Some(value) = value else {
|
||||
return Ok(None);
|
||||
};
|
||||
let trimmed = value.trim();
|
||||
if trimmed.is_empty() {
|
||||
return Ok(None);
|
||||
}
|
||||
if trimmed.chars().count() > max_len {
|
||||
return Err(format!("field exceeds maximum length {max_len}"));
|
||||
}
|
||||
Ok(Some(trimmed.to_string()))
|
||||
}
|
||||
|
||||
fn validate_entitlements(value: &serde_json::Value) -> Result<(), String> {
|
||||
let items = value
|
||||
.as_array()
|
||||
.ok_or_else(|| "entitlements must be an array".to_string())?;
|
||||
if items.is_empty() {
|
||||
return Err("entitlements must not be empty".to_string());
|
||||
}
|
||||
for item in items {
|
||||
let kind = item
|
||||
.get("type")
|
||||
.and_then(|value| value.as_str())
|
||||
.ok_or_else(|| "entitlement.type is required".to_string())?;
|
||||
match kind {
|
||||
"wallet_credit" => {
|
||||
let amount = item
|
||||
.get("amount_usd")
|
||||
.and_then(|value| value.as_f64())
|
||||
.ok_or_else(|| "wallet_credit.amount_usd is required".to_string())?;
|
||||
if !amount.is_finite() || amount <= 0.0 {
|
||||
return Err("wallet_credit.amount_usd must be positive".to_string());
|
||||
}
|
||||
if let Some(bucket) = item.get("balance_bucket") {
|
||||
let bucket = bucket.as_str().ok_or_else(|| {
|
||||
"wallet_credit.balance_bucket must be a string".to_string()
|
||||
})?;
|
||||
if !matches!(bucket, "recharge" | "gift") {
|
||||
return Err(
|
||||
"wallet_credit.balance_bucket must be recharge/gift".to_string()
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
"daily_quota" => {
|
||||
let amount = item
|
||||
.get("daily_quota_usd")
|
||||
.and_then(|value| value.as_f64())
|
||||
.ok_or_else(|| "daily_quota.daily_quota_usd is required".to_string())?;
|
||||
if !amount.is_finite() || amount <= 0.0 {
|
||||
return Err("daily_quota.daily_quota_usd must be positive".to_string());
|
||||
}
|
||||
if let Some(reset_timezone) = item.get("reset_timezone") {
|
||||
let reset_timezone = reset_timezone
|
||||
.as_str()
|
||||
.ok_or_else(|| "daily_quota.reset_timezone must be a string".to_string())?
|
||||
.trim();
|
||||
if reset_timezone.is_empty() {
|
||||
return Err("daily_quota.reset_timezone must not be empty".to_string());
|
||||
}
|
||||
reset_timezone.parse::<chrono_tz::Tz>().map_err(|_| {
|
||||
"daily_quota.reset_timezone must be a valid timezone".to_string()
|
||||
})?;
|
||||
}
|
||||
if let Some(carry_over) = item.get("carry_over") {
|
||||
let carry_over = carry_over
|
||||
.as_bool()
|
||||
.ok_or_else(|| "daily_quota.carry_over must be a boolean".to_string())?;
|
||||
if carry_over {
|
||||
return Err("daily_quota.carry_over is not supported".to_string());
|
||||
}
|
||||
}
|
||||
if item
|
||||
.get("allow_wallet_overage")
|
||||
.is_some_and(|value| !value.is_boolean())
|
||||
{
|
||||
return Err("daily_quota.allow_wallet_overage must be a boolean".to_string());
|
||||
}
|
||||
}
|
||||
"membership_group" => {
|
||||
let groups = item
|
||||
.get("grant_user_groups")
|
||||
.and_then(|value| value.as_array())
|
||||
.ok_or_else(|| "membership_group.grant_user_groups is required".to_string())?;
|
||||
if groups.is_empty() {
|
||||
return Err("membership_group.grant_user_groups must not be empty".to_string());
|
||||
}
|
||||
for group in groups {
|
||||
let group = group.as_str().ok_or_else(|| {
|
||||
"membership_group.grant_user_groups must contain strings".to_string()
|
||||
})?;
|
||||
if group.trim().is_empty() {
|
||||
return Err(
|
||||
"membership_group.grant_user_groups must not contain empty values"
|
||||
.to_string(),
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
_ => return Err(format!("unsupported entitlement type: {kind}")),
|
||||
}
|
||||
}
|
||||
if !entitlements_include_package_rights(items) {
|
||||
return Err("套餐至少需要包含每日额度或会员分组;钱包充值请使用充值功能".to_string());
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn entitlements_include_package_rights(items: &[serde_json::Value]) -> bool {
|
||||
items.iter().any(|item| {
|
||||
matches!(
|
||||
item.get("type").and_then(|value| value.as_str()),
|
||||
Some("daily_quota" | "membership_group")
|
||||
)
|
||||
})
|
||||
}
|
||||
|
||||
fn normalize_plan_input(payload: BillingPlanRequest) -> Result<BillingPlanWriteInput, String> {
|
||||
if !payload.price_amount.is_finite() || payload.price_amount <= 0.0 {
|
||||
return Err("price_amount must be positive".to_string());
|
||||
}
|
||||
if payload.duration_value <= 0 {
|
||||
return Err("duration_value must be positive".to_string());
|
||||
}
|
||||
if payload.max_active_per_user <= 0 {
|
||||
return Err("max_active_per_user must be positive".to_string());
|
||||
}
|
||||
let duration_unit = normalize_text(payload.duration_unit, "duration_unit", 32)?;
|
||||
if !matches!(duration_unit.as_str(), "day" | "month" | "year" | "custom") {
|
||||
return Err("duration_unit must be day/month/year/custom".to_string());
|
||||
}
|
||||
let purchase_limit_scope =
|
||||
normalize_text(payload.purchase_limit_scope, "purchase_limit_scope", 32)?;
|
||||
if !matches!(
|
||||
purchase_limit_scope.as_str(),
|
||||
"active_period" | "lifetime" | "unlimited"
|
||||
) {
|
||||
return Err("purchase_limit_scope must be active_period/lifetime/unlimited".to_string());
|
||||
}
|
||||
validate_entitlements(&payload.entitlements)?;
|
||||
Ok(BillingPlanWriteInput {
|
||||
title: normalize_text(payload.title, "title", 128)?,
|
||||
description: normalize_optional_text(payload.description, 2048)?,
|
||||
price_amount: payload.price_amount,
|
||||
price_currency: normalize_text(payload.price_currency, "price_currency", 16)?,
|
||||
duration_unit,
|
||||
duration_value: payload.duration_value,
|
||||
enabled: payload.enabled,
|
||||
sort_order: payload.sort_order,
|
||||
max_active_per_user: payload.max_active_per_user,
|
||||
purchase_limit_scope,
|
||||
entitlements_json: payload.entitlements,
|
||||
})
|
||||
}
|
||||
|
||||
pub(crate) fn billing_plan_payload(record: &BillingPlanRecord) -> serde_json::Value {
|
||||
json!({
|
||||
"id": record.id,
|
||||
"title": record.title,
|
||||
"description": record.description,
|
||||
"price_amount": record.price_amount,
|
||||
"price_currency": record.price_currency,
|
||||
"duration_unit": record.duration_unit,
|
||||
"duration_value": record.duration_value,
|
||||
"enabled": record.enabled,
|
||||
"sort_order": record.sort_order,
|
||||
"max_active_per_user": record.max_active_per_user,
|
||||
"purchase_limit_scope": record.purchase_limit_scope,
|
||||
"entitlements": record.entitlements_json,
|
||||
"created_at": record.created_at_unix_secs,
|
||||
"updated_at": record.updated_at_unix_secs,
|
||||
})
|
||||
}
|
||||
|
||||
fn plan_id_from_path(path: &str, suffix: Option<&str>) -> Option<String> {
|
||||
let trimmed = path.trim_end_matches('/');
|
||||
let rest = trimmed.strip_prefix("/api/admin/billing/plans/")?;
|
||||
let id = if let Some(suffix) = suffix {
|
||||
rest.strip_suffix(suffix)?.trim_end_matches('/')
|
||||
} else {
|
||||
rest
|
||||
};
|
||||
if id.is_empty() || id.contains('/') {
|
||||
None
|
||||
} else {
|
||||
Some(id.to_string())
|
||||
}
|
||||
}
|
||||
|
||||
pub(super) async fn maybe_build_local_admin_billing_plans_response(
|
||||
state: &AdminAppState<'_>,
|
||||
request_context: &AdminRequestContext<'_>,
|
||||
request_body: Option<&Bytes>,
|
||||
) -> Result<Option<Response<Body>>, GatewayError> {
|
||||
let path = request_context.path().trim_end_matches('/');
|
||||
match (request_context.method(), path) {
|
||||
(&http::Method::GET, "/api/admin/billing/plans") => {
|
||||
let items = state
|
||||
.app()
|
||||
.list_billing_plans(true)
|
||||
.await?
|
||||
.unwrap_or_default()
|
||||
.iter()
|
||||
.map(billing_plan_payload)
|
||||
.collect::<Vec<_>>();
|
||||
Ok(Some(
|
||||
Json(json!({"items": items, "total": items.len()})).into_response(),
|
||||
))
|
||||
}
|
||||
(&http::Method::POST, "/api/admin/billing/plans") => {
|
||||
let Some(body) = request_body else {
|
||||
return Ok(Some(build_admin_billing_bad_request_response("缺少请求体")));
|
||||
};
|
||||
let payload = match serde_json::from_slice::<BillingPlanRequest>(body) {
|
||||
Ok(value) => value,
|
||||
Err(_) => {
|
||||
return Ok(Some(build_admin_billing_bad_request_response(
|
||||
"输入验证失败",
|
||||
)))
|
||||
}
|
||||
};
|
||||
let input = match normalize_plan_input(payload) {
|
||||
Ok(value) => value,
|
||||
Err(detail) => return Ok(Some(build_admin_billing_bad_request_response(detail))),
|
||||
};
|
||||
match state.app().create_billing_plan(&input).await? {
|
||||
LocalMutationOutcome::Applied(record) => {
|
||||
Ok(Some(Json(billing_plan_payload(&record)).into_response()))
|
||||
}
|
||||
_ => Ok(Some(build_admin_billing_data_unavailable_response())),
|
||||
}
|
||||
}
|
||||
_ if request_context.method() == http::Method::PUT
|
||||
&& path.starts_with("/api/admin/billing/plans/") =>
|
||||
{
|
||||
let Some(plan_id) = plan_id_from_path(path, None) else {
|
||||
return Ok(None);
|
||||
};
|
||||
let Some(body) = request_body else {
|
||||
return Ok(Some(build_admin_billing_bad_request_response("缺少请求体")));
|
||||
};
|
||||
let payload = match serde_json::from_slice::<BillingPlanRequest>(body) {
|
||||
Ok(value) => value,
|
||||
Err(_) => {
|
||||
return Ok(Some(build_admin_billing_bad_request_response(
|
||||
"输入验证失败",
|
||||
)))
|
||||
}
|
||||
};
|
||||
let input = match normalize_plan_input(payload) {
|
||||
Ok(value) => value,
|
||||
Err(detail) => return Ok(Some(build_admin_billing_bad_request_response(detail))),
|
||||
};
|
||||
match state.app().update_billing_plan(&plan_id, &input).await? {
|
||||
LocalMutationOutcome::Applied(record) => {
|
||||
Ok(Some(Json(billing_plan_payload(&record)).into_response()))
|
||||
}
|
||||
LocalMutationOutcome::NotFound => Ok(Some(build_admin_billing_not_found_response(
|
||||
"Billing plan not found",
|
||||
))),
|
||||
_ => Ok(Some(build_admin_billing_data_unavailable_response())),
|
||||
}
|
||||
}
|
||||
_ if request_context.method() == http::Method::PATCH
|
||||
&& path.ends_with("/status")
|
||||
&& path.starts_with("/api/admin/billing/plans/") =>
|
||||
{
|
||||
let Some(plan_id) = plan_id_from_path(path, Some("/status")) else {
|
||||
return Ok(None);
|
||||
};
|
||||
let Some(body) = request_body else {
|
||||
return Ok(Some(build_admin_billing_bad_request_response("缺少请求体")));
|
||||
};
|
||||
let payload = match serde_json::from_slice::<BillingPlanStatusRequest>(body) {
|
||||
Ok(value) => value,
|
||||
Err(_) => {
|
||||
return Ok(Some(build_admin_billing_bad_request_response(
|
||||
"输入验证失败",
|
||||
)))
|
||||
}
|
||||
};
|
||||
match state
|
||||
.app()
|
||||
.set_billing_plan_enabled(&plan_id, payload.enabled)
|
||||
.await?
|
||||
{
|
||||
LocalMutationOutcome::Applied(record) => {
|
||||
Ok(Some(Json(billing_plan_payload(&record)).into_response()))
|
||||
}
|
||||
LocalMutationOutcome::NotFound => Ok(Some(build_admin_billing_not_found_response(
|
||||
"Billing plan not found",
|
||||
))),
|
||||
_ => Ok(Some(build_admin_billing_data_unavailable_response())),
|
||||
}
|
||||
}
|
||||
_ if request_context.method() == http::Method::DELETE
|
||||
&& path.starts_with("/api/admin/billing/plans/") =>
|
||||
{
|
||||
let Some(plan_id) = plan_id_from_path(path, None) else {
|
||||
return Ok(None);
|
||||
};
|
||||
match state.app().delete_billing_plan(&plan_id).await? {
|
||||
LocalMutationOutcome::Applied(()) => {
|
||||
Ok(Some(http::StatusCode::NO_CONTENT.into_response()))
|
||||
}
|
||||
LocalMutationOutcome::NotFound => Ok(Some(build_admin_billing_not_found_response(
|
||||
"Billing plan not found",
|
||||
))),
|
||||
LocalMutationOutcome::Invalid(detail) => {
|
||||
Ok(Some(build_admin_billing_conflict_response(detail)))
|
||||
}
|
||||
LocalMutationOutcome::Unavailable => {
|
||||
Ok(Some(build_admin_billing_data_unavailable_response()))
|
||||
}
|
||||
}
|
||||
}
|
||||
_ => Ok(None),
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
use super::super::shared::{
|
||||
admin_wallet_id_from_suffix_path, admin_wallet_operator_id,
|
||||
build_admin_wallet_not_found_response, build_admin_wallet_summary_payload,
|
||||
build_admin_wallet_not_found_response, build_admin_wallet_summary_payload_with_package,
|
||||
build_admin_wallet_transaction_payload, build_admin_wallets_bad_request_response,
|
||||
build_admin_wallets_data_unavailable_response, normalize_admin_wallet_balance_type,
|
||||
normalize_admin_wallet_description, normalize_admin_wallet_non_zero_amount,
|
||||
@@ -79,7 +79,8 @@ pub(in super::super) async fn build_admin_wallet_adjust_response(
|
||||
};
|
||||
};
|
||||
let owner = resolve_admin_wallet_owner_summary(state, &wallet).await?;
|
||||
let wallet_payload = build_admin_wallet_summary_payload(&wallet, &owner);
|
||||
let wallet_payload =
|
||||
build_admin_wallet_summary_payload_with_package(state, &wallet, &owner).await?;
|
||||
let transaction_payload = build_admin_wallet_transaction_payload(
|
||||
&wallet,
|
||||
&owner,
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
use super::super::shared::{
|
||||
admin_wallet_operator_id, admin_wallet_refund_ids_from_suffix_path,
|
||||
build_admin_wallet_not_found_response, build_admin_wallet_refund_not_found_response,
|
||||
build_admin_wallet_refund_payload, build_admin_wallet_summary_payload,
|
||||
build_admin_wallet_refund_payload, build_admin_wallet_summary_payload_with_package,
|
||||
build_admin_wallet_transaction_payload, build_admin_wallets_bad_request_response,
|
||||
build_admin_wallets_data_unavailable_response, normalize_admin_wallet_required_text,
|
||||
resolve_admin_wallet_owner_summary, AdminWalletRefundFailRequest,
|
||||
@@ -62,8 +62,10 @@ pub(in super::super) async fn build_admin_wallet_fail_refund_response(
|
||||
{
|
||||
crate::AdminWalletMutationOutcome::Applied((wallet, refund, transaction)) => {
|
||||
let owner = resolve_admin_wallet_owner_summary(state, &wallet).await?;
|
||||
let wallet_payload =
|
||||
build_admin_wallet_summary_payload_with_package(state, &wallet, &owner).await?;
|
||||
let response = Json(json!({
|
||||
"wallet": build_admin_wallet_summary_payload(&wallet, &owner),
|
||||
"wallet": wallet_payload,
|
||||
"refund": build_admin_wallet_refund_payload(&wallet, &owner, &refund),
|
||||
"transaction": transaction
|
||||
.map(|transaction| {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
use super::super::shared::{
|
||||
admin_wallet_operator_id, admin_wallet_refund_ids_from_suffix_path,
|
||||
build_admin_wallet_not_found_response, build_admin_wallet_refund_not_found_response,
|
||||
build_admin_wallet_refund_payload, build_admin_wallet_summary_payload,
|
||||
build_admin_wallet_refund_payload, build_admin_wallet_summary_payload_with_package,
|
||||
build_admin_wallet_transaction_payload, build_admin_wallets_bad_request_response,
|
||||
build_admin_wallets_data_unavailable_response, resolve_admin_wallet_owner_summary,
|
||||
ADMIN_WALLETS_API_KEY_REFUND_DETAIL,
|
||||
@@ -49,8 +49,10 @@ pub(in super::super) async fn build_admin_wallet_process_refund_response(
|
||||
{
|
||||
crate::AdminWalletMutationOutcome::Applied((wallet, refund, transaction)) => {
|
||||
let owner = resolve_admin_wallet_owner_summary(state, &wallet).await?;
|
||||
let wallet_payload =
|
||||
build_admin_wallet_summary_payload_with_package(state, &wallet, &owner).await?;
|
||||
let response = Json(json!({
|
||||
"wallet": build_admin_wallet_summary_payload(&wallet, &owner),
|
||||
"wallet": wallet_payload,
|
||||
"refund": build_admin_wallet_refund_payload(&wallet, &owner, &refund),
|
||||
"transaction": build_admin_wallet_transaction_payload(
|
||||
&wallet,
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
use super::super::shared::{
|
||||
admin_wallet_id_from_suffix_path, admin_wallet_operator_id,
|
||||
build_admin_wallet_not_found_response, build_admin_wallet_payment_order_payload,
|
||||
build_admin_wallet_summary_payload, build_admin_wallets_bad_request_response,
|
||||
build_admin_wallet_summary_payload_with_package, build_admin_wallets_bad_request_response,
|
||||
build_admin_wallets_data_unavailable_response, normalize_admin_wallet_description,
|
||||
normalize_admin_wallet_payment_method, normalize_admin_wallet_positive_amount,
|
||||
resolve_admin_wallet_owner_summary, AdminWalletRechargeRequest,
|
||||
@@ -79,8 +79,10 @@ pub(in super::super) async fn build_admin_wallet_recharge_response(
|
||||
};
|
||||
};
|
||||
let owner = resolve_admin_wallet_owner_summary(state, &wallet).await?;
|
||||
let wallet_payload =
|
||||
build_admin_wallet_summary_payload_with_package(state, &wallet, &owner).await?;
|
||||
let response = Json(json!({
|
||||
"wallet": build_admin_wallet_summary_payload(&wallet, &owner),
|
||||
"wallet": wallet_payload,
|
||||
"payment_order": build_admin_wallet_payment_order_payload(
|
||||
payment_order.id,
|
||||
payment_order.order_no,
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
use super::super::shared::{
|
||||
admin_wallet_id_from_detail_path, build_admin_wallet_not_found_response,
|
||||
build_admin_wallet_summary_payload, build_admin_wallets_bad_request_response,
|
||||
build_admin_wallet_summary_payload_with_package, build_admin_wallets_bad_request_response,
|
||||
resolve_admin_wallet_owner_summary,
|
||||
};
|
||||
use crate::handlers::admin::request::{AdminAppState, AdminRequestContext};
|
||||
@@ -29,7 +29,8 @@ pub(in super::super) async fn build_admin_wallet_detail_response(
|
||||
};
|
||||
|
||||
let owner = resolve_admin_wallet_owner_summary(state, &wallet).await?;
|
||||
let mut payload = build_admin_wallet_summary_payload(&wallet, &owner);
|
||||
let mut payload =
|
||||
build_admin_wallet_summary_payload_with_package(state, &wallet, &owner).await?;
|
||||
if let Some(object) = payload.as_object_mut() {
|
||||
object.insert("pending_refund_count".to_string(), serde_json::Value::Null);
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
use super::super::shared::{
|
||||
build_admin_wallets_bad_request_response, parse_admin_wallets_limit,
|
||||
parse_admin_wallets_offset, parse_admin_wallets_owner_type_filter,
|
||||
build_admin_wallets_bad_request_response, enrich_admin_wallet_package_summary,
|
||||
parse_admin_wallets_limit, parse_admin_wallets_offset, parse_admin_wallets_owner_type_filter,
|
||||
wallet_owner_summary_from_fields,
|
||||
};
|
||||
use crate::handlers::admin::request::{AdminAppState, AdminRequestContext};
|
||||
@@ -32,38 +32,48 @@ pub(in super::super) async fn build_admin_wallet_list_response(
|
||||
let (wallets, total) = state
|
||||
.list_admin_wallets(status.as_deref(), owner_type.as_deref(), limit, offset)
|
||||
.await?;
|
||||
let items = wallets
|
||||
.into_iter()
|
||||
.map(|wallet| {
|
||||
let owner = wallet_owner_summary_from_fields(
|
||||
wallet.user_id.as_deref(),
|
||||
wallet.user_name.clone(),
|
||||
wallet.api_key_id.as_deref(),
|
||||
wallet.api_key_name.clone(),
|
||||
);
|
||||
json!({
|
||||
"id": wallet.id,
|
||||
"user_id": wallet.user_id,
|
||||
"api_key_id": wallet.api_key_id,
|
||||
"owner_type": owner.owner_type,
|
||||
"owner_name": owner.owner_name,
|
||||
"balance": wallet.balance + wallet.gift_balance,
|
||||
"recharge_balance": wallet.balance,
|
||||
"gift_balance": wallet.gift_balance,
|
||||
"refundable_balance": wallet.balance,
|
||||
"currency": wallet.currency,
|
||||
"status": wallet.status,
|
||||
"limit_mode": wallet.limit_mode.clone(),
|
||||
"unlimited": wallet.limit_mode.eq_ignore_ascii_case("unlimited"),
|
||||
"total_recharged": wallet.total_recharged,
|
||||
"total_consumed": wallet.total_consumed,
|
||||
"total_refunded": wallet.total_refunded,
|
||||
"total_adjusted": wallet.total_adjusted,
|
||||
"created_at": wallet.created_at_unix_ms.and_then(unix_secs_to_rfc3339),
|
||||
"updated_at": wallet.updated_at_unix_secs.and_then(unix_secs_to_rfc3339),
|
||||
})
|
||||
})
|
||||
.collect::<Vec<_>>();
|
||||
let mut items = Vec::with_capacity(wallets.len());
|
||||
for wallet in wallets {
|
||||
let owner = wallet_owner_summary_from_fields(
|
||||
wallet.user_id.as_deref(),
|
||||
wallet.user_name.clone(),
|
||||
wallet.api_key_id.as_deref(),
|
||||
wallet.api_key_name.clone(),
|
||||
);
|
||||
let user_id = wallet.user_id.clone();
|
||||
let wallet_balance = wallet.balance + wallet.gift_balance;
|
||||
let unlimited = wallet.limit_mode.eq_ignore_ascii_case("unlimited");
|
||||
let mut payload = json!({
|
||||
"id": wallet.id,
|
||||
"user_id": wallet.user_id,
|
||||
"api_key_id": wallet.api_key_id,
|
||||
"owner_type": owner.owner_type,
|
||||
"owner_name": owner.owner_name,
|
||||
"balance": wallet_balance,
|
||||
"recharge_balance": wallet.balance,
|
||||
"gift_balance": wallet.gift_balance,
|
||||
"refundable_balance": wallet.balance,
|
||||
"currency": wallet.currency,
|
||||
"status": wallet.status,
|
||||
"limit_mode": wallet.limit_mode.clone(),
|
||||
"unlimited": unlimited,
|
||||
"total_recharged": wallet.total_recharged,
|
||||
"total_consumed": wallet.total_consumed,
|
||||
"total_refunded": wallet.total_refunded,
|
||||
"total_adjusted": wallet.total_adjusted,
|
||||
"created_at": wallet.created_at_unix_ms.and_then(unix_secs_to_rfc3339),
|
||||
"updated_at": wallet.updated_at_unix_secs.and_then(unix_secs_to_rfc3339),
|
||||
});
|
||||
enrich_admin_wallet_package_summary(
|
||||
state,
|
||||
&mut payload,
|
||||
user_id.as_deref(),
|
||||
wallet_balance,
|
||||
unlimited,
|
||||
)
|
||||
.await?;
|
||||
items.push(payload);
|
||||
}
|
||||
|
||||
Ok(Json(json!({
|
||||
"items": items,
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
use super::super::shared::{
|
||||
admin_wallet_id_from_suffix_path, build_admin_wallet_not_found_response,
|
||||
build_admin_wallet_refund_payload, build_admin_wallet_summary_payload,
|
||||
build_admin_wallet_refund_payload, build_admin_wallet_summary_payload_with_package,
|
||||
build_admin_wallets_bad_request_response, parse_admin_wallets_limit,
|
||||
parse_admin_wallets_offset, resolve_admin_wallet_owner_summary,
|
||||
ADMIN_WALLETS_API_KEY_REFUND_DETAIL,
|
||||
@@ -46,7 +46,8 @@ pub(in super::super) async fn build_admin_wallet_refunds_response(
|
||||
}
|
||||
|
||||
let owner = resolve_admin_wallet_owner_summary(state, &wallet).await?;
|
||||
let wallet_payload = build_admin_wallet_summary_payload(&wallet, &owner);
|
||||
let wallet_payload =
|
||||
build_admin_wallet_summary_payload_with_package(state, &wallet, &owner).await?;
|
||||
let (refunds, total) = state
|
||||
.list_admin_wallet_refunds(&wallet.id, limit, offset)
|
||||
.await?;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
use super::super::shared::{
|
||||
admin_wallet_id_from_suffix_path, build_admin_wallet_not_found_response,
|
||||
build_admin_wallet_summary_payload, build_admin_wallets_bad_request_response,
|
||||
build_admin_wallet_summary_payload_with_package, build_admin_wallets_bad_request_response,
|
||||
parse_admin_wallets_limit, parse_admin_wallets_offset, resolve_admin_wallet_owner_summary,
|
||||
};
|
||||
use crate::handlers::admin::request::{AdminAppState, AdminRequestContext};
|
||||
@@ -39,7 +39,8 @@ pub(in super::super) async fn build_admin_wallet_transactions_response(
|
||||
return Ok(build_admin_wallet_not_found_response());
|
||||
};
|
||||
let owner = resolve_admin_wallet_owner_summary(state, &wallet).await?;
|
||||
let wallet_payload = build_admin_wallet_summary_payload(&wallet, &owner);
|
||||
let wallet_payload =
|
||||
build_admin_wallet_summary_payload_with_package(state, &wallet, &owner).await?;
|
||||
|
||||
let (transactions, total) = state
|
||||
.list_admin_wallet_transactions(&wallet.id, limit, offset)
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
use crate::handlers::admin::request::AdminAppState;
|
||||
use crate::handlers::admin::shared::unix_secs_to_rfc3339;
|
||||
use crate::handlers::shared::round_to;
|
||||
use crate::GatewayError;
|
||||
use serde_json::json;
|
||||
|
||||
@@ -160,6 +161,79 @@ pub(in super::super) fn build_admin_wallet_summary_payload(
|
||||
})
|
||||
}
|
||||
|
||||
pub(in super::super) async fn build_admin_wallet_summary_payload_with_package(
|
||||
state: &AdminAppState<'_>,
|
||||
wallet: &aether_data::repository::wallet::StoredWalletSnapshot,
|
||||
owner: &AdminWalletOwnerSummary,
|
||||
) -> Result<serde_json::Value, GatewayError> {
|
||||
let mut payload = build_admin_wallet_summary_payload(wallet, owner);
|
||||
enrich_admin_wallet_package_summary(
|
||||
state,
|
||||
&mut payload,
|
||||
wallet.user_id.as_deref(),
|
||||
wallet.balance + wallet.gift_balance,
|
||||
wallet.limit_mode.eq_ignore_ascii_case("unlimited"),
|
||||
)
|
||||
.await?;
|
||||
Ok(payload)
|
||||
}
|
||||
|
||||
pub(in super::super) async fn enrich_admin_wallet_package_summary(
|
||||
state: &AdminAppState<'_>,
|
||||
payload: &mut serde_json::Value,
|
||||
user_id: Option<&str>,
|
||||
wallet_balance: f64,
|
||||
unlimited: bool,
|
||||
) -> Result<(), GatewayError> {
|
||||
let daily_quota = match user_id {
|
||||
Some(user_id) if !user_id.trim().is_empty() => {
|
||||
state
|
||||
.app()
|
||||
.find_user_daily_quota_availability(user_id)
|
||||
.await?
|
||||
}
|
||||
_ => None,
|
||||
};
|
||||
let (has_active_daily_quota, total_quota_usd, used_usd, remaining_usd, allow_wallet_overage) =
|
||||
daily_quota
|
||||
.map(|quota| {
|
||||
(
|
||||
quota.has_active_daily_quota,
|
||||
quota.total_quota_usd,
|
||||
quota.used_usd,
|
||||
quota.remaining_usd,
|
||||
quota.allow_wallet_overage,
|
||||
)
|
||||
})
|
||||
.unwrap_or((false, 0.0, 0.0, 0.0, false));
|
||||
let package_balance = if has_active_daily_quota {
|
||||
remaining_usd.max(0.0)
|
||||
} else {
|
||||
0.0
|
||||
};
|
||||
|
||||
payload["daily_quota"] = json!({
|
||||
"has_active": has_active_daily_quota,
|
||||
"total_usd": round_to(total_quota_usd.max(0.0), 6),
|
||||
"used_usd": round_to(used_usd.max(0.0), 6),
|
||||
"remaining_usd": round_to(package_balance, 6),
|
||||
"allow_wallet_overage": allow_wallet_overage,
|
||||
});
|
||||
payload["package_balance"] = json!(round_to(package_balance, 6));
|
||||
payload["wallet_balance"] = json!(round_to(wallet_balance.max(0.0), 6));
|
||||
payload["total_available_balance"] = if unlimited {
|
||||
serde_json::Value::Null
|
||||
} else {
|
||||
json!(round_to((wallet_balance + package_balance).max(0.0), 6))
|
||||
};
|
||||
payload["deduction_order"] = json!([
|
||||
"package_daily_quota",
|
||||
"wallet_recharge_balance",
|
||||
"wallet_gift_balance"
|
||||
]);
|
||||
Ok(())
|
||||
}
|
||||
|
||||
pub(in super::super) fn build_admin_wallet_refund_payload(
|
||||
wallet: &aether_data::repository::wallet::StoredWalletSnapshot,
|
||||
owner: &AdminWalletOwnerSummary,
|
||||
|
||||
347
apps/aether-gateway/src/handlers/admin/users/billing.rs
Normal file
347
apps/aether-gateway/src/handlers/admin/users/billing.rs
Normal file
@@ -0,0 +1,347 @@
|
||||
use super::{build_admin_users_bad_request_response, build_admin_users_data_unavailable_response};
|
||||
use crate::handlers::admin::request::{AdminAppState, AdminRequestContext};
|
||||
use crate::handlers::admin::shared::{attach_admin_audit_response, unix_secs_to_rfc3339};
|
||||
use crate::handlers::shared::unix_ms_to_rfc3339;
|
||||
use crate::GatewayError;
|
||||
use aether_data_contracts::repository::billing::{BillingPlanRecord, UserPlanEntitlementRecord};
|
||||
use axum::{
|
||||
body::{Body, Bytes},
|
||||
http,
|
||||
response::{IntoResponse, Response},
|
||||
Json,
|
||||
};
|
||||
use chrono::Utc;
|
||||
use serde::Deserialize;
|
||||
use serde_json::json;
|
||||
use std::collections::BTreeMap;
|
||||
use uuid::Uuid;
|
||||
|
||||
#[derive(Debug, Deserialize)]
|
||||
struct AdminGrantUserPlanRequest {
|
||||
plan_id: String,
|
||||
#[serde(default)]
|
||||
reason: Option<String>,
|
||||
}
|
||||
|
||||
fn admin_user_id_from_billing_path(request_path: &str, suffix: &str) -> Option<String> {
|
||||
let trimmed = request_path.trim_end_matches('/');
|
||||
let rest = trimmed.strip_prefix("/api/admin/users/")?;
|
||||
let user_id = rest.strip_suffix(suffix)?.trim_end_matches('/');
|
||||
if user_id.is_empty() || user_id.contains('/') {
|
||||
None
|
||||
} else {
|
||||
Some(user_id.to_string())
|
||||
}
|
||||
}
|
||||
|
||||
fn admin_user_billing_operator_id(request_context: &AdminRequestContext<'_>) -> Option<String> {
|
||||
request_context
|
||||
.decision()
|
||||
.and_then(|decision| decision.admin_principal.as_ref())
|
||||
.map(|principal| principal.user_id.clone())
|
||||
}
|
||||
|
||||
fn normalize_admin_grant_reason(value: Option<String>) -> Result<Option<String>, String> {
|
||||
let Some(value) = value else {
|
||||
return Ok(None);
|
||||
};
|
||||
let value = value.trim();
|
||||
if value.is_empty() {
|
||||
return Ok(None);
|
||||
}
|
||||
if value.chars().count() > 512 {
|
||||
return Err("reason exceeds maximum length 512".to_string());
|
||||
}
|
||||
Ok(Some(value.to_string()))
|
||||
}
|
||||
|
||||
fn admin_plan_grant_order_no(now: chrono::DateTime<Utc>) -> String {
|
||||
format!(
|
||||
"pg_{}_{}",
|
||||
now.format("%Y%m%d%H%M%S%6f"),
|
||||
&Uuid::new_v4().simple().to_string()[..12]
|
||||
)
|
||||
}
|
||||
|
||||
fn billing_plan_payload(record: &BillingPlanRecord) -> serde_json::Value {
|
||||
json!({
|
||||
"id": record.id,
|
||||
"title": record.title,
|
||||
"description": record.description,
|
||||
"price_amount": record.price_amount,
|
||||
"price_currency": record.price_currency,
|
||||
"duration_unit": record.duration_unit,
|
||||
"duration_value": record.duration_value,
|
||||
"enabled": record.enabled,
|
||||
"sort_order": record.sort_order,
|
||||
"max_active_per_user": record.max_active_per_user,
|
||||
"purchase_limit_scope": record.purchase_limit_scope,
|
||||
"entitlements": record.entitlements_json,
|
||||
"created_at": record.created_at_unix_secs,
|
||||
"updated_at": record.updated_at_unix_secs,
|
||||
})
|
||||
}
|
||||
|
||||
fn billing_plan_snapshot(record: &BillingPlanRecord) -> serde_json::Value {
|
||||
json!({
|
||||
"id": record.id,
|
||||
"title": record.title,
|
||||
"description": record.description,
|
||||
"price_amount": record.price_amount,
|
||||
"price_currency": record.price_currency,
|
||||
"duration_unit": record.duration_unit,
|
||||
"duration_value": record.duration_value,
|
||||
"max_active_per_user": record.max_active_per_user,
|
||||
"purchase_limit_scope": record.purchase_limit_scope,
|
||||
"entitlements": record.entitlements_json,
|
||||
})
|
||||
}
|
||||
|
||||
fn plan_has_package_rights(record: &BillingPlanRecord) -> bool {
|
||||
record.entitlements_json.as_array().is_some_and(|items| {
|
||||
items.iter().any(|item| {
|
||||
matches!(
|
||||
item.get("type").and_then(|value| value.as_str()),
|
||||
Some("daily_quota" | "membership_group")
|
||||
)
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
fn admin_payment_order_payload(record: &crate::AdminWalletPaymentOrderRecord) -> serde_json::Value {
|
||||
json!({
|
||||
"id": record.id,
|
||||
"order_no": record.order_no,
|
||||
"wallet_id": record.wallet_id,
|
||||
"user_id": record.user_id,
|
||||
"amount_usd": record.amount_usd,
|
||||
"pay_amount": record.pay_amount,
|
||||
"pay_currency": record.pay_currency,
|
||||
"exchange_rate": record.exchange_rate,
|
||||
"refunded_amount_usd": record.refunded_amount_usd,
|
||||
"refundable_amount_usd": record.refundable_amount_usd,
|
||||
"payment_method": record.payment_method,
|
||||
"gateway_order_id": record.gateway_order_id,
|
||||
"gateway_response": record.gateway_response,
|
||||
"status": record.status,
|
||||
"order_kind": "plan_purchase",
|
||||
"created_at": unix_ms_to_rfc3339(record.created_at_unix_ms),
|
||||
"paid_at": record.paid_at_unix_secs.and_then(unix_secs_to_rfc3339),
|
||||
"credited_at": record.credited_at_unix_secs.and_then(unix_secs_to_rfc3339),
|
||||
"expires_at": record.expires_at_unix_secs.and_then(unix_secs_to_rfc3339),
|
||||
})
|
||||
}
|
||||
|
||||
fn entitlement_payload(
|
||||
record: &UserPlanEntitlementRecord,
|
||||
plan: Option<&BillingPlanRecord>,
|
||||
now_unix_secs: u64,
|
||||
) -> serde_json::Value {
|
||||
json!({
|
||||
"id": record.id,
|
||||
"user_id": record.user_id,
|
||||
"plan_id": record.plan_id,
|
||||
"payment_order_id": record.payment_order_id,
|
||||
"status": record.status,
|
||||
"starts_at": unix_secs_to_rfc3339(record.starts_at_unix_secs),
|
||||
"expires_at": unix_secs_to_rfc3339(record.expires_at_unix_secs),
|
||||
"entitlements": record.entitlements_snapshot,
|
||||
"active": record.status == "active"
|
||||
&& record.starts_at_unix_secs <= now_unix_secs
|
||||
&& record.expires_at_unix_secs > now_unix_secs,
|
||||
"plan_title": plan.map(|plan| plan.title.clone()),
|
||||
"plan": plan.map(billing_plan_payload),
|
||||
"created_at": unix_secs_to_rfc3339(record.created_at_unix_secs),
|
||||
"updated_at": unix_secs_to_rfc3339(record.updated_at_unix_secs),
|
||||
})
|
||||
}
|
||||
|
||||
async fn load_admin_user_entitlements_payload(
|
||||
state: &AdminAppState<'_>,
|
||||
user_id: &str,
|
||||
) -> Result<Option<serde_json::Value>, GatewayError> {
|
||||
let entitlements = match state.app().list_user_plan_entitlements(user_id).await? {
|
||||
Some(value) => value,
|
||||
None => return Ok(None),
|
||||
};
|
||||
let plans = state
|
||||
.app()
|
||||
.list_billing_plans(true)
|
||||
.await?
|
||||
.unwrap_or_default()
|
||||
.into_iter()
|
||||
.map(|plan| (plan.id.clone(), plan))
|
||||
.collect::<BTreeMap<_, _>>();
|
||||
let now = Utc::now().timestamp().max(0) as u64;
|
||||
let items = entitlements
|
||||
.iter()
|
||||
.map(|record| entitlement_payload(record, plans.get(&record.plan_id), now))
|
||||
.collect::<Vec<_>>();
|
||||
Ok(Some(json!({"items": items, "total": items.len()})))
|
||||
}
|
||||
|
||||
pub(in super::super) async fn build_admin_list_user_billing_entitlements_response(
|
||||
state: &AdminAppState<'_>,
|
||||
request_context: &AdminRequestContext<'_>,
|
||||
) -> Result<Response<Body>, GatewayError> {
|
||||
let Some(user_id) =
|
||||
admin_user_id_from_billing_path(request_context.path(), "/billing/entitlements")
|
||||
else {
|
||||
return Ok(build_admin_users_bad_request_response("缺少 user_id"));
|
||||
};
|
||||
if state.find_user_auth_by_id(&user_id).await?.is_none() {
|
||||
return Ok((
|
||||
http::StatusCode::NOT_FOUND,
|
||||
Json(json!({ "detail": "用户不存在" })),
|
||||
)
|
||||
.into_response());
|
||||
}
|
||||
match load_admin_user_entitlements_payload(state, &user_id).await? {
|
||||
Some(payload) => Ok(Json(payload).into_response()),
|
||||
None => Ok(build_admin_users_data_unavailable_response()),
|
||||
}
|
||||
}
|
||||
|
||||
pub(in super::super) async fn build_admin_grant_user_billing_plan_response(
|
||||
state: &AdminAppState<'_>,
|
||||
request_context: &AdminRequestContext<'_>,
|
||||
request_body: Option<&Bytes>,
|
||||
) -> Result<Response<Body>, GatewayError> {
|
||||
let Some(user_id) =
|
||||
admin_user_id_from_billing_path(request_context.path(), "/billing/grant-plan")
|
||||
else {
|
||||
return Ok(build_admin_users_bad_request_response("缺少 user_id"));
|
||||
};
|
||||
if state.find_user_auth_by_id(&user_id).await?.is_none() {
|
||||
return Ok((
|
||||
http::StatusCode::NOT_FOUND,
|
||||
Json(json!({ "detail": "用户不存在" })),
|
||||
)
|
||||
.into_response());
|
||||
}
|
||||
let Some(body) = request_body else {
|
||||
return Ok(build_admin_users_bad_request_response("缺少请求体"));
|
||||
};
|
||||
let payload = match serde_json::from_slice::<AdminGrantUserPlanRequest>(body) {
|
||||
Ok(value) => value,
|
||||
Err(_) => return Ok(build_admin_users_bad_request_response("输入验证失败")),
|
||||
};
|
||||
let plan_id = payload.plan_id.trim();
|
||||
if plan_id.is_empty() {
|
||||
return Ok(build_admin_users_bad_request_response("plan_id 不能为空"));
|
||||
}
|
||||
let reason = match normalize_admin_grant_reason(payload.reason) {
|
||||
Ok(value) => value,
|
||||
Err(detail) => return Ok(build_admin_users_bad_request_response(detail)),
|
||||
};
|
||||
let Some(plan) = state.app().find_billing_plan(plan_id).await? else {
|
||||
return Ok((
|
||||
http::StatusCode::NOT_FOUND,
|
||||
Json(json!({ "detail": "套餐不存在" })),
|
||||
)
|
||||
.into_response());
|
||||
};
|
||||
if !plan_has_package_rights(&plan) {
|
||||
return Ok(build_admin_users_bad_request_response(
|
||||
"余额包已移除,请使用钱包充值功能",
|
||||
));
|
||||
}
|
||||
|
||||
let now = Utc::now();
|
||||
let order_no = admin_plan_grant_order_no(now);
|
||||
let operator_id = admin_user_billing_operator_id(request_context);
|
||||
let gateway_response = json!({
|
||||
"source": "admin_grant",
|
||||
"operator_id": operator_id.as_deref(),
|
||||
"reason": reason,
|
||||
"granted_at": now.to_rfc3339(),
|
||||
});
|
||||
let outcome = match state
|
||||
.app()
|
||||
.create_plan_purchase_order(
|
||||
aether_data::repository::wallet::CreatePlanPurchaseOrderInput {
|
||||
preferred_wallet_id: None,
|
||||
user_id: user_id.clone(),
|
||||
amount_usd: 0.0,
|
||||
pay_amount: 0.0,
|
||||
pay_currency: plan.price_currency.clone(),
|
||||
exchange_rate: 1.0,
|
||||
payment_method: "admin_grant".to_string(),
|
||||
payment_provider: Some("admin".to_string()),
|
||||
payment_channel: Some("manual".to_string()),
|
||||
gateway_order_id: order_no.clone(),
|
||||
gateway_response,
|
||||
order_no: order_no.clone(),
|
||||
product_id: plan.id.clone(),
|
||||
product_snapshot: billing_plan_snapshot(&plan),
|
||||
expires_at_unix_secs: (now + chrono::Duration::minutes(30)).timestamp().max(0)
|
||||
as u64,
|
||||
},
|
||||
)
|
||||
.await?
|
||||
{
|
||||
Some(value) => value,
|
||||
None => return Ok(build_admin_users_data_unavailable_response()),
|
||||
};
|
||||
let order = match outcome {
|
||||
aether_data::repository::wallet::CreatePlanPurchaseOrderOutcome::Created(order) => order,
|
||||
aether_data::repository::wallet::CreatePlanPurchaseOrderOutcome::WalletInactive => {
|
||||
return Ok(build_admin_users_bad_request_response(
|
||||
"wallet is not active",
|
||||
));
|
||||
}
|
||||
aether_data::repository::wallet::CreatePlanPurchaseOrderOutcome::ActivePlanLimitReached => {
|
||||
return Ok((
|
||||
http::StatusCode::CONFLICT,
|
||||
Json(json!({ "detail": "套餐购买限制已达到上限" })),
|
||||
)
|
||||
.into_response());
|
||||
}
|
||||
};
|
||||
|
||||
let credit_result = state
|
||||
.admin_credit_payment_order(
|
||||
&order.id,
|
||||
Some(&order_no),
|
||||
Some(0.0),
|
||||
Some(&plan.price_currency),
|
||||
Some(1.0),
|
||||
Some(json!({ "admin_grant": true })),
|
||||
operator_id.as_deref(),
|
||||
)
|
||||
.await?;
|
||||
let (credited_order, credited) = match credit_result {
|
||||
crate::AdminWalletMutationOutcome::Applied(value) => value,
|
||||
crate::AdminWalletMutationOutcome::NotFound => {
|
||||
return Ok(build_admin_users_data_unavailable_response());
|
||||
}
|
||||
crate::AdminWalletMutationOutcome::Invalid(detail) => {
|
||||
return Ok((
|
||||
http::StatusCode::CONFLICT,
|
||||
Json(json!({ "detail": detail })),
|
||||
)
|
||||
.into_response());
|
||||
}
|
||||
crate::AdminWalletMutationOutcome::Unavailable => {
|
||||
return Ok(build_admin_users_data_unavailable_response());
|
||||
}
|
||||
};
|
||||
let entitlements = match load_admin_user_entitlements_payload(state, &user_id).await? {
|
||||
Some(value) => value,
|
||||
None => return Ok(build_admin_users_data_unavailable_response()),
|
||||
};
|
||||
Ok(attach_admin_audit_response(
|
||||
Json(json!({
|
||||
"order": admin_payment_order_payload(&credited_order),
|
||||
"credited": credited,
|
||||
"items": entitlements["items"].clone(),
|
||||
"entitlements": entitlements["items"].clone(),
|
||||
"total": entitlements["total"].clone(),
|
||||
}))
|
||||
.into_response(),
|
||||
"admin_user_plan_granted",
|
||||
"grant_user_billing_plan",
|
||||
"user",
|
||||
&user_id,
|
||||
))
|
||||
}
|
||||
@@ -4,6 +4,7 @@ const ADMIN_USERS_DATA_UNAVAILABLE_DETAIL: &str = "Admin user management data un
|
||||
|
||||
mod api_keys;
|
||||
mod batch;
|
||||
mod billing;
|
||||
mod groups;
|
||||
mod lifecycle;
|
||||
mod route_seam;
|
||||
@@ -24,6 +25,10 @@ pub(crate) use self::api_keys::{
|
||||
use self::batch::{
|
||||
build_admin_resolve_user_selection_response, build_admin_user_batch_action_response,
|
||||
};
|
||||
use self::billing::{
|
||||
build_admin_grant_user_billing_plan_response,
|
||||
build_admin_list_user_billing_entitlements_response,
|
||||
};
|
||||
use self::groups::{
|
||||
build_admin_create_user_group_response, build_admin_delete_user_group_response,
|
||||
build_admin_list_user_group_members_response, build_admin_list_user_groups_response,
|
||||
|
||||
@@ -3,7 +3,8 @@ use super::{
|
||||
build_admin_create_user_response, build_admin_delete_user_api_key_response,
|
||||
build_admin_delete_user_group_response, build_admin_delete_user_response,
|
||||
build_admin_delete_user_session_response, build_admin_delete_user_sessions_response,
|
||||
build_admin_get_user_response, build_admin_list_user_api_keys_response,
|
||||
build_admin_get_user_response, build_admin_grant_user_billing_plan_response,
|
||||
build_admin_list_user_api_keys_response, build_admin_list_user_billing_entitlements_response,
|
||||
build_admin_list_user_group_members_response, build_admin_list_user_groups_response,
|
||||
build_admin_list_user_sessions_response, build_admin_list_users_response,
|
||||
build_admin_replace_user_group_members_response, build_admin_resolve_user_selection_response,
|
||||
@@ -49,6 +50,14 @@ fn is_admin_users_route(request_context: &AdminRequestContext<'_>) -> bool {
|
||||
| "/api/admin/users/batch-action"
|
||||
| "/api/admin/users/batch-action/"
|
||||
))
|
||||
|| (request_context.method() == http::Method::GET
|
||||
&& path.starts_with("/api/admin/users/")
|
||||
&& path.ends_with("/billing/entitlements")
|
||||
&& path.matches('/').count() == 6)
|
||||
|| (request_context.method() == http::Method::POST
|
||||
&& path.starts_with("/api/admin/users/")
|
||||
&& path.ends_with("/billing/grant-plan")
|
||||
&& path.matches('/').count() == 6)
|
||||
|| ((request_context.method() == http::Method::GET
|
||||
|| request_context.method() == http::Method::PUT
|
||||
|| request_context.method() == http::Method::DELETE)
|
||||
@@ -139,6 +148,13 @@ pub(super) async fn maybe_build_local_admin_users_routes_response(
|
||||
Some("batch_action_users") => Ok(Some(
|
||||
build_admin_user_batch_action_response(state, request_context, request_body).await?,
|
||||
)),
|
||||
Some("list_user_billing_entitlements") => Ok(Some(
|
||||
build_admin_list_user_billing_entitlements_response(state, request_context).await?,
|
||||
)),
|
||||
Some("grant_user_billing_plan") => Ok(Some(
|
||||
build_admin_grant_user_billing_plan_response(state, request_context, request_body)
|
||||
.await?,
|
||||
)),
|
||||
Some("get_user") => Ok(Some(
|
||||
build_admin_get_user_response(state, request_context).await?,
|
||||
)),
|
||||
|
||||
@@ -140,10 +140,10 @@ pub(super) fn build_admin_users_read_only_response(detail: &'static str) -> Resp
|
||||
.into_response()
|
||||
}
|
||||
|
||||
pub(super) fn build_admin_users_bad_request_response(detail: &'static str) -> Response<Body> {
|
||||
pub(super) fn build_admin_users_bad_request_response(detail: impl Into<String>) -> Response<Body> {
|
||||
(
|
||||
http::StatusCode::BAD_REQUEST,
|
||||
Json(json!({ "detail": detail })),
|
||||
Json(json!({ "detail": detail.into() })),
|
||||
)
|
||||
.into_response()
|
||||
}
|
||||
|
||||
@@ -26,6 +26,8 @@ use std::time::{SystemTime, UNIX_EPOCH};
|
||||
mod support_announcements;
|
||||
#[path = "support/auth.rs"]
|
||||
mod support_auth;
|
||||
#[path = "support/billing.rs"]
|
||||
mod support_billing;
|
||||
#[path = "support/dashboard.rs"]
|
||||
mod support_dashboard;
|
||||
#[path = "support/install.rs"]
|
||||
@@ -62,6 +64,7 @@ use self::support_auth::{
|
||||
build_auth_error_response, build_auth_json_response, build_auth_registration_settings_payload,
|
||||
build_auth_settings_payload, extract_client_device_id, maybe_build_local_auth_response,
|
||||
};
|
||||
use self::support_billing::maybe_build_local_billing_response;
|
||||
use self::support_dashboard::maybe_build_local_dashboard_response;
|
||||
use self::support_install::{
|
||||
handle_users_me_api_key_install_session_create, maybe_build_local_install_response,
|
||||
@@ -147,6 +150,15 @@ pub(crate) async fn maybe_build_local_public_support_response(
|
||||
return Some(build_unhandled_public_support_response(request_context));
|
||||
}
|
||||
|
||||
if decision.route_family.as_deref() == Some("billing") {
|
||||
if let Some(response) =
|
||||
maybe_build_local_billing_response(state, request_context, headers, request_body).await
|
||||
{
|
||||
return Some(response);
|
||||
}
|
||||
return Some(build_unhandled_public_support_response(request_context));
|
||||
}
|
||||
|
||||
if decision.route_family.as_deref() == Some("users_me") {
|
||||
return maybe_build_local_users_me_response(state, request_context, headers, request_body)
|
||||
.await;
|
||||
|
||||
451
apps/aether-gateway/src/handlers/public/support/billing.rs
Normal file
451
apps/aether-gateway/src/handlers/public/support/billing.rs
Normal file
@@ -0,0 +1,451 @@
|
||||
use super::support_payment::payment_epay::{
|
||||
build_epay_checkout_url, epay_callback_base_url, load_epay_config, resolve_epay_channel,
|
||||
EpayCheckoutInput,
|
||||
};
|
||||
use super::{
|
||||
build_auth_error_response, build_auth_json_response, resolve_authenticated_local_user,
|
||||
sanitize_wallet_gateway_response, unix_secs_to_rfc3339, AppState, GatewayPublicRequestContext,
|
||||
};
|
||||
use axum::{
|
||||
body::{Body, Bytes},
|
||||
http,
|
||||
response::{IntoResponse, Response},
|
||||
Json,
|
||||
};
|
||||
use chrono::Utc;
|
||||
use serde::Deserialize;
|
||||
use serde_json::json;
|
||||
use uuid::Uuid;
|
||||
|
||||
const BILLING_STORAGE_UNAVAILABLE_DETAIL: &str = "套餐后端暂不可用";
|
||||
|
||||
#[derive(Debug, Deserialize, Default)]
|
||||
struct BillingPlanCheckoutRequest {
|
||||
#[serde(default)]
|
||||
payment_method: Option<String>,
|
||||
#[serde(default)]
|
||||
payment_provider: Option<String>,
|
||||
#[serde(default)]
|
||||
payment_channel: Option<String>,
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
struct NormalizedBillingPlanCheckoutRequest {
|
||||
payment_method: String,
|
||||
payment_provider: String,
|
||||
payment_channel: Option<String>,
|
||||
}
|
||||
|
||||
fn billing_storage_unavailable_response() -> Response<Body> {
|
||||
build_auth_error_response(
|
||||
http::StatusCode::SERVICE_UNAVAILABLE,
|
||||
BILLING_STORAGE_UNAVAILABLE_DETAIL,
|
||||
false,
|
||||
)
|
||||
}
|
||||
|
||||
fn normalize_optional_checkout_string(value: Option<String>, max_len: usize) -> Option<String> {
|
||||
value
|
||||
.map(|value| value.trim().to_ascii_lowercase())
|
||||
.filter(|value| !value.is_empty() && value.chars().count() <= max_len)
|
||||
}
|
||||
|
||||
fn normalize_checkout_request(
|
||||
payload: BillingPlanCheckoutRequest,
|
||||
) -> Result<NormalizedBillingPlanCheckoutRequest, &'static str> {
|
||||
let payment_provider = normalize_optional_checkout_string(payload.payment_provider, 30)
|
||||
.or_else(|| normalize_optional_checkout_string(payload.payment_method.clone(), 30))
|
||||
.unwrap_or_else(|| "epay".to_string());
|
||||
if payment_provider != "epay" {
|
||||
return Err("unsupported payment_provider");
|
||||
}
|
||||
let payment_method = normalize_optional_checkout_string(payload.payment_method, 30)
|
||||
.unwrap_or_else(|| "epay".to_string());
|
||||
let payment_channel = normalize_optional_checkout_string(payload.payment_channel, 30)
|
||||
.or_else(|| (payment_method != "epay").then_some(payment_method.clone()));
|
||||
Ok(NormalizedBillingPlanCheckoutRequest {
|
||||
payment_method: "epay".to_string(),
|
||||
payment_provider,
|
||||
payment_channel,
|
||||
})
|
||||
}
|
||||
|
||||
fn plan_id_from_checkout_path(path: &str) -> Option<String> {
|
||||
let trimmed = path.trim_end_matches('/');
|
||||
let rest = trimmed.strip_prefix("/api/billing/plans/")?;
|
||||
let plan_id = rest.strip_suffix("/checkout")?.trim_matches('/');
|
||||
if plan_id.is_empty() || plan_id.contains('/') {
|
||||
None
|
||||
} else {
|
||||
Some(plan_id.to_string())
|
||||
}
|
||||
}
|
||||
|
||||
fn billing_order_no(now: chrono::DateTime<chrono::Utc>) -> String {
|
||||
format!(
|
||||
"pp_{}_{}",
|
||||
now.format("%Y%m%d%H%M%S%6f"),
|
||||
&Uuid::new_v4().simple().to_string()[..12]
|
||||
)
|
||||
}
|
||||
|
||||
fn billing_plan_payload(
|
||||
record: &aether_data_contracts::repository::billing::BillingPlanRecord,
|
||||
) -> serde_json::Value {
|
||||
json!({
|
||||
"id": record.id,
|
||||
"title": record.title,
|
||||
"description": record.description,
|
||||
"price_amount": record.price_amount,
|
||||
"price_currency": record.price_currency,
|
||||
"duration_unit": record.duration_unit,
|
||||
"duration_value": record.duration_value,
|
||||
"enabled": record.enabled,
|
||||
"sort_order": record.sort_order,
|
||||
"max_active_per_user": record.max_active_per_user,
|
||||
"purchase_limit_scope": record.purchase_limit_scope,
|
||||
"entitlements": record.entitlements_json,
|
||||
"created_at": record.created_at_unix_secs,
|
||||
"updated_at": record.updated_at_unix_secs,
|
||||
})
|
||||
}
|
||||
|
||||
fn billing_plan_snapshot(
|
||||
record: &aether_data_contracts::repository::billing::BillingPlanRecord,
|
||||
) -> serde_json::Value {
|
||||
json!({
|
||||
"id": record.id,
|
||||
"title": record.title,
|
||||
"description": record.description,
|
||||
"price_amount": record.price_amount,
|
||||
"price_currency": record.price_currency,
|
||||
"duration_unit": record.duration_unit,
|
||||
"duration_value": record.duration_value,
|
||||
"max_active_per_user": record.max_active_per_user,
|
||||
"purchase_limit_scope": record.purchase_limit_scope,
|
||||
"entitlements": record.entitlements_json,
|
||||
})
|
||||
}
|
||||
|
||||
fn plan_has_package_rights(
|
||||
record: &aether_data_contracts::repository::billing::BillingPlanRecord,
|
||||
) -> bool {
|
||||
record.entitlements_json.as_array().is_some_and(|items| {
|
||||
items.iter().any(|item| {
|
||||
matches!(
|
||||
item.get("type").and_then(|value| value.as_str()),
|
||||
Some("daily_quota" | "membership_group")
|
||||
)
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
fn payment_order_payload(
|
||||
record: &aether_data::repository::wallet::StoredAdminPaymentOrder,
|
||||
plan: &aether_data_contracts::repository::billing::BillingPlanRecord,
|
||||
) -> serde_json::Value {
|
||||
json!({
|
||||
"id": record.id,
|
||||
"order_no": record.order_no,
|
||||
"wallet_id": record.wallet_id,
|
||||
"user_id": record.user_id,
|
||||
"amount_usd": record.amount_usd,
|
||||
"pay_amount": record.pay_amount,
|
||||
"pay_currency": record.pay_currency,
|
||||
"exchange_rate": record.exchange_rate,
|
||||
"payment_method": record.payment_method,
|
||||
"gateway_order_id": record.gateway_order_id,
|
||||
"gateway_response": sanitize_wallet_gateway_response(record.gateway_response.clone()),
|
||||
"status": record.status,
|
||||
"order_kind": "plan_purchase",
|
||||
"product_id": plan.id,
|
||||
"product": billing_plan_payload(plan),
|
||||
"created_at": unix_secs_to_rfc3339(record.created_at_unix_ms),
|
||||
"paid_at": record.paid_at_unix_secs.and_then(unix_secs_to_rfc3339),
|
||||
"credited_at": record.credited_at_unix_secs.and_then(unix_secs_to_rfc3339),
|
||||
"expires_at": record.expires_at_unix_secs.and_then(unix_secs_to_rfc3339),
|
||||
})
|
||||
}
|
||||
|
||||
fn entitlement_payload(
|
||||
record: &aether_data_contracts::repository::billing::UserPlanEntitlementRecord,
|
||||
) -> serde_json::Value {
|
||||
json!({
|
||||
"id": record.id,
|
||||
"user_id": record.user_id,
|
||||
"plan_id": record.plan_id,
|
||||
"payment_order_id": record.payment_order_id,
|
||||
"status": record.status,
|
||||
"starts_at": unix_secs_to_rfc3339(record.starts_at_unix_secs),
|
||||
"expires_at": unix_secs_to_rfc3339(record.expires_at_unix_secs),
|
||||
"entitlements": record.entitlements_snapshot,
|
||||
"created_at": unix_secs_to_rfc3339(record.created_at_unix_secs),
|
||||
"updated_at": unix_secs_to_rfc3339(record.updated_at_unix_secs),
|
||||
})
|
||||
}
|
||||
|
||||
fn compute_plan_payment_amounts(
|
||||
plan: &aether_data_contracts::repository::billing::BillingPlanRecord,
|
||||
pay_currency: &str,
|
||||
usd_exchange_rate: f64,
|
||||
) -> Result<(f64, f64), &'static str> {
|
||||
if !plan.price_amount.is_finite() || plan.price_amount <= 0.0 || usd_exchange_rate <= 0.0 {
|
||||
return Err("套餐价格配置无效");
|
||||
}
|
||||
if plan.price_currency.eq_ignore_ascii_case(pay_currency) {
|
||||
let amount_usd =
|
||||
(plan.price_amount / usd_exchange_rate * 100_000_000.0).round() / 100_000_000.0;
|
||||
let pay_amount = (plan.price_amount * 100.0).round() / 100.0;
|
||||
return Ok((amount_usd, pay_amount));
|
||||
}
|
||||
if plan.price_currency.eq_ignore_ascii_case("USD") {
|
||||
let amount_usd = (plan.price_amount * 100_000_000.0).round() / 100_000_000.0;
|
||||
let pay_amount = (plan.price_amount * usd_exchange_rate * 100.0).round() / 100.0;
|
||||
return Ok((amount_usd, pay_amount));
|
||||
}
|
||||
Err("套餐币种与支付网关币种不匹配")
|
||||
}
|
||||
|
||||
pub(super) async fn handle_billing_plans_list(state: &AppState) -> Response<Body> {
|
||||
let plans = match state.list_billing_plans(false).await {
|
||||
Ok(Some(value)) => value,
|
||||
Ok(None) => return billing_storage_unavailable_response(),
|
||||
Err(err) => {
|
||||
return build_auth_error_response(
|
||||
http::StatusCode::INTERNAL_SERVER_ERROR,
|
||||
format!("billing plan lookup failed: {err:?}"),
|
||||
false,
|
||||
)
|
||||
}
|
||||
};
|
||||
let items = plans
|
||||
.iter()
|
||||
.filter(|plan| plan_has_package_rights(plan))
|
||||
.map(billing_plan_payload)
|
||||
.collect::<Vec<_>>();
|
||||
Json(json!({"items": items, "total": items.len()})).into_response()
|
||||
}
|
||||
|
||||
pub(super) async fn handle_billing_entitlements(
|
||||
state: &AppState,
|
||||
request_context: &GatewayPublicRequestContext,
|
||||
headers: &http::HeaderMap,
|
||||
) -> Response<Body> {
|
||||
let auth = match resolve_authenticated_local_user(state, request_context, headers).await {
|
||||
Ok(value) => value,
|
||||
Err(response) => return response,
|
||||
};
|
||||
let entitlements = match state.list_user_plan_entitlements(&auth.user.id).await {
|
||||
Ok(Some(value)) => value,
|
||||
Ok(None) => return billing_storage_unavailable_response(),
|
||||
Err(err) => {
|
||||
return build_auth_error_response(
|
||||
http::StatusCode::INTERNAL_SERVER_ERROR,
|
||||
format!("billing entitlement lookup failed: {err:?}"),
|
||||
false,
|
||||
)
|
||||
}
|
||||
};
|
||||
let now = Utc::now().timestamp().max(0) as u64;
|
||||
let items = entitlements
|
||||
.iter()
|
||||
.map(|record| {
|
||||
let mut payload = entitlement_payload(record);
|
||||
payload["active"] = json!(
|
||||
record.status == "active"
|
||||
&& record.starts_at_unix_secs <= now
|
||||
&& record.expires_at_unix_secs > now
|
||||
);
|
||||
payload
|
||||
})
|
||||
.collect::<Vec<_>>();
|
||||
Json(json!({"items": items, "total": items.len()})).into_response()
|
||||
}
|
||||
|
||||
pub(super) async fn handle_billing_plan_checkout(
|
||||
state: &AppState,
|
||||
request_context: &GatewayPublicRequestContext,
|
||||
headers: &http::HeaderMap,
|
||||
request_body: Option<&Bytes>,
|
||||
) -> Response<Body> {
|
||||
let auth = match resolve_authenticated_local_user(state, request_context, headers).await {
|
||||
Ok(value) => value,
|
||||
Err(response) => return response,
|
||||
};
|
||||
let Some(plan_id) = plan_id_from_checkout_path(&request_context.request_path) else {
|
||||
return build_auth_error_response(http::StatusCode::BAD_REQUEST, "缺少套餐ID", false);
|
||||
};
|
||||
let payload = match request_body {
|
||||
Some(body) if !body.is_empty() => {
|
||||
match serde_json::from_slice::<BillingPlanCheckoutRequest>(body) {
|
||||
Ok(value) => value,
|
||||
Err(_) => {
|
||||
return build_auth_error_response(
|
||||
http::StatusCode::BAD_REQUEST,
|
||||
"输入验证失败",
|
||||
false,
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
_ => BillingPlanCheckoutRequest::default(),
|
||||
};
|
||||
let checkout_request = match normalize_checkout_request(payload) {
|
||||
Ok(value) => value,
|
||||
Err(detail) => {
|
||||
return build_auth_error_response(http::StatusCode::BAD_REQUEST, detail, false)
|
||||
}
|
||||
};
|
||||
|
||||
let plan = match state.find_billing_plan(&plan_id).await {
|
||||
Ok(Some(value)) if value.enabled => value,
|
||||
Ok(Some(_)) => {
|
||||
return build_auth_error_response(http::StatusCode::BAD_REQUEST, "套餐已下架", false)
|
||||
}
|
||||
Ok(None) => {
|
||||
return build_auth_error_response(http::StatusCode::NOT_FOUND, "套餐不存在", false)
|
||||
}
|
||||
Err(err) => {
|
||||
return build_auth_error_response(
|
||||
http::StatusCode::INTERNAL_SERVER_ERROR,
|
||||
format!("billing plan lookup failed: {err:?}"),
|
||||
false,
|
||||
)
|
||||
}
|
||||
};
|
||||
if !plan_has_package_rights(&plan) {
|
||||
return build_auth_error_response(
|
||||
http::StatusCode::BAD_REQUEST,
|
||||
"余额包已移除,请使用钱包充值功能",
|
||||
false,
|
||||
);
|
||||
}
|
||||
let config = match load_epay_config(state).await {
|
||||
Ok(value) => value,
|
||||
Err(detail) => {
|
||||
return build_auth_error_response(http::StatusCode::BAD_REQUEST, detail, false)
|
||||
}
|
||||
};
|
||||
let payment_channel =
|
||||
match resolve_epay_channel(&config, checkout_request.payment_channel.as_deref()) {
|
||||
Ok(value) => value,
|
||||
Err(detail) => {
|
||||
return build_auth_error_response(http::StatusCode::BAD_REQUEST, detail, false);
|
||||
}
|
||||
};
|
||||
let (amount_usd, pay_amount) =
|
||||
match compute_plan_payment_amounts(&plan, &config.pay_currency, config.usd_exchange_rate) {
|
||||
Ok(value) => value,
|
||||
Err(detail) => {
|
||||
return build_auth_error_response(http::StatusCode::BAD_REQUEST, detail, false)
|
||||
}
|
||||
};
|
||||
let Some(callback_base_url) = epay_callback_base_url(
|
||||
config.callback_base_url.as_deref(),
|
||||
headers,
|
||||
request_context,
|
||||
) else {
|
||||
return build_auth_error_response(
|
||||
http::StatusCode::BAD_REQUEST,
|
||||
"epay callback_base_url is required",
|
||||
false,
|
||||
);
|
||||
};
|
||||
let now = Utc::now();
|
||||
let order_no = billing_order_no(now);
|
||||
let expires_at = now + chrono::Duration::minutes(30);
|
||||
let checkout = build_epay_checkout_url(
|
||||
&config,
|
||||
&EpayCheckoutInput {
|
||||
order_no: order_no.clone(),
|
||||
channel: payment_channel.clone(),
|
||||
subject: plan.title.clone(),
|
||||
pay_amount,
|
||||
notify_url: format!("{callback_base_url}/api/payment/epay/notify"),
|
||||
return_url: format!("{callback_base_url}/api/payment/epay/return"),
|
||||
},
|
||||
);
|
||||
let outcome = match state
|
||||
.create_plan_purchase_order(
|
||||
aether_data::repository::wallet::CreatePlanPurchaseOrderInput {
|
||||
preferred_wallet_id: None,
|
||||
user_id: auth.user.id.clone(),
|
||||
amount_usd,
|
||||
pay_amount,
|
||||
pay_currency: config.pay_currency.clone(),
|
||||
exchange_rate: config.usd_exchange_rate,
|
||||
payment_method: checkout_request.payment_method,
|
||||
payment_provider: Some(checkout_request.payment_provider),
|
||||
payment_channel: Some(payment_channel),
|
||||
gateway_order_id: order_no.clone(),
|
||||
gateway_response: checkout.clone(),
|
||||
order_no,
|
||||
product_id: plan.id.clone(),
|
||||
product_snapshot: billing_plan_snapshot(&plan),
|
||||
expires_at_unix_secs: expires_at.timestamp().max(0) as u64,
|
||||
},
|
||||
)
|
||||
.await
|
||||
{
|
||||
Ok(Some(value)) => value,
|
||||
Ok(None) => return billing_storage_unavailable_response(),
|
||||
Err(err) => {
|
||||
return build_auth_error_response(
|
||||
http::StatusCode::INTERNAL_SERVER_ERROR,
|
||||
format!("billing checkout create failed: {err:?}"),
|
||||
false,
|
||||
)
|
||||
}
|
||||
};
|
||||
let order = match outcome {
|
||||
aether_data::repository::wallet::CreatePlanPurchaseOrderOutcome::Created(order) => {
|
||||
payment_order_payload(&order, &plan)
|
||||
}
|
||||
aether_data::repository::wallet::CreatePlanPurchaseOrderOutcome::WalletInactive => {
|
||||
return build_auth_error_response(
|
||||
http::StatusCode::BAD_REQUEST,
|
||||
"wallet is not active",
|
||||
false,
|
||||
)
|
||||
}
|
||||
aether_data::repository::wallet::CreatePlanPurchaseOrderOutcome::ActivePlanLimitReached => {
|
||||
return build_auth_error_response(
|
||||
http::StatusCode::CONFLICT,
|
||||
"套餐购买限制已达到上限",
|
||||
false,
|
||||
)
|
||||
}
|
||||
};
|
||||
build_auth_json_response(
|
||||
http::StatusCode::OK,
|
||||
json!({
|
||||
"order": order,
|
||||
"payment_instructions": sanitize_wallet_gateway_response(Some(checkout)),
|
||||
}),
|
||||
None,
|
||||
)
|
||||
}
|
||||
|
||||
pub(super) async fn maybe_build_local_billing_response(
|
||||
state: &AppState,
|
||||
request_context: &GatewayPublicRequestContext,
|
||||
headers: &http::HeaderMap,
|
||||
request_body: Option<&Bytes>,
|
||||
) -> Option<Response<Body>> {
|
||||
let decision = request_context.control_decision.as_ref()?;
|
||||
if decision.route_family.as_deref() != Some("billing") {
|
||||
return None;
|
||||
}
|
||||
match decision.route_kind.as_deref() {
|
||||
Some("plans") if request_context.request_path == "/api/billing/plans" => {
|
||||
Some(handle_billing_plans_list(state).await)
|
||||
}
|
||||
Some("plan_checkout") => {
|
||||
Some(handle_billing_plan_checkout(state, request_context, headers, request_body).await)
|
||||
}
|
||||
Some("entitlements") if request_context.request_path == "/api/billing/entitlements" => {
|
||||
Some(handle_billing_entitlements(state, request_context, headers).await)
|
||||
}
|
||||
_ => None,
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,11 @@
|
||||
use axum::{body::Body, http, response::Response};
|
||||
|
||||
pub(super) use super::{build_auth_error_response, AppState, GatewayPublicRequestContext};
|
||||
pub(super) use super::{
|
||||
build_auth_error_response, build_auth_json_response, AppState, GatewayPublicRequestContext,
|
||||
};
|
||||
|
||||
#[path = "payment/epay.rs"]
|
||||
pub(super) mod payment_epay;
|
||||
#[path = "payment/gateway.rs"]
|
||||
pub(super) mod payment_gateway;
|
||||
#[path = "payment/repository.rs"]
|
||||
|
||||
528
apps/aether-gateway/src/handlers/public/support/payment/epay.rs
Normal file
528
apps/aether-gateway/src/handlers/public/support/payment/epay.rs
Normal file
@@ -0,0 +1,528 @@
|
||||
use std::collections::BTreeMap;
|
||||
|
||||
use axum::{body::Body, http, response::Response};
|
||||
use md5::{Digest, Md5};
|
||||
use serde_json::json;
|
||||
|
||||
use super::{payment_shared::payment_callback_payload_hash, AppState, GatewayPublicRequestContext};
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
pub(crate) struct EpayMerchantConfig {
|
||||
pub(crate) endpoint_url: String,
|
||||
pub(crate) callback_base_url: Option<String>,
|
||||
pub(crate) merchant_id: String,
|
||||
pub(crate) merchant_key: String,
|
||||
pub(crate) pay_currency: String,
|
||||
pub(crate) usd_exchange_rate: f64,
|
||||
pub(crate) min_recharge_usd: f64,
|
||||
pub(crate) channels: serde_json::Value,
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||
pub(crate) struct EpayChannelConfig {
|
||||
pub(crate) channel: String,
|
||||
pub(crate) display_name: String,
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
pub(crate) struct EpayCheckoutInput {
|
||||
pub(crate) order_no: String,
|
||||
pub(crate) channel: String,
|
||||
pub(crate) subject: String,
|
||||
pub(crate) pay_amount: f64,
|
||||
pub(crate) notify_url: String,
|
||||
pub(crate) return_url: String,
|
||||
}
|
||||
|
||||
pub(crate) fn configured_epay_channels(config: &EpayMerchantConfig) -> Vec<EpayChannelConfig> {
|
||||
let Some(channels) = config.channels.as_array() else {
|
||||
return Vec::new();
|
||||
};
|
||||
channels
|
||||
.iter()
|
||||
.filter_map(|channel| {
|
||||
let channel_id = channel
|
||||
.get("channel")
|
||||
.or_else(|| channel.get("type"))
|
||||
.and_then(|value| value.as_str())
|
||||
.map(str::trim)
|
||||
.filter(|value| !value.is_empty())?;
|
||||
let display_name = channel
|
||||
.get("display_name")
|
||||
.and_then(|value| value.as_str())
|
||||
.map(str::trim)
|
||||
.filter(|value| !value.is_empty())
|
||||
.unwrap_or(channel_id)
|
||||
.to_string();
|
||||
Some(EpayChannelConfig {
|
||||
channel: channel_id.to_string(),
|
||||
display_name,
|
||||
})
|
||||
})
|
||||
.collect()
|
||||
}
|
||||
|
||||
pub(crate) fn resolve_epay_channel(
|
||||
config: &EpayMerchantConfig,
|
||||
requested_channel: Option<&str>,
|
||||
) -> Result<String, &'static str> {
|
||||
let channels = configured_epay_channels(config);
|
||||
if channels.is_empty() {
|
||||
return Err("支付网关未配置可用通道");
|
||||
}
|
||||
let requested_channel = requested_channel
|
||||
.map(|value| value.trim().to_ascii_lowercase())
|
||||
.filter(|value| !value.is_empty());
|
||||
if let Some(requested_channel) = requested_channel {
|
||||
if let Some(channel) = channels
|
||||
.iter()
|
||||
.find(|channel| channel.channel.eq_ignore_ascii_case(&requested_channel))
|
||||
{
|
||||
return Ok(channel.channel.clone());
|
||||
}
|
||||
return Err("支付通道未配置或已停用");
|
||||
}
|
||||
Ok(channels[0].channel.clone())
|
||||
}
|
||||
|
||||
pub(crate) fn epay_sign(params: &BTreeMap<String, String>, merchant_key: &str) -> String {
|
||||
let canonical = params
|
||||
.iter()
|
||||
.filter(|(key, value)| {
|
||||
key.as_str() != "sign" && key.as_str() != "sign_type" && !value.trim().is_empty()
|
||||
})
|
||||
.map(|(key, value)| format!("{key}={value}"))
|
||||
.collect::<Vec<_>>()
|
||||
.join("&");
|
||||
let mut hasher = Md5::new();
|
||||
hasher.update(canonical.as_bytes());
|
||||
hasher.update(merchant_key.as_bytes());
|
||||
format!("{:x}", hasher.finalize())
|
||||
}
|
||||
|
||||
pub(crate) fn epay_signature_valid(params: &BTreeMap<String, String>, merchant_key: &str) -> bool {
|
||||
let Some(sign) = params.get("sign") else {
|
||||
return false;
|
||||
};
|
||||
epay_sign(params, merchant_key).eq_ignore_ascii_case(sign.trim())
|
||||
}
|
||||
|
||||
fn epay_submit_url(endpoint_url: &str) -> String {
|
||||
let trimmed = endpoint_url.trim();
|
||||
if trimmed.is_empty() {
|
||||
return trimmed.to_string();
|
||||
}
|
||||
let Ok(mut url) = url::Url::parse(trimmed) else {
|
||||
return trimmed.trim_end_matches('/').to_string();
|
||||
};
|
||||
let path = url.path();
|
||||
if path.is_empty() || path == "/" {
|
||||
url.set_path("submit.php");
|
||||
}
|
||||
url.to_string()
|
||||
}
|
||||
|
||||
fn normalize_epay_base_url(value: &str) -> Option<String> {
|
||||
let trimmed = value.trim().trim_end_matches('/');
|
||||
let parsed = url::Url::parse(trimmed).ok()?;
|
||||
if !matches!(parsed.scheme(), "http" | "https") || parsed.host_str().is_none() {
|
||||
return None;
|
||||
}
|
||||
Some(trimmed.to_string())
|
||||
}
|
||||
|
||||
fn forwarded_header_first(value: String) -> Option<String> {
|
||||
value
|
||||
.split(',')
|
||||
.next()
|
||||
.map(str::trim)
|
||||
.filter(|value| !value.is_empty())
|
||||
.map(ToOwned::to_owned)
|
||||
}
|
||||
|
||||
pub(crate) fn epay_callback_base_url(
|
||||
configured: Option<&str>,
|
||||
headers: &http::HeaderMap,
|
||||
request_context: &GatewayPublicRequestContext,
|
||||
) -> Option<String> {
|
||||
if let Some(value) = configured.and_then(normalize_epay_base_url) {
|
||||
return Some(value);
|
||||
}
|
||||
|
||||
if let Some(value) = std::env::var("AETHER_PUBLIC_BASE_URL")
|
||||
.ok()
|
||||
.or_else(|| std::env::var("PUBLIC_BASE_URL").ok())
|
||||
.and_then(|value| normalize_epay_base_url(&value))
|
||||
{
|
||||
return Some(value);
|
||||
}
|
||||
|
||||
let host = crate::headers::header_value_str(headers, crate::constants::FORWARDED_HOST_HEADER)
|
||||
.and_then(forwarded_header_first)
|
||||
.or_else(|| request_context.host_header.clone())
|
||||
.map(|value| value.trim().trim_end_matches('/').to_string())
|
||||
.filter(|value| {
|
||||
!value.is_empty()
|
||||
&& !value.contains('/')
|
||||
&& !value.contains('\\')
|
||||
&& !value.contains('@')
|
||||
&& !value.contains(char::is_whitespace)
|
||||
})?;
|
||||
let proto = crate::headers::header_value_str(headers, crate::constants::FORWARDED_PROTO_HEADER)
|
||||
.and_then(forwarded_header_first)
|
||||
.map(|value| value.trim().trim_end_matches(':').to_ascii_lowercase())
|
||||
.filter(|value| value == "http" || value == "https")
|
||||
.unwrap_or_else(|| "http".to_string());
|
||||
normalize_epay_base_url(&format!("{proto}://{host}"))
|
||||
}
|
||||
|
||||
pub(crate) fn build_epay_checkout_url(
|
||||
config: &EpayMerchantConfig,
|
||||
input: &EpayCheckoutInput,
|
||||
) -> serde_json::Value {
|
||||
let money = format!("{:.2}", input.pay_amount);
|
||||
let mut params = BTreeMap::new();
|
||||
params.insert("pid".to_string(), config.merchant_id.clone());
|
||||
params.insert("type".to_string(), input.channel.clone());
|
||||
params.insert("out_trade_no".to_string(), input.order_no.clone());
|
||||
params.insert("notify_url".to_string(), input.notify_url.clone());
|
||||
params.insert("return_url".to_string(), input.return_url.clone());
|
||||
params.insert("name".to_string(), input.subject.clone());
|
||||
params.insert("money".to_string(), money.clone());
|
||||
params.insert("sign_type".to_string(), "MD5".to_string());
|
||||
let sign = epay_sign(¶ms, &config.merchant_key);
|
||||
params.insert("sign".to_string(), sign);
|
||||
|
||||
let payment_url = epay_submit_url(&config.endpoint_url);
|
||||
let payment_params = params
|
||||
.iter()
|
||||
.map(|(key, value)| (key.clone(), serde_json::Value::String(value.clone())))
|
||||
.collect::<serde_json::Map<_, _>>();
|
||||
json!({
|
||||
"gateway": "epay",
|
||||
"display_name": "易支付",
|
||||
"gateway_order_id": input.order_no,
|
||||
"payment_url": payment_url,
|
||||
"submit_method": "POST",
|
||||
"payment_params": serde_json::Value::Object(payment_params),
|
||||
"qr_code": serde_json::Value::Null,
|
||||
"pay_amount": input.pay_amount,
|
||||
"pay_currency": config.pay_currency,
|
||||
"payment_channel": input.channel,
|
||||
})
|
||||
}
|
||||
|
||||
pub(crate) fn parse_epay_params(
|
||||
query: Option<&str>,
|
||||
body: Option<&axum::body::Bytes>,
|
||||
) -> BTreeMap<String, String> {
|
||||
let raw = body
|
||||
.filter(|bytes| !bytes.is_empty())
|
||||
.and_then(|bytes| std::str::from_utf8(bytes).ok())
|
||||
.or(query)
|
||||
.unwrap_or("");
|
||||
url::form_urlencoded::parse(raw.as_bytes())
|
||||
.map(|(key, value)| (key.into_owned(), value.into_owned()))
|
||||
.collect()
|
||||
}
|
||||
|
||||
pub(crate) async fn load_epay_config(state: &AppState) -> Result<EpayMerchantConfig, String> {
|
||||
let Some(record) = state
|
||||
.find_payment_gateway_config("epay")
|
||||
.await
|
||||
.map_err(|err| format!("epay config lookup failed: {err:?}"))?
|
||||
else {
|
||||
return Err("epay is not configured".to_string());
|
||||
};
|
||||
if !record.enabled {
|
||||
return Err("epay is disabled".to_string());
|
||||
}
|
||||
let Some(encrypted_key) = record.merchant_key_encrypted.as_deref() else {
|
||||
return Err("epay merchant key is missing".to_string());
|
||||
};
|
||||
let Some(merchant_key) = crate::handlers::shared::decrypt_catalog_secret_with_fallbacks(
|
||||
state.encryption_key(),
|
||||
encrypted_key,
|
||||
) else {
|
||||
return Err("epay merchant key decrypt failed".to_string());
|
||||
};
|
||||
Ok(EpayMerchantConfig {
|
||||
endpoint_url: record.endpoint_url,
|
||||
callback_base_url: record.callback_base_url,
|
||||
merchant_id: record.merchant_id,
|
||||
merchant_key,
|
||||
pay_currency: record.pay_currency,
|
||||
usd_exchange_rate: record.usd_exchange_rate,
|
||||
min_recharge_usd: record.min_recharge_usd,
|
||||
channels: record.channels_json,
|
||||
})
|
||||
}
|
||||
|
||||
fn epay_plain(status: http::StatusCode, body: &'static str) -> Response<Body> {
|
||||
Response::builder()
|
||||
.status(status)
|
||||
.header(http::header::CONTENT_TYPE, "text/plain; charset=utf-8")
|
||||
.body(Body::from(body))
|
||||
.expect("epay plain response should build")
|
||||
}
|
||||
|
||||
fn epay_redirect(location: String) -> Response<Body> {
|
||||
Response::builder()
|
||||
.status(http::StatusCode::FOUND)
|
||||
.header(http::header::LOCATION, location)
|
||||
.body(Body::empty())
|
||||
.expect("epay redirect response should build")
|
||||
}
|
||||
|
||||
fn epay_return_location(params: &BTreeMap<String, String>, signature_valid: bool) -> String {
|
||||
let order_no = params.get("out_trade_no").map(String::as_str).unwrap_or("");
|
||||
let base = if order_no.starts_with("pp_") {
|
||||
"/dashboard/billing"
|
||||
} else {
|
||||
"/dashboard/wallet"
|
||||
};
|
||||
let payment_status = if signature_valid
|
||||
&& params.get("trade_status").map(String::as_str) == Some("TRADE_SUCCESS")
|
||||
{
|
||||
"success"
|
||||
} else {
|
||||
"pending"
|
||||
};
|
||||
let mut serializer = url::form_urlencoded::Serializer::new(String::new());
|
||||
serializer.append_pair("payment_provider", "epay");
|
||||
serializer.append_pair("payment_status", payment_status);
|
||||
if !order_no.is_empty() {
|
||||
serializer.append_pair("order_no", order_no);
|
||||
}
|
||||
if let Some(trade_no) = params
|
||||
.get("trade_no")
|
||||
.map(String::as_str)
|
||||
.filter(|value| !value.trim().is_empty())
|
||||
{
|
||||
serializer.append_pair("trade_no", trade_no);
|
||||
}
|
||||
format!("{base}?{}", serializer.finish())
|
||||
}
|
||||
|
||||
pub(super) async fn handle_epay_notify(
|
||||
state: &AppState,
|
||||
request_context: &GatewayPublicRequestContext,
|
||||
request_body: Option<&axum::body::Bytes>,
|
||||
) -> Response<Body> {
|
||||
let config = match load_epay_config(state).await {
|
||||
Ok(value) => value,
|
||||
Err(_) => return epay_plain(http::StatusCode::OK, "fail"),
|
||||
};
|
||||
let params = parse_epay_params(
|
||||
request_context.request_query_string.as_deref(),
|
||||
request_body,
|
||||
);
|
||||
if !epay_signature_valid(¶ms, &config.merchant_key) {
|
||||
return epay_plain(http::StatusCode::OK, "fail");
|
||||
}
|
||||
if params.get("trade_status").map(String::as_str) != Some("TRADE_SUCCESS") {
|
||||
return epay_plain(http::StatusCode::OK, "fail");
|
||||
}
|
||||
let Some(order_no) = params.get("out_trade_no").cloned() else {
|
||||
return epay_plain(http::StatusCode::OK, "fail");
|
||||
};
|
||||
let Some(pay_amount) = params
|
||||
.get("money")
|
||||
.and_then(|value| value.parse::<f64>().ok())
|
||||
else {
|
||||
return epay_plain(http::StatusCode::OK, "fail");
|
||||
};
|
||||
let channel = params
|
||||
.get("type")
|
||||
.map(|value| value.trim().to_ascii_lowercase())
|
||||
.filter(|value| !value.is_empty());
|
||||
let payload = serde_json::to_value(¶ms).unwrap_or_else(|_| json!({}));
|
||||
let payload_hash = match payment_callback_payload_hash(&payload) {
|
||||
Ok(value) => value,
|
||||
Err(_) => return epay_plain(http::StatusCode::OK, "fail"),
|
||||
};
|
||||
let callback_key = params
|
||||
.get("trade_no")
|
||||
.cloned()
|
||||
.unwrap_or_else(|| format!("epay:{order_no}:{payload_hash}"));
|
||||
let amount_usd = if config.usd_exchange_rate > 0.0 {
|
||||
pay_amount / config.usd_exchange_rate
|
||||
} else {
|
||||
pay_amount
|
||||
};
|
||||
|
||||
let outcome = state
|
||||
.process_payment_callback(
|
||||
aether_data::repository::wallet::ProcessPaymentCallbackInput {
|
||||
payment_method: "epay".to_string(),
|
||||
payment_provider: Some("epay".to_string()),
|
||||
payment_channel: channel,
|
||||
callback_key,
|
||||
order_no: Some(order_no),
|
||||
gateway_order_id: params.get("trade_no").cloned(),
|
||||
amount_usd,
|
||||
pay_amount: Some(pay_amount),
|
||||
pay_currency: Some(config.pay_currency),
|
||||
exchange_rate: Some(config.usd_exchange_rate),
|
||||
payload_hash,
|
||||
payload,
|
||||
signature_valid: true,
|
||||
},
|
||||
)
|
||||
.await;
|
||||
|
||||
match outcome {
|
||||
Ok(Some(aether_data::repository::wallet::ProcessPaymentCallbackOutcome::Applied {
|
||||
..
|
||||
}))
|
||||
| Ok(Some(
|
||||
aether_data::repository::wallet::ProcessPaymentCallbackOutcome::AlreadyCredited {
|
||||
..
|
||||
},
|
||||
))
|
||||
| Ok(Some(
|
||||
aether_data::repository::wallet::ProcessPaymentCallbackOutcome::DuplicateProcessed {
|
||||
..
|
||||
},
|
||||
)) => epay_plain(http::StatusCode::OK, "success"),
|
||||
_ => epay_plain(http::StatusCode::OK, "fail"),
|
||||
}
|
||||
}
|
||||
|
||||
pub(super) async fn handle_epay_return(
|
||||
state: &AppState,
|
||||
request_context: &GatewayPublicRequestContext,
|
||||
request_body: Option<&axum::body::Bytes>,
|
||||
) -> Response<Body> {
|
||||
let params = parse_epay_params(
|
||||
request_context.request_query_string.as_deref(),
|
||||
request_body,
|
||||
);
|
||||
let signature_valid = load_epay_config(state)
|
||||
.await
|
||||
.ok()
|
||||
.is_some_and(|config| epay_signature_valid(¶ms, &config.merchant_key));
|
||||
epay_redirect(epay_return_location(¶ms, signature_valid))
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::{
|
||||
build_epay_checkout_url, configured_epay_channels, epay_sign, epay_signature_valid,
|
||||
resolve_epay_channel, EpayCheckoutInput, EpayMerchantConfig,
|
||||
};
|
||||
use chrono::Utc;
|
||||
use serde_json::json;
|
||||
use std::collections::BTreeMap;
|
||||
|
||||
#[test]
|
||||
fn epay_sign_excludes_sign_type_sign_and_empty_values() {
|
||||
let mut params = BTreeMap::new();
|
||||
params.insert("pid".to_string(), "1001".to_string());
|
||||
params.insert("out_trade_no".to_string(), "po_1".to_string());
|
||||
params.insert("money".to_string(), "10.00".to_string());
|
||||
params.insert("empty".to_string(), "".to_string());
|
||||
params.insert("sign_type".to_string(), "MD5".to_string());
|
||||
let sign = epay_sign(¶ms, "secret");
|
||||
params.insert("sign".to_string(), sign.clone());
|
||||
assert!(epay_signature_valid(¶ms, "secret"));
|
||||
assert!(!epay_signature_valid(¶ms, "wrong"));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn configured_epay_channels_do_not_invent_defaults() {
|
||||
let mut config = test_epay_config(json!([
|
||||
{"channel": " Alipay ", "display_name": "支付宝"},
|
||||
{"type": "wxpay", "display_name": ""},
|
||||
{"display_name": "缺少通道值"}
|
||||
]));
|
||||
|
||||
let channels = configured_epay_channels(&config);
|
||||
assert_eq!(channels.len(), 2);
|
||||
assert_eq!(channels[0].channel, "Alipay");
|
||||
assert_eq!(channels[0].display_name, "支付宝");
|
||||
assert_eq!(channels[1].channel, "wxpay");
|
||||
assert_eq!(channels[1].display_name, "wxpay");
|
||||
assert_eq!(
|
||||
resolve_epay_channel(&config, None),
|
||||
Ok("Alipay".to_string())
|
||||
);
|
||||
assert_eq!(
|
||||
resolve_epay_channel(&config, Some("WXPAY")),
|
||||
Ok("wxpay".to_string())
|
||||
);
|
||||
assert_eq!(
|
||||
resolve_epay_channel(&config, Some("manual")),
|
||||
Err("支付通道未配置或已停用")
|
||||
);
|
||||
|
||||
config.channels = json!([]);
|
||||
assert!(configured_epay_channels(&config).is_empty());
|
||||
assert_eq!(
|
||||
resolve_epay_channel(&config, None),
|
||||
Err("支付网关未配置可用通道")
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn epay_checkout_uses_post_form_payload_and_submit_endpoint() {
|
||||
let mut config = test_epay_config(json!([]));
|
||||
config.endpoint_url = "https://pay.example.com/".to_string();
|
||||
|
||||
let checkout = build_epay_checkout_url(
|
||||
&config,
|
||||
&EpayCheckoutInput {
|
||||
order_no: "po_test".to_string(),
|
||||
channel: "alipay".to_string(),
|
||||
subject: "钱包充值".to_string(),
|
||||
pay_amount: 10.0,
|
||||
notify_url: "https://aether.example.com/api/payment/epay/notify".to_string(),
|
||||
return_url: "https://aether.example.com/api/payment/epay/return".to_string(),
|
||||
},
|
||||
);
|
||||
|
||||
assert_eq!(
|
||||
checkout["payment_url"],
|
||||
"https://pay.example.com/submit.php"
|
||||
);
|
||||
assert_eq!(checkout["submit_method"], "POST");
|
||||
assert_eq!(checkout["payment_params"]["pid"], "1000");
|
||||
assert_eq!(checkout["payment_params"]["type"], "alipay");
|
||||
assert_eq!(checkout["payment_params"]["out_trade_no"], "po_test");
|
||||
assert_eq!(checkout["payment_params"]["money"], "10.00");
|
||||
assert_eq!(checkout["payment_params"]["sign_type"], "MD5");
|
||||
assert!(checkout["payment_params"]["sign"]
|
||||
.as_str()
|
||||
.is_some_and(|value| !value.is_empty()));
|
||||
|
||||
config.endpoint_url = "https://pay.example.com/submit.php".to_string();
|
||||
let checkout = build_epay_checkout_url(
|
||||
&config,
|
||||
&EpayCheckoutInput {
|
||||
order_no: format!("po_{}", Utc::now().timestamp()),
|
||||
channel: "wxpay".to_string(),
|
||||
subject: "钱包充值".to_string(),
|
||||
pay_amount: 1.0,
|
||||
notify_url: "https://aether.example.com/api/payment/epay/notify".to_string(),
|
||||
return_url: "https://aether.example.com/api/payment/epay/return".to_string(),
|
||||
},
|
||||
);
|
||||
assert_eq!(
|
||||
checkout["payment_url"],
|
||||
"https://pay.example.com/submit.php"
|
||||
);
|
||||
}
|
||||
|
||||
fn test_epay_config(channels: serde_json::Value) -> EpayMerchantConfig {
|
||||
EpayMerchantConfig {
|
||||
endpoint_url: "https://pay.example.com/submit.php".to_string(),
|
||||
callback_base_url: Some("https://aether.example.com".to_string()),
|
||||
merchant_id: "1000".to_string(),
|
||||
merchant_key: "secret".to_string(),
|
||||
pay_currency: "CNY".to_string(),
|
||||
usd_exchange_rate: 7.2,
|
||||
min_recharge_usd: 1.0,
|
||||
channels,
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -32,6 +32,8 @@ pub(super) async fn handle_payment_callback_with_wallet_repository(
|
||||
.process_payment_callback(
|
||||
aether_data::repository::wallet::ProcessPaymentCallbackInput {
|
||||
payment_method: payment_method.to_string(),
|
||||
payment_provider: None,
|
||||
payment_channel: None,
|
||||
callback_key: payload.callback_key.clone(),
|
||||
order_no: payload.order_no.clone(),
|
||||
gateway_order_id: payload.gateway_order_id.clone(),
|
||||
|
||||
@@ -7,7 +7,8 @@ use super::payment_shared::{
|
||||
};
|
||||
use super::{
|
||||
build_auth_error_response, build_payment_callback_storage_unavailable_response,
|
||||
handle_payment_callback_with_wallet_repository, AppState, GatewayPublicRequestContext,
|
||||
handle_payment_callback_with_wallet_repository, payment_epay, AppState,
|
||||
GatewayPublicRequestContext,
|
||||
};
|
||||
|
||||
pub(super) async fn maybe_build_local_payment_callback_route_response(
|
||||
@@ -17,9 +18,19 @@ pub(super) async fn maybe_build_local_payment_callback_route_response(
|
||||
request_body: Option<&axum::body::Bytes>,
|
||||
) -> Option<Response<Body>> {
|
||||
let decision = request_context.control_decision.as_ref()?;
|
||||
if decision.route_family.as_deref() != Some("payment_callback")
|
||||
|| decision.route_kind.as_deref() != Some("callback")
|
||||
{
|
||||
if decision.route_family.as_deref() != Some("payment_callback") {
|
||||
return None;
|
||||
}
|
||||
|
||||
if decision.route_kind.as_deref() == Some("epay_notify") {
|
||||
return Some(payment_epay::handle_epay_notify(state, request_context, request_body).await);
|
||||
}
|
||||
|
||||
if decision.route_kind.as_deref() == Some("epay_return") {
|
||||
return Some(payment_epay::handle_epay_return(state, request_context, request_body).await);
|
||||
}
|
||||
|
||||
if decision.route_kind.as_deref() != Some("callback") {
|
||||
return None;
|
||||
}
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ use self::reads::{
|
||||
pub(crate) use self::recharge::sanitize_wallet_gateway_response;
|
||||
use self::recharge::{
|
||||
handle_wallet_create_recharge, handle_wallet_recharge_detail, handle_wallet_recharge_list,
|
||||
wallet_recharge_detail_path_matches,
|
||||
handle_wallet_recharge_options, wallet_recharge_detail_path_matches,
|
||||
};
|
||||
use self::redeem::handle_wallet_redeem;
|
||||
use self::refunds::{
|
||||
@@ -53,8 +53,13 @@ const WALLET_SAFE_GATEWAY_RESPONSE_KEYS: &[&str] = &[
|
||||
"display_name",
|
||||
"gateway_order_id",
|
||||
"payment_url",
|
||||
"payment_params",
|
||||
"submit_method",
|
||||
"qr_code",
|
||||
"expires_at",
|
||||
"pay_amount",
|
||||
"pay_currency",
|
||||
"payment_channel",
|
||||
"manual_credit",
|
||||
];
|
||||
|
||||
@@ -154,6 +159,12 @@ pub(super) async fn maybe_build_local_wallet_response(
|
||||
);
|
||||
}
|
||||
|
||||
if decision.route_kind.as_deref() == Some("recharge_options")
|
||||
&& request_context.request_path == "/api/wallet/recharge/options"
|
||||
{
|
||||
return Some(handle_wallet_recharge_options(state, request_context, headers).await);
|
||||
}
|
||||
|
||||
if decision.route_kind.as_deref() == Some("redeem")
|
||||
&& request_context.request_path == "/api/wallet/redeem"
|
||||
{
|
||||
|
||||
@@ -49,6 +49,64 @@ fn build_wallet_balance_payload(
|
||||
payload
|
||||
}
|
||||
|
||||
async fn build_wallet_balance_payload_for_user(
|
||||
state: &AppState,
|
||||
user_id: &str,
|
||||
wallet: Option<&aether_data::repository::wallet::StoredWalletSnapshot>,
|
||||
) -> serde_json::Value {
|
||||
let mut payload = build_wallet_balance_payload(wallet);
|
||||
let wallet_balance = wallet
|
||||
.map(|value| value.balance + value.gift_balance)
|
||||
.unwrap_or(0.0);
|
||||
let daily_quota = state
|
||||
.find_user_daily_quota_availability(user_id)
|
||||
.await
|
||||
.ok()
|
||||
.flatten();
|
||||
let (has_active_daily_quota, total_quota_usd, used_usd, remaining_usd, allow_wallet_overage) =
|
||||
daily_quota
|
||||
.map(|quota| {
|
||||
(
|
||||
quota.has_active_daily_quota,
|
||||
quota.total_quota_usd,
|
||||
quota.used_usd,
|
||||
quota.remaining_usd,
|
||||
quota.allow_wallet_overage,
|
||||
)
|
||||
})
|
||||
.unwrap_or((false, 0.0, 0.0, 0.0, false));
|
||||
let package_balance = if has_active_daily_quota {
|
||||
remaining_usd.max(0.0)
|
||||
} else {
|
||||
0.0
|
||||
};
|
||||
let unlimited = payload
|
||||
.get("unlimited")
|
||||
.and_then(serde_json::Value::as_bool)
|
||||
.unwrap_or(false);
|
||||
|
||||
payload["daily_quota"] = json!({
|
||||
"has_active": has_active_daily_quota,
|
||||
"total_usd": round_to(total_quota_usd.max(0.0), 6),
|
||||
"used_usd": round_to(used_usd.max(0.0), 6),
|
||||
"remaining_usd": round_to(package_balance, 6),
|
||||
"allow_wallet_overage": allow_wallet_overage,
|
||||
});
|
||||
payload["package_balance"] = json!(round_to(package_balance, 6));
|
||||
payload["wallet_balance"] = json!(round_to(wallet_balance.max(0.0), 6));
|
||||
payload["total_available_balance"] = if unlimited {
|
||||
serde_json::Value::Null
|
||||
} else {
|
||||
json!(round_to((wallet_balance + package_balance).max(0.0), 6))
|
||||
};
|
||||
payload["deduction_order"] = json!([
|
||||
"package_daily_quota",
|
||||
"wallet_recharge_balance",
|
||||
"wallet_gift_balance"
|
||||
]);
|
||||
payload
|
||||
}
|
||||
|
||||
pub(super) fn parse_wallet_limit(query: Option<&str>) -> Result<usize, String> {
|
||||
match query_param_value(query, "limit") {
|
||||
Some(value) => {
|
||||
@@ -173,7 +231,7 @@ pub(super) async fn handle_wallet_balance(
|
||||
.flatten();
|
||||
build_auth_json_response(
|
||||
http::StatusCode::OK,
|
||||
build_wallet_balance_payload(wallet.as_ref()),
|
||||
build_wallet_balance_payload_for_user(state, &auth.user.id, wallet.as_ref()).await,
|
||||
None,
|
||||
)
|
||||
}
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
use super::super::support_payment::payment_epay::{
|
||||
build_epay_checkout_url, configured_epay_channels, epay_callback_base_url, load_epay_config,
|
||||
resolve_epay_channel, EpayCheckoutInput,
|
||||
};
|
||||
use super::super::support_payment::payment_gateway::{
|
||||
CreateCheckoutSessionInput, PaymentGatewayRegistry,
|
||||
};
|
||||
@@ -23,6 +27,10 @@ struct WalletCreateRechargeRequest {
|
||||
amount_usd: f64,
|
||||
payment_method: String,
|
||||
#[serde(default)]
|
||||
payment_provider: Option<String>,
|
||||
#[serde(default)]
|
||||
payment_channel: Option<String>,
|
||||
#[serde(default)]
|
||||
pay_amount: Option<f64>,
|
||||
#[serde(default)]
|
||||
pay_currency: Option<String>,
|
||||
@@ -34,6 +42,8 @@ struct WalletCreateRechargeRequest {
|
||||
struct NormalizedWalletCreateRechargeRequest {
|
||||
amount_usd: f64,
|
||||
payment_method: String,
|
||||
payment_provider: Option<String>,
|
||||
payment_channel: Option<String>,
|
||||
pay_amount: Option<f64>,
|
||||
pay_currency: Option<String>,
|
||||
exchange_rate: Option<f64>,
|
||||
@@ -49,6 +59,10 @@ fn normalize_wallet_create_recharge_request(
|
||||
if payment_method.is_empty() || payment_method.chars().count() > 30 {
|
||||
return Err("输入验证失败");
|
||||
}
|
||||
let payment_provider = wallet_normalize_optional_string_field(payload.payment_provider, 30)?
|
||||
.map(|value| value.to_ascii_lowercase());
|
||||
let payment_channel = wallet_normalize_optional_string_field(payload.payment_channel, 30)?
|
||||
.map(|value| value.to_ascii_lowercase());
|
||||
if matches!(payload.pay_amount, Some(value) if !value.is_finite() || value <= 0.0) {
|
||||
return Err("输入验证失败");
|
||||
}
|
||||
@@ -63,6 +77,8 @@ fn normalize_wallet_create_recharge_request(
|
||||
Ok(NormalizedWalletCreateRechargeRequest {
|
||||
amount_usd: payload.amount_usd,
|
||||
payment_method,
|
||||
payment_provider,
|
||||
payment_channel,
|
||||
pay_amount: payload.pay_amount,
|
||||
pay_currency,
|
||||
exchange_rate: payload.exchange_rate,
|
||||
@@ -300,73 +316,137 @@ pub(super) async fn handle_wallet_create_recharge(
|
||||
let now = Utc::now();
|
||||
let order_no = wallet_build_order_no(now);
|
||||
let expires_at = now + chrono::Duration::minutes(30);
|
||||
let Some(adapter) = PaymentGatewayRegistry::get(&payload.payment_method) else {
|
||||
return build_auth_error_response(
|
||||
http::StatusCode::BAD_REQUEST,
|
||||
format!("unsupported payment_method: {}", payload.payment_method),
|
||||
false,
|
||||
);
|
||||
};
|
||||
let checkout = match adapter.create_checkout_session(&CreateCheckoutSessionInput {
|
||||
order_no: order_no.clone(),
|
||||
amount_usd: payload.amount_usd,
|
||||
expires_at,
|
||||
}) {
|
||||
Ok(value) => value,
|
||||
Err(detail) => {
|
||||
return build_auth_error_response(http::StatusCode::BAD_REQUEST, detail, false);
|
||||
}
|
||||
};
|
||||
let outcome = match state
|
||||
.create_wallet_recharge_order(
|
||||
aether_data::repository::wallet::CreateWalletRechargeOrderInput {
|
||||
preferred_wallet_id: wallet.as_ref().map(|value| value.id.clone()),
|
||||
user_id: auth.user.id.clone(),
|
||||
amount_usd: payload.amount_usd,
|
||||
pay_amount: payload.pay_amount,
|
||||
pay_currency: payload.pay_currency.clone(),
|
||||
exchange_rate: payload.exchange_rate,
|
||||
payment_method: payload.payment_method.clone(),
|
||||
gateway_order_id: checkout.gateway_order_id,
|
||||
gateway_response: checkout.gateway_response.clone(),
|
||||
order_no,
|
||||
expires_at_unix_secs: expires_at.timestamp().max(0) as u64,
|
||||
},
|
||||
)
|
||||
.await
|
||||
{
|
||||
Ok(Some(value)) => value,
|
||||
Ok(None) => return build_wallet_recharge_storage_unavailable_response(),
|
||||
Err(err) => {
|
||||
return build_auth_error_response(
|
||||
http::StatusCode::INTERNAL_SERVER_ERROR,
|
||||
format!("wallet recharge create failed: {err:?}"),
|
||||
false,
|
||||
)
|
||||
}
|
||||
};
|
||||
let order_payload = match outcome {
|
||||
aether_data::repository::wallet::CreateWalletRechargeOrderOutcome::Created(order) => {
|
||||
wallet_payment_order_payload_from_record(&order)
|
||||
}
|
||||
aether_data::repository::wallet::CreateWalletRechargeOrderOutcome::WalletInactive => {
|
||||
let uses_epay =
|
||||
payload.payment_provider.as_deref() == Some("epay") || payload.payment_method == "epay";
|
||||
if uses_epay {
|
||||
let config = match load_epay_config(state).await {
|
||||
Ok(value) => value,
|
||||
Err(detail) => {
|
||||
return build_auth_error_response(http::StatusCode::BAD_REQUEST, detail, false);
|
||||
}
|
||||
};
|
||||
if payload.amount_usd < config.min_recharge_usd {
|
||||
return build_auth_error_response(
|
||||
http::StatusCode::BAD_REQUEST,
|
||||
"wallet is not active",
|
||||
"充值金额低于支付网关最小金额",
|
||||
false,
|
||||
)
|
||||
);
|
||||
}
|
||||
};
|
||||
build_auth_json_response(
|
||||
http::StatusCode::OK,
|
||||
json!({
|
||||
"order": order_payload,
|
||||
"payment_instructions": sanitize_wallet_gateway_response(Some(checkout.gateway_response)),
|
||||
}),
|
||||
None,
|
||||
let requested_channel = payload.payment_channel.as_deref().or_else(|| {
|
||||
(payload.payment_method != "epay").then_some(payload.payment_method.as_str())
|
||||
});
|
||||
let payment_channel = match resolve_epay_channel(&config, requested_channel) {
|
||||
Ok(value) => value,
|
||||
Err(detail) => {
|
||||
return build_auth_error_response(http::StatusCode::BAD_REQUEST, detail, false);
|
||||
}
|
||||
};
|
||||
let pay_amount = (payload.amount_usd * config.usd_exchange_rate * 100.0).round() / 100.0;
|
||||
let Some(callback_base_url) = epay_callback_base_url(
|
||||
config.callback_base_url.as_deref(),
|
||||
headers,
|
||||
request_context,
|
||||
) else {
|
||||
return build_auth_error_response(
|
||||
http::StatusCode::BAD_REQUEST,
|
||||
"epay callback_base_url is required",
|
||||
false,
|
||||
);
|
||||
};
|
||||
let checkout = build_epay_checkout_url(
|
||||
&config,
|
||||
&EpayCheckoutInput {
|
||||
order_no: order_no.clone(),
|
||||
channel: payment_channel.clone(),
|
||||
subject: "钱包充值".to_string(),
|
||||
pay_amount,
|
||||
notify_url: format!("{callback_base_url}/api/payment/epay/notify"),
|
||||
return_url: format!("{callback_base_url}/api/payment/epay/return"),
|
||||
},
|
||||
);
|
||||
let outcome = match state
|
||||
.create_wallet_recharge_order(
|
||||
aether_data::repository::wallet::CreateWalletRechargeOrderInput {
|
||||
preferred_wallet_id: wallet.as_ref().map(|value| value.id.clone()),
|
||||
user_id: auth.user.id.clone(),
|
||||
amount_usd: payload.amount_usd,
|
||||
pay_amount: Some(pay_amount),
|
||||
pay_currency: Some(config.pay_currency.clone()),
|
||||
exchange_rate: Some(config.usd_exchange_rate),
|
||||
payment_method: "epay".to_string(),
|
||||
payment_provider: Some("epay".to_string()),
|
||||
payment_channel: Some(payment_channel),
|
||||
gateway_order_id: order_no.clone(),
|
||||
gateway_response: checkout.clone(),
|
||||
order_no,
|
||||
expires_at_unix_secs: expires_at.timestamp().max(0) as u64,
|
||||
},
|
||||
)
|
||||
.await
|
||||
{
|
||||
Ok(Some(value)) => value,
|
||||
Ok(None) => return build_wallet_recharge_storage_unavailable_response(),
|
||||
Err(err) => {
|
||||
return build_auth_error_response(
|
||||
http::StatusCode::INTERNAL_SERVER_ERROR,
|
||||
format!("wallet recharge create failed: {err:?}"),
|
||||
false,
|
||||
)
|
||||
}
|
||||
};
|
||||
let order_payload = match outcome {
|
||||
aether_data::repository::wallet::CreateWalletRechargeOrderOutcome::Created(order) => {
|
||||
wallet_payment_order_payload_from_record(&order)
|
||||
}
|
||||
aether_data::repository::wallet::CreateWalletRechargeOrderOutcome::WalletInactive => {
|
||||
return build_auth_error_response(
|
||||
http::StatusCode::BAD_REQUEST,
|
||||
"wallet is not active",
|
||||
false,
|
||||
)
|
||||
}
|
||||
};
|
||||
return build_auth_json_response(
|
||||
http::StatusCode::OK,
|
||||
json!({
|
||||
"order": order_payload,
|
||||
"payment_instructions": sanitize_wallet_gateway_response(Some(checkout)),
|
||||
}),
|
||||
None,
|
||||
);
|
||||
}
|
||||
build_auth_error_response(
|
||||
http::StatusCode::BAD_REQUEST,
|
||||
format!("unsupported payment_method: {}", payload.payment_method),
|
||||
false,
|
||||
)
|
||||
}
|
||||
|
||||
pub(super) async fn handle_wallet_recharge_options(
|
||||
state: &AppState,
|
||||
request_context: &GatewayPublicRequestContext,
|
||||
headers: &http::HeaderMap,
|
||||
) -> Response<Body> {
|
||||
if let Err(response) = resolve_authenticated_local_user(state, request_context, headers).await {
|
||||
return response;
|
||||
}
|
||||
let mut methods = Vec::new();
|
||||
if let Ok(config) = load_epay_config(state).await {
|
||||
for channel in configured_epay_channels(&config) {
|
||||
methods.push(json!({
|
||||
"payment_method": "epay",
|
||||
"payment_provider": "epay",
|
||||
"payment_channel": channel.channel,
|
||||
"display_name": channel.display_name,
|
||||
"pay_currency": config.pay_currency,
|
||||
"usd_exchange_rate": config.usd_exchange_rate,
|
||||
"min_recharge_usd": config.min_recharge_usd,
|
||||
}));
|
||||
}
|
||||
}
|
||||
build_auth_json_response(http::StatusCode::OK, json!({ "items": methods }), None)
|
||||
}
|
||||
|
||||
pub(super) async fn handle_wallet_recharge_list(
|
||||
state: &AppState,
|
||||
request_context: &GatewayPublicRequestContext,
|
||||
|
||||
@@ -304,6 +304,10 @@ pub(crate) fn admin_proxy_local_requires_buffered_body(
|
||||
| (Some("billing_manage"), http::Method::PUT, Some("update_rule"))
|
||||
| (Some("billing_manage"), http::Method::POST, Some("create_collector"))
|
||||
| (Some("billing_manage"), http::Method::PUT, Some("update_collector"))
|
||||
| (Some("billing_manage"), http::Method::POST, Some("create_plan"))
|
||||
| (Some("billing_manage"), http::Method::PUT, Some("update_plan"))
|
||||
| (Some("billing_manage"), http::Method::PATCH, Some("set_plan_status"))
|
||||
| (Some("payments_manage"), http::Method::PUT, Some("update_epay_gateway"))
|
||||
| (Some("payments_manage"), http::Method::POST, Some("credit_order"))
|
||||
| (Some("payments_manage"), http::Method::POST, Some("create_redeem_code_batch"))
|
||||
| (Some("payments_manage"), http::Method::POST, Some("delete_redeem_code_batch"))
|
||||
@@ -324,6 +328,7 @@ pub(crate) fn admin_proxy_local_requires_buffered_body(
|
||||
| (Some("users_manage"), http::Method::POST, Some("create_user"))
|
||||
| (Some("users_manage"), http::Method::POST, Some("resolve_user_selection"))
|
||||
| (Some("users_manage"), http::Method::POST, Some("batch_action_users"))
|
||||
| (Some("users_manage"), http::Method::POST, Some("grant_user_billing_plan"))
|
||||
| (Some("users_manage"), http::Method::PUT, Some("update_user"))
|
||||
| (Some("users_manage"), http::Method::POST, Some("create_user_group"))
|
||||
| (Some("users_manage"), http::Method::PUT, Some("update_user_group"))
|
||||
@@ -459,11 +464,12 @@ pub(crate) fn public_support_local_requires_buffered_body(
|
||||
Some("wallet"),
|
||||
http::Method::POST,
|
||||
Some("create_refund" | "create_recharge_order" | "redeem"),
|
||||
) | (
|
||||
Some("payment_callback"),
|
||||
http::Method::POST,
|
||||
Some("callback"),
|
||||
)
|
||||
) | (Some("billing"), http::Method::POST, Some("plan_checkout"),)
|
||||
| (
|
||||
Some("payment_callback"),
|
||||
http::Method::POST,
|
||||
Some("callback" | "epay_notify" | "epay_return"),
|
||||
)
|
||||
)
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user