tftio-kb 2.5.3

Personal knowledge base — typed AST with org-mode as projection, SQLite-backed
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
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
//! HTTP API type definition and handlers.
//!
//! Ported from Haskell `KB/API.hs` and `KB/API/Handlers.hs`.
//! Uses axum instead of Servant.
//!
//! ## Endpoints
//!
//! - `GET    /nodes/:id`            → 200 NodeView | 404
//! - `PUT    /nodes/:id`            → UpdateNodeRequest → 200 NodeView | 404
//! - `DELETE /nodes/:id`            → 204 | 404
//! - `GET    /nodes/:id/neighbors`  → 200 NeighborhoodResponse
//! - `POST   /nodes?id=…`           → CreateNodeRequest → 201 NodeView | 409
//! - `GET    /nodes?limit=&offset=` → 200 [NodeSummary]
//! - `GET    /search?q=…`           → 200 [NodeSummary]
//! - `GET    /tags/:tag`            → 200 [NodeSummary]
//! - `GET    /recent`               → 200 [NodeSummary]
//! - `POST   /admin/relink`         → 200 RelinkResponse
//!
//! ## Content negotiation
//!
//! Read/write endpoints honour `text/org` (with `text/plain` as a synonym)
//! on both `Content-Type` (request) and `Accept` (response). An org
//! request body is parsed via [`crate::parser`]; an org response renders
//! the document via [`crate::generator`]. An org response carries the
//! node id and timestamps in a leading `:PROPERTIES:` drawer (see
//! [`crate::org_meta`]); a matching drawer on an org request body is
//! stripped before storage. On `PUT` the drawer's `:ID:`, when present,
//! must equal the path id (a mismatch is `400`); on `POST` it is
//! discarded — callers wanting to set an id must use `?id=`.

use axum::{
    Json, Router,
    body::Bytes,
    extract::{DefaultBodyLimit, Path, Query, State},
    http::{HeaderMap, StatusCode, header},
    response::{IntoResponse, NoContent, Response},
    routing::{delete, get, post, put},
};
use serde::{Deserialize, Serialize};
use std::sync::{Arc, Mutex};

use crate::ast::{Document, NodeId, Tag, Title};
use crate::embedding::EmbeddingClient;
use crate::org_meta;
use crate::parser;
use crate::storage;

/// Shared application state passed to all handlers.
pub struct AppState {
    /// SQLite connection wrapped in a sync mutex.
    pub conn: Mutex<rusqlite::Connection>,
    /// Optional async embedding client. When `Some`, write-path handlers
    /// compute an embedding for each new/updated node and `/search`
    /// runs hybrid (FTS + vector) ranking. `None` short-circuits to
    /// FTS-only with no embeddings rows written.
    pub embedding_client: Option<Arc<dyn EmbeddingClient>>,
    /// Model name stamped into the `embeddings.model` column when a
    /// client is configured. `None` is equivalent to no client (no
    /// embedding row is written).
    pub embedding_model: Option<String>,
}

/// Full node response: identity, derived metadata, the AST, and timestamps.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub struct NodeView {
    pub id: NodeId,
    pub title: Title,
    pub tags: Vec<Tag>,
    pub document: Document,
    #[serde(rename = "createdAt")]
    pub created_at: String,
    #[serde(rename = "updatedAt")]
    pub updated_at: String,
}

/// Compact node listing for search/tags/recent results.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub struct NodeSummary {
    pub id: NodeId,
    pub title: Title,
}

/// `POST /nodes` body.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CreateNodeRequest {
    pub id: Option<String>,
    pub document: Document,
}

/// `PUT /nodes/:id` body.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct UpdateNodeRequest {
    pub document: Document,
}

/// One edge in a node's link neighborhood.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub struct NeighborEdge {
    pub target: String,
    #[serde(rename = "linkType")]
    pub link_type: storage::LinkType,
}

/// The link neighborhood of a node: outgoing and incoming edges.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub struct NeighborhoodResponse {
    pub outgoing: Vec<NeighborEdge>,
    pub incoming: Vec<NeighborEdge>,
}

/// The shape returned by `POST /admin/relink`.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub struct RelinkResponse {
    pub nodes: u64,
    pub links: u64,
}

/// `GET /search` query parameters.
#[derive(Debug, Deserialize)]
pub struct SearchQuery {
    pub q: Option<String>,
}

/// `GET /nodes` query parameters.
#[derive(Debug, Deserialize, Default)]
pub struct ListNodesQuery {
    pub limit: Option<i64>,
    pub offset: Option<i64>,
}

/// `POST /nodes` query parameters.
#[derive(Debug, Deserialize, Default)]
pub struct CreateNodeQuery {
    pub id: Option<String>,
}

/// Maximum request body size for write-path handlers.
///
/// Raised from the axum default of 2 MiB so real-world transcripts
/// (long Claude Code sessions, large Slack/Discord exports) can be
/// ingested without hitting `413 Payload Too Large`. The 32 MiB
/// ceiling is fixed in this phase; bodies larger than this still
/// return 413.
pub const REQUEST_BODY_LIMIT_BYTES: usize = 32 * 1024 * 1024;

/// Build the full axum Router for the KB API.
#[must_use]
pub fn build_router(state: Arc<AppState>) -> Router {
    Router::new()
        .route("/nodes/{id}", get(get_node_handler))
        .route("/nodes/{id}", put(put_node_handler))
        .route("/nodes/{id}", delete(delete_node_handler))
        .route("/nodes/{id}/neighbors", get(neighbors_handler))
        .route("/nodes", get(list_nodes_handler))
        .route("/nodes", post(post_node_handler))
        .route("/search", get(search_handler))
        .route("/tags/{tag}", get(tags_handler))
        .route("/recent", get(recent_handler))
        .route("/admin/relink", post(relink_handler))
        .layer(DefaultBodyLimit::max(REQUEST_BODY_LIMIT_BYTES))
        .with_state(state)
}

// ── Handlers ────────────────────────────────────────────────────────────

async fn get_node_handler(
    State(state): State<Arc<AppState>>,
    Path(id): Path<String>,
    headers: HeaderMap,
) -> Result<Response, AppError> {
    let conn = state.conn.lock().map_err(|_| AppError::Internal)?;
    let nf = storage::get_node_full(&conn, &id)
        .map_err(|_| AppError::Internal)?
        .ok_or(AppError::NotFound)?;
    Ok(render_node_view(&headers, to_node_view(&id, &nf)))
}

async fn put_node_handler(
    State(state): State<Arc<AppState>>,
    Path(id): Path<String>,
    headers: HeaderMap,
    body: Bytes,
) -> Result<Response, AppError> {
    let req = parse_update_body(&headers, &body, &id)?;
    let embedding = compute_doc_embedding(&state, &req.document, &id).await;
    let conn = state.conn.lock().map_err(|_| AppError::Internal)?;
    let ok = storage::update_node_with(
        &conn,
        &id,
        &req.document,
        embedding,
        state.embedding_model.as_deref(),
    )
    .map_err(|_| AppError::Internal)?;
    if !ok {
        return Err(AppError::NotFound);
    }
    let nf = storage::get_node_full(&conn, &id)
        .map_err(|_| AppError::Internal)?
        .ok_or(AppError::Internal)?;
    Ok(render_node_view(&headers, to_node_view(&id, &nf)))
}

async fn delete_node_handler(
    State(state): State<Arc<AppState>>,
    Path(id): Path<String>,
) -> Result<NoContent, AppError> {
    let conn = state.conn.lock().map_err(|_| AppError::Internal)?;
    let ok = storage::delete_node(&conn, &id).map_err(|_| AppError::Internal)?;
    if ok {
        Ok(NoContent)
    } else {
        Err(AppError::NotFound)
    }
}

async fn post_node_handler(
    State(state): State<Arc<AppState>>,
    Query(query): Query<CreateNodeQuery>,
    headers: HeaderMap,
    body: Bytes,
) -> Result<Response, AppError> {
    let req = parse_create_body(&headers, &body)?;
    // Precedence: query ?id= wins over body.id wins over server-minted UUID.
    // Resolve id and verify availability with a short-lived lock — drop
    // the connection guard before .await so we never hold the mutex
    // across the embedding HTTP call.
    let nid = {
        let conn = state.conn.lock().map_err(|_| AppError::Internal)?;
        match query.id.or_else(|| req.id.clone()) {
            Some(supplied) => {
                if storage::get_node(&conn, &supplied)
                    .map_err(|_| AppError::Internal)?
                    .is_some()
                {
                    return Err(AppError::Conflict);
                }
                supplied
            }
            None => uuid::Uuid::new_v4().to_string(),
        }
    };
    let embedding = compute_doc_embedding(&state, &req.document, &nid).await;
    let conn = state.conn.lock().map_err(|_| AppError::Internal)?;
    storage::insert_node_with(
        &conn,
        &nid,
        &req.document,
        embedding,
        state.embedding_model.as_deref(),
    )
    .map_err(|_| AppError::Internal)?;
    let nf = storage::get_node_full(&conn, &nid)
        .map_err(|_| AppError::Internal)?
        .ok_or(AppError::Internal)?;
    Ok(render_created_node_view(&headers, to_node_view(&nid, &nf)))
}

async fn neighbors_handler(
    State(state): State<Arc<AppState>>,
    Path(id): Path<String>,
) -> Result<Json<NeighborhoodResponse>, AppError> {
    let conn = state.conn.lock().map_err(|_| AppError::Internal)?;
    let n = storage::get_neighborhood(&conn, &id).map_err(|_| AppError::Internal)?;
    let outgoing = n
        .outgoing
        .into_iter()
        .map(|(t, lt)| NeighborEdge {
            target: t.0,
            link_type: lt,
        })
        .collect();
    let incoming = n
        .incoming
        .into_iter()
        .map(|(t, lt)| NeighborEdge {
            target: t.0,
            link_type: lt,
        })
        .collect();
    Ok(Json(NeighborhoodResponse { outgoing, incoming }))
}

async fn list_nodes_handler(
    State(state): State<Arc<AppState>>,
    Query(query): Query<ListNodesQuery>,
) -> Result<Json<Vec<NodeSummary>>, AppError> {
    // Match `KB/API/Handlers.hs::listNodesHandler`:
    //   limit = clamp 1 1000 (fromMaybe 100 mLimit)
    //   offset = max 0 (fromMaybe 0 mOffset)
    let limit = query.limit.unwrap_or(100).clamp(1, 1000);
    let offset = query.offset.unwrap_or(0).max(0);
    let conn = state.conn.lock().map_err(|_| AppError::Internal)?;
    let rows = storage::list_all_nodes(&conn, limit as usize, offset as usize)
        .map_err(|_| AppError::Internal)?;
    Ok(Json(
        rows.into_iter()
            .map(|(id, title)| NodeSummary { id, title })
            .collect(),
    ))
}

async fn search_handler(
    State(state): State<Arc<AppState>>,
    Query(query): Query<SearchQuery>,
) -> Result<Json<Vec<NodeSummary>>, AppError> {
    let q = query.q.unwrap_or_default();
    if q.trim().is_empty() {
        return Ok(Json(vec![]));
    }
    // Compute the query embedding asynchronously *before* taking the
    // SQLite mutex so we never hold the lock across an HTTP await.
    let query_embedding: Option<(Vec<f32>, &str)> = match (
        state.embedding_client.as_ref(),
        state.embedding_model.as_deref(),
    ) {
        (Some(client), Some(model)) => match client.embed(&q).await {
            Ok(v) => Some((v, model)),
            Err(err) => {
                tracing::error!(error = %err, "kb /search: embedding query failed");
                None
            }
        },
        _ => None,
    };
    let conn = state.conn.lock().map_err(|_| AppError::Internal)?;
    let ids: Vec<String> = storage::search_hybrid(&conn, &q, query_embedding)
        .map_err(|_| AppError::Internal)?
        .into_iter()
        .map(|n| n.0)
        .collect();
    let titles = storage::fetch_titles(&conn, &ids).map_err(|_| AppError::Internal)?;
    Ok(Json(
        titles
            .into_iter()
            .map(|(id, title)| NodeSummary {
                id: NodeId(id),
                title: Title(title),
            })
            .collect(),
    ))
}

async fn tags_handler(
    State(state): State<Arc<AppState>>,
    Path(tag): Path<String>,
) -> Result<Json<Vec<NodeSummary>>, AppError> {
    let conn = state.conn.lock().map_err(|_| AppError::Internal)?;
    let rows = storage::list_by_tag(&conn, &tag).map_err(|_| AppError::Internal)?;
    let ids: Vec<String> = rows.iter().map(|r| r.id.0.clone()).collect();
    let titles = storage::fetch_titles(&conn, &ids).map_err(|_| AppError::Internal)?;
    Ok(Json(
        titles
            .into_iter()
            .map(|(id, title)| NodeSummary {
                id: NodeId(id),
                title: Title(title),
            })
            .collect(),
    ))
}

async fn recent_handler(
    State(state): State<Arc<AppState>>,
) -> Result<Json<Vec<NodeSummary>>, AppError> {
    let conn = state.conn.lock().map_err(|_| AppError::Internal)?;
    let rows = storage::list_recent(&conn, 50).map_err(|_| AppError::Internal)?;
    let ids: Vec<String> = rows.iter().map(|r| r.id.0.clone()).collect();
    let titles = storage::fetch_titles(&conn, &ids).map_err(|_| AppError::Internal)?;
    Ok(Json(
        titles
            .into_iter()
            .map(|(id, title)| NodeSummary {
                id: NodeId(id),
                title: Title(title),
            })
            .collect(),
    ))
}

async fn relink_handler(
    State(state): State<Arc<AppState>>,
) -> Result<Json<RelinkResponse>, AppError> {
    let conn = state.conn.lock().map_err(|_| AppError::Internal)?;
    let (nodes, links) = storage::relink_all(&conn).map_err(|_| AppError::Internal)?;
    Ok(Json(RelinkResponse {
        nodes: nodes as u64,
        links: links as u64,
    }))
}

// ── Content-type negotiation ────────────────────────────────────────────

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
enum WireFormat {
    Json,
    Org,
}

/// Request body formats. A superset of [`WireFormat`]: markdown is an
/// ingest-only format (kb never renders markdown back out), so it has no
/// place in response negotiation.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
enum RequestFormat {
    Json,
    Org,
    Markdown,
}

/// Org content type emitted on responses. Matches Haskell `Accept OrgText`
/// which lists `text/org` first.
const ORG_CONTENT_TYPE: &str = "text/org";

/// Pick a response format from the `Accept` header. Walks entries in
/// order and returns the first match. Defaults to JSON when the header
/// is absent or contains nothing recognised — matching Servant, which
/// picks the first entry of `'[JSON, OrgText]` for `*/*`.
fn negotiate_response(headers: &HeaderMap) -> WireFormat {
    let Some(accept) = headers.get(header::ACCEPT).and_then(|v| v.to_str().ok()) else {
        return WireFormat::Json;
    };
    for entry in accept.split(',') {
        let mime = entry.split(';').next().unwrap_or("").trim();
        match mime {
            "application/json" | "*/*" | "application/*" => return WireFormat::Json,
            "text/org" | "text/plain" => return WireFormat::Org,
            _ => {}
        }
    }
    WireFormat::Json
}

/// Pick a request body format from `Content-Type`. Defaults to JSON.
fn request_format(headers: &HeaderMap) -> RequestFormat {
    let Some(ct) = headers
        .get(header::CONTENT_TYPE)
        .and_then(|v| v.to_str().ok())
    else {
        return RequestFormat::Json;
    };
    let mime = ct.split(';').next().unwrap_or("").trim();
    match mime {
        "text/org" | "text/plain" => RequestFormat::Org,
        "text/markdown" => RequestFormat::Markdown,
        _ => RequestFormat::Json,
    }
}

/// Convert a markdown request body into a [`Document`].
///
/// A missing `pandoc` binary is a server-side misconfiguration (500);
/// any other conversion failure is attributed to the request body (400).
fn parse_markdown_body(body: &[u8]) -> Result<Document, AppError> {
    let text = std::str::from_utf8(body)
        .map_err(|e| AppError::BadRequest(format!("markdown body is not valid UTF-8: {e}")))?;
    crate::markdown::markdown_to_document(text).map_err(|e| match e {
        // A missing pandoc binary is a server-side misconfiguration (500);
        // every input-shaped failure is attributed to the request body (400).
        crate::markdown::MarkdownError::PandocNotFound => AppError::Internal,
        other => AppError::BadRequest(format!("markdown conversion failure: {other}")),
    })
}

fn parse_create_body(headers: &HeaderMap, body: &[u8]) -> Result<CreateNodeRequest, AppError> {
    match request_format(headers) {
        RequestFormat::Json => serde_json::from_slice::<CreateNodeRequest>(body)
            .map_err(|e| AppError::BadRequest(format!("invalid JSON body: {e}"))),
        RequestFormat::Org => {
            let mut document = parse_org_body(body)?;
            // Strip a round-tripped kb metadata drawer so it never reaches
            // the stored body. text/org POSTs never carry a body id — the
            // ?id= query param is the only client-supplied id channel, so
            // the drawer's :ID: is discarded here.
            let _ = org_meta::hydrate(&mut document);
            Ok(CreateNodeRequest { id: None, document })
        }
        RequestFormat::Markdown => {
            // Markdown bodies carry no kb metadata drawer; the ?id= query
            // param remains the only client-supplied id channel.
            let document = parse_markdown_body(body)?;
            Ok(CreateNodeRequest { id: None, document })
        }
    }
}

fn parse_update_body(
    headers: &HeaderMap,
    body: &[u8],
    node_id: &str,
) -> Result<UpdateNodeRequest, AppError> {
    match request_format(headers) {
        RequestFormat::Json => serde_json::from_slice::<UpdateNodeRequest>(body)
            .map_err(|e| AppError::BadRequest(format!("invalid JSON body: {e}"))),
        RequestFormat::Org => {
            let mut document = parse_org_body(body)?;
            // Strip the round-tripped kb metadata drawer. When it carries
            // an :ID:, it must name the node being updated — a mismatch
            // signals an exported file applied to the wrong node.
            if let Some(drawer_id) = org_meta::hydrate(&mut document) {
                if drawer_id != node_id {
                    return Err(AppError::BadRequest(format!(
                        "document :ID: {drawer_id} does not match target node id {node_id}"
                    )));
                }
            }
            Ok(UpdateNodeRequest { document })
        }
        RequestFormat::Markdown => {
            let document = parse_markdown_body(body)?;
            Ok(UpdateNodeRequest { document })
        }
    }
}

fn parse_org_body(body: &[u8]) -> Result<Document, AppError> {
    let text = std::str::from_utf8(body)
        .map_err(|e| AppError::BadRequest(format!("org body is not valid UTF-8: {e}")))?;
    parser::parse_document(text)
        .map_err(|e| AppError::BadRequest(format!("org parse failure: {e}")))
}

fn render_node_view(headers: &HeaderMap, view: NodeView) -> Response {
    match negotiate_response(headers) {
        WireFormat::Json => Json(view).into_response(),
        WireFormat::Org => render_org(&view),
    }
}

fn render_created_node_view(headers: &HeaderMap, view: NodeView) -> Response {
    match negotiate_response(headers) {
        WireFormat::Json => (StatusCode::CREATED, Json(view)).into_response(),
        WireFormat::Org => {
            let body = org_meta::render_with_metadata(
                view.id.as_str(),
                &view.created_at,
                &view.updated_at,
                &view.document,
            );
            (
                StatusCode::CREATED,
                [(header::CONTENT_TYPE, ORG_CONTENT_TYPE)],
                body,
            )
                .into_response()
        }
    }
}

fn render_org(view: &NodeView) -> Response {
    let body = org_meta::render_with_metadata(
        view.id.as_str(),
        &view.created_at,
        &view.updated_at,
        &view.document,
    );
    ([(header::CONTENT_TYPE, ORG_CONTENT_TYPE)], body).into_response()
}

// ── Helpers ─────────────────────────────────────────────────────────────

/// Compute the embedding payload for a write-path handler.
///
/// Mirrors the v5 `embed_node` behaviour exactly: payload is
/// `title + "\n" + body_text`, and an embedding-generation failure is
/// logged via `tracing` but does not roll back the storage write — the
/// handler proceeds with `None`. With no embedding client configured at
/// startup, returns `None` without invoking any embedding code.
async fn compute_doc_embedding(
    state: &Arc<AppState>,
    document: &Document,
    node_id: &str,
) -> Option<Vec<f32>> {
    let client = state.embedding_client.as_ref()?;
    state.embedding_model.as_deref()?;
    let title = storage::extract_title(document);
    let body_text = storage::extract_body_text(document);
    let payload = format!("{title}\n{body_text}");
    match client.embed(&payload).await {
        Ok(v) => Some(v),
        Err(err) => {
            tracing::error!(node_id, error = %err, "kb embed generation failed");
            None
        }
    }
}

fn to_node_view(id: &str, nf: &storage::NodeFullData) -> NodeView {
    NodeView {
        id: NodeId(id.to_string()),
        title: Title(nf.title.clone()),
        tags: nf.tags.clone(),
        document: nf.document.clone(),
        created_at: nf.created_at.clone(),
        updated_at: nf.updated_at.clone(),
    }
}

/// Application-level error responses.
enum AppError {
    NotFound,
    Conflict,
    BadRequest(String),
    Internal,
}

impl IntoResponse for AppError {
    fn into_response(self) -> Response {
        match self {
            AppError::NotFound => (StatusCode::NOT_FOUND, "not found\n").into_response(),
            AppError::Conflict => (StatusCode::CONFLICT, "id already exists\n").into_response(),
            AppError::BadRequest(msg) => {
                (StatusCode::BAD_REQUEST, format!("{msg}\n")).into_response()
            }
            AppError::Internal => {
                (StatusCode::INTERNAL_SERVER_ERROR, "internal server error\n").into_response()
            }
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::ast::*;
    use crate::generator;
    use crate::storage;
    use axum::body::Body;
    use axum::http::Request;
    use rusqlite::Connection;
    use tower::ServiceExt;

    fn setup_state() -> Arc<AppState> {
        let conn = Connection::open_in_memory().unwrap();
        conn.execute_batch("PRAGMA foreign_keys = ON;").unwrap();
        storage::init_db(&conn).unwrap();
        Arc::new(AppState {
            conn: Mutex::new(conn),
            embedding_client: None,
            embedding_model: None,
        })
    }

    fn sample_doc() -> Document {
        Document {
            blocks: vec![Block::Heading {
                level: 1,
                title: Title("Test".into()),
                tags: vec![Tag("api".into())],
                children: vec![Block::Paragraph {
                    inlines: vec![Inline::Plain("hello".into())],
                }],
            }],
        }
    }

    fn link_doc(targets: &[&str]) -> Document {
        let inlines: Vec<Inline> = targets
            .iter()
            .map(|t| Inline::Link {
                target: format!("id:{t}"),
                description: None,
            })
            .collect();
        Document {
            blocks: vec![Block::Paragraph { inlines }],
        }
    }

    async fn send(
        app: Router,
        method: &str,
        uri: &str,
        content_type: Option<&str>,
        accept: Option<&str>,
        body: Vec<u8>,
    ) -> (StatusCode, HeaderMap, Vec<u8>) {
        let mut req = Request::builder().method(method).uri(uri);
        if let Some(ct) = content_type {
            req = req.header(header::CONTENT_TYPE, ct);
        }
        if let Some(a) = accept {
            req = req.header(header::ACCEPT, a);
        }
        let resp = app
            .oneshot(req.body(Body::from(body)).unwrap())
            .await
            .unwrap();
        let status = resp.status();
        let headers = resp.headers().clone();
        let bytes = axum::body::to_bytes(resp.into_body(), usize::MAX)
            .await
            .unwrap()
            .to_vec();
        (status, headers, bytes)
    }

    fn json_str(bytes: &[u8]) -> serde_json::Value {
        serde_json::from_slice(bytes).expect("response was not valid JSON")
    }

    #[test]
    fn node_view_roundtrip_json() {
        let view = NodeView {
            id: NodeId("abc".into()),
            title: Title("Test".into()),
            tags: vec![Tag("api".into())],
            document: sample_doc(),
            created_at: "2026-01-01T00:00:00Z".into(),
            updated_at: "2026-01-01T00:00:00Z".into(),
        };
        let json = serde_json::to_string(&view).unwrap();
        let parsed: NodeView = serde_json::from_str(&json).unwrap();
        assert_eq!(view, parsed);
    }

    #[test]
    fn insert_and_get_node_full() {
        let state = setup_state();
        let conn = state.conn.lock().unwrap();
        let nid = "test-1";
        let doc = sample_doc();
        storage::insert_node(&conn, nid, &doc).unwrap();
        let nf = storage::get_node_full(&conn, nid).unwrap().unwrap();
        assert_eq!(nf.title, "Test");
        assert_eq!(nf.tags.len(), 1);
        assert_eq!(nf.tags[0].0, "api");
        assert_eq!(nf.document, doc);
    }

    #[test]
    fn get_node_full_nonexistent() {
        let state = setup_state();
        let conn = state.conn.lock().unwrap();
        let nf = storage::get_node_full(&conn, "no-such").unwrap();
        assert!(nf.is_none());
    }

    #[test]
    fn fetch_titles_works() {
        let state = setup_state();
        let conn = state.conn.lock().unwrap();
        let doc = sample_doc();
        storage::insert_node(&conn, "a", &doc).unwrap();
        storage::insert_node(&conn, "b", &doc).unwrap();
        let titles = storage::fetch_titles(&conn, &["a".into(), "b".into()]).unwrap();
        assert_eq!(titles.len(), 2);
    }

    #[test]
    fn search_fts_finds_results() {
        let state = setup_state();
        let conn = state.conn.lock().unwrap();
        let doc = Document {
            blocks: vec![Block::Heading {
                level: 1,
                title: Title("Rust Programming".into()),
                tags: vec![],
                children: vec![Block::Paragraph {
                    inlines: vec![Inline::Plain("systems programming language".into())],
                }],
            }],
        };
        storage::insert_node(&conn, "fts-1", &doc).unwrap();
        let results = storage::search_fts(&conn, "programming").unwrap();
        assert_eq!(results.len(), 1);
        assert_eq!(results[0], "fts-1");
    }

    // ── router_shape ──────────────────────────────────────────────────

    #[tokio::test]
    async fn router_shape_listed_routes_respond() {
        let state = setup_state();
        // Seed a node so /nodes/:id paths can resolve to 200.
        {
            let conn = state.conn.lock().unwrap();
            storage::insert_node(&conn, "x", &sample_doc()).unwrap();
        }
        let app = build_router(state);

        // Each (method, uri, body, allowed_status) tuple must produce a
        // status that is NEITHER 404 (route missing) NOR 405 (wrong
        // method). Specific behaviour is covered in the other tests.
        let expectations: &[(&str, &str, &str, &[u16])] = &[
            ("GET", "/nodes/x", "", &[200]),
            ("PUT", "/nodes/x", r#"{"document":{"blocks":[]}}"#, &[200]),
            ("DELETE", "/nodes/x", "", &[204]),
            ("GET", "/nodes/x/neighbors", "", &[200]),
            ("GET", "/nodes", "", &[200]),
            (
                "POST",
                "/nodes",
                r#"{"document":{"blocks":[]}}"#,
                &[201, 409],
            ),
            ("GET", "/search?q=hi", "", &[200]),
            ("GET", "/tags/api", "", &[200]),
            ("GET", "/recent", "", &[200]),
            ("POST", "/admin/relink", "", &[200]),
        ];
        for (method, uri, body, ok) in expectations {
            let (status, _, _) = send(
                app.clone(),
                method,
                uri,
                if body.is_empty() {
                    None
                } else {
                    Some("application/json")
                },
                Some("application/json"),
                body.as_bytes().to_vec(),
            )
            .await;
            assert!(
                ok.contains(&status.as_u16()),
                "{method} {uri} got {status}, expected one of {ok:?}"
            );
        }
    }

    #[tokio::test]
    async fn router_shape_rejects_unknown_paths() {
        let app = build_router(setup_state());
        let (status, _, _) = send(app, "GET", "/no-such-route", None, None, vec![]).await;
        assert_eq!(status, StatusCode::NOT_FOUND);
    }

    #[tokio::test]
    async fn router_shape_rejects_wrong_method_on_admin_relink() {
        // /admin/relink is POST-only; GET must not match.
        let app = build_router(setup_state());
        let (status, _, _) = send(app, "GET", "/admin/relink", None, None, vec![]).await;
        assert_eq!(status, StatusCode::METHOD_NOT_ALLOWED);
    }

    #[tokio::test]
    async fn router_shape_rejects_post_on_recent() {
        // /recent is GET-only.
        let app = build_router(setup_state());
        let (status, _, _) = send(app, "POST", "/recent", None, None, vec![]).await;
        assert_eq!(status, StatusCode::METHOD_NOT_ALLOWED);
    }

    // ── api_neighbors ─────────────────────────────────────────────────

    #[tokio::test]
    async fn api_neighbors_empty_for_isolated_node() {
        let state = setup_state();
        {
            let conn = state.conn.lock().unwrap();
            storage::insert_node(&conn, "lonely", &sample_doc()).unwrap();
        }
        let app = build_router(state);
        let (status, _, body) =
            send(app, "GET", "/nodes/lonely/neighbors", None, None, vec![]).await;
        assert_eq!(status, StatusCode::OK);
        let v = json_str(&body);
        assert_eq!(v["outgoing"].as_array().unwrap().len(), 0);
        assert_eq!(v["incoming"].as_array().unwrap().len(), 0);
    }

    #[tokio::test]
    async fn api_neighbors_returns_200_with_empty_for_unknown_id() {
        // Per criterion: unknown id returns 200 with empty arrays, NOT 404.
        let app = build_router(setup_state());
        let (status, _, body) = send(app, "GET", "/nodes/nope/neighbors", None, None, vec![]).await;
        assert_eq!(status, StatusCode::OK);
        let v = json_str(&body);
        assert!(v["outgoing"].as_array().unwrap().is_empty());
        assert!(v["incoming"].as_array().unwrap().is_empty());
    }

    #[tokio::test]
    async fn api_neighbors_field_names_are_camelcase() {
        let state = setup_state();
        {
            let conn = state.conn.lock().unwrap();
            storage::insert_node(&conn, "a", &sample_doc()).unwrap();
            storage::insert_node(&conn, "b", &sample_doc()).unwrap();
            storage::insert_node(&conn, "c", &sample_doc()).unwrap();
            // a -> b, c -> a
            storage::relink_one(&conn, "a", &link_doc(&["b"])).unwrap();
            storage::relink_one(&conn, "c", &link_doc(&["a"])).unwrap();
        }
        let app = build_router(state);
        let (status, _, body) = send(app, "GET", "/nodes/a/neighbors", None, None, vec![]).await;
        assert_eq!(status, StatusCode::OK);
        let v = json_str(&body);
        let outgoing = v["outgoing"].as_array().unwrap();
        let incoming = v["incoming"].as_array().unwrap();
        assert_eq!(outgoing.len(), 1);
        assert_eq!(incoming.len(), 1);
        assert_eq!(outgoing[0]["target"].as_str().unwrap(), "b");
        assert_eq!(outgoing[0]["linkType"].as_str().unwrap(), "id");
        assert_eq!(incoming[0]["target"].as_str().unwrap(), "c");
        assert_eq!(incoming[0]["linkType"].as_str().unwrap(), "id");
        // No snake_case "link_type" field should appear.
        assert!(outgoing[0].get("link_type").is_none());
    }

    // ── api_list_all ──────────────────────────────────────────────────

    #[tokio::test]
    async fn api_list_all_orders_by_updated_at_desc() {
        let state = setup_state();
        {
            let conn = state.conn.lock().unwrap();
            storage::insert_node(&conn, "first", &sample_doc()).unwrap();
            std::thread::sleep(std::time::Duration::from_millis(10));
            storage::insert_node(&conn, "second", &sample_doc()).unwrap();
            std::thread::sleep(std::time::Duration::from_millis(10));
            storage::insert_node(&conn, "third", &sample_doc()).unwrap();
        }
        let app = build_router(state);
        let (status, _, body) = send(app, "GET", "/nodes", None, None, vec![]).await;
        assert_eq!(status, StatusCode::OK);
        let v = json_str(&body);
        let arr = v.as_array().unwrap();
        assert_eq!(arr.len(), 3);
        assert_eq!(arr[0]["id"].as_str().unwrap(), "third");
        assert_eq!(arr[1]["id"].as_str().unwrap(), "second");
        assert_eq!(arr[2]["id"].as_str().unwrap(), "first");
    }

    #[tokio::test]
    async fn api_list_all_paginates_with_limit_and_offset() {
        let state = setup_state();
        {
            let conn = state.conn.lock().unwrap();
            for i in 0..5 {
                storage::insert_node(&conn, &format!("n{i}"), &sample_doc()).unwrap();
                std::thread::sleep(std::time::Duration::from_millis(2));
            }
        }
        let app = build_router(state);
        let (status, _, body) = send(
            app.clone(),
            "GET",
            "/nodes?limit=2&offset=0",
            None,
            None,
            vec![],
        )
        .await;
        assert_eq!(status, StatusCode::OK);
        let v = json_str(&body);
        assert_eq!(v.as_array().unwrap().len(), 2);

        let (_, _, body2) = send(app, "GET", "/nodes?limit=2&offset=2", None, None, vec![]).await;
        let v2 = json_str(&body2);
        assert_eq!(v2.as_array().unwrap().len(), 2);
        // No overlap between the two pages.
        let p1: Vec<&str> = v
            .as_array()
            .unwrap()
            .iter()
            .map(|n| n["id"].as_str().unwrap())
            .collect();
        let p2: Vec<&str> = v2
            .as_array()
            .unwrap()
            .iter()
            .map(|n| n["id"].as_str().unwrap())
            .collect();
        for id in &p1 {
            assert!(!p2.contains(id));
        }
    }

    #[tokio::test]
    async fn api_list_all_offset_past_end_returns_empty() {
        let state = setup_state();
        {
            let conn = state.conn.lock().unwrap();
            storage::insert_node(&conn, "only", &sample_doc()).unwrap();
        }
        let app = build_router(state);
        let (status, _, body) = send(app, "GET", "/nodes?offset=999", None, None, vec![]).await;
        assert_eq!(status, StatusCode::OK);
        let v = json_str(&body);
        assert!(v.as_array().unwrap().is_empty());
    }

    #[tokio::test]
    async fn api_list_all_default_limit_is_100() {
        // Haskell default: limit = 100. Insert 150 rows; default page
        // returns 100.
        let state = setup_state();
        {
            let conn = state.conn.lock().unwrap();
            for i in 0..150 {
                storage::insert_node(&conn, &format!("n{i:03}"), &sample_doc()).unwrap();
            }
        }
        let app = build_router(state);
        let (status, _, body) = send(app, "GET", "/nodes", None, None, vec![]).await;
        assert_eq!(status, StatusCode::OK);
        let v = json_str(&body);
        assert_eq!(v.as_array().unwrap().len(), 100);
    }

    // ── api_relink ────────────────────────────────────────────────────

    #[tokio::test]
    async fn api_relink_returns_node_and_link_counts() {
        let state = setup_state();
        {
            let conn = state.conn.lock().unwrap();
            // a links to b before b exists; b inserted with no links.
            storage::insert_node(&conn, "a", &link_doc(&["b"])).unwrap();
            storage::insert_node(&conn, "b", &sample_doc()).unwrap();
        }
        let app = build_router(state);
        let (status, _, body) = send(app, "POST", "/admin/relink", None, None, vec![]).await;
        assert_eq!(status, StatusCode::OK);
        let v = json_str(&body);
        // JSON field names: nodes, links.
        assert_eq!(v["nodes"].as_u64().unwrap(), 2);
        assert_eq!(v["links"].as_u64().unwrap(), 1);
        // No surprise extra fields.
        assert!(v.get("nodes_processed").is_none());
        assert!(v.get("links_written").is_none());
    }

    #[tokio::test]
    async fn api_relink_works_on_empty_db() {
        let app = build_router(setup_state());
        let (status, _, body) = send(app, "POST", "/admin/relink", None, None, vec![]).await;
        assert_eq!(status, StatusCode::OK);
        let v = json_str(&body);
        assert_eq!(v["nodes"].as_u64().unwrap(), 0);
        assert_eq!(v["links"].as_u64().unwrap(), 0);
    }

    // ── api_create_id_query ───────────────────────────────────────────

    #[tokio::test]
    async fn api_create_id_query_uses_query_id_when_only_query_provided() {
        let app = build_router(setup_state());
        let body = serde_json::to_vec(&CreateNodeRequest {
            id: None,
            document: sample_doc(),
        })
        .unwrap();
        let (status, _, resp) = send(
            app,
            "POST",
            "/nodes?id=from-query",
            Some("application/json"),
            Some("application/json"),
            body,
        )
        .await;
        assert_eq!(status, StatusCode::CREATED);
        let v = json_str(&resp);
        assert_eq!(v["id"].as_str().unwrap(), "from-query");
    }

    #[tokio::test]
    async fn api_create_id_query_uses_body_id_when_no_query() {
        let app = build_router(setup_state());
        let body = serde_json::to_vec(&CreateNodeRequest {
            id: Some("from-body".into()),
            document: sample_doc(),
        })
        .unwrap();
        let (status, _, resp) = send(
            app,
            "POST",
            "/nodes",
            Some("application/json"),
            Some("application/json"),
            body,
        )
        .await;
        assert_eq!(status, StatusCode::CREATED);
        let v = json_str(&resp);
        assert_eq!(v["id"].as_str().unwrap(), "from-body");
    }

    #[tokio::test]
    async fn api_create_id_query_query_overrides_body() {
        // Per criterion: query ?id= wins over body.id.
        let app = build_router(setup_state());
        let body = serde_json::to_vec(&CreateNodeRequest {
            id: Some("from-body".into()),
            document: sample_doc(),
        })
        .unwrap();
        let (status, _, resp) = send(
            app,
            "POST",
            "/nodes?id=from-query",
            Some("application/json"),
            Some("application/json"),
            body,
        )
        .await;
        assert_eq!(status, StatusCode::CREATED);
        let v = json_str(&resp);
        assert_eq!(v["id"].as_str().unwrap(), "from-query");
    }

    #[tokio::test]
    async fn api_create_id_query_mints_uuid_when_neither_supplied() {
        let app = build_router(setup_state());
        let body = serde_json::to_vec(&CreateNodeRequest {
            id: None,
            document: sample_doc(),
        })
        .unwrap();
        let (status, _, resp) = send(
            app,
            "POST",
            "/nodes",
            Some("application/json"),
            Some("application/json"),
            body,
        )
        .await;
        assert_eq!(status, StatusCode::CREATED);
        let v = json_str(&resp);
        let id = v["id"].as_str().unwrap();
        assert!(uuid::Uuid::parse_str(id).is_ok(), "expected UUID, got {id}");
    }

    #[tokio::test]
    async fn api_create_id_query_conflict_via_query_returns_409() {
        let state = setup_state();
        {
            let conn = state.conn.lock().unwrap();
            storage::insert_node(&conn, "taken", &sample_doc()).unwrap();
        }
        let app = build_router(state);
        let body = serde_json::to_vec(&CreateNodeRequest {
            id: None,
            document: sample_doc(),
        })
        .unwrap();
        let (status, _, _) = send(
            app,
            "POST",
            "/nodes?id=taken",
            Some("application/json"),
            Some("application/json"),
            body,
        )
        .await;
        assert_eq!(status, StatusCode::CONFLICT);
    }

    #[tokio::test]
    async fn api_create_id_query_conflict_via_body_returns_409() {
        let state = setup_state();
        {
            let conn = state.conn.lock().unwrap();
            storage::insert_node(&conn, "taken", &sample_doc()).unwrap();
        }
        let app = build_router(state);
        let body = serde_json::to_vec(&CreateNodeRequest {
            id: Some("taken".into()),
            document: sample_doc(),
        })
        .unwrap();
        let (status, _, _) = send(
            app,
            "POST",
            "/nodes",
            Some("application/json"),
            Some("application/json"),
            body,
        )
        .await;
        assert_eq!(status, StatusCode::CONFLICT);
    }

    // ── api_orgtext_read ──────────────────────────────────────────────

    #[tokio::test]
    async fn api_orgtext_read_returns_org_for_text_org_accept() {
        let state = setup_state();
        {
            let conn = state.conn.lock().unwrap();
            storage::insert_node(&conn, "n", &sample_doc()).unwrap();
        }
        let app = build_router(state);
        let (status, headers, body) =
            send(app, "GET", "/nodes/n", None, Some("text/org"), vec![]).await;
        assert_eq!(status, StatusCode::OK);
        let ct = headers.get(header::CONTENT_TYPE).unwrap().to_str().unwrap();
        assert!(ct.starts_with("text/org"), "content-type was {ct}");
        let text = String::from_utf8(body).unwrap();
        // Body is the org rendering with a leading kb metadata drawer,
        // NOT the JSON envelope.
        assert!(
            text.starts_with(":PROPERTIES:\n:ID: n\n"),
            "missing metadata drawer: {text}"
        );
        assert!(text.ends_with(&generator::generate(&sample_doc())));
        assert!(!text.starts_with('{'), "expected org body, got JSON-ish");
    }

    #[tokio::test]
    async fn api_orgtext_read_accepts_text_plain_as_synonym() {
        let state = setup_state();
        {
            let conn = state.conn.lock().unwrap();
            storage::insert_node(&conn, "n", &sample_doc()).unwrap();
        }
        let app = build_router(state);
        let (status, headers, body) =
            send(app, "GET", "/nodes/n", None, Some("text/plain"), vec![]).await;
        assert_eq!(status, StatusCode::OK);
        let ct = headers.get(header::CONTENT_TYPE).unwrap().to_str().unwrap();
        assert!(ct.starts_with("text/org"), "content-type was {ct}");
        let text = String::from_utf8(body).unwrap();
        assert!(text.starts_with(":PROPERTIES:\n:ID: n\n"));
        assert!(text.ends_with(&generator::generate(&sample_doc())));
    }

    #[tokio::test]
    async fn api_orgtext_read_returns_json_when_accept_application_json() {
        let state = setup_state();
        {
            let conn = state.conn.lock().unwrap();
            storage::insert_node(&conn, "n", &sample_doc()).unwrap();
        }
        let app = build_router(state);
        let (status, headers, body) = send(
            app,
            "GET",
            "/nodes/n",
            None,
            Some("application/json"),
            vec![],
        )
        .await;
        assert_eq!(status, StatusCode::OK);
        let ct = headers.get(header::CONTENT_TYPE).unwrap().to_str().unwrap();
        assert!(ct.starts_with("application/json"), "content-type was {ct}");
        let v = json_str(&body);
        assert_eq!(v["id"].as_str().unwrap(), "n");
    }

    #[tokio::test]
    async fn api_orgtext_read_defaults_to_json_when_accept_absent() {
        let state = setup_state();
        {
            let conn = state.conn.lock().unwrap();
            storage::insert_node(&conn, "n", &sample_doc()).unwrap();
        }
        let app = build_router(state);
        let (status, headers, body) = send(app, "GET", "/nodes/n", None, None, vec![]).await;
        assert_eq!(status, StatusCode::OK);
        let ct = headers.get(header::CONTENT_TYPE).unwrap().to_str().unwrap();
        assert!(ct.starts_with("application/json"));
        let _ = json_str(&body);
    }

    #[tokio::test]
    async fn api_orgtext_read_unknown_id_404_under_org_accept() {
        let app = build_router(setup_state());
        let (status, _, _) = send(app, "GET", "/nodes/nope", None, Some("text/org"), vec![]).await;
        assert_eq!(status, StatusCode::NOT_FOUND);
    }

    #[tokio::test]
    async fn api_orgtext_read_unknown_id_404_under_json_accept() {
        let app = build_router(setup_state());
        let (status, _, _) = send(
            app,
            "GET",
            "/nodes/nope",
            None,
            Some("application/json"),
            vec![],
        )
        .await;
        assert_eq!(status, StatusCode::NOT_FOUND);
    }

    // ── api_orgtext_write ─────────────────────────────────────────────

    #[tokio::test]
    async fn api_orgtext_write_post_parses_org_body() {
        let app = build_router(setup_state());
        let body = b"* Hello\nworld\n".to_vec();
        let (status, _, resp) = send(
            app,
            "POST",
            "/nodes",
            Some("text/org"),
            Some("application/json"),
            body,
        )
        .await;
        assert_eq!(status, StatusCode::CREATED);
        let v = json_str(&resp);
        // Title comes from the parsed first heading.
        assert_eq!(v["title"].as_str().unwrap(), "Hello");
        // Server minted a UUID since text/org carries no body id.
        let id = v["id"].as_str().unwrap();
        assert!(uuid::Uuid::parse_str(id).is_ok());
    }

    /// Whether `pandoc` is on `PATH` — markdown ingest tests skip without it.
    fn pandoc_available() -> bool {
        std::process::Command::new("pandoc")
            .arg("--version")
            .output()
            .is_ok_and(|o| o.status.success())
    }

    #[tokio::test]
    async fn api_markdown_write_post_converts_via_pandoc() {
        if !pandoc_available() {
            eprintln!("skipping: pandoc not on PATH");
            return;
        }
        let app = build_router(setup_state());
        let body = b"# Markdown Title\n\nsome ~~struck~~ body\n".to_vec();
        let (status, _, resp) = send(
            app,
            "POST",
            "/nodes",
            Some("text/markdown"),
            Some("application/json"),
            body,
        )
        .await;
        assert_eq!(status, StatusCode::CREATED);
        let v = json_str(&resp);
        assert_eq!(v["title"].as_str().unwrap(), "Markdown Title");
    }

    #[tokio::test]
    async fn api_markdown_write_put_converts_via_pandoc() {
        if !pandoc_available() {
            eprintln!("skipping: pandoc not on PATH");
            return;
        }
        let state = setup_state();
        {
            let conn = state.conn.lock().unwrap();
            storage::insert_node(&conn, "md-target", &sample_doc()).unwrap();
        }
        let app = build_router(state);
        let (status, _, resp) = send(
            app,
            "PUT",
            "/nodes/md-target",
            Some("text/markdown"),
            Some("application/json"),
            b"# Replaced\n\nnew body\n".to_vec(),
        )
        .await;
        assert_eq!(status, StatusCode::OK);
        let v = json_str(&resp);
        assert_eq!(v["id"].as_str().unwrap(), "md-target");
        assert_eq!(v["title"].as_str().unwrap(), "Replaced");
    }

    #[tokio::test]
    async fn api_orgtext_write_post_accepts_text_plain_synonym() {
        let app = build_router(setup_state());
        let body = b"* Plain\nbody\n".to_vec();
        let (status, _, resp) = send(
            app,
            "POST",
            "/nodes",
            Some("text/plain"),
            Some("application/json"),
            body,
        )
        .await;
        assert_eq!(status, StatusCode::CREATED);
        let v = json_str(&resp);
        assert_eq!(v["title"].as_str().unwrap(), "Plain");
    }

    #[tokio::test]
    async fn api_orgtext_write_post_uses_query_id_for_org_body() {
        // text/org carries no body id; the only client-supplied id channel
        // is the ?id= query parameter.
        let app = build_router(setup_state());
        let body = b"* From org\n".to_vec();
        let (status, _, resp) = send(
            app,
            "POST",
            "/nodes?id=org-import-1",
            Some("text/org"),
            Some("application/json"),
            body,
        )
        .await;
        assert_eq!(status, StatusCode::CREATED);
        let v = json_str(&resp);
        assert_eq!(v["id"].as_str().unwrap(), "org-import-1");
    }

    #[tokio::test]
    async fn api_orgtext_write_post_strips_kb_metadata_drawer() {
        // An org body round-tripped from a prior export carries a leading
        // :PROPERTIES: drawer; it must not be persisted into the stored AST.
        let app = build_router(setup_state());
        let body = b":PROPERTIES:\n:ID: stale-id\n:CREATED: t0\n:END:\n* Heading\nbody\n".to_vec();
        let (status, _, resp) = send(
            app,
            "POST",
            "/nodes",
            Some("text/org"),
            Some("application/json"),
            body,
        )
        .await;
        assert_eq!(status, StatusCode::CREATED);
        let v = json_str(&resp);
        // The drawer id is informational — a fresh UUID is minted.
        let id = v["id"].as_str().unwrap();
        assert!(uuid::Uuid::parse_str(id).is_ok());
        // The stored document has no property drawer; the heading is first.
        let blocks = v["document"]["blocks"].as_array().unwrap();
        assert_eq!(blocks.len(), 1);
        assert!(
            blocks[0].get("Heading").is_some(),
            "drawer leaked into AST: {v}"
        );
    }

    #[tokio::test]
    async fn api_orgtext_write_put_400_on_id_mismatch() {
        // A round-tripped org file whose drawer :ID: names a different
        // node must be rejected, not silently written to the path id.
        let state = setup_state();
        {
            let conn = state.conn.lock().unwrap();
            storage::insert_node(&conn, "n", &sample_doc()).unwrap();
        }
        let app = build_router(state);
        let body = b":PROPERTIES:\n:ID: other-node\n:END:\n* Heading\n".to_vec();
        let (status, _, _) = send(
            app,
            "PUT",
            "/nodes/n",
            Some("text/org"),
            Some("application/json"),
            body,
        )
        .await;
        assert_eq!(status, StatusCode::BAD_REQUEST);
    }

    #[tokio::test]
    async fn api_orgtext_write_put_accepts_matching_drawer_id() {
        let state = setup_state();
        {
            let conn = state.conn.lock().unwrap();
            storage::insert_node(&conn, "n", &sample_doc()).unwrap();
        }
        let app = build_router(state);
        let body = b":PROPERTIES:\n:ID: n\n:END:\n* Updated\n".to_vec();
        let (status, _, resp) = send(
            app,
            "PUT",
            "/nodes/n",
            Some("text/org"),
            Some("application/json"),
            body,
        )
        .await;
        assert_eq!(status, StatusCode::OK);
        let v = json_str(&resp);
        assert_eq!(v["title"].as_str().unwrap(), "Updated");
        // The drawer did not leak into the stored AST.
        let blocks = v["document"]["blocks"].as_array().unwrap();
        assert!(blocks[0].get("Heading").is_some(), "drawer leaked: {v}");
    }

    #[tokio::test]
    async fn api_orgtext_write_put_parses_org_body() {
        let state = setup_state();
        {
            let conn = state.conn.lock().unwrap();
            storage::insert_node(&conn, "n", &sample_doc()).unwrap();
        }
        let app = build_router(state);
        let body = b"* Replaced\nbody\n".to_vec();
        let (status, _, resp) = send(
            app,
            "PUT",
            "/nodes/n",
            Some("text/org"),
            Some("application/json"),
            body,
        )
        .await;
        assert_eq!(status, StatusCode::OK);
        let v = json_str(&resp);
        assert_eq!(v["title"].as_str().unwrap(), "Replaced");
    }

    #[tokio::test]
    async fn api_orgtext_write_put_400_on_invalid_utf8() {
        let state = setup_state();
        {
            let conn = state.conn.lock().unwrap();
            storage::insert_node(&conn, "n", &sample_doc()).unwrap();
        }
        let app = build_router(state);
        // Non-UTF-8 bytes for an org body.
        let body = vec![0xff, 0xfe, 0xfd];
        let (status, _, _) = send(
            app,
            "PUT",
            "/nodes/n",
            Some("text/org"),
            Some("application/json"),
            body,
        )
        .await;
        assert_eq!(status, StatusCode::BAD_REQUEST);
    }

    #[tokio::test]
    async fn api_orgtext_write_post_400_on_invalid_utf8() {
        let app = build_router(setup_state());
        let body = vec![0xff, 0xfe, 0xfd];
        let (status, _, _) = send(
            app,
            "POST",
            "/nodes",
            Some("text/org"),
            Some("application/json"),
            body,
        )
        .await;
        assert_eq!(status, StatusCode::BAD_REQUEST);
    }

    // ── api_orgtext_write_response ────────────────────────────────────

    #[tokio::test]
    async fn api_orgtext_write_response_post_returns_org_under_org_accept() {
        let app = build_router(setup_state());
        let body = b"* Hello\nworld\n".to_vec();
        let (status, headers, resp) = send(
            app,
            "POST",
            "/nodes",
            Some("text/org"),
            Some("text/org"),
            body,
        )
        .await;
        assert_eq!(status, StatusCode::CREATED);
        let ct = headers.get(header::CONTENT_TYPE).unwrap().to_str().unwrap();
        assert!(ct.starts_with("text/org"), "content-type was {ct}");
        let text = String::from_utf8(resp).unwrap();
        // Body is org text, not JSON.
        assert!(!text.starts_with('{'));
        assert!(text.contains("Hello"));
    }

    #[tokio::test]
    async fn api_orgtext_write_response_put_returns_org_under_org_accept() {
        let state = setup_state();
        {
            let conn = state.conn.lock().unwrap();
            storage::insert_node(&conn, "n", &sample_doc()).unwrap();
        }
        let app = build_router(state);
        let body = serde_json::to_vec(&UpdateNodeRequest {
            document: Document {
                blocks: vec![Block::Heading {
                    level: 1,
                    title: Title("PutOrg".into()),
                    tags: vec![],
                    children: vec![],
                }],
            },
        })
        .unwrap();
        let (status, headers, resp) = send(
            app,
            "PUT",
            "/nodes/n",
            Some("application/json"),
            Some("text/org"),
            body,
        )
        .await;
        assert_eq!(status, StatusCode::OK);
        let ct = headers.get(header::CONTENT_TYPE).unwrap().to_str().unwrap();
        assert!(ct.starts_with("text/org"), "content-type was {ct}");
        let text = String::from_utf8(resp).unwrap();
        assert!(!text.starts_with('{'));
        assert!(text.contains("PutOrg"));
    }

    #[tokio::test]
    async fn api_orgtext_write_response_put_returns_json_under_json_accept() {
        let state = setup_state();
        {
            let conn = state.conn.lock().unwrap();
            storage::insert_node(&conn, "n", &sample_doc()).unwrap();
        }
        let app = build_router(state);
        let body = b"* Title\n".to_vec();
        let (status, headers, resp) = send(
            app,
            "PUT",
            "/nodes/n",
            Some("text/org"),
            Some("application/json"),
            body,
        )
        .await;
        assert_eq!(status, StatusCode::OK);
        let ct = headers.get(header::CONTENT_TYPE).unwrap().to_str().unwrap();
        assert!(ct.starts_with("application/json"), "content-type was {ct}");
        let v = json_str(&resp);
        assert_eq!(v["title"].as_str().unwrap(), "Title");
    }

    // ── search_endpoint_shape ─────────────────────────────────────────

    /// `GET /search?q=…` continues to return a JSON array of NodeSummary
    /// objects (`{"id":..., "title":...}`), unchanged from v2/v3/v4. The
    /// backing call is now [`storage::search_hybrid`] but with no
    /// embedding hook configured it degrades to FTS, and the response
    /// envelope is identical.
    #[tokio::test]
    async fn search_endpoint_shape_returns_node_summary_array() {
        let state = setup_state();
        {
            let conn = state.conn.lock().unwrap();
            storage::insert_node(
                &conn,
                "match-1",
                &Document {
                    blocks: vec![Block::Heading {
                        level: 1,
                        title: Title("Rust Programming".into()),
                        tags: vec![],
                        children: vec![Block::Paragraph {
                            inlines: vec![Inline::Plain("systems language".into())],
                        }],
                    }],
                },
            )
            .unwrap();
        }
        let app = build_router(state);
        let (status, headers, body) = send(
            app,
            "GET",
            "/search?q=programming",
            None,
            Some("application/json"),
            vec![],
        )
        .await;
        assert_eq!(status, StatusCode::OK);
        let ct = headers.get(header::CONTENT_TYPE).unwrap().to_str().unwrap();
        assert!(ct.starts_with("application/json"), "content-type was {ct}");
        let v = json_str(&body);
        let arr = v.as_array().expect("response is a JSON array");
        assert_eq!(arr.len(), 1);
        // NodeSummary shape: exactly the keys "id" and "title", both strings.
        let item = &arr[0];
        let obj = item.as_object().expect("array entries are objects");
        let mut keys: Vec<&String> = obj.keys().collect();
        keys.sort();
        assert_eq!(
            keys,
            vec![&"id".to_string(), &"title".to_string()],
            "exactly id+title — no extra fields"
        );
        assert_eq!(item["id"].as_str().unwrap(), "match-1");
        assert_eq!(item["title"].as_str().unwrap(), "Rust Programming");
    }

    #[tokio::test]
    async fn search_endpoint_shape_empty_query_returns_empty_array() {
        let app = build_router(setup_state());
        let (status, _, body) = send(
            app,
            "GET",
            "/search?q=",
            None,
            Some("application/json"),
            vec![],
        )
        .await;
        assert_eq!(status, StatusCode::OK);
        let v = json_str(&body);
        assert!(v.as_array().unwrap().is_empty());
    }

    #[tokio::test]
    async fn search_endpoint_shape_no_q_param_returns_empty_array() {
        let app = build_router(setup_state());
        let (status, _, body) = send(
            app,
            "GET",
            "/search",
            None,
            Some("application/json"),
            vec![],
        )
        .await;
        assert_eq!(status, StatusCode::OK);
        let v = json_str(&body);
        assert!(v.as_array().unwrap().is_empty());
    }
}