raisfast 0.2.23

The last backend you'll ever need. Rust-powered headless CMS with built-in blog, ecommerce, wallet, payment and 4 plugin engines.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
use axum::Json;
use axum::extract::{Path, Query, State};

use crate::dto;
use crate::errors::app_error::AppError;
use crate::errors::response::ApiResponse;
use crate::errors::validation;
use crate::middleware::auth::AuthUser;
use crate::models::wallet_transaction::{WalletReferenceType, WalletTxType};
use crate::types::snowflake_id::parse_id;
use crate::utils::pagination::PaginationParams;

pub fn routes(
    registry: &mut crate::server::RouteRegistry,
    config: &crate::config::app::AppConfig,
) -> axum::Router<crate::AppState> {
    let _restful = config.api_restful;
    let r = axum::Router::new();
    let r = reg_route!(
        r,
        registry,
        restful,
        "/wallets",
        get,
        list_wallets,
        "system authed",
        "wallet"
    );
    let r = reg_route!(
        r,
        registry,
        restful,
        "/wallets/{currency}",
        get,
        get_wallet,
        "system authed",
        "wallet"
    );
    let r = reg_route!(
        r,
        registry,
        restful,
        "/wallets/transactions",
        get,
        list_all_transactions,
        "system authed",
        "wallet"
    );
    let r = reg_route!(
        r,
        registry,
        restful,
        "/wallets/{currency}/transactions",
        get,
        list_transactions,
        "system authed",
        "wallet"
    );
    let r = reg_route!(
        r,
        registry,
        restful,
        "/admin/wallets",
        get,
        list_all_wallets,
        "system admin",
        "admin/wallet"
    );
    let r = reg_route!(
        r,
        registry,
        restful,
        "/admin/wallets/transactions",
        get,
        list_all_transactions_admin,
        "system admin",
        "admin/wallet"
    );
    let r = reg_route!(
        r,
        registry,
        restful,
        "/admin/wallets/credit",
        post,
        admin_credit,
        "system admin",
        "admin/wallet"
    );
    let r = reg_route!(
        r,
        registry,
        restful,
        "/admin/wallets/debit",
        post,
        admin_debit,
        "system admin",
        "admin/wallet"
    );
    let r = reg_route!(
        r,
        registry,
        restful,
        "/admin/wallets/{user_id}/transactions",
        get,
        list_user_all_transactions,
        "system admin",
        "admin/wallet"
    );
    let r = reg_route!(
        r,
        registry,
        restful,
        "/admin/wallets/{user_id}/{currency}/transactions",
        get,
        list_user_transactions,
        "system admin",
        "admin/wallet"
    );
    reg_route!(
        r,
        registry,
        restful,
        "/admin/wallets/{tx_id}/reversal",
        post,
        admin_reversal,
        "system admin",
        "admin/wallet"
    )
}

#[utoipa::path(get, path = "/wallets", tag = "wallets",
    security(("bearer_auth" = [])),
    responses((status = 200, description = "User wallets list"))
)]
pub async fn list_wallets(
    auth: AuthUser,
    State(state): State<crate::AppState>,
) -> Result<ApiResponse<Vec<dto::WalletResponse>>, AppError> {
    let user_id = auth.ensure_snowflake_user_id()?;
    let wallets = state
        .wallet_service
        .list_wallets_by_user(user_id, auth.tenant_id())
        .await?;
    let items: Vec<dto::WalletResponse> = wallets
        .into_iter()
        .map(dto::WalletResponse::from_wallet)
        .collect::<Result<_, _>>()?;
    Ok(ApiResponse::success(items))
}

#[utoipa::path(get, path = "/wallets/{currency}", tag = "wallets",
    security(("bearer_auth" = [])),
    params(("currency" = String, Path, description = "Currency code")),
    responses((status = 200, description = "Wallet detail"))
)]
pub async fn get_wallet(
    auth: AuthUser,
    State(state): State<crate::AppState>,
    Path(currency): Path<String>,
) -> Result<ApiResponse<dto::WalletResponse>, AppError> {
    let user_id = auth.ensure_snowflake_user_id()?;
    let w = state
        .wallet_service
        .get_wallet_by_currency(user_id, &currency, auth.tenant_id())
        .await?;
    Ok(ApiResponse::success(dto::WalletResponse::from_wallet(w)?))
}

#[utoipa::path(get, path = "/wallets/{currency}/transactions", tag = "wallets",
    security(("bearer_auth" = [])),
    params(("currency" = String, Path, description = "Currency code")),
    responses((status = 200, description = "Wallet transactions"))
)]
pub async fn list_transactions(
    auth: AuthUser,
    State(state): State<crate::AppState>,
    Path(currency): Path<String>,
    Query(params): Query<PaginationParams>,
) -> Result<
    ApiResponse<crate::errors::response::PaginatedData<dto::WalletTransactionResponse>>,
    AppError,
> {
    let user_id = auth.ensure_snowflake_user_id()?;
    let (rows, total) = state
        .wallet_service
        .list_transactions_by_wallet(
            user_id,
            &currency,
            params.page,
            params.page_size,
            auth.tenant_id(),
        )
        .await?;
    let items = state.wallet_service.tx_list_to_response(rows).await?;
    Ok(params.paginate(items, total))
}

#[utoipa::path(get, path = "/wallets/transactions", tag = "wallets",
    security(("bearer_auth" = [])),
    responses((status = 200, description = "All wallet transactions"))
)]
pub async fn list_all_transactions(
    auth: AuthUser,
    State(state): State<crate::AppState>,
    Query(params): Query<PaginationParams>,
) -> Result<
    ApiResponse<crate::errors::response::PaginatedData<dto::WalletTransactionResponse>>,
    AppError,
> {
    let user_id = auth.ensure_snowflake_user_id()?;
    let (rows, total) = state
        .wallet_service
        .list_transactions_by_user(user_id, params.page, params.page_size, auth.tenant_id())
        .await?;
    let items = state.wallet_service.tx_list_to_response(rows).await?;
    Ok(params.paginate(items, total))
}

#[utoipa::path(get, path = "/admin/wallets", tag = "wallets",
    security(("bearer_auth" = [])),
    responses((status = 200, description = "Admin wallets list"))
)]
pub async fn list_all_wallets(
    auth: AuthUser,
    State(state): State<crate::AppState>,
    Query(params): Query<PaginationParams>,
) -> Result<ApiResponse<crate::errors::response::PaginatedData<dto::WalletResponse>>, AppError> {
    auth.ensure_admin()?;
    let (rows, total) = state
        .wallet_service
        .list_all_wallets(params.page, params.page_size, auth.tenant_id())
        .await?;
    let items: Vec<dto::WalletResponse> = rows
        .into_iter()
        .map(dto::WalletResponse::from_wallet)
        .collect::<Result<_, _>>()?;
    Ok(params.paginate(items, total))
}

#[utoipa::path(get, path = "/admin/wallets/transactions", tag = "wallets",
    security(("bearer_auth" = [])),
    responses((status = 200, description = "Admin all transactions"))
)]
pub async fn list_all_transactions_admin(
    auth: AuthUser,
    State(state): State<crate::AppState>,
    Query(params): Query<PaginationParams>,
) -> Result<
    ApiResponse<crate::errors::response::PaginatedData<dto::WalletTransactionResponse>>,
    AppError,
> {
    auth.ensure_admin()?;
    let (rows, total) = state
        .wallet_service
        .list_all_transactions(params.page, params.page_size, auth.tenant_id())
        .await?;
    let items = state.wallet_service.tx_list_to_response(rows).await?;
    Ok(params.paginate(items, total))
}

#[utoipa::path(post, path = "/admin/wallets/credit", tag = "wallets",
    security(("bearer_auth" = [])),
    request_body = dto::AdminWalletOperationRequest,
    responses((status = 200, description = "Wallet credited"))
)]
pub async fn admin_credit(
    auth: AuthUser,
    State(state): State<crate::AppState>,
    Json(req): Json<dto::AdminWalletOperationRequest>,
) -> Result<ApiResponse<dto::WalletTransactionResponse>, AppError> {
    auth.ensure_admin()?;
    validation::validate(&req)?;
    let user_id = parse_id(&req.user_id)?;

    let tx = state
        .wallet_service
        .credit(
            user_id,
            &req.currency,
            req.amount,
            WalletTxType::Recharge,
            &req.transaction_no,
            req.reference_type.or(Some(WalletReferenceType::Admin)),
            req.reference_id.as_deref(),
            req.metadata.as_deref(),
        )
        .await?;

    let resp = state.wallet_service.tx_to_response(tx).await?;
    Ok(ApiResponse::success(resp))
}

#[utoipa::path(post, path = "/admin/wallets/debit", tag = "wallets",
    security(("bearer_auth" = [])),
    request_body = dto::AdminWalletOperationRequest,
    responses((status = 200, description = "Wallet debited"))
)]
pub async fn admin_debit(
    auth: AuthUser,
    State(state): State<crate::AppState>,
    Json(req): Json<dto::AdminWalletOperationRequest>,
) -> Result<ApiResponse<dto::WalletTransactionResponse>, AppError> {
    auth.ensure_admin()?;
    validation::validate(&req)?;
    let user_id = parse_id(&req.user_id)?;

    let tx = state
        .wallet_service
        .debit(
            user_id,
            &req.currency,
            req.amount,
            WalletTxType::Payment,
            &req.transaction_no,
            req.reference_type.or(Some(WalletReferenceType::Admin)),
            req.reference_id.as_deref(),
            req.metadata.as_deref(),
        )
        .await?;

    let resp = state.wallet_service.tx_to_response(tx).await?;
    Ok(ApiResponse::success(resp))
}

#[utoipa::path(get, path = "/admin/wallets/{user_id}/{currency}/transactions", tag = "wallets",
    security(("bearer_auth" = [])),
    params(("user_id" = String, Path, description = "User ID"), ("currency" = String, Path, description = "Currency code")),
    responses((status = 200, description = "User wallet transactions"))
)]
pub async fn list_user_transactions(
    auth: AuthUser,
    State(state): State<crate::AppState>,
    Path((user_id, currency)): Path<(String, String)>,
    Query(params): Query<PaginationParams>,
) -> Result<
    ApiResponse<crate::errors::response::PaginatedData<dto::WalletTransactionResponse>>,
    AppError,
> {
    auth.ensure_admin()?;
    let user_id = parse_id(&user_id)?;
    let (rows, total) = state
        .wallet_service
        .list_transactions_by_wallet(
            user_id,
            &currency,
            params.page,
            params.page_size,
            auth.tenant_id(),
        )
        .await?;

    let items = state.wallet_service.tx_list_to_response(rows).await?;
    Ok(params.paginate(items, total))
}

#[utoipa::path(get, path = "/admin/wallets/{user_id}/transactions", tag = "wallets",
    security(("bearer_auth" = [])),
    params(("user_id" = String, Path, description = "User ID")),
    responses((status = 200, description = "User all transactions"))
)]
pub async fn list_user_all_transactions(
    auth: AuthUser,
    State(state): State<crate::AppState>,
    Path(user_id): Path<String>,
    Query(params): Query<PaginationParams>,
) -> Result<
    ApiResponse<crate::errors::response::PaginatedData<dto::WalletTransactionResponse>>,
    AppError,
> {
    auth.ensure_admin()?;
    let user_id = parse_id(&user_id)?;
    let (rows, total) = state
        .wallet_service
        .list_transactions_by_user(user_id, params.page, params.page_size, auth.tenant_id())
        .await?;

    let items = state.wallet_service.tx_list_to_response(rows).await?;
    Ok(params.paginate(items, total))
}

#[utoipa::path(post, path = "/admin/wallets/{tx_id}/reversal", tag = "wallets",
    security(("bearer_auth" = [])),
    params(("tx_id" = String, Path, description = "Transaction ID")),
    request_body = dto::ReversalRequest,
    responses((status = 200, description = "Transaction reversed"))
)]
pub async fn admin_reversal(
    auth: AuthUser,
    State(state): State<crate::AppState>,
    Path(tx_id): Path<String>,
    Json(req): Json<dto::ReversalRequest>,
) -> Result<ApiResponse<dto::WalletTransactionResponse>, AppError> {
    auth.ensure_admin()?;
    validation::validate(&req)?;

    let original = state
        .wallet_service
        .find_tx_by_id(&tx_id, auth.tenant_id())
        .await?;

    let tx = state
        .wallet_service
        .reverse_transaction(original.id, &req.transaction_no)
        .await?;

    let resp = state.wallet_service.tx_to_response(tx).await?;
    Ok(ApiResponse::success(resp))
}