kftray-commons 0.27.33

KFtray commons
Documentation
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
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
use std::collections::HashMap;
use std::collections::HashSet;
use std::sync::Arc;
use std::sync::LazyLock;
use std::sync::Mutex;

use log::info;
use log::warn;
use serde::{
    Deserialize,
    Serialize,
};
use sqlx::{
    Row,
    SqlitePool,
};
use tokio::sync::RwLock;

use crate::models::settings_model::AppSettings;
use crate::utils::db::get_db_pool;
use crate::utils::db_mode::{
    DatabaseManager,
    DatabaseMode,
};

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Setting {
    pub key: String,
    pub value: String,
    pub updated_at: Option<String>,
}

pub struct SettingsManager {
    cache: Arc<RwLock<HashMap<String, String>>>,
}

impl SettingsManager {
    pub fn new() -> Self {
        Self {
            cache: Arc::new(RwLock::new(HashMap::new())),
        }
    }

    pub async fn load_settings(&self) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
        let pool = get_db_pool().await?;
        let settings = load_all_settings(&pool).await?;

        let mut cache = self.cache.write().await;
        cache.clear();
        for setting in settings {
            cache.insert(setting.key, setting.value);
        }
        info!("Loaded {} settings from database", cache.len());
        Ok(())
    }

    pub async fn get_setting(&self, key: &str) -> Option<String> {
        let cache = self.cache.read().await;
        cache.get(key).cloned()
    }

    pub async fn set_setting(
        &self, key: &str, value: &str,
    ) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
        let pool = get_db_pool().await?;
        upsert_setting(&pool, key, value).await?;

        let mut cache = self.cache.write().await;
        cache.insert(key.to_string(), value.to_string());
        info!("Set setting: {key} = {value}");
        Ok(())
    }

    pub async fn get_disconnect_timeout(&self) -> Option<u32> {
        if let Some(value) = self.get_setting("disconnect_timeout_minutes").await {
            value.parse::<u32>().ok()
        } else {
            Some(0) // Default to 0 (no timeout)
        }
    }

    pub async fn set_disconnect_timeout(
        &self, minutes: u32,
    ) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
        self.set_setting("disconnect_timeout_minutes", &minutes.to_string())
            .await
    }

    pub async fn get_network_monitor(&self) -> bool {
        if let Some(value) = self.get_setting("network_monitor").await {
            value.parse::<bool>().unwrap_or(true)
        } else {
            true // Default to true
        }
    }

    pub async fn set_network_monitor(
        &self, enabled: bool,
    ) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
        self.set_setting("network_monitor", &enabled.to_string())
            .await
    }

    pub async fn get_http_logs_default_enabled(&self) -> bool {
        if let Some(value) = self.get_setting("http_logs_default_enabled").await {
            value.parse::<bool>().unwrap_or(false)
        } else {
            false // Default to false
        }
    }

    pub async fn set_http_logs_default_enabled(
        &self, enabled: bool,
    ) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
        self.set_setting("http_logs_default_enabled", &enabled.to_string())
            .await
    }

    pub async fn get_http_logs_max_file_size(&self) -> u64 {
        if let Some(value) = self.get_setting("http_logs_max_file_size").await {
            value.parse::<u64>().unwrap_or(10 * 1024 * 1024)
        } else {
            10 * 1024 * 1024 // Default 10MB
        }
    }

    pub async fn set_http_logs_max_file_size(
        &self, size: u64,
    ) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
        self.set_setting("http_logs_max_file_size", &size.to_string())
            .await
    }

    pub async fn get_http_logs_retention_days(&self) -> u64 {
        if let Some(value) = self.get_setting("http_logs_retention_days").await {
            value.parse::<u64>().unwrap_or(7)
        } else {
            7 // Default 7 days
        }
    }

    pub async fn set_http_logs_retention_days(
        &self, days: u64,
    ) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
        self.set_setting("http_logs_retention_days", &days.to_string())
            .await
    }

    pub async fn get_auto_update_enabled(&self) -> bool {
        if let Some(value) = self.get_setting("auto_update_enabled").await {
            value.parse::<bool>().unwrap_or(true)
        } else {
            true
        }
    }

    pub async fn set_auto_update_enabled(
        &self, enabled: bool,
    ) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
        self.set_setting("auto_update_enabled", &enabled.to_string())
            .await
    }

    pub async fn get_last_update_check(&self) -> Option<i64> {
        if let Some(value) = self.get_setting("last_update_check").await {
            value.parse::<i64>().ok()
        } else {
            None
        }
    }

    pub async fn set_last_update_check(
        &self, timestamp: i64,
    ) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
        self.set_setting("last_update_check", &timestamp.to_string())
            .await
    }

    pub async fn get_all_settings(&self) -> HashMap<String, String> {
        let cache = self.cache.read().await;
        cache.clone()
    }

    pub async fn get_app_settings(&self) -> AppSettings {
        let settings = self.get_all_settings().await;
        AppSettings::from_settings_manager(&settings)
    }

    pub async fn set_app_settings(
        &self, app_settings: &AppSettings,
    ) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
        let settings_map = app_settings.to_settings_map();

        for (key, value) in settings_map.iter() {
            self.set_setting(key, value).await?;
        }

        Ok(())
    }

    pub async fn get_ssl_enabled(&self) -> bool {
        if let Some(value) = self.get_setting("ssl_enabled").await {
            value.parse::<bool>().unwrap_or(false)
        } else {
            false
        }
    }

    pub async fn set_ssl_enabled(
        &self, enabled: bool,
    ) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
        self.set_setting("ssl_enabled", &enabled.to_string()).await
    }

    pub async fn get_ssl_cert_validity_days(&self) -> u16 {
        if let Some(value) = self.get_setting("ssl_cert_validity_days").await {
            value.parse::<u16>().unwrap_or(365)
        } else {
            365
        }
    }

    pub async fn set_ssl_cert_validity_days(
        &self, days: u16,
    ) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
        self.set_setting("ssl_cert_validity_days", &days.to_string())
            .await
    }

    pub async fn get_ssl_auto_regenerate(&self) -> bool {
        if let Some(value) = self.get_setting("ssl_auto_regenerate").await {
            value.parse::<bool>().unwrap_or(true)
        } else {
            true
        }
    }

    pub async fn set_ssl_auto_regenerate(
        &self, enabled: bool,
    ) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
        self.set_setting("ssl_auto_regenerate", &enabled.to_string())
            .await
    }

    pub async fn get_ssl_ca_auto_install(&self) -> bool {
        if let Some(value) = self.get_setting("ssl_ca_auto_install").await {
            value.parse::<bool>().unwrap_or(false)
        } else {
            false
        }
    }

    pub async fn set_ssl_ca_auto_install(
        &self, enabled: bool,
    ) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
        self.set_setting("ssl_ca_auto_install", &enabled.to_string())
            .await
    }

    pub async fn get_global_shortcut(&self) -> String {
        if let Some(value) = self.get_setting("global_shortcut").await {
            value
        } else {
            "Ctrl+Shift+F1".to_string()
        }
    }

    pub async fn set_global_shortcut(
        &self, shortcut: &str,
    ) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
        self.set_setting("global_shortcut", shortcut).await
    }

    pub async fn get_mcp_server_enabled(&self) -> bool {
        if let Some(value) = self.get_setting("mcp_server_enabled").await {
            value.parse::<bool>().unwrap_or(false)
        } else {
            false
        }
    }

    pub async fn set_mcp_server_enabled(
        &self, enabled: bool,
    ) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
        self.set_setting("mcp_server_enabled", &enabled.to_string())
            .await
    }

    pub async fn get_mcp_server_port(&self) -> u16 {
        if let Some(value) = self.get_setting("mcp_server_port").await {
            value.parse::<u16>().unwrap_or(3000)
        } else {
            3000
        }
    }

    pub async fn set_mcp_server_port(
        &self, port: u16,
    ) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
        self.set_setting("mcp_server_port", &port.to_string()).await
    }
}

impl Default for SettingsManager {
    fn default() -> Self {
        Self::new()
    }
}

async fn load_all_settings(pool: &SqlitePool) -> Result<Vec<Setting>, sqlx::Error> {
    let mut conn = pool.acquire().await?;
    let rows = sqlx::query("SELECT key, value, updated_at FROM settings ORDER BY key")
        .fetch_all(&mut *conn)
        .await?;

    let settings = rows
        .into_iter()
        .map(|row| Setting {
            key: row.get("key"),
            value: row.get("value"),
            updated_at: row.get("updated_at"),
        })
        .collect();

    Ok(settings)
}

pub async fn upsert_setting(pool: &SqlitePool, key: &str, value: &str) -> Result<(), sqlx::Error> {
    let mut conn = pool.acquire().await?;
    sqlx::query(
        "INSERT INTO settings (key, value, updated_at)
         VALUES (?, ?, CURRENT_TIMESTAMP)
         ON CONFLICT(key) DO UPDATE SET
         value = excluded.value,
         updated_at = CURRENT_TIMESTAMP",
    )
    .bind(key)
    .bind(value)
    .execute(&mut *conn)
    .await?;
    Ok(())
}

/// Removes a setting from a specific database.
pub async fn delete_setting_with_mode(
    key: &str, mode: DatabaseMode,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    let context = DatabaseManager::get_context(mode).await?;
    let mut conn = context.pool.acquire().await?;
    sqlx::query("DELETE FROM settings WHERE key = ?")
        .bind(key)
        .execute(&mut *conn)
        .await?;
    Ok(())
}

/// Reads every setting whose key starts with `prefix`, from a specific
/// database.
pub async fn get_settings_with_prefix_and_mode(
    prefix: &str, mode: DatabaseMode,
) -> Result<Vec<(String, String)>, Box<dyn std::error::Error + Send + Sync>> {
    let context = DatabaseManager::get_context(mode).await?;
    let mut conn = context.pool.acquire().await?;
    // `LIKE` treats `_` and `%` as wildcards and ignores ASCII case, so it is
    // used only to narrow the scan; the prefix itself is enforced below.
    let escaped = prefix
        .replace('\\', "\\\\")
        .replace('%', "\\%")
        .replace('_', "\\_");
    let rows = sqlx::query("SELECT key, value FROM settings WHERE key LIKE ? ESCAPE '\\'")
        .bind(format!("{escaped}%"))
        .fetch_all(&mut *conn)
        .await?;

    Ok(rows
        .iter()
        .map(|row| {
            (
                sqlx::Row::get::<String, _>(row, "key"),
                sqlx::Row::get::<String, _>(row, "value"),
            )
        })
        .filter(|(key, _)| key.starts_with(prefix))
        .collect())
}

pub async fn get_setting(
    key: &str,
) -> Result<Option<String>, Box<dyn std::error::Error + Send + Sync>> {
    let pool = get_db_pool().await?;
    get_setting_with_pool(&pool, key).await
}

pub async fn get_setting_with_pool(
    pool: &SqlitePool, key: &str,
) -> Result<Option<String>, Box<dyn std::error::Error + Send + Sync>> {
    let mut conn = pool.acquire().await?;
    let result = sqlx::query("SELECT value FROM settings WHERE key = ?")
        .bind(key)
        .fetch_optional(&mut *conn)
        .await?;

    Ok(result.map(|row| row.get("value")))
}

pub async fn set_setting(
    key: &str, value: &str,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    let pool = get_db_pool().await?;
    upsert_setting(&pool, key, value).await?;
    Ok(())
}

pub async fn get_disconnect_timeout()
-> Result<Option<u32>, Box<dyn std::error::Error + Send + Sync>> {
    if let Some(value) = get_setting("disconnect_timeout_minutes").await? {
        Ok(value.parse::<u32>().ok())
    } else {
        Ok(Some(0)) // Default to 0 (no timeout)
    }
}

pub async fn set_disconnect_timeout(
    minutes: u32,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    set_setting("disconnect_timeout_minutes", &minutes.to_string()).await
}

pub async fn get_network_monitor() -> Result<bool, Box<dyn std::error::Error + Send + Sync>> {
    if let Some(value) = get_setting("network_monitor").await? {
        Ok(value.parse::<bool>().unwrap_or(true))
    } else {
        Ok(true) // Default to true
    }
}

pub async fn set_network_monitor(
    enabled: bool,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    set_setting("network_monitor", &enabled.to_string()).await
}

pub async fn get_setting_with_mode(
    key: &str, mode: DatabaseMode,
) -> Result<Option<String>, Box<dyn std::error::Error + Send + Sync>> {
    let context = DatabaseManager::get_context(mode).await?;
    let mut conn = context.pool.acquire().await?;
    let result = sqlx::query("SELECT value FROM settings WHERE key = ?")
        .bind(key)
        .fetch_optional(&mut *conn)
        .await?;
    Ok(result.map(|row| row.get("value")))
}

pub async fn set_setting_with_mode(
    key: &str, value: &str, mode: DatabaseMode,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    let context = DatabaseManager::get_context(mode).await?;
    upsert_setting(&context.pool, key, value).await?;
    Ok(())
}

/// Atomically increments the integer value of a setting, creating it at `1`
/// if it does not exist yet, and returns the new value.
///
/// The read, increment and write happen in a single statement, so concurrent
/// callers each observe a distinct result instead of racing a separate get
/// and set. A value that is not numeric, or that is already at `u32::MAX`,
/// is rejected without mutating the row: incrementing past `u32::MAX` would
/// store a value that no longer round-trips through `u32::parse`, wedging
/// every future increment.
pub async fn increment_setting_with_mode(
    key: &str, mode: DatabaseMode,
) -> Result<u32, Box<dyn std::error::Error + Send + Sync>> {
    let context = DatabaseManager::get_context(mode).await?;
    let mut conn = context.pool.acquire().await?;
    let row = sqlx::query(
        "INSERT INTO settings (key, value, updated_at)
         VALUES (?, '1', CURRENT_TIMESTAMP)
         ON CONFLICT(key) DO UPDATE SET
         value = CAST(value AS INTEGER) + 1,
         updated_at = CURRENT_TIMESTAMP
         WHERE value NOT GLOB '*[^0-9]*' AND value != '' AND CAST(value AS INTEGER) < 4294967295
         RETURNING value",
    )
    .bind(key)
    .fetch_optional(&mut *conn)
    .await?;
    let Some(row) = row else {
        return Err(format!(
            "setting {key} holds a non-numeric value, or is already at its maximum, and cannot \
             be incremented"
        )
        .into());
    };
    let value: String = row.get("value");
    Ok(value.parse()?)
}

pub async fn get_disconnect_timeout_with_mode(
    mode: DatabaseMode,
) -> Result<Option<u32>, Box<dyn std::error::Error + Send + Sync>> {
    if let Some(value) = get_setting_with_mode("disconnect_timeout_minutes", mode).await? {
        Ok(value.parse::<u32>().ok())
    } else {
        Ok(Some(0))
    }
}

pub async fn set_disconnect_timeout_with_mode(
    minutes: u32, mode: DatabaseMode,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    set_setting_with_mode("disconnect_timeout_minutes", &minutes.to_string(), mode).await
}

pub async fn get_network_monitor_with_mode(
    mode: DatabaseMode,
) -> Result<bool, Box<dyn std::error::Error + Send + Sync>> {
    if let Some(value) = get_setting_with_mode("network_monitor", mode).await? {
        Ok(value.parse::<bool>().unwrap_or(true))
    } else {
        Ok(true)
    }
}

pub async fn set_network_monitor_with_mode(
    enabled: bool, mode: DatabaseMode,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    set_setting_with_mode("network_monitor", &enabled.to_string(), mode).await
}

pub async fn get_auto_update_enabled() -> Result<bool, Box<dyn std::error::Error + Send + Sync>> {
    if let Some(value) = get_setting("auto_update_enabled").await? {
        Ok(value.parse::<bool>().unwrap_or(true))
    } else {
        Ok(true)
    }
}

pub async fn set_auto_update_enabled(
    enabled: bool,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    set_setting("auto_update_enabled", &enabled.to_string()).await
}

pub async fn get_last_update_check() -> Result<Option<i64>, Box<dyn std::error::Error + Send + Sync>>
{
    if let Some(value) = get_setting("last_update_check").await? {
        Ok(value.parse::<i64>().ok())
    } else {
        Ok(None)
    }
}

pub async fn set_last_update_check(
    timestamp: i64,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    set_setting("last_update_check", &timestamp.to_string()).await
}

pub async fn get_auto_update_enabled_with_mode(
    mode: DatabaseMode,
) -> Result<bool, Box<dyn std::error::Error + Send + Sync>> {
    if let Some(value) = get_setting_with_mode("auto_update_enabled", mode).await? {
        Ok(value.parse::<bool>().unwrap_or(true))
    } else {
        Ok(true)
    }
}

pub async fn set_auto_update_enabled_with_mode(
    enabled: bool, mode: DatabaseMode,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    set_setting_with_mode("auto_update_enabled", &enabled.to_string(), mode).await
}

pub async fn get_app_settings() -> Result<AppSettings, Box<dyn std::error::Error + Send + Sync>> {
    let pool = get_db_pool().await?;
    let settings = load_all_settings(&pool).await?;

    let settings_map: HashMap<String, String> =
        settings.into_iter().map(|s| (s.key, s.value)).collect();

    Ok(AppSettings::from_settings_manager(&settings_map))
}

pub async fn set_app_settings(
    app_settings: &AppSettings,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    let pool = get_db_pool().await?;
    let settings_map = app_settings.to_settings_map();

    for (key, value) in settings_map.iter() {
        upsert_setting(&pool, key, value).await?;
    }

    Ok(())
}

pub async fn get_ssl_enabled() -> Result<bool, Box<dyn std::error::Error + Send + Sync>> {
    if let Some(value) = get_setting("ssl_enabled").await? {
        Ok(value.parse::<bool>().unwrap_or(false))
    } else {
        Ok(false)
    }
}

pub async fn set_ssl_enabled(
    enabled: bool,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    set_setting("ssl_enabled", &enabled.to_string()).await
}

pub async fn get_ssl_cert_validity_days() -> Result<u16, Box<dyn std::error::Error + Send + Sync>> {
    if let Some(value) = get_setting("ssl_cert_validity_days").await? {
        Ok(value.parse::<u16>().unwrap_or(365))
    } else {
        Ok(365)
    }
}

pub async fn set_ssl_cert_validity_days(
    days: u16,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    set_setting("ssl_cert_validity_days", &days.to_string()).await
}

pub async fn get_ssl_auto_regenerate() -> Result<bool, Box<dyn std::error::Error + Send + Sync>> {
    if let Some(value) = get_setting("ssl_auto_regenerate").await? {
        Ok(value.parse::<bool>().unwrap_or(true))
    } else {
        Ok(true)
    }
}

pub async fn set_ssl_auto_regenerate(
    enabled: bool,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    set_setting("ssl_auto_regenerate", &enabled.to_string()).await
}

pub async fn get_ssl_ca_auto_install() -> Result<bool, Box<dyn std::error::Error + Send + Sync>> {
    if let Some(value) = get_setting("ssl_ca_auto_install").await? {
        Ok(value.parse::<bool>().unwrap_or(false))
    } else {
        Ok(false)
    }
}

pub async fn set_ssl_ca_auto_install(
    enabled: bool,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    set_setting("ssl_ca_auto_install", &enabled.to_string()).await
}

pub async fn get_global_shortcut() -> Result<String, Box<dyn std::error::Error + Send + Sync>> {
    if let Some(value) = get_setting("global_shortcut").await? {
        Ok(value)
    } else {
        Ok("Ctrl+Shift+F1".to_string())
    }
}

pub async fn set_global_shortcut(
    shortcut: &str,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    set_setting("global_shortcut", shortcut).await
}

pub async fn get_mcp_server_enabled() -> Result<bool, Box<dyn std::error::Error + Send + Sync>> {
    if let Some(value) = get_setting("mcp_server_enabled").await? {
        Ok(value.parse::<bool>().unwrap_or(false))
    } else {
        Ok(false)
    }
}

pub async fn set_mcp_server_enabled(
    enabled: bool,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    set_setting("mcp_server_enabled", &enabled.to_string()).await
}

pub async fn get_mcp_server_port() -> Result<u16, Box<dyn std::error::Error + Send + Sync>> {
    if let Some(value) = get_setting("mcp_server_port").await? {
        Ok(value.parse::<u16>().unwrap_or(3000))
    } else {
        Ok(3000)
    }
}

pub async fn set_mcp_server_port(
    port: u16,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    set_setting("mcp_server_port", &port.to_string()).await
}

pub async fn get_ssl_enabled_with_mode(
    mode: DatabaseMode,
) -> Result<bool, Box<dyn std::error::Error + Send + Sync>> {
    if let Some(value) = get_setting_with_mode("ssl_enabled", mode).await? {
        Ok(value.parse::<bool>().unwrap_or(false))
    } else {
        Ok(false)
    }
}

pub async fn set_ssl_enabled_with_mode(
    enabled: bool, mode: DatabaseMode,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    set_setting_with_mode("ssl_enabled", &enabled.to_string(), mode).await
}

pub async fn get_ssl_cert_validity_days_with_mode(
    mode: DatabaseMode,
) -> Result<u16, Box<dyn std::error::Error + Send + Sync>> {
    if let Some(value) = get_setting_with_mode("ssl_cert_validity_days", mode).await? {
        Ok(value.parse::<u16>().unwrap_or(365))
    } else {
        Ok(365)
    }
}

pub async fn set_ssl_cert_validity_days_with_mode(
    days: u16, mode: DatabaseMode,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    set_setting_with_mode("ssl_cert_validity_days", &days.to_string(), mode).await
}

pub async fn get_ssl_auto_regenerate_with_mode(
    mode: DatabaseMode,
) -> Result<bool, Box<dyn std::error::Error + Send + Sync>> {
    if let Some(value) = get_setting_with_mode("ssl_auto_regenerate", mode).await? {
        Ok(value.parse::<bool>().unwrap_or(true))
    } else {
        Ok(true)
    }
}

pub async fn set_ssl_auto_regenerate_with_mode(
    enabled: bool, mode: DatabaseMode,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    set_setting_with_mode("ssl_auto_regenerate", &enabled.to_string(), mode).await
}

pub async fn get_ssl_ca_auto_install_with_mode(
    mode: DatabaseMode,
) -> Result<bool, Box<dyn std::error::Error + Send + Sync>> {
    if let Some(value) = get_setting_with_mode("ssl_ca_auto_install", mode).await? {
        Ok(value.parse::<bool>().unwrap_or(false))
    } else {
        Ok(false)
    }
}

pub async fn set_ssl_ca_auto_install_with_mode(
    enabled: bool, mode: DatabaseMode,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    set_setting_with_mode("ssl_ca_auto_install", &enabled.to_string(), mode).await
}

pub async fn get_app_settings_with_mode(
    mode: DatabaseMode,
) -> Result<AppSettings, Box<dyn std::error::Error + Send + Sync>> {
    let context = DatabaseManager::get_context(mode).await?;
    let settings = load_all_settings(&context.pool).await?;

    let settings_map: HashMap<String, String> =
        settings.into_iter().map(|s| (s.key, s.value)).collect();

    Ok(AppSettings::from_settings_manager(&settings_map))
}

/// Scope prefix of a database mode inside a setting key.
pub fn mode_scope(mode: DatabaseMode) -> &'static str {
    match mode {
        DatabaseMode::File => "file",
        DatabaseMode::Memory => "memory",
    }
}

/// Key under which an exposure is marked as one whose ingress history was
/// never recorded, because it predates the recording.
pub fn expose_legacy_key(config_id: &str, mode: DatabaseMode) -> String {
    format!("expose_legacy_possible:{}:{config_id}", mode_scope(mode))
}

/// Key under which a database records that its baseline has been taken.
pub fn expose_history_baseline_key(mode: DatabaseMode) -> String {
    format!("expose_history_baseline:{}", mode_scope(mode))
}

/// Key under which the ids snapshotted by a failed init baseline attempt are
/// persisted, so a lazy baseline establishment in a later process restarted
/// on this database still restricts itself to configs that existed before
/// the failed attempt, instead of the in-memory snapshot being lost with the
/// process and every currently existing row being treated as unrestricted.
fn expose_baseline_pending_ids_key(mode: DatabaseMode) -> String {
    format!("expose_baseline_pending_ids:{}", mode_scope(mode))
}

/// Config ids seen at the moment this process gave up retrying the
/// baseline, keyed by database mode.
///
/// A later lazy call (from `ensure_expose_history_baseline`) uses this to
/// mark only ids that already existed back then as having no recoverable
/// history: without it, a row inserted after the failed init would be swept
/// up by whatever the lazy call happens to see in the `configs` table and
/// wrongly marked as predating ingress history.
static FAILED_BASELINE_SNAPSHOT: LazyLock<Mutex<HashMap<DatabaseMode, HashSet<i64>>>> =
    LazyLock::new(|| Mutex::new(HashMap::new()));

const BASELINE_INIT_ATTEMPTS: u32 = 3;
const BASELINE_INIT_RETRY_DELAY: std::time::Duration = std::time::Duration::from_millis(50);

/// Establishes the expose history baseline at database initialisation,
/// retrying a transient failure (e.g. `SQLITE_BUSY` from another kftray
/// process sharing the file database) a few times before giving up.
///
/// If every attempt fails, the ids of the configs that exist right now are
/// snapshotted so a later lazy call marks only those ids as legacy, never
/// one inserted afterwards.
pub async fn establish_expose_history_baseline_at_init(
    pool: &SqlitePool, mode: DatabaseMode,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    let mut last_error = None;
    for attempt in 0..BASELINE_INIT_ATTEMPTS {
        if attempt > 0 {
            tokio::time::sleep(BASELINE_INIT_RETRY_DELAY * attempt).await;
        }
        match establish_expose_history_baseline(pool, mode).await {
            Ok(()) => return Ok(()),
            Err(error) => last_error = Some(error),
        }
    }

    if let Ok(rows) = sqlx::query("SELECT id FROM configs").fetch_all(pool).await {
        let ids: HashSet<i64> = rows
            .iter()
            .filter_map(|row| row.try_get("id").ok())
            .collect();
        let serialized =
            serde_json::to_string(&ids.iter().copied().collect::<Vec<_>>()).unwrap_or_default();
        FAILED_BASELINE_SNAPSHOT.lock().unwrap().insert(mode, ids);
        if let Err(error) =
            upsert_setting(pool, &expose_baseline_pending_ids_key(mode), &serialized).await
        {
            warn!(
                "failed to persist the expose baseline pending id allow-list: {error}; \
                 relying on the in-memory snapshot for this process only"
            );
        }
    }
    // If the snapshot query itself fails, no entry is recorded for `mode`:
    // the lazy path then treats every row it later sees as unrestricted,
    // instead of an empty allow-list that would mark nothing.

    Err(last_error.expect("loop runs at least once"))
}

pub async fn establish_expose_history_baseline(
    pool: &SqlitePool, mode: DatabaseMode,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    let baseline = expose_history_baseline_key(mode);
    // The common case, on every expose start and stop once a baseline has
    // been taken, is that the marker is already present: check it with a
    // plain read against the pool first, so that case never pays for the
    // exclusive write lock below.
    if sqlx::query("SELECT 1 FROM settings WHERE key = ?")
        .bind(&baseline)
        .fetch_optional(pool)
        .await?
        .is_some()
    {
        return Ok(());
    }
    // One write transaction from the check to the marker: two processes
    // sharing the file database can both initialise it, and a baseline taken
    // by the second after the first finished would mark rows inserted in
    // between, which do have a history, as ones that never had one. An
    // immediate transaction takes the write lock up front, so the second
    // initialiser sees the marker the first wrote.
    // Through the transaction guard: a future dropped partway, or a failed
    // commit, must not hand the pooled connection back with a write
    // transaction still open on it.
    let mut tx = pool.begin_with("BEGIN IMMEDIATE").await?;
    let in_memory_snapshot = FAILED_BASELINE_SNAPSHOT.lock().unwrap().get(&mode).cloned();
    let allowed_ids = match in_memory_snapshot {
        Some(ids) => Some(ids),
        // The in-memory snapshot only survives within the process that took
        // it; a process restarted after a failed init still needs the
        // allow-list it persisted, or it would treat every row it now sees
        // as unrestricted and mark rows created after the failed attempt.
        None => read_pending_baseline_ids(&mut tx, mode).await?,
    };
    take_expose_history_baseline(&mut tx, &baseline, mode, allowed_ids.as_ref()).await?;
    clear_pending_baseline_ids(&mut tx, mode).await?;
    tx.commit().await?;
    Ok(())
}

async fn read_pending_baseline_ids(
    conn: &mut sqlx::SqliteConnection, mode: DatabaseMode,
) -> Result<Option<HashSet<i64>>, Box<dyn std::error::Error + Send + Sync>> {
    let row = sqlx::query("SELECT value FROM settings WHERE key = ?")
        .bind(expose_baseline_pending_ids_key(mode))
        .fetch_optional(&mut *conn)
        .await?;
    let Some(row) = row else {
        return Ok(None);
    };
    let value: String = row.try_get("value")?;
    let ids: Vec<i64> = serde_json::from_str(&value)?;
    Ok(Some(ids.into_iter().collect()))
}

/// Deletes the persisted allow-list once the baseline marker has been
/// written (or was already present), so it never lingers to restrict a
/// baseline this database will never take again.
async fn clear_pending_baseline_ids(
    conn: &mut sqlx::SqliteConnection, mode: DatabaseMode,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    sqlx::query("DELETE FROM settings WHERE key = ?")
        .bind(expose_baseline_pending_ids_key(mode))
        .execute(&mut *conn)
        .await?;
    Ok(())
}

async fn take_expose_history_baseline(
    conn: &mut sqlx::SqliteConnection, baseline: &str, mode: DatabaseMode,
    allowed_ids: Option<&HashSet<i64>>,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    const UPSERT: &str = "INSERT INTO settings (key, value, updated_at) VALUES (?, '1', \
                          CURRENT_TIMESTAMP) ON CONFLICT(key) DO UPDATE SET value = \
                          excluded.value, updated_at = CURRENT_TIMESTAMP";

    let taken = sqlx::query("SELECT value FROM settings WHERE key = ?")
        .bind(baseline)
        .fetch_optional(&mut *conn)
        .await?;
    if taken.is_some() {
        return Ok(());
    }
    let rows = sqlx::query("SELECT id, data FROM configs")
        .fetch_all(&mut *conn)
        .await?;
    for row in rows {
        let id: i64 = row.try_get("id")?;
        if allowed_ids.is_some_and(|allowed| !allowed.contains(&id)) {
            continue;
        }
        let data: String = row.try_get("data")?;
        // Only the one field matters, read on its own: a row whose other
        // fields do not decode is still an exposure if this one says so, and
        // the baseline is taken once, so a row misread now would be treated
        // ever after as one that has a history it never had. A row that is
        // not even JSON is marked too, on the same reasoning.
        let is_exposure = match serde_json::from_str::<serde_json::Value>(&data) {
            Ok(value) => {
                value.get("workload_type").and_then(|kind| kind.as_str()) == Some("expose")
            }
            Err(_) => true,
        };
        if !is_exposure {
            continue;
        }
        sqlx::query(UPSERT)
            .bind(expose_legacy_key(&id.to_string(), mode))
            .execute(&mut *conn)
            .await?;
    }
    sqlx::query(UPSERT)
        .bind(baseline)
        .execute(&mut *conn)
        .await?;
    Ok(())
}

#[cfg(test)]
mod tests {
    use sqlx::SqlitePool;

    use super::*;
    use crate::utils::db::create_db_table;

    async fn create_test_pool() -> SqlitePool {
        let pool = SqlitePool::connect("sqlite::memory:").await.unwrap();
        create_db_table(&pool).await.unwrap();
        pool
    }

    #[tokio::test]
    async fn test_upsert_setting() {
        let pool = create_test_pool().await;

        upsert_setting(&pool, "test_key", "test_value")
            .await
            .unwrap();

        let result: String = sqlx::query("SELECT value FROM settings WHERE key = 'test_key'")
            .fetch_one(&pool)
            .await
            .unwrap()
            .get("value");
        assert_eq!(result, "test_value");

        upsert_setting(&pool, "test_key", "updated_value")
            .await
            .unwrap();

        let result: String = sqlx::query("SELECT value FROM settings WHERE key = 'test_key'")
            .fetch_one(&pool)
            .await
            .unwrap()
            .get("value");
        assert_eq!(result, "updated_value");
    }

    #[tokio::test]
    async fn test_load_all_settings() {
        let pool = create_test_pool().await;

        upsert_setting(&pool, "key1", "value1").await.unwrap();
        upsert_setting(&pool, "key2", "value2").await.unwrap();

        let settings = load_all_settings(&pool).await.unwrap();

        assert_eq!(settings.len(), 2);
        assert_eq!(settings[0].key, "key1");
        assert_eq!(settings[0].value, "value1");
        assert_eq!(settings[1].key, "key2");
        assert_eq!(settings[1].value, "value2");
    }

    #[tokio::test]
    async fn test_settings_manager() {
        let pool = create_test_pool().await;

        upsert_setting(&pool, "test_timeout", "30").await.unwrap();
        let settings = load_all_settings(&pool).await.unwrap();
        assert_eq!(settings.len(), 1);
        assert_eq!(settings[0].key, "test_timeout");
        assert_eq!(settings[0].value, "30");

        upsert_setting(&pool, "test_timeout", "60").await.unwrap();
        let settings = load_all_settings(&pool).await.unwrap();
        assert_eq!(settings.len(), 1);
        assert_eq!(settings[0].value, "60");

        let _manager = SettingsManager::new();
    }

    #[tokio::test]
    async fn test_settings_with_mode_memory() {
        let _lock = crate::test_utils::MEMORY_MODE_TEST_MUTEX.lock().await;
        set_setting_with_mode("memory_test", "test_value", DatabaseMode::Memory)
            .await
            .unwrap();

        let value = get_setting_with_mode("memory_test", DatabaseMode::Memory)
            .await
            .unwrap();
        assert_eq!(value, Some("test_value".to_string()));

        set_disconnect_timeout_with_mode(120, DatabaseMode::Memory)
            .await
            .unwrap();
        let timeout = get_disconnect_timeout_with_mode(DatabaseMode::Memory)
            .await
            .unwrap();
        assert_eq!(timeout, Some(120));

        set_network_monitor_with_mode(false, DatabaseMode::Memory)
            .await
            .unwrap();
        let monitor = get_network_monitor_with_mode(DatabaseMode::Memory)
            .await
            .unwrap();
        assert!(!monitor);
    }

    #[tokio::test]
    async fn test_settings_isolation_between_modes() {
        let _lock = crate::test_utils::MEMORY_MODE_TEST_MUTEX.lock().await;
        let memory_context = DatabaseManager::get_context(DatabaseMode::Memory)
            .await
            .unwrap();
        let memory_key = "isolation_test_memory";

        upsert_setting(&memory_context.pool, memory_key, "memory_value")
            .await
            .unwrap();

        let memory_result = get_setting_with_pool(&memory_context.pool, memory_key)
            .await
            .unwrap();
        assert_eq!(memory_result, Some("memory_value".to_string()));

        let different_key = "isolation_test_different";
        let different_result = get_setting_with_pool(&memory_context.pool, different_key)
            .await
            .unwrap();
        assert!(
            different_result.is_none(),
            "Different key should not have data"
        );

        let same_result = get_setting_with_pool(&memory_context.pool, memory_key)
            .await
            .unwrap();
        assert_eq!(same_result, Some("memory_value".to_string()));
    }

    #[tokio::test]
    async fn test_lazy_baseline_never_marks_row_created_after_failed_init_memory_mode() {
        let _lock = crate::test_utils::MEMORY_MODE_TEST_MUTEX.lock().await;

        let context = DatabaseManager::get_context(DatabaseMode::Memory)
            .await
            .unwrap();
        let pool = context.pool.clone();

        crate::utils::config::delete_all_configs_with_pool(&pool)
            .await
            .unwrap();
        let _ = delete_setting_with_mode(
            &expose_history_baseline_key(DatabaseMode::Memory),
            DatabaseMode::Memory,
        )
        .await;

        let existing_config = crate::models::config_model::Config {
            workload_type: Some("expose".to_string()),
            ..Default::default()
        };
        let existing_id = crate::utils::config::insert_config_with_pool_and_mode(
            existing_config,
            &pool,
            DatabaseMode::Memory,
        )
        .await
        .unwrap();

        // Simulate a process that failed every baseline retry at init: at
        // that moment only `existing_id` existed.
        FAILED_BASELINE_SNAPSHOT
            .lock()
            .unwrap()
            .insert(DatabaseMode::Memory, HashSet::from([existing_id]));

        let created_after_failed_init = crate::models::config_model::Config {
            workload_type: Some("expose".to_string()),
            ..Default::default()
        };
        let after_id = crate::utils::config::insert_config_with_pool_and_mode(
            created_after_failed_init,
            &pool,
            DatabaseMode::Memory,
        )
        .await
        .unwrap();

        establish_expose_history_baseline(&pool, DatabaseMode::Memory)
            .await
            .unwrap();

        let existing_marked = get_setting_with_mode(
            &expose_legacy_key(&existing_id.to_string(), DatabaseMode::Memory),
            DatabaseMode::Memory,
        )
        .await
        .unwrap();
        assert!(
            existing_marked.is_some(),
            "a config that existed at the failed-init snapshot must be marked legacy"
        );

        let after_marked = get_setting_with_mode(
            &expose_legacy_key(&after_id.to_string(), DatabaseMode::Memory),
            DatabaseMode::Memory,
        )
        .await
        .unwrap();
        assert!(
            after_marked.is_none(),
            "a config created after the failed init must never be marked legacy"
        );

        FAILED_BASELINE_SNAPSHOT
            .lock()
            .unwrap()
            .remove(&DatabaseMode::Memory);
        let _ = delete_setting_with_mode(
            &expose_history_baseline_key(DatabaseMode::Memory),
            DatabaseMode::Memory,
        )
        .await;
        let _ = crate::utils::config::delete_all_configs_with_pool(&pool).await;
    }

    #[tokio::test]
    async fn test_failed_snapshot_query_leaves_lazy_baseline_unrestricted_memory_mode() {
        let _lock = crate::test_utils::MEMORY_MODE_TEST_MUTEX.lock().await;

        let context = DatabaseManager::get_context(DatabaseMode::Memory)
            .await
            .unwrap();
        let pool = context.pool.clone();

        crate::utils::config::delete_all_configs_with_pool(&pool)
            .await
            .unwrap();
        let _ = delete_setting_with_mode(
            &expose_history_baseline_key(DatabaseMode::Memory),
            DatabaseMode::Memory,
        )
        .await;
        FAILED_BASELINE_SNAPSHOT
            .lock()
            .unwrap()
            .remove(&DatabaseMode::Memory);

        // Force every baseline attempt, including the fallback snapshot
        // query, to fail.
        sqlx::query("DROP TABLE configs")
            .execute(&*pool)
            .await
            .unwrap();

        let init_result =
            establish_expose_history_baseline_at_init(&pool, DatabaseMode::Memory).await;
        assert!(
            init_result.is_err(),
            "every attempt must fail with no configs table"
        );
        assert!(
            FAILED_BASELINE_SNAPSHOT
                .lock()
                .unwrap()
                .get(&DatabaseMode::Memory)
                .is_none(),
            "a failed snapshot query must not record an empty allow-list"
        );

        // Recreate the schema, as `db::init` would on the next run, and
        // insert a pre-existing exposure the failed init never saw.
        crate::utils::db::create_db_table(&pool).await.unwrap();

        let pre_existing = crate::models::config_model::Config {
            workload_type: Some("expose".to_string()),
            ..Default::default()
        };
        let pre_existing_id = crate::utils::config::insert_config_with_pool_and_mode(
            pre_existing,
            &pool,
            DatabaseMode::Memory,
        )
        .await
        .unwrap();

        establish_expose_history_baseline(&pool, DatabaseMode::Memory)
            .await
            .unwrap();

        let marked = get_setting_with_mode(
            &expose_legacy_key(&pre_existing_id.to_string(), DatabaseMode::Memory),
            DatabaseMode::Memory,
        )
        .await
        .unwrap();
        assert!(
            marked.is_some(),
            "the lazy baseline must mark a pre-existing exposure when init's snapshot failed"
        );

        FAILED_BASELINE_SNAPSHOT
            .lock()
            .unwrap()
            .remove(&DatabaseMode::Memory);
        let _ = delete_setting_with_mode(
            &expose_history_baseline_key(DatabaseMode::Memory),
            DatabaseMode::Memory,
        )
        .await;
        let _ = crate::utils::config::delete_all_configs_with_pool(&pool).await;
    }

    #[tokio::test]
    async fn test_snapshot_is_recorded_in_memory_even_when_persisting_it_fails_memory_mode() {
        let _lock = crate::test_utils::MEMORY_MODE_TEST_MUTEX.lock().await;

        let context = DatabaseManager::get_context(DatabaseMode::Memory)
            .await
            .unwrap();
        let pool = context.pool.clone();

        crate::utils::config::delete_all_configs_with_pool(&pool)
            .await
            .unwrap();
        let _ = delete_setting_with_mode(
            &expose_history_baseline_key(DatabaseMode::Memory),
            DatabaseMode::Memory,
        )
        .await;
        FAILED_BASELINE_SNAPSHOT
            .lock()
            .unwrap()
            .remove(&DatabaseMode::Memory);

        let existing_config = crate::models::config_model::Config {
            workload_type: Some("expose".to_string()),
            ..Default::default()
        };
        let existing_id = crate::utils::config::insert_config_with_pool_and_mode(
            existing_config,
            &pool,
            DatabaseMode::Memory,
        )
        .await
        .unwrap();

        // `configs` is left intact so the fallback snapshot query still
        // succeeds; only `settings` is gone, so both
        // `establish_expose_history_baseline` and the allow-list persist
        // attempt fail.
        sqlx::query("DROP TABLE settings")
            .execute(&*pool)
            .await
            .unwrap();

        let init_result =
            establish_expose_history_baseline_at_init(&pool, DatabaseMode::Memory).await;
        assert!(
            init_result.is_err(),
            "every attempt must fail with no settings table"
        );
        assert_eq!(
            FAILED_BASELINE_SNAPSHOT
                .lock()
                .unwrap()
                .get(&DatabaseMode::Memory)
                .cloned(),
            Some(HashSet::from([existing_id])),
            "the in-memory snapshot must be recorded even though persisting the allow-list \
             failed"
        );

        // Recreate the schema, as `db::init` would on the next run.
        crate::utils::db::create_db_table(&pool).await.unwrap();

        FAILED_BASELINE_SNAPSHOT
            .lock()
            .unwrap()
            .remove(&DatabaseMode::Memory);
        let _ = crate::utils::config::delete_all_configs_with_pool(&pool).await;
    }

    #[tokio::test]
    async fn test_persisted_baseline_allow_list_survives_a_restart_memory_mode() {
        let _lock = crate::test_utils::MEMORY_MODE_TEST_MUTEX.lock().await;

        let context = DatabaseManager::get_context(DatabaseMode::Memory)
            .await
            .unwrap();
        let pool = context.pool.clone();

        crate::utils::config::delete_all_configs_with_pool(&pool)
            .await
            .unwrap();
        let _ = delete_setting_with_mode(
            &expose_history_baseline_key(DatabaseMode::Memory),
            DatabaseMode::Memory,
        )
        .await;
        let _ = delete_setting_with_mode(
            &expose_baseline_pending_ids_key(DatabaseMode::Memory),
            DatabaseMode::Memory,
        )
        .await;
        FAILED_BASELINE_SNAPSHOT
            .lock()
            .unwrap()
            .remove(&DatabaseMode::Memory);

        let existing_config = crate::models::config_model::Config {
            workload_type: Some("expose".to_string()),
            ..Default::default()
        };
        let existing_id = crate::utils::config::insert_config_with_pool_and_mode(
            existing_config,
            &pool,
            DatabaseMode::Memory,
        )
        .await
        .unwrap();

        // A process that failed every baseline retry at init persists the
        // ids it saw to settings, on top of the in-memory snapshot.
        upsert_setting(
            &pool,
            &expose_baseline_pending_ids_key(DatabaseMode::Memory),
            &serde_json::to_string(&[existing_id]).unwrap(),
        )
        .await
        .unwrap();

        // Simulate a restart: a new process starts with an empty static, so
        // only the persisted settings key carries the allow-list forward.
        FAILED_BASELINE_SNAPSHOT
            .lock()
            .unwrap()
            .remove(&DatabaseMode::Memory);

        let created_after_failed_init = crate::models::config_model::Config {
            workload_type: Some("expose".to_string()),
            ..Default::default()
        };
        let after_id = crate::utils::config::insert_config_with_pool_and_mode(
            created_after_failed_init,
            &pool,
            DatabaseMode::Memory,
        )
        .await
        .unwrap();

        establish_expose_history_baseline(&pool, DatabaseMode::Memory)
            .await
            .unwrap();

        let existing_marked = get_setting_with_mode(
            &expose_legacy_key(&existing_id.to_string(), DatabaseMode::Memory),
            DatabaseMode::Memory,
        )
        .await
        .unwrap();
        assert!(
            existing_marked.is_some(),
            "a config recorded in the persisted allow-list must be marked legacy after a restart"
        );

        let after_marked = get_setting_with_mode(
            &expose_legacy_key(&after_id.to_string(), DatabaseMode::Memory),
            DatabaseMode::Memory,
        )
        .await
        .unwrap();
        assert!(
            after_marked.is_none(),
            "a config created after the failed init must never be marked legacy, even after a \
             restart lost the in-memory snapshot"
        );

        let pending_after = get_setting_with_mode(
            &expose_baseline_pending_ids_key(DatabaseMode::Memory),
            DatabaseMode::Memory,
        )
        .await
        .unwrap();
        assert!(
            pending_after.is_none(),
            "the persisted allow-list must be deleted once the baseline marker is written"
        );

        FAILED_BASELINE_SNAPSHOT
            .lock()
            .unwrap()
            .remove(&DatabaseMode::Memory);
        let _ = delete_setting_with_mode(
            &expose_history_baseline_key(DatabaseMode::Memory),
            DatabaseMode::Memory,
        )
        .await;
        let _ = crate::utils::config::delete_all_configs_with_pool(&pool).await;
    }

    #[tokio::test]
    async fn test_malformed_persisted_allow_list_errors_and_leaves_the_pending_key_memory_mode() {
        let _lock = crate::test_utils::MEMORY_MODE_TEST_MUTEX.lock().await;

        let context = DatabaseManager::get_context(DatabaseMode::Memory)
            .await
            .unwrap();
        let pool = context.pool.clone();

        let _ = delete_setting_with_mode(
            &expose_history_baseline_key(DatabaseMode::Memory),
            DatabaseMode::Memory,
        )
        .await;
        let _ = delete_setting_with_mode(
            &expose_baseline_pending_ids_key(DatabaseMode::Memory),
            DatabaseMode::Memory,
        )
        .await;
        FAILED_BASELINE_SNAPSHOT
            .lock()
            .unwrap()
            .remove(&DatabaseMode::Memory);

        // Not valid JSON: what a corrupted or hand-edited settings row
        // leaves behind.
        upsert_setting(
            &pool,
            &expose_baseline_pending_ids_key(DatabaseMode::Memory),
            "not json",
        )
        .await
        .unwrap();

        let result = establish_expose_history_baseline(&pool, DatabaseMode::Memory).await;
        assert!(
            result.is_err(),
            "a malformed persisted allow-list must error instead of silently becoming an empty \
             list"
        );

        let pending = get_setting_with_mode(
            &expose_baseline_pending_ids_key(DatabaseMode::Memory),
            DatabaseMode::Memory,
        )
        .await
        .unwrap();
        assert_eq!(
            pending,
            Some("not json".to_string()),
            "a rejected malformed allow-list must be left in place, not cleared"
        );

        let baseline_taken = get_setting_with_mode(
            &expose_history_baseline_key(DatabaseMode::Memory),
            DatabaseMode::Memory,
        )
        .await
        .unwrap();
        assert!(
            baseline_taken.is_none(),
            "the baseline marker must not be written when the allow-list read failed"
        );

        let _ = delete_setting_with_mode(
            &expose_baseline_pending_ids_key(DatabaseMode::Memory),
            DatabaseMode::Memory,
        )
        .await;
    }

    #[tokio::test]
    async fn test_increment_setting_with_mode_errors_on_a_non_numeric_value_memory_mode() {
        let _lock = crate::test_utils::MEMORY_MODE_TEST_MUTEX.lock().await;

        for junk in ["not-a-number", "12abc"] {
            let key = format!("junk_counter_test:{junk}:memory");
            let _ = delete_setting_with_mode(&key, DatabaseMode::Memory).await;

            let context = DatabaseManager::get_context(DatabaseMode::Memory)
                .await
                .unwrap();
            upsert_setting(&context.pool, &key, junk).await.unwrap();

            let result = increment_setting_with_mode(&key, DatabaseMode::Memory).await;
            assert!(
                result.is_err(),
                "a junk counter value ({junk}) must error instead of silently incrementing from a CAST-to-0"
            );

            let value = get_setting_with_mode(&key, DatabaseMode::Memory)
                .await
                .unwrap();
            assert_eq!(
                value,
                Some(junk.to_string()),
                "a rejected increment must leave the junk value ({junk}) untouched"
            );

            let _ = delete_setting_with_mode(&key, DatabaseMode::Memory).await;
        }
    }

    #[tokio::test]
    async fn test_increment_setting_with_mode_increments_a_numeric_value_memory_mode() {
        let _lock = crate::test_utils::MEMORY_MODE_TEST_MUTEX.lock().await;

        let key = "numeric_counter_test:memory";
        let _ = delete_setting_with_mode(key, DatabaseMode::Memory).await;

        let first = increment_setting_with_mode(key, DatabaseMode::Memory)
            .await
            .unwrap();
        assert_eq!(first, 1);

        let second = increment_setting_with_mode(key, DatabaseMode::Memory)
            .await
            .unwrap();
        assert_eq!(second, 2);

        let _ = delete_setting_with_mode(key, DatabaseMode::Memory).await;
    }

    #[tokio::test]
    async fn test_increment_setting_with_mode_rejects_an_already_maxed_counter_memory_mode() {
        let _lock = crate::test_utils::MEMORY_MODE_TEST_MUTEX.lock().await;

        let key = "maxed_counter_test:memory";
        let _ = delete_setting_with_mode(key, DatabaseMode::Memory).await;

        let context = DatabaseManager::get_context(DatabaseMode::Memory)
            .await
            .unwrap();
        upsert_setting(&context.pool, key, &u32::MAX.to_string())
            .await
            .unwrap();

        let result = increment_setting_with_mode(key, DatabaseMode::Memory).await;
        assert!(
            result.is_err(),
            "a counter already at u32::MAX must be rejected instead of overflowing on increment"
        );

        let value = get_setting_with_mode(key, DatabaseMode::Memory)
            .await
            .unwrap();
        assert_eq!(
            value,
            Some(u32::MAX.to_string()),
            "a rejected increment must leave the maxed counter untouched"
        );

        let _ = delete_setting_with_mode(key, DatabaseMode::Memory).await;
    }
}