ave-http 0.10.0

HTTP API server for the Ave runtime, auth system, and admin surface
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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
// Ave HTTP Auth System - Admin Endpoint Handlers
//
// REST API endpoints for user, role, permission, and API key management

use super::database::{AuthDatabase, DatabaseError};
use super::http_api::{DatabaseErrorMapping, run_db as shared_run_db};
use super::middleware::{AuthContextExtractor, check_permission};
use super::models::*;
use axum::{
    Extension, Json,
    extract::{Path, Query},
    http::StatusCode,
};
use serde::{Deserialize, Serialize};
use std::sync::Arc;
use utoipa::ToSchema;

// =============================================================================
// ERROR HANDLING
// =============================================================================

async fn run_db<T, F>(
    db: &Arc<AuthDatabase>,
    operation: &'static str,
    work: F,
) -> Result<T, (StatusCode, Json<ErrorResponse>)>
where
    T: Send + 'static,
    F: FnOnce(AuthDatabase) -> Result<T, DatabaseError> + Send + 'static,
{
    shared_run_db(db, operation, DatabaseErrorMapping::admin(), work).await
}

/// Check if a user has the superadmin role
fn is_superadmin_user(
    db: &AuthDatabase,
    user: &User,
) -> Result<bool, DatabaseError> {
    let roles = db.get_user_roles(user.id)?;
    Ok(roles.iter().any(|r| r == "superadmin"))
}

/// Get superadmin role ID from database
fn get_superadmin_role_id(
    db: &AuthDatabase,
) -> Result<Option<i64>, DatabaseError> {
    let conn = db.lock_conn()?;
    match AuthDatabase::get_role_by_name_internal(&conn, "superadmin") {
        Ok(role) => Ok(Some(role.id)),
        Err(DatabaseError::NotFound(_)) => Ok(None),
        Err(err) => Err(err),
    }
}

/// Validate superadmin role assignment
/// Returns Ok(()) if assignment is allowed, Err otherwise
fn validate_superadmin_assignment(
    db: &AuthDatabase,
    auth_ctx: &AuthContext,
    target_user_id: i64,
) -> Result<(), DatabaseError> {
    // Only superadmin can assign superadmin role
    if !auth_ctx.is_superadmin() {
        return Err(DatabaseError::PermissionDenied(
            "Only superadmin can assign superadmin role".to_string(),
        ));
    }

    // Get target user to check if already superadmin
    let target_user = db.get_user_by_id(target_user_id)?;
    let is_target_already_superadmin = is_superadmin_user(db, &target_user)?;

    if !is_target_already_superadmin {
        // Trying to make someone else superadmin - verify only one exists
        let existing_superadmin_count = db.count_superadmins()?;

        if existing_superadmin_count > 0 {
            return Err(DatabaseError::Duplicate(
                "A superadmin already exists. Only one superadmin is allowed"
                    .to_string(),
            ));
        }
    }

    Ok(())
}

/// Validate superadmin role removal
/// Returns Ok(()) if removal is allowed, Err otherwise
fn validate_superadmin_removal(
    db: &AuthDatabase,
    auth_ctx: &AuthContext,
    target_user_id: i64,
) -> Result<(), DatabaseError> {
    // Only superadmin can remove superadmin role
    if !auth_ctx.is_superadmin() {
        return Err(DatabaseError::PermissionDenied(
            "Only superadmin can remove superadmin role".to_string(),
        ));
    }

    // Get target user
    let target_user = db.get_user_by_id(target_user_id)?;

    // Check if target is superadmin
    if is_superadmin_user(db, &target_user)? {
        // Cannot remove superadmin role from the only superadmin
        let superadmin_count = db.count_superadmins()?;

        if superadmin_count <= 1 {
            return Err(DatabaseError::PermissionDenied(
                "Cannot remove superadmin role from the only superadmin. System must have at least one superadmin".to_string(),
            ));
        }
    }

    Ok(())
}

/// Determine if a user has admin-level permissions (superadmin role or admin resources)
fn is_admin_account(
    db: &AuthDatabase,
    user: &User,
) -> Result<bool, DatabaseError> {
    // Check if user has superadmin role
    if is_superadmin_user(db, user)? {
        return Ok(true);
    }

    let admin_resources = [
        "admin_users",
        "admin_roles",
        "admin_api_key",
        "admin_system",
        "user_api_key",
        "node_maintenance",
    ];

    let effective_permissions = db.get_effective_permissions(user.id)?;

    Ok(effective_permissions.iter().any(|perm| {
        perm.allowed && admin_resources.contains(&perm.resource.as_str())
    }))
}

// =============================================================================
// USER MANAGEMENT ENDPOINTS
// =============================================================================

/// Create a new user
#[utoipa::path(
    post,
    path = "/admin/users",
    operation_id = "createUser",
    tag = "User Management",
    request_body = CreateUserRequest,
    responses(
        (status = 201, description = "User created successfully", body = UserInfo),
        (status = 400, description = "Invalid request or validation error", body = ErrorResponse),
        (status = 403, description = "Permission denied", body = ErrorResponse),
        (status = 409, description = "Username already exists", body = ErrorResponse),
    ),
    security(("api_key" = []))
)]
pub async fn create_user(
    AuthContextExtractor(auth_ctx): AuthContextExtractor,
    Extension(db): Extension<Arc<AuthDatabase>>,
    Json(req): Json<CreateUserRequest>,
) -> Result<(StatusCode, Json<UserInfo>), (StatusCode, Json<ErrorResponse>)> {
    // Check permission
    check_permission(&auth_ctx, "admin_users", "post")?;
    let audit_details = serde_json::json!({
        "username": req.username,
        "role_ids": req.role_ids,
        "must_change_password": req.must_change_password,
    })
    .to_string();
    let auth_ctx_for_db = auth_ctx.clone();
    let user_info = run_db(&db, "admin_create_user", move |db| {
        if let Some(ref role_ids) = req.role_ids {
            let superadmin_role_id = get_superadmin_role_id(&db)?;
            if let Some(sa_role_id) = superadmin_role_id
                && role_ids.contains(&sa_role_id)
            {
                if !auth_ctx_for_db.is_superadmin() {
                    return Err(DatabaseError::PermissionDenied(
                        "Only superadmin can assign superadmin role".to_string(),
                    ));
                }

                let existing_superadmin_count = db.count_superadmins()?;
                if existing_superadmin_count > 0 {
                    return Err(DatabaseError::Duplicate(
                        "A superadmin already exists. Only one superadmin is allowed".to_string(),
                    ));
                }
            }
        }

        let user = db.create_user_transactional(
            &req.username,
            &req.password,
            req.role_ids.clone(),
            Some(auth_ctx_for_db.user_id),
            req.must_change_password,
            Some(crate::auth::database_audit::AuditLogParams {
                user_id: Some(auth_ctx_for_db.user_id),
                api_key_id: Some(&auth_ctx_for_db.api_key_id),
                action_type: "user_created",
                endpoint: Some("/admin/users"),
                http_method: Some("POST"),
                ip_address: auth_ctx_for_db.ip_address.as_deref(),
                user_agent: None,
                request_id: None,
                details: Some(&audit_details),
                success: true,
                error_message: None,
            }),
        )?;
        let roles = db.get_user_roles(user.id)?;

        Ok(UserInfo {
            id: user.id,
            username: user.username,
            is_active: user.is_active,
            must_change_password: user.must_change_password,
            failed_login_attempts: user.failed_login_attempts,
            locked_until: user.locked_until,
            last_login_at: user.last_login_at,
            created_at: user.created_at,
            roles,
        })
    })
    .await?;

    Ok((StatusCode::CREATED, Json(user_info)))
}

/// List all users
#[utoipa::path(
    get,
    path = "/admin/users",
    operation_id = "listUsers",
    tag = "User Management",
    params(
        ("include_inactive" = Option<bool>, Query, description = "Include inactive users"),
        ("limit" = Option<i64>, Query, description = "Maximum number of users to return (default: 100, max: 1000)"),
        ("offset" = Option<i64>, Query, description = "Number of users to skip for pagination (default: 0)")
    ),
    responses(
        (status = 200, description = "List of users", body = Vec<UserInfo>),
        (status = 403, description = "Permission denied", body = ErrorResponse),
    ),
    security(("api_key" = []))
)]
pub async fn list_users(
    AuthContextExtractor(auth_ctx): AuthContextExtractor,
    Extension(db): Extension<Arc<AuthDatabase>>,
    Query(params): Query<ListUsersQuery>,
) -> Result<Json<Vec<UserInfo>>, (StatusCode, Json<ErrorResponse>)> {
    // Check permission
    check_permission(&auth_ctx, "admin_users", "get")?;

    let default_limit = db.users_default_limit();
    let max_limit = db.users_max_limit();
    let limit = params.limit.unwrap_or(default_limit).clamp(1, max_limit);
    let offset = params.offset.unwrap_or(0).max(0);
    let include_inactive = params.include_inactive.unwrap_or(false);
    let users = run_db(&db, "admin_list_users", move |db| {
        db.list_users(include_inactive, limit, offset)
    })
    .await?;

    Ok(Json(users))
}

#[derive(Deserialize, ToSchema)]
pub struct ListUsersQuery {
    pub include_inactive: Option<bool>,
    /// Maximum number of users to return (default: 100, max: 1000)
    pub limit: Option<i64>,
    /// Number of users to skip (default: 0)
    pub offset: Option<i64>,
}

/// Get user by ID
#[utoipa::path(
    get,
    path = "/admin/users/{user_id}",
    operation_id = "getUser",
    tag = "User Management",
    params(
        ("user_id" = i64, Path, description = "User ID")
    ),
    responses(
        (status = 200, description = "User information", body = UserInfo),
        (status = 403, description = "Permission denied", body = ErrorResponse),
        (status = 404, description = "User not found", body = ErrorResponse),
    ),
    security(("api_key" = []))
)]
pub async fn get_user(
    AuthContextExtractor(auth_ctx): AuthContextExtractor,
    Extension(db): Extension<Arc<AuthDatabase>>,
    Path(user_id): Path<i64>,
) -> Result<Json<UserInfo>, (StatusCode, Json<ErrorResponse>)> {
    // Check permission
    check_permission(&auth_ctx, "admin_users", "get")?;
    let user_info = run_db(&db, "admin_get_user", move |db| {
        let user = db.get_user_by_id(user_id)?;
        let roles = db.get_user_roles(user_id)?;

        Ok(UserInfo {
            id: user.id,
            username: user.username,
            is_active: user.is_active,
            must_change_password: user.must_change_password,
            failed_login_attempts: user.failed_login_attempts,
            locked_until: user.locked_until,
            last_login_at: user.last_login_at,
            created_at: user.created_at,
            roles,
        })
    })
    .await?;

    Ok(Json(user_info))
}

/// Update user
#[utoipa::path(
    put,
    path = "/admin/users/{user_id}",
    operation_id = "updateUser",
    tag = "User Management",
    params(
        ("user_id" = i64, Path, description = "User ID")
    ),
    request_body = UpdateUserRequest,
    responses(
        (status = 200, description = "User updated successfully", body = UserInfo),
        (status = 400, description = "Invalid request", body = ErrorResponse),
        (status = 403, description = "Permission denied", body = ErrorResponse),
        (status = 404, description = "User not found", body = ErrorResponse),
    ),
    security(("api_key" = []))
)]
pub async fn update_user(
    AuthContextExtractor(auth_ctx): AuthContextExtractor,
    Extension(db): Extension<Arc<AuthDatabase>>,
    Path(user_id): Path<i64>,
    Json(req): Json<UpdateUserRequest>,
) -> Result<Json<UserInfo>, (StatusCode, Json<ErrorResponse>)> {
    // Check permission
    check_permission(&auth_ctx, "admin_users", "put")?;
    let audit_details = serde_json::json!({
        "is_active": req.is_active,
        "role_ids": req.role_ids,
        "password_changed": req.password.is_some(),
    })
    .to_string();
    let auth_ctx_for_db = auth_ctx.clone();
    let user_info = run_db(&db, "admin_update_user", move |db| {
        let target_user = db.get_user_by_id(user_id)?;
        let is_target_superadmin = is_superadmin_user(&db, &target_user)?;

        if is_target_superadmin {
            if req.is_active == Some(false) {
                return Err(DatabaseError::PermissionDenied(
                    "Cannot deactivate superadmin account".to_string(),
                ));
            }

            if req.password.is_some() {
                return Err(DatabaseError::PermissionDenied(
                    "Cannot change superadmin password through API. Use direct database access".to_string(),
                ));
            }

            if req.role_ids.is_some() {
                return Err(DatabaseError::PermissionDenied(
                    "Cannot modify superadmin roles. Superadmin has all permissions automatically".to_string(),
                ));
            }
        }

        if let Some(role_ids) = &req.role_ids {
            if !auth_ctx_for_db.is_superadmin()
                && is_admin_account(&db, &target_user)?
            {
                return Err(DatabaseError::PermissionDenied(
                    "Only superadmin can modify roles of other admins"
                        .to_string(),
                ));
            }

            let superadmin_role_id = get_superadmin_role_id(&db)?;
            if let Some(sa_role_id) = superadmin_role_id {
                let is_target_currently_superadmin =
                    is_superadmin_user(&db, &target_user)?;

                if role_ids.contains(&sa_role_id) {
                    validate_superadmin_assignment(
                        &db,
                        &auth_ctx_for_db,
                        user_id,
                    )?;
                } else if is_target_currently_superadmin {
                    validate_superadmin_removal(&db, &auth_ctx_for_db, user_id)?;
                }
            }

        }

        let user = db.update_user_with_roles_transactional(
            user_id,
            req.password.as_deref(),
            req.is_active,
            req.role_ids.as_deref(),
            Some(auth_ctx_for_db.user_id),
            Some(crate::auth::database_audit::AuditLogParams {
                user_id: Some(auth_ctx_for_db.user_id),
                api_key_id: Some(&auth_ctx_for_db.api_key_id),
                action_type: "user_updated",
                endpoint: Some(&format!("/admin/users/{}", user_id)),
                http_method: Some("PUT"),
                ip_address: auth_ctx_for_db.ip_address.as_deref(),
                user_agent: None,
                request_id: None,
                details: Some(&audit_details),
                success: true,
                error_message: None,
            }),
        )?;

        let roles = db.get_user_roles(user_id)?;
        Ok(UserInfo {
            id: user.id,
            username: user.username,
            is_active: user.is_active,
            must_change_password: user.must_change_password,
            failed_login_attempts: user.failed_login_attempts,
            locked_until: user.locked_until,
            last_login_at: user.last_login_at,
            created_at: user.created_at,
            roles,
        })
    })
    .await?;

    Ok(Json(user_info))
}

#[derive(Deserialize, ToSchema)]
pub struct ResetPasswordRequest {
    pub password: String,
}

/// Reset a user's password (forces change on next login)
#[utoipa::path(
    post,
    path = "/admin/users/{user_id}/password",
    operation_id = "resetUserPassword",
    tag = "User Management",
    params(
        ("user_id" = i64, Path, description = "User ID")
    ),
    request_body = ResetPasswordRequest,
    responses(
        (status = 200, description = "Password reset, must change on next login"),
        (status = 403, description = "Permission denied", body = ErrorResponse),
        (status = 404, description = "User not found", body = ErrorResponse),
    ),
    security(("api_key" = []))
)]
pub async fn reset_user_password(
    AuthContextExtractor(auth_ctx): AuthContextExtractor,
    Extension(db): Extension<Arc<AuthDatabase>>,
    Path(user_id): Path<i64>,
    Json(req): Json<ResetPasswordRequest>,
) -> Result<StatusCode, (StatusCode, Json<ErrorResponse>)> {
    check_permission(&auth_ctx, "admin_users", "post")?;
    run_db(&db, "admin_reset_user_password", move |db| {
        let target_user = db.get_user_by_id(user_id)?;
        if is_superadmin_user(&db, &target_user)? {
            return Err(DatabaseError::PermissionDenied(
                "Cannot reset superadmin password through API. Use direct database access".to_string(),
            ));
        }

        db.admin_reset_password_transactional(
            user_id,
            &req.password,
            Some(crate::auth::database_audit::AuditLogParams {
                user_id: Some(auth_ctx.user_id),
                api_key_id: Some(&auth_ctx.api_key_id),
                action_type: "user_password_reset",
                endpoint: Some(&format!("/admin/users/{}/password", user_id)),
                http_method: Some("POST"),
                ip_address: auth_ctx.ip_address.as_deref(),
                user_agent: None,
                request_id: None,
                details: None,
                success: true,
                error_message: None,
            }),
        )
    })
    .await?;

    Ok(StatusCode::OK)
}

/// Delete user
#[utoipa::path(
    delete,
    path = "/admin/users/{user_id}",
    operation_id = "deleteUser",
    tag = "User Management",
    params(
        ("user_id" = i64, Path, description = "User ID")
    ),
    responses(
        (status = 204, description = "User deleted successfully"),
        (status = 403, description = "Permission denied", body = ErrorResponse),
        (status = 404, description = "User not found", body = ErrorResponse),
    ),
    security(("api_key" = []))
)]
pub async fn delete_user(
    AuthContextExtractor(auth_ctx): AuthContextExtractor,
    Extension(db): Extension<Arc<AuthDatabase>>,
    Path(user_id): Path<i64>,
) -> Result<StatusCode, (StatusCode, Json<ErrorResponse>)> {
    // Check permission
    check_permission(&auth_ctx, "admin_users", "delete")?;

    // Cannot delete yourself
    if user_id == auth_ctx.user_id {
        return Err((
            StatusCode::BAD_REQUEST,
            Json(ErrorResponse {
                error: "Cannot delete your own account".to_string(),
            }),
        ));
    }

    run_db(&db, "admin_delete_user", move |db| {
        let target_user = db.get_user_by_id(user_id)?;
        if is_superadmin_user(&db, &target_user)? {
            return Err(DatabaseError::PermissionDenied(
                "Cannot delete superadmin account".to_string(),
            ));
        }

        db.delete_user_transactional(
            user_id,
            Some(crate::auth::database_audit::AuditLogParams {
                user_id: Some(auth_ctx.user_id),
                api_key_id: Some(&auth_ctx.api_key_id),
                action_type: "user_deleted",
                endpoint: Some(&format!("/admin/users/{}", user_id)),
                http_method: Some("DELETE"),
                ip_address: auth_ctx.ip_address.as_deref(),
                user_agent: None,
                request_id: None,
                details: None,
                success: true,
                error_message: None,
            }),
        )
    })
    .await?;

    Ok(StatusCode::NO_CONTENT)
}

/// Assign role to user
#[utoipa::path(
    post,
    path = "/admin/users/{user_id}/roles/{role_id}",
    operation_id = "assignRole",
    tag = "User Management",
    params(
        ("user_id" = i64, Path, description = "User ID"),
        ("role_id" = i64, Path, description = "Role ID")
    ),
    responses(
        (status = 200, description = "Role assigned successfully"),
        (status = 403, description = "Permission denied", body = ErrorResponse),
        (status = 404, description = "User or role not found", body = ErrorResponse),
    ),
    security(("api_key" = []))
)]
pub async fn assign_role(
    AuthContextExtractor(auth_ctx): AuthContextExtractor,
    Extension(db): Extension<Arc<AuthDatabase>>,
    Path((user_id, role_id)): Path<(i64, i64)>,
) -> Result<StatusCode, (StatusCode, Json<ErrorResponse>)> {
    // Check permission
    check_permission(&auth_ctx, "admin_users", "all")?;
    let auth_ctx_for_db = auth_ctx.clone();
    run_db(&db, "admin_assign_role", move |db| {
        let target_user = db.get_user_by_id(user_id)?;

        if !auth_ctx_for_db.is_superadmin()
            && is_admin_account(&db, &target_user)?
        {
            return Err(DatabaseError::PermissionDenied(
                "Only superadmin can modify roles of other admins".to_string(),
            ));
        }

        let superadmin_role_id = get_superadmin_role_id(&db)?;
        if let Some(sa_role_id) = superadmin_role_id
            && role_id == sa_role_id
        {
            validate_superadmin_assignment(&db, &auth_ctx_for_db, user_id)?;
        }

        db.assign_role_to_user_transactional(
            user_id,
            role_id,
            Some(auth_ctx_for_db.user_id),
            Some(crate::auth::database_audit::AuditLogParams {
                user_id: Some(auth_ctx_for_db.user_id),
                api_key_id: Some(&auth_ctx_for_db.api_key_id),
                action_type: "role_assigned",
                endpoint: Some(&format!(
                    "/admin/users/{}/roles/{}",
                    user_id, role_id
                )),
                http_method: Some("POST"),
                ip_address: auth_ctx_for_db.ip_address.as_deref(),
                user_agent: None,
                request_id: None,
                details: Some(&format!(r#"{{"role_id": {}}}"#, role_id)),
                success: true,
                error_message: None,
            }),
        )
    })
    .await?;

    Ok(StatusCode::OK)
}

/// Remove role from user
#[utoipa::path(
    delete,
    path = "/admin/users/{user_id}/roles/{role_id}",
    operation_id = "removeRole",
    tag = "User Management",
    params(
        ("user_id" = i64, Path, description = "User ID"),
        ("role_id" = i64, Path, description = "Role ID")
    ),
    responses(
        (status = 204, description = "Role removed successfully"),
        (status = 403, description = "Permission denied", body = ErrorResponse),
        (status = 404, description = "User or role not found", body = ErrorResponse),
    ),
    security(("api_key" = []))
)]
pub async fn remove_role(
    AuthContextExtractor(auth_ctx): AuthContextExtractor,
    Extension(db): Extension<Arc<AuthDatabase>>,
    Path((user_id, role_id)): Path<(i64, i64)>,
) -> Result<StatusCode, (StatusCode, Json<ErrorResponse>)> {
    // Check permission
    check_permission(&auth_ctx, "admin_users", "all")?;
    let auth_ctx_for_db = auth_ctx.clone();
    run_db(&db, "admin_remove_role", move |db| {
        let target_user = db.get_user_by_id(user_id)?;

        if !auth_ctx_for_db.is_superadmin()
            && is_admin_account(&db, &target_user)?
        {
            return Err(DatabaseError::PermissionDenied(
                "Only superadmin can modify roles of other admins".to_string(),
            ));
        }

        let superadmin_role_id = get_superadmin_role_id(&db)?;

        if let Some(sa_role_id) = superadmin_role_id
            && role_id == sa_role_id
        {
            validate_superadmin_removal(&db, &auth_ctx_for_db, user_id)?;
        }

        db.remove_role_from_user_transactional(
            user_id,
            role_id,
            Some(crate::auth::database_audit::AuditLogParams {
                user_id: Some(auth_ctx_for_db.user_id),
                api_key_id: Some(&auth_ctx_for_db.api_key_id),
                action_type: "role_removed",
                endpoint: Some(&format!(
                    "/admin/users/{}/roles/{}",
                    user_id, role_id
                )),
                http_method: Some("DELETE"),
                ip_address: auth_ctx_for_db.ip_address.as_deref(),
                user_agent: None,
                request_id: None,
                details: Some(&format!(r#"{{"role_id": {}}}"#, role_id)),
                success: true,
                error_message: None,
            }),
        )
    })
    .await?;

    Ok(StatusCode::NO_CONTENT)
}

// =============================================================================
// ROLE MANAGEMENT ENDPOINTS
// =============================================================================

/// Create a new role
#[utoipa::path(
    post,
    path = "/admin/roles",
    operation_id = "createRole",
    tag = "Role Management",
    request_body = CreateRoleRequest,
    responses(
        (status = 201, description = "Role created successfully", body = Role),
        (status = 400, description = "Invalid request", body = ErrorResponse),
        (status = 403, description = "Permission denied", body = ErrorResponse),
        (status = 409, description = "Role name already exists", body = ErrorResponse),
    ),
    security(("api_key" = []))
)]
pub async fn create_role(
    AuthContextExtractor(auth_ctx): AuthContextExtractor,
    Extension(db): Extension<Arc<AuthDatabase>>,
    Json(req): Json<CreateRoleRequest>,
) -> Result<(StatusCode, Json<Role>), (StatusCode, Json<ErrorResponse>)> {
    // Check permission
    check_permission(&auth_ctx, "admin_roles", "post")?;
    let audit_details = serde_json::to_string(&req).unwrap_or_default();
    let name = req.name;
    let description = req.description;
    let auth_ctx_for_db = auth_ctx.clone();
    let role = run_db(&db, "admin_create_role", move |db| {
        db.create_role_transactional(
            &name,
            description.as_deref(),
            Some(crate::auth::database_audit::AuditLogParams {
                user_id: Some(auth_ctx_for_db.user_id),
                api_key_id: Some(&auth_ctx_for_db.api_key_id),
                action_type: "role_created",
                endpoint: Some("/admin/roles"),
                http_method: Some("POST"),
                ip_address: auth_ctx_for_db.ip_address.as_deref(),
                user_agent: None,
                request_id: None,
                details: Some(&audit_details),
                success: true,
                error_message: None,
            }),
        )
    })
    .await?;

    Ok((StatusCode::CREATED, Json(role)))
}

/// List all roles
#[utoipa::path(
    get,
    path = "/admin/roles",
    operation_id = "listRoles",
    tag = "Role Management",
    responses(
        (status = 200, description = "List of roles", body = Vec<RoleInfo>),
        (status = 403, description = "Permission denied", body = ErrorResponse),
    ),
    security(("api_key" = []))
)]
pub async fn list_roles(
    AuthContextExtractor(auth_ctx): AuthContextExtractor,
    Extension(db): Extension<Arc<AuthDatabase>>,
) -> Result<Json<Vec<RoleInfo>>, (StatusCode, Json<ErrorResponse>)> {
    // Check permission
    check_permission(&auth_ctx, "admin_roles", "get")?;
    let roles =
        run_db(&db, "admin_list_roles", move |db| db.list_roles()).await?;

    Ok(Json(roles))
}

/// Get role by ID
#[utoipa::path(
    get,
    path = "/admin/roles/{role_id}",
    operation_id = "getRole",
    tag = "Role Management",
    params(
        ("role_id" = i64, Path, description = "Role ID")
    ),
    responses(
        (status = 200, description = "Role information", body = Role),
        (status = 403, description = "Permission denied", body = ErrorResponse),
        (status = 404, description = "Role not found", body = ErrorResponse),
    ),
    security(("api_key" = []))
)]
pub async fn get_role(
    AuthContextExtractor(auth_ctx): AuthContextExtractor,
    Extension(db): Extension<Arc<AuthDatabase>>,
    Path(role_id): Path<i64>,
) -> Result<Json<Role>, (StatusCode, Json<ErrorResponse>)> {
    // Check permission
    check_permission(&auth_ctx, "admin_roles", "get")?;
    let role =
        run_db(&db, "admin_get_role", move |db| db.get_role_by_id(role_id))
            .await?;

    Ok(Json(role))
}

/// Update role
#[utoipa::path(
    put,
    path = "/admin/roles/{role_id}",
    operation_id = "updateRole",
    tag = "Role Management",
    params(
        ("role_id" = i64, Path, description = "Role ID")
    ),
    request_body = UpdateRoleRequest,
    responses(
        (status = 200, description = "Role updated successfully", body = Role),
        (status = 400, description = "Invalid request", body = ErrorResponse),
        (status = 403, description = "Permission denied or system role", body = ErrorResponse),
        (status = 404, description = "Role not found", body = ErrorResponse),
    ),
    security(("api_key" = []))
)]
pub async fn update_role(
    AuthContextExtractor(auth_ctx): AuthContextExtractor,
    Extension(db): Extension<Arc<AuthDatabase>>,
    Path(role_id): Path<i64>,
    Json(req): Json<UpdateRoleRequest>,
) -> Result<Json<Role>, (StatusCode, Json<ErrorResponse>)> {
    // Check permission
    check_permission(&auth_ctx, "admin_roles", "put")?;
    let audit_details = serde_json::to_string(&req).unwrap_or_default();
    let description = req.description;
    let auth_ctx_for_db = auth_ctx.clone();
    let role = run_db(&db, "admin_update_role", move |db| {
        db.update_role_transactional(
            role_id,
            description.as_deref(),
            Some(crate::auth::database_audit::AuditLogParams {
                user_id: Some(auth_ctx_for_db.user_id),
                api_key_id: Some(&auth_ctx_for_db.api_key_id),
                action_type: "role_updated",
                endpoint: Some(&format!("/admin/roles/{}", role_id)),
                http_method: Some("PUT"),
                ip_address: auth_ctx_for_db.ip_address.as_deref(),
                user_agent: None,
                request_id: None,
                details: Some(&audit_details),
                success: true,
                error_message: None,
            }),
        )
    })
    .await?;

    Ok(Json(role))
}

/// Delete role
#[utoipa::path(
    delete,
    path = "/admin/roles/{role_id}",
    operation_id = "deleteRole",
    tag = "Role Management",
    params(
        ("role_id" = i64, Path, description = "Role ID")
    ),
    responses(
        (status = 204, description = "Role deleted successfully"),
        (status = 403, description = "Permission denied or system role", body = ErrorResponse),
        (status = 404, description = "Role not found", body = ErrorResponse),
    ),
    security(("api_key" = []))
)]
pub async fn delete_role(
    AuthContextExtractor(auth_ctx): AuthContextExtractor,
    Extension(db): Extension<Arc<AuthDatabase>>,
    Path(role_id): Path<i64>,
) -> Result<StatusCode, (StatusCode, Json<ErrorResponse>)> {
    // Check permission
    check_permission(&auth_ctx, "admin_roles", "delete")?;
    let auth_ctx_for_db = auth_ctx.clone();
    run_db(&db, "admin_delete_role", move |db| {
        db.delete_role_transactional(
            role_id,
            Some(crate::auth::database_audit::AuditLogParams {
                user_id: Some(auth_ctx_for_db.user_id),
                api_key_id: Some(&auth_ctx_for_db.api_key_id),
                action_type: "role_deleted",
                endpoint: Some(&format!("/admin/roles/{}", role_id)),
                http_method: Some("DELETE"),
                ip_address: auth_ctx_for_db.ip_address.as_deref(),
                user_agent: None,
                request_id: None,
                details: None,
                success: true,
                error_message: None,
            }),
        )
    })
    .await?;

    Ok(StatusCode::NO_CONTENT)
}

/// Get role permissions
#[utoipa::path(
    get,
    path = "/admin/roles/{role_id}/permissions",
    operation_id = "getRolePermissions",
    tag = "Role Management",
    params(
        ("role_id" = i64, Path, description = "Role ID")
    ),
    responses(
        (status = 200, description = "Role permissions", body = Vec<Permission>),
        (status = 403, description = "Permission denied", body = ErrorResponse),
        (status = 404, description = "Role not found", body = ErrorResponse),
    ),
    security(("api_key" = []))
)]
pub async fn get_role_permissions(
    AuthContextExtractor(auth_ctx): AuthContextExtractor,
    Extension(db): Extension<Arc<AuthDatabase>>,
    Path(role_id): Path<i64>,
) -> Result<Json<Vec<Permission>>, (StatusCode, Json<ErrorResponse>)> {
    // Check permission
    check_permission(&auth_ctx, "admin_roles", "get")?;
    let permissions = run_db(&db, "admin_get_role_permissions", move |db| {
        db.get_role_permissions(role_id)
    })
    .await?;

    Ok(Json(permissions))
}

/// Set role permission
#[utoipa::path(
    post,
    path = "/admin/roles/{role_id}/permissions",
    operation_id = "setRolePermission",
    tag = "Role Management",
    params(
        ("role_id" = i64, Path, description = "Role ID")
    ),
    request_body = SetPermissionRequest,
    responses(
        (status = 200, description = "Permission set successfully"),
        (status = 400, description = "Invalid request", body = ErrorResponse),
        (status = 403, description = "Permission denied", body = ErrorResponse),
        (status = 404, description = "Role, resource, or action not found", body = ErrorResponse),
    ),
    security(("api_key" = []))
)]
pub async fn set_role_permission(
    AuthContextExtractor(auth_ctx): AuthContextExtractor,
    Extension(db): Extension<Arc<AuthDatabase>>,
    Path(role_id): Path<i64>,
    Json(req): Json<SetPermissionRequest>,
) -> Result<StatusCode, (StatusCode, Json<ErrorResponse>)> {
    // Check permission
    check_permission(&auth_ctx, "admin_roles", "all")?;

    // SECURITY FIX: Prevent privilege escalation via role permission modification
    // Only superadmin can modify role permissions to prevent users from
    // granting themselves additional privileges by editing their own roles
    if !auth_ctx.is_superadmin() {
        return Err((
            StatusCode::FORBIDDEN,
            Json(ErrorResponse {
                error: "Only superadmin can modify role permissions"
                    .to_string(),
            }),
        ));
    }

    let audit_details = serde_json::to_string(&req).unwrap_or_default();
    let resource = req.resource;
    let action = req.action;
    let allowed = req.allowed;
    let auth_ctx_for_db = auth_ctx.clone();
    run_db(&db, "admin_set_role_permission", move |db| {
        db.set_role_permission_transactional(
            role_id,
            &resource,
            &action,
            allowed,
            Some(crate::auth::database_audit::AuditLogParams {
                user_id: Some(auth_ctx_for_db.user_id),
                api_key_id: Some(&auth_ctx_for_db.api_key_id),
                action_type: "permission_set",
                endpoint: Some(&format!(
                    "/admin/roles/{}/permissions",
                    role_id
                )),
                http_method: Some("POST"),
                ip_address: auth_ctx_for_db.ip_address.as_deref(),
                user_agent: None,
                request_id: None,
                details: Some(&audit_details),
                success: true,
                error_message: None,
            }),
        )
    })
    .await?;

    Ok(StatusCode::OK)
}

/// Get user-specific permission overrides
#[utoipa::path(
    get,
    path = "/admin/users/{user_id}/permissions",
    operation_id = "getUserPermissions",
    tag = "User Management",
    params(
        ("user_id" = i64, Path, description = "User ID")
    ),
    responses(
        (status = 200, description = "User permission overrides", body = [Permission]),
        (status = 403, description = "Permission denied", body = ErrorResponse),
        (status = 404, description = "User not found", body = ErrorResponse),
    ),
    security(("api_key" = []))
)]
pub async fn get_user_permissions(
    AuthContextExtractor(auth_ctx): AuthContextExtractor,
    Extension(db): Extension<Arc<AuthDatabase>>,
    Path(user_id): Path<i64>,
) -> Result<Json<Vec<Permission>>, (StatusCode, Json<ErrorResponse>)> {
    check_permission(&auth_ctx, "admin_users", "get")?;
    let permissions = run_db(&db, "admin_get_user_permissions", move |db| {
        db.get_user_by_id(user_id)?;
        db.get_user_permissions(user_id)
    })
    .await?;

    Ok(Json(permissions))
}

/// Set or update a user-specific permission override
#[utoipa::path(
    post,
    path = "/admin/users/{user_id}/permissions",
    operation_id = "setUserPermission",
    tag = "User Management",
    params(
        ("user_id" = i64, Path, description = "User ID")
    ),
    request_body = Permission,
    responses(
        (status = 200, description = "Permission set"),
        (status = 403, description = "Permission denied", body = ErrorResponse),
        (status = 404, description = "User not found", body = ErrorResponse),
    ),
    security(("api_key" = []))
)]
pub async fn set_user_permission(
    AuthContextExtractor(auth_ctx): AuthContextExtractor,
    Extension(db): Extension<Arc<AuthDatabase>>,
    Path(user_id): Path<i64>,
    Json(req): Json<Permission>,
) -> Result<StatusCode, (StatusCode, Json<ErrorResponse>)> {
    check_permission(&auth_ctx, "admin_users", "all")?;

    // SECURITY FIX: Prevent non-superadmin from modifying their own permissions
    // Superadmins are exempt because they get permissions implicitly (always have all)
    if user_id == auth_ctx.user_id && !auth_ctx.is_superadmin() {
        return Err((
            StatusCode::BAD_REQUEST,
            Json(ErrorResponse {
                error: "Cannot modify your own permissions".to_string(),
            }),
        ));
    }

    let audit_details = serde_json::to_string(&req).unwrap_or_default();
    let auth_ctx_for_db = auth_ctx.clone();
    let resource = req.resource;
    let action = req.action;
    let allowed = req.allowed;
    run_db(&db, "admin_set_user_permission", move |db| {
        let target_user = db.get_user_by_id(user_id)?;

        if !auth_ctx_for_db.is_superadmin()
            && is_admin_account(&db, &target_user)?
        {
            return Err(DatabaseError::PermissionDenied(
                "Only superadmin can modify permissions of other admins"
                    .to_string(),
            ));
        }

        db.set_user_permission_transactional(
            user_id,
            &resource,
            &action,
            allowed,
            Some(auth_ctx_for_db.user_id),
            Some(crate::auth::database_audit::AuditLogParams {
                user_id: Some(auth_ctx_for_db.user_id),
                api_key_id: Some(&auth_ctx_for_db.api_key_id),
                action_type: "user_permission_set",
                endpoint: Some(&format!(
                    "/admin/users/{}/permissions",
                    user_id
                )),
                http_method: Some("POST"),
                ip_address: auth_ctx_for_db.ip_address.as_deref(),
                user_agent: None,
                request_id: None,
                details: Some(&audit_details),
                success: true,
                error_message: None,
            }),
        )
    })
    .await?;

    Ok(StatusCode::OK)
}

/// Remove a user-specific permission override
#[utoipa::path(
    delete,
    path = "/admin/users/{user_id}/permissions",
    operation_id = "removeUserPermission",
    tag = "User Management",
    params(
        ("user_id" = i64, Path, description = "User ID"),
        ("resource" = String, Query, description = "Resource name"),
        ("action" = String, Query, description = "Action name")
    ),
    responses(
        (status = 204, description = "Permission removed"),
        (status = 403, description = "Permission denied", body = ErrorResponse),
        (status = 404, description = "User not found", body = ErrorResponse),
    ),
    security(("api_key" = []))
)]
pub async fn remove_user_permission(
    AuthContextExtractor(auth_ctx): AuthContextExtractor,
    Extension(db): Extension<Arc<AuthDatabase>>,
    Path(user_id): Path<i64>,
    Query(params): Query<RemovePermissionQuery>,
) -> Result<StatusCode, (StatusCode, Json<ErrorResponse>)> {
    check_permission(&auth_ctx, "admin_users", "all")?;

    // SECURITY FIX: Prevent non-superadmin from modifying their own permissions
    // Superadmins are exempt because they get permissions implicitly (always have all)
    if user_id == auth_ctx.user_id && !auth_ctx.is_superadmin() {
        return Err((
            StatusCode::BAD_REQUEST,
            Json(ErrorResponse {
                error: "Cannot modify your own permissions".to_string(),
            }),
        ));
    }

    let audit_details = serde_json::to_string(&params).unwrap_or_default();
    let auth_ctx_for_db = auth_ctx.clone();
    let resource = params.resource;
    let action = params.action;
    run_db(&db, "admin_remove_user_permission", move |db| {
        let target_user = db.get_user_by_id(user_id)?;

        if !auth_ctx_for_db.is_superadmin()
            && is_admin_account(&db, &target_user)?
        {
            return Err(DatabaseError::PermissionDenied(
                "Only superadmin can modify permissions of other admins"
                    .to_string(),
            ));
        }

        db.remove_user_permission_transactional(
            user_id,
            &resource,
            &action,
            Some(crate::auth::database_audit::AuditLogParams {
                user_id: Some(auth_ctx_for_db.user_id),
                api_key_id: Some(&auth_ctx_for_db.api_key_id),
                action_type: "user_permission_removed",
                endpoint: Some(&format!(
                    "/admin/users/{}/permissions",
                    user_id
                )),
                http_method: Some("DELETE"),
                ip_address: auth_ctx_for_db.ip_address.as_deref(),
                user_agent: None,
                request_id: None,
                details: Some(&audit_details),
                success: true,
                error_message: None,
            }),
        )
    })
    .await?;

    Ok(StatusCode::NO_CONTENT)
}

/// Remove role permission
#[utoipa::path(
    delete,
    path = "/admin/roles/{role_id}/permissions",
    operation_id = "removeRolePermission",
    tag = "Role Management",
    params(
        ("role_id" = i64, Path, description = "Role ID"),
        ("resource" = String, Query, description = "Resource name"),
        ("action" = String, Query, description = "Action name")
    ),
    responses(
        (status = 204, description = "Permission removed successfully"),
        (status = 403, description = "Permission denied", body = ErrorResponse),
        (status = 404, description = "Role, resource, or action not found", body = ErrorResponse),
    ),
    security(("api_key" = []))
)]
pub async fn remove_role_permission(
    AuthContextExtractor(auth_ctx): AuthContextExtractor,
    Extension(db): Extension<Arc<AuthDatabase>>,
    Path(role_id): Path<i64>,
    Query(params): Query<RemovePermissionQuery>,
) -> Result<StatusCode, (StatusCode, Json<ErrorResponse>)> {
    // Check permission
    check_permission(&auth_ctx, "admin_roles", "all")?;

    // SECURITY FIX: Prevent privilege escalation via role permission modification
    // Only superadmin can modify role permissions to prevent users from
    // granting themselves additional privileges by editing their own roles
    if !auth_ctx.is_superadmin() {
        return Err((
            StatusCode::FORBIDDEN,
            Json(ErrorResponse {
                error: "Only superadmin can modify role permissions"
                    .to_string(),
            }),
        ));
    }

    let audit_details = serde_json::to_string(&params).unwrap_or_default();
    let resource = params.resource;
    let action = params.action;
    let auth_ctx_for_db = auth_ctx.clone();
    run_db(&db, "admin_remove_role_permission", move |db| {
        db.remove_role_permission_transactional(
            role_id,
            &resource,
            &action,
            Some(crate::auth::database_audit::AuditLogParams {
                user_id: Some(auth_ctx_for_db.user_id),
                api_key_id: Some(&auth_ctx_for_db.api_key_id),
                action_type: "permission_removed",
                endpoint: Some(&format!(
                    "/admin/roles/{}/permissions",
                    role_id
                )),
                http_method: Some("DELETE"),
                ip_address: auth_ctx_for_db.ip_address.as_deref(),
                user_agent: None,
                request_id: None,
                details: Some(&audit_details),
                success: true,
                error_message: None,
            }),
        )
    })
    .await?;

    Ok(StatusCode::NO_CONTENT)
}

#[derive(Deserialize, Serialize, ToSchema)]
pub struct RemovePermissionQuery {
    pub resource: String,
    pub action: String,
}