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
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
//! Vector Core — the single source of truth for all Vector clients, SDKs, and interfaces.
//!
//! This crate contains ALL of Vector's business logic, fully decoupled from Tauri.
//! It can be used by:
//! - **src-tauri**: The Tauri desktop/mobile app (thin command shell)
//! - **vector-cli**: Command-line interface
//! - **Vector SDK**: Bot and client libraries
//! - Any future interface (web, embedded, etc.)
//!
//! # Architecture
//!
//! ```text
//! ┌─────────────────────────────────────────────┐
//! │ vector-core │
//! │ │
//! │ types ─ compact ─ state ─ db ─ crypto │
//! │ chat ─ profile ─ net ─ hex │
//! │ │
//! │ traits::EventEmitter (UI abstraction) │
//! │ VectorCore (high-level API) │
//! └─────────────────────────────────────────────┘
//! ▲ ▲ ▲
//! src-tauri vector-cli Vector SDK
//! (AppHandle) (terminal) (callbacks)
//! ```
// === Logging (must be first — #[macro_export] macros used by all modules) ===
#[macro_use]
mod macros;
// === Foundation ===
pub mod logging;
pub mod error;
pub mod traits;
// Nostr SDK trait imports needed for bech32 operations
use crate::event_ext::FinalizeUnsignedWithId;
use nostr_sdk::prelude::{FinalizeEventAsync, ToBech32};
// === Core Types ===
pub mod event_ext;
pub mod tags;
pub mod types;
pub mod profile;
pub mod chat;
pub mod compact;
// === State ===
pub mod state;
// === Debug Stats ===
#[cfg(debug_assertions)]
pub mod stats;
// === Crypto ===
pub mod crypto;
// === Signer (polymorphic: local vault vs. NIP-46 remote bunker) ===
pub mod signer;
// === NIP-55 offline signer (on-device Amber over Android IPC) ===
pub mod nip55;
// === Database ===
pub mod db;
// === Network ===
pub mod net;
pub mod negentropy;
pub mod blossom;
pub mod blossom_servers;
pub mod blossom_capabilities;
pub mod inbox_relays;
pub mod emoji_packs;
pub mod emoji_usage;
pub mod badges;
pub mod bot_interface;
pub mod webxdc;
#[cfg(feature = "tor")]
pub mod tor;
/// NIP-42 authenticator.
///
/// Many Concord/Armada communities live on AUTH-gating relays (Ditto's default
/// gates kind-1059), where an unauthenticated client silently reads back ZERO
/// events — a join's control-plane verify then fails closed and every community
/// fetch comes up empty. Registering this is what unlocks those reads; a relay
/// that doesn't challenge is unaffected.
///
/// The signer is resolved per challenge rather than captured at client
/// construction, so a bunker that connects later (or an account swap) authks
/// under the identity that is live *now*.
#[derive(Debug)]
pub struct VectorAuthenticator;
impl nostr_sdk::prelude::Authenticator for VectorAuthenticator {
fn make_auth_event<'a>(
&'a self,
relay_url: &'a nostr_sdk::prelude::RelayUrl,
challenge: &'a str,
) -> nostr_sdk::prelude::BoxedFuture<'a, std::result::Result<nostr_sdk::prelude::Event, nostr_sdk::prelude::Error>>
{
Box::pin(async move {
let signer =
signer::active_signer().map_err(nostr_sdk::prelude::Error::other)?;
Ok(nostr_sdk::prelude::EventBuilder::auth(challenge, relay_url.clone())
.finalize_async(&signer)
.await?)
})
}
}
/// A `ClientBuilder` carrying Vector's client-wide policy: NIP-42 auth plus the
/// embedded-Tor SOCKS proxy.
///
/// Callers should start from this rather than `ClientBuilder::new()` so both come
/// along automatically.
///
/// The proxy is a closure, not a fixed address: nostr resolves it per connection
/// attempt, so it reads the *current* Tor state. That covers relays added later
/// in the session, which previously needed the transport re-applied per
/// `add_relay`.
pub fn nostr_client_builder() -> nostr_sdk::prelude::ClientBuilder {
apply_tor_proxy(
nostr_sdk::prelude::ClientBuilder::new()
.authenticator(VectorAuthenticator)
// The pool's own attempts need the Tor floor too, not just our explicit
// `try_connect` calls (0.45 default is 15s — under a circuit build).
.connect_timeout(relay_connect_timeout(std::time::Duration::from_secs(15))),
)
}
/// Register a relay with the pool's own auto-reconnect disabled.
///
/// Vector drives every reconnect from its reconcile loop, because it needs the
/// connection lifecycle to be observable and to sequence with health checks and
/// the Tor transport switch. The pool's retry is invisible to all of that, so two
/// schedules end up fighting over one socket.
///
/// This exists as a helper rather than a per-call `.reconnect(false)` because
/// `reconnect` is the one relay option `ClientBuilder` cannot default: it lives
/// only on `RelayOptions`, so every registration site has to opt out by hand, and
/// most of them silently didn't.
pub trait ClientRelayExt {
/// `Client::add_relay` with `reconnect(false)` already applied.
fn add_managed_relay<'client, 'url, U>(
&'client self,
url: U,
) -> nostr_sdk::prelude::AddRelay<'client, 'url>
where
U: Into<nostr_sdk::prelude::RelayUrlArg<'url>>;
}
impl ClientRelayExt for nostr_sdk::prelude::Client {
fn add_managed_relay<'client, 'url, U>(
&'client self,
url: U,
) -> nostr_sdk::prelude::AddRelay<'client, 'url>
where
U: Into<nostr_sdk::prelude::RelayUrlArg<'url>>,
{
self.add_relay(url).reconnect(false)
}
}
/// Re-send every live subscription this relay is supposed to carry, after VECTOR
/// reconnected it.
///
/// Vector owns every reconnect (`add_managed_relay` ⇒ `reconnect(false)`), and the
/// pool re-applies live subs only inside its own retry path — which is exactly the
/// path that was turned off. So a dropped socket comes back carrying NOTHING, and a
/// catch-up fetch is not a subscription: the data lands once and then the stream is
/// silent forever. Only an AUTH-gating relay healed, via its post-challenge re-send.
///
/// Driven off the pool's own subscription table rather than a list of known
/// subscriptions, so a future subscription is covered without touching this. Only
/// ids the pool already associates with `relay` are re-sent, so a relay-targeted
/// subscription is never widened onto a relay it deliberately excluded. Same-id
/// REQs are idempotent.
pub async fn resubscribe_relay_after_reconnect(
client: &nostr_sdk::prelude::Client,
relay: &nostr_sdk::prelude::RelayUrl,
) {
for (id, per_relay) in client.subscriptions().await {
let Some(filters) = per_relay.get(relay) else { continue };
if filters.is_empty() {
continue;
}
let _ = client
.subscribe(nostr_sdk::prelude::ReqTarget::single(relay.clone(), filters.clone()))
.with_id(id)
.await;
}
}
/// Minimum a relay connect attempt gets while Tor is on.
///
/// Circuit construction dominates the handshake and routinely runs tens of
/// seconds, especially on the first connection after the toggle.
#[cfg(all(feature = "tor", not(target_arch = "wasm32")))]
const TOR_RELAY_CONNECT_FLOOR: std::time::Duration = std::time::Duration::from_secs(60);
/// Adjust a relay connect budget for the transport actually in use.
///
/// Clearnet TCP+TLS settles in well under a second, so the tight per-call budgets
/// are right there and each caller's intent is preserved. Under Tor those same
/// budgets expire mid-circuit, and because the health-check and reconcile loops
/// treat a timeout as "unhealthy" they call `disconnect()` — which terminates the
/// connection task — then retry, so a relay churns `pending → terminated` forever
/// and never connects. Raising the floor lets the circuit finish.
pub fn relay_connect_timeout(clearnet: std::time::Duration) -> std::time::Duration {
#[cfg(all(feature = "tor", not(target_arch = "wasm32")))]
{
if !matches!(tor::transport_state(), tor::TorTransportState::Disabled) {
return clearnet.max(TOR_RELAY_CONNECT_FLOOR);
}
}
clearnet
}
/// Floor for a relay round-trip (request → response) while Tor is active.
#[cfg(all(feature = "tor", not(target_arch = "wasm32")))]
const TOR_RELAY_REQUEST_FLOOR: std::time::Duration = std::time::Duration::from_secs(30);
/// Adjust a relay request budget for the transport actually in use.
///
/// Companion to [`relay_connect_timeout`] for round trips rather than connections.
/// A relay that answers a probe in 200ms direct can take many seconds through three
/// hops, so a clearnet-sized budget reads a healthy relay as dead.
pub fn relay_request_timeout(clearnet: std::time::Duration) -> std::time::Duration {
#[cfg(all(feature = "tor", not(target_arch = "wasm32")))]
{
if !matches!(tor::transport_state(), tor::TorTransportState::Disabled) {
return clearnet.max(TOR_RELAY_REQUEST_FLOOR);
}
}
clearnet
}
/// Apply the Tor proxy policy to any `ClientBuilder`.
///
/// Separate from [`nostr_client_builder`] because a client that authenticates as
/// something other than the user (the Concord stream-auth plane key) still needs
/// the same transport: without it the plane fetch connects direct and ties the
/// user's IP to community membership.
pub fn apply_tor_proxy(
builder: nostr_sdk::prelude::ClientBuilder,
) -> nostr_sdk::prelude::ClientBuilder {
#[cfg(all(feature = "tor", not(target_arch = "wasm32")))]
let builder = builder.proxy(nostr_sdk::prelude::Proxy::custom(|_url| tor_proxy_target()));
builder
}
/// Resolve the proxy every connection attempt must use, for the transport in use.
///
/// Named rather than inlined into the `Proxy::custom` closure so the failsafe is
/// testable: returning `None` here means "connect direct", so the only leak-safe
/// answer while Tor is the chosen transport but not yet up is the blackhole.
#[cfg(all(feature = "tor", not(target_arch = "wasm32")))]
fn tor_proxy_target() -> Option<std::net::SocketAddr> {
match tor::transport_state() {
tor::TorTransportState::Active(addr) => Some(addr),
// Tor failsafe: route to a blackhole so a relay socket can't come up
// direct while Tor is mid-bootstrap.
tor::TorTransportState::RequiredButInactive => Some(tor::blackhole_proxy_addr()),
tor::TorTransportState::Disabled => None,
}
}
/// Sign an `EventBuilder` with the session signer.
///
/// Stands in for 0.44's `Client::sign_event_builder`, which went away when the
/// client stopped owning a signer.
pub async fn sign_builder(
builder: nostr_sdk::prelude::EventBuilder,
) -> std::result::Result<nostr_sdk::prelude::Event, String> {
let signer = signer::active_signer()?;
builder
.finalize_async(&signer)
.await
.map_err(|e| e.to_string())
}
/// Sign an `EventBuilder` with the session signer and publish it.
///
/// Stands in for 0.44's `Client::send_event_builder`.
pub async fn sign_and_send(
client: &nostr_sdk::prelude::Client,
builder: nostr_sdk::prelude::EventBuilder,
) -> std::result::Result<nostr_sdk::prelude::SendEventOutput, String> {
let event = sign_builder(builder).await?;
client
.send_event(&event)
.await
.map_err(|e| e.to_string())
}
/// Seal, wrap and publish a rumor to `receiver`.
///
/// Stands in for 0.44's `Client::gift_wrap` / `gift_wrap_to`, which went away
/// with the client's signer. An empty `relays` publishes pool-wide, matching
/// `gift_wrap`; a non-empty one targets those relays, matching `gift_wrap_to`.
pub async fn send_gift_wrap<'u, I, U, T>(
client: &nostr_sdk::prelude::Client,
relays: I,
receiver: &nostr_sdk::prelude::PublicKey,
rumor: nostr_sdk::prelude::UnsignedEvent,
extra_tags: T,
) -> std::result::Result<nostr_sdk::prelude::SendEventOutput, String>
where
I: IntoIterator<Item = U>,
U: Into<nostr_sdk::prelude::RelayUrlArg<'u>>,
T: IntoIterator<Item = nostr_sdk::prelude::Tag>,
{
let signer = signer::active_signer()?;
let wrap = nostr_sdk::prelude::GiftWrapBuilder::new(*receiver, rumor)
.extra_tags(extra_tags)
.finalize_async(&signer)
.await
.map_err(|e| e.to_string())?;
let targets: Vec<nostr_sdk::prelude::RelayUrlArg<'u>> =
relays.into_iter().map(Into::into).collect();
if targets.is_empty() {
client.send_event(&wrap).await.map_err(|e| e.to_string())
} else {
client
.send_event(&wrap)
.to(targets)
.await
.map_err(|e| e.to_string())
}
}
/// Capabilities for a Community / "external" relay: GOSSIP only.
///
/// GOSSIP is read/write-capable when TARGETED — `can_read()` is
/// `READ|GOSSIP|DISCOVERY` and `can_write()` is `WRITE|GOSSIP`, so per-relay
/// targeted ops pass. But pool-wide ops select READ-only / WRITE-only relays, so
/// the DM/giftwrap subscription and the user's outbox skip GOSSIP relays — the
/// user's own traffic never touches relays they don't own.
///
/// No PING counterpart any more: 0.45 demoted PING from a capability flag to a
/// per-relay option (`AddRelay::ping`) that already defaults to true, with
/// `sleep_when_idle` defaulting to false. The 24/7 keepalive this used to buy is
/// now the default, so it doesn't belong in the capability set.
pub fn community_relay_capabilities() -> nostr_sdk::prelude::RelayCapabilities {
nostr_sdk::prelude::RelayCapabilities::GOSSIP
}
/// Relay options for a Discovery Relay (see `state::DISCOVERY_RELAYS`): the same
/// GOSSIP|PING targeted-only isolation as Community relays — reachable via
/// `fetch_events_from` / `send_event_to`, invisible to pool-wide DM/profile ops.
/// An overlap with a user relay keeps the user's READ+WRITE flags (`add_relay`
/// no-ops on an already-pooled url).
pub fn discovery_relay_capabilities() -> nostr_sdk::prelude::RelayCapabilities {
community_relay_capabilities()
}
// === Event Storage ===
pub mod stored_event;
// === Rumor Processing ===
pub mod rumor;
// === Messaging ===
pub mod sending;
// === Per-DM Wallpapers ===
pub mod wallpaper;
// === Message Deletion (NIP-09 against retained gift-wraps) ===
pub mod deletion;
pub mod self_destruct;
// === SIMD Operations ===
pub mod simd;
// === Community protocol (GROUP_PROTOCOL.md) ===
pub mod community;
// === Event Handler ===
pub mod event_handler;
// === Re-exports for convenience ===
pub use types::{Message, Attachment, Reaction, EditEntry, ImageMetadata, SiteMetadata, LoginResult, AttachmentFile, mention, extract_mentions};
pub use profile::{Profile, ProfileFlags, SlimProfile, Status};
pub use chat::{Chat, ChatType, ChatMetadata, SerializableChat};
pub use compact::{CompactMessage, CompactMessageVec, NpubInterner};
pub use state::{
ChatState, NOSTR_CLIENT, MY_SECRET_KEY, MY_PUBLIC_KEY, STATE, ENCRYPTION_KEY,
nostr_client, my_public_key, has_active_session,
set_nostr_client, set_my_public_key,
take_nostr_client, clear_my_public_key,
set_pending_bunker_setup, pending_bunker_setup, clear_pending_bunker_setup,
set_pending_nip55_setup, pending_nip55_setup, clear_pending_nip55_setup,
};
pub use crypto::{GuardedKey, GuardedSigner};
pub use signer::{
SignerKind, signer_kind, set_signer_kind, is_bunker, is_keyless,
BUNKER_SIGNER, bunker_signer, set_bunker_signer, take_bunker_signer,
build_bunker_signer, prewarm_bunker, drain_bunker_state,
parse_bunker_remote_pubkey, parse_bunker_relays,
BunkerConnectionState, bunker_state, set_bunker_state,
VectorAuthUrlHandler, attempt_bunker_login, WatchedBunkerSigner,
vector_metadata, build_nostrconnect_uri, build_nostrconnect_session,
VECTOR_APP_NAME, VECTOR_APP_URL, VECTOR_APP_ICON,
};
pub use nip55::{
Nip55Backend, Nip55Error, Nip55ResolverOutcome, Nip55Signer, Nip55State,
set_nip55_backend, nip55_backend, nip55_state, set_nip55_state, drain_nip55_state,
nip55_is_installed, nip55_pair, nip55_perms_json,
VECTOR_NIP55_SIGN_KINDS, VECTOR_NIP55_ENCRYPT_TYPES,
};
pub use error::{VectorError, Result};
pub use traits::{EventEmitter, NoOpEmitter, set_event_emitter, emit_event};
pub use db::{set_app_data_dir, get_app_data_dir};
pub use sending::{SendCallback, NoOpSendCallback, SendConfig, SendResult};
pub use deletion::{delete_own_dm, DeleteOutcome};
pub use stored_event::{StoredEvent, StoredEventBuilder, SystemEventType};
pub use rumor::{RumorEvent, RumorContext, ConversationType, RumorProcessingResult, process_rumor};
pub use profile::{SyncPriority, ProfileSyncHandler, NoOpProfileSyncHandler};
pub use event_handler::{InboundEventHandler, NoOpEventHandler, PreparedEvent, process_event};
use std::path::PathBuf;
use std::sync::Arc;
// ============================================================================
// VectorCore — High-level API
// ============================================================================
/// Configuration for initializing VectorCore.
pub struct CoreConfig {
/// Path to the app data directory (e.g., ~/.local/share/io.vectorapp/data/)
pub data_dir: PathBuf,
/// Optional event emitter for UI integration
pub event_emitter: Option<Box<dyn EventEmitter>>,
}
/// The main entry point for Vector Core.
///
/// Provides a high-level API for all Vector operations. Internally uses
/// global state (same pattern as the Tauri backend) for compatibility.
///
/// ```no_run
/// use vector_core::{VectorCore, CoreConfig};
/// use std::path::PathBuf;
///
/// # async fn example() -> vector_core::Result<()> {
/// let core = VectorCore::init(CoreConfig {
/// data_dir: PathBuf::from("/tmp/vector-data"),
/// event_emitter: None,
/// })?;
///
/// // Login with nsec
/// let result = core.login("nsec1...", None).await?;
/// println!("Logged in as {}", result.npub);
/// # Ok(())
/// # }
/// ```
#[derive(Clone, Copy)]
pub struct VectorCore;
impl VectorCore {
/// Initialize Vector Core with the given configuration.
pub fn init(config: CoreConfig) -> Result<Self> {
// Set data directory
db::set_app_data_dir(config.data_dir);
// Set event emitter (or no-op)
if let Some(emitter) = config.event_emitter {
traits::set_event_emitter(emitter);
}
// Install rustls ring provider
let _ = rustls::crypto::ring::default_provider().install_default();
Ok(VectorCore)
}
/// Get all available accounts.
pub fn accounts(&self) -> Result<Vec<String>> {
db::get_accounts().map_err(VectorError::from)
}
/// Login with an nsec key or mnemonic seed phrase.
pub async fn login(&self, key: &str, password: Option<&str>) -> Result<LoginResult> {
use nostr_sdk::prelude::*;
// Parse the key
let keys = if key.starts_with("nsec1") {
let secret = SecretKey::from_bech32(key)
.map_err(|e| VectorError::Nostr(format!("Invalid nsec: {}", e)))?;
Keys::new(secret)
} else {
// Treat as mnemonic (NIP-06: derive from BIP-39 seed)
Keys::from_mnemonic(key, None)
.map_err(|e| VectorError::Nostr(format!("Key derivation failed: {}", e)))?
};
let public_key = keys.public_key();
let npub = public_key.to_bech32()
.map_err(|e| VectorError::Nostr(format!("Failed to encode npub: {}", e)))?;
// Store in GuardedKey vault (pass other vaults to protect during decoy writes)
let secret_bytes = keys.secret_key().to_secret_bytes();
state::MY_SECRET_KEY.set(secret_bytes, &[&state::ENCRYPTION_KEY]);
state::set_my_public_key(public_key);
// Initialize database for this account
db::set_current_account(npub.clone())?;
db::init_database(&npub)?;
// Store nsec for encryption setup
{
let nsec = keys.secret_key().to_bech32()
.map_err(|e| VectorError::Nostr(format!("Failed to encode nsec: {}", e)))?;
*state::PENDING_NSEC.lock().unwrap() = Some(nsec.clone());
// NEVER clobber an existing encrypted key with the plaintext nsec. An account with encryption
// enabled keeps its key encrypted-at-rest (PIN-derived); overwriting it with the raw nsec — e.g.
// a no-password headless/diagnostic login (the concord CLI) — would leave the GUI deriving the
// right key from the correct PIN but trying to decrypt a value that's no longer ciphertext, i.e.
// "incorrect pin" with the real key effectively lost. MY_SECRET_KEY is already set in-memory above,
// so login works regardless; only persist the raw key when there's no encrypted key to protect.
let existing_encrypted = db::get_pkey().ok().flatten().is_some_and(|v| !v.starts_with("nsec1"));
if !(state::resolve_encryption_enabled_from_db() && existing_encrypted) {
db::set_pkey(&nsec)?;
}
}
// Use the canonical resolver so this high-level API agrees with
// crypto::is_encryption_enabled and the Android bg-sync probe.
let has_encryption = state::resolve_encryption_enabled_from_db();
if has_encryption {
if let Some(pwd) = password {
let key = crate::crypto::hash_pass(pwd).await;
state::ENCRYPTION_KEY.set(key, &[&state::MY_SECRET_KEY]);
}
}
// Seed the atomic unconditionally — `is_encryption_enabled_fast()`
// must agree with the DB regardless of branch.
state::init_encryption_enabled();
// Build Nostr client — tor-aware options so a headless consumer with
// the Tor pref ON proxies (or blackholes) instead of dialing direct.
let client = crate::nostr_client_builder()
// Relay health monitor — powers the reconnect-driven catch-up in `listen()`.
.monitor(Monitor::new(1024))
.build();
// Add trusted relays
for relay in state::TRUSTED_RELAYS {
client.add_managed_relay(*relay).await.ok();
}
// Connect
client.connect().await;
let _ = { state::set_nostr_client(client); Ok::<(), ()>(()) };
Ok(LoginResult { npub, has_encryption })
}
/// Generate a fresh random account secret key (bech32 nsec). Lets a headless client spin up a
/// brand-new identity (`add_account` with no key) without depending on nostr-sdk directly.
pub fn generate_nsec(&self) -> Result<String> {
use nostr_sdk::prelude::*;
Keys::generate().secret_key().to_bech32()
.map_err(|e| VectorError::Nostr(format!("Failed to encode nsec: {}", e)))
}
/// Send a NIP-17 gift-wrapped text DM using the full pipeline. Retries a
/// transient publish miss (headless preset, 3 attempts) so an SDK/CLI bot rides
/// out a relay blip instead of silently dropping the message on the first miss;
/// `self_send: false` keeps it a plain send (no inbox self-copy).
pub async fn send_dm(&self, to_npub: &str, content: &str) -> Result<sending::SendResult> {
let config = SendConfig { self_send: false, ..SendConfig::headless() };
sending::send_dm(to_npub, content, None, &config, Arc::new(NoOpSendCallback)).await
.map_err(|e| VectorError::Other(e))
}
/// Send a DM as a threaded reply to `replied_to` (an existing message's event id).
pub async fn send_dm_reply(&self, to_npub: &str, replied_to: &str, content: &str) -> Result<sending::SendResult> {
let config = SendConfig { self_send: false, ..SendConfig::headless() };
sending::send_dm(to_npub, content, Some(replied_to), &config, Arc::new(NoOpSendCallback)).await
.map_err(|e| VectorError::Other(e))
}
/// Download a received attachment and decrypt it to plaintext bytes. Fetches the encrypted blob
/// from its Blossom URL (SSRF/Tor-aware client, size-capped) and AES-decrypts with the
/// attachment's embedded key + nonce. Walks the primary URL then any BUD-04 `fallback`
/// mirrors (same ciphertext on other hosts) until one serves. Prefer
/// [`download_attachment_from`](Self::download_attachment_from) when the message author is
/// known — it adds the BUD-03 hash-swap over the author's advertised servers.
pub async fn download_attachment(&self, attachment: &Attachment) -> Result<Vec<u8>> {
self.download_attachment_from(attachment, None).await
}
/// [`download_attachment`](Self::download_attachment) with the full source walk: primary URL →
/// embedded `fallback` mirrors → BUD-03 hash-swap (the same content-address on each of the
/// author's kind-10063 servers). `author_npub` is the message author (your own npub for your
/// own messages); `None` skips the hash-swap stage.
pub async fn download_attachment_from(
&self,
attachment: &Attachment,
author_npub: Option<&str>,
) -> Result<Vec<u8>> {
use futures_util::StreamExt;
const MAX_DOWNLOAD: usize = 256 * 1024 * 1024;
if attachment.url.is_empty() {
return Err(VectorError::Other("attachment has no URL".into()));
}
let client = crate::net::build_http_client(std::time::Duration::from_secs(120)).map_err(VectorError::Other)?;
let mut last_err = String::from("download failed");
let mut candidates: Vec<String> = vec![attachment.url.clone()];
candidates.extend(attachment.fallback_urls.iter().cloned());
let mut hash_swap_tried = false;
let mut i = 0;
'sources: while i < candidates.len() {
let url = candidates[i].clone();
i += 1;
// One-time last resort once every embedded source has failed: the author's advertised
// servers may hold the blob under the same content-address.
let extend_with_swap = |candidates: &mut Vec<String>, servers: &[String]| {
let extra = crate::blossom::hash_swap_candidates(&attachment.url, servers);
for c in extra {
if !candidates.contains(&c) {
candidates.push(c);
}
}
};
macro_rules! next_source {
() => {{
log_net_fail!("[Download] source failed ({}): {}", url, last_err);
if i == candidates.len() && !hash_swap_tried {
hash_swap_tried = true;
let servers = crate::blossom_servers::author_swap_servers(author_npub, false).await;
extend_with_swap(&mut candidates, &servers);
}
continue 'sources;
}};
}
// SSRF guard: URLs are attacker-controlled (off an inbound message). build_http_client
// only validates redirect HOPS, not the initial request — so validate each source here
// (matches the native download path). With Tor off this is the only egress guard.
if let Err(e) = crate::net::validate_url_not_private(&url) {
last_err = e.to_string();
next_source!();
}
let resp = match client.get(&url).send().await {
Ok(r) => r,
Err(e) => {
last_err = format!("download: {e}");
next_source!();
}
};
if !resp.status().is_success() {
last_err = format!("download failed: HTTP {}", resp.status());
next_source!();
}
// Stream with a cap so a hostile/oversized blob can't OOM the process. The cap is
// permanent — every mirror serves the same blob, so don't bother trying the next.
let mut encrypted: Vec<u8> = Vec::with_capacity(
resp.content_length().map(|l| (l as usize).min(MAX_DOWNLOAD)).unwrap_or(64 * 1024),
);
let mut stream = resp.bytes_stream();
while let Some(chunk) = stream.next().await {
let chunk = match chunk {
Ok(c) => c,
Err(e) => {
last_err = format!("read body: {e}");
next_source!();
}
};
if encrypted.len() + chunk.len() > MAX_DOWNLOAD {
return Err(VectorError::Other("attachment exceeds 256 MiB cap".into()));
}
encrypted.extend_from_slice(&chunk);
}
match crate::crypto::decrypt_data(&encrypted, &attachment.key, &attachment.nonce) {
Ok(plain) => {
if i > 1 {
log_net_info!("[Download] fallback source {}/{} served {}", i, candidates.len(), url);
}
return Ok(plain);
}
Err(e) => {
// A host serving wrong bytes under the right URL must not
// veto sources still holding the real ciphertext.
last_err = format!("decrypt: {e}");
next_source!();
}
}
}
log_net_fail!("[Download] all {} source(s) failed for {}: {}", candidates.len(), attachment.url, last_err);
Err(VectorError::Other(last_err))
}
/// Send a NIP-17 gift-wrapped file attachment DM.
pub async fn send_file(&self, to_npub: &str, file_path: &str) -> Result<sending::SendResult> {
let path = std::path::Path::new(file_path);
let bytes = std::fs::read(path)
.map_err(|e| VectorError::Io(e))?;
let filename = path.file_name()
.and_then(|n| n.to_str())
.unwrap_or("file");
let extension = path.extension()
.and_then(|e| e.to_str())
.unwrap_or("bin");
sending::send_file_dm(
to_npub,
std::sync::Arc::new(bytes),
filename,
extension,
None,
&SendConfig::default(),
Arc::new(NoOpSendCallback),
).await.map_err(|e| VectorError::Other(e))
}
/// Send a NIP-25 reaction to a DM message. `emoji_url` carries the NIP-30
/// image URL when reacting with a custom-pack emoji (content stays
/// `:shortcode:`). Returns the reaction's rumor id. Local echo + persistence
/// are best-effort — the gift-wrap send is the source of truth.
pub async fn send_reaction(
&self,
to_npub: &str,
reference_id: &str,
emoji: &str,
emoji_url: Option<&str>,
) -> Result<String> {
use nostr_sdk::prelude::*;
let client = state::nostr_client().ok_or(VectorError::Other("Not connected".into()))?;
let my_public_key = state::my_public_key().ok_or(VectorError::Other("Not logged in".into()))?;
let reference_event = EventId::from_hex(reference_id)
.map_err(|e| VectorError::Nostr(e.to_string()))?;
let receiver_pubkey = PublicKey::from_bech32(to_npub)
.map_err(|e| VectorError::Nostr(e.to_string()))?;
// NIP-30 custom-emoji tag — only when content is `:shortcode:` and a URL is present.
let custom_emoji_tag = emoji_url.and_then(|url| {
if !emoji.starts_with(':') || !emoji.ends_with(':') || emoji.len() < 3 || url.is_empty() {
return None;
}
let shortcode = &emoji[1..emoji.len() - 1];
if shortcode.is_empty() { return None; }
Some(Tag::custom("emoji", [shortcode.to_string(), url.to_string()]))
});
let reaction_target = nostr_sdk::prelude::nip25::ReactionTarget {
event_id: reference_event,
public_key: receiver_pubkey,
coordinate: None,
kind: Some(Kind::PrivateDirectMessage),
relay_hint: None,
};
let mut builder = EventBuilder::reaction(reaction_target, emoji);
if let Some(tag) = custom_emoji_tag {
builder = builder.tag(tag);
}
let rumor = builder.finalize_unsigned_with_id(my_public_key);
let inner_rumor_id = rumor.id;
let rumor_id = inner_rumor_id.ok_or(VectorError::Other("Failed to get rumor ID".into()))?.to_hex();
// Retain the recipient wrap's ephemeral key + targeted relays so the
// reaction can later be revoked with a NIP-09 relay nuke (mirrors the
// DM message send path). Without retention the reaction is undeletable.
let outcome = inbox_relays::send_gift_wrap_retained(&client, &receiver_pubkey, rumor.clone(), [])
.await.map_err(VectorError::Other)?;
if !outcome.output.success.is_empty() {
if let Some(rid) = inner_rumor_id {
if let Err(e) = db::nip17_keys::store_wrap_key(
&outcome.wrap_event_id, &rid, &receiver_pubkey,
db::nip17_keys::WrapRole::Recipient,
&outcome.wrap_secret, &outcome.targeted_relays,
) {
crate::log_warn!("[Reaction] failed to persist wrap key: {}", e);
}
}
}
// Self-wrap for multi-device recovery + retain its key too, so another
// device (or this one) can later revoke. Bail on account swap.
let self_wrap_client = client.clone();
let self_wrap_session = state::SessionGuard::capture();
tokio::spawn(async move {
if !self_wrap_session.is_valid() { return; }
if let Ok(self_outcome) = inbox_relays::send_gift_wrap_retained(
&self_wrap_client, &my_public_key, rumor, [],
).await {
if !self_wrap_session.is_valid() { return; }
if !self_outcome.output.success.is_empty() {
if let Some(rid) = inner_rumor_id {
let _ = db::nip17_keys::store_wrap_key(
&self_outcome.wrap_event_id, &rid, &my_public_key,
db::nip17_keys::WrapRole::SelfSend,
&self_outcome.wrap_secret, &self_outcome.targeted_relays,
);
}
}
}
});
// Best-effort optimistic local echo + persistence.
let reaction = Reaction {
id: rumor_id.clone(),
reference_id: reference_id.to_string(),
author_id: my_public_key.to_bech32().unwrap_or_else(|_| my_public_key.to_hex()),
emoji: emoji.to_string(),
emoji_url: emoji_url.map(|s| s.to_string()),
};
let msg_for_save = {
let mut st = state::STATE.lock().await;
match st.add_reaction_to_message(reference_id, reaction) {
Some((cid, true)) => st.find_message(reference_id).map(|(_, m)| (cid, m)),
_ => None,
}
};
if let Some((cid, mut msg)) = msg_for_save {
let _ = db::events::save_message(&cid, &msg).await;
traits::emit_message_update(&cid, reference_id, &mut msg).await;
}
Ok(rumor_id)
}
/// Send an ephemeral typing indicator to a DM recipient. Fire-and-forget
/// with a 30-second NIP-40 expiry so relays purge it quickly.
pub async fn send_typing(&self, to_npub: &str) -> Result<()> {
use nostr_sdk::prelude::*;
let client = state::nostr_client().ok_or(VectorError::Other("Not connected".into()))?;
let my_public_key = state::my_public_key().ok_or(VectorError::Other("Not logged in".into()))?;
let pubkey = PublicKey::from_bech32(to_npub).map_err(|e| VectorError::Nostr(e.to_string()))?;
let expiry = Timestamp::from_secs(Timestamp::now().as_secs() + 30);
let rumor = EventBuilder::new(Kind::ApplicationSpecificData, "typing")
.tag(Tag::public_key(pubkey))
.tag(Tag::custom("d", vec!["vector"]))
.tag(Tag::expiration(expiry))
.finalize_unsigned_with_id(my_public_key);
// Client no longer wraps: build the wrap, then publish it to the target relays.
let signer = signer::active_signer().map_err(VectorError::Other)?;
let wrap = nostr_sdk::prelude::GiftWrapBuilder::new(pubkey, rumor.clone())
.extra_tags([Tag::expiration(expiry)])
.finalize_async(&signer)
.await
.map_err(|e| VectorError::Nostr(e.to_string()))?;
client
.send_event(&wrap)
.to(state::active_trusted_relays().await)
.await
.map_err(|e| VectorError::Nostr(e.to_string()))?;
Ok(())
}
/// Edit a DM you previously sent (kind-16 edit) with an optimistic local
/// echo. Returns the edit event id. Persistence is best-effort and only
/// happens when the chat already exists locally.
pub async fn edit_dm(&self, to_npub: &str, message_id: &str, new_content: &str) -> Result<String> {
use nostr_sdk::prelude::*;
let client = state::nostr_client().ok_or(VectorError::Other("Not connected".into()))?;
let my_public_key = state::my_public_key().ok_or(VectorError::Other("Not logged in".into()))?;
let my_npub = my_public_key.to_bech32().map_err(|e| VectorError::Nostr(e.to_string()))?;
let receiver_pubkey = PublicKey::from_bech32(to_npub).map_err(|e| VectorError::Nostr(e.to_string()))?;
let reference_event = EventId::from_hex(message_id).map_err(|e| VectorError::Nostr(e.to_string()))?;
// NIP-30: resolve `:shortcode:` so the edit carries emoji image tags.
let emoji_tags = emoji_packs::resolve_outbound_emoji_tags(new_content);
let mut builder = EventBuilder::new(
Kind::from_u16(stored_event::event_kind::MESSAGE_EDIT),
new_content,
).tag(Tag::event(reference_event));
for et in &emoji_tags {
builder = builder.tag(Tag::custom(
"emoji",
[et.shortcode.clone(), et.url.clone()],
));
}
let rumor = builder.finalize_unsigned_with_id(my_public_key);
let edit_id = rumor.id.ok_or(VectorError::Other("Failed to get edit rumor ID".into()))?.to_hex();
let edit_ts_ms = rumor.created_at.as_secs() * 1000;
// Optimistic local echo + best-effort persistence.
let msg_for_emit = {
let mut st = state::STATE.lock().await;
st.update_message_in_chat(to_npub, message_id, |msg| {
msg.apply_edit(new_content.to_string(), edit_ts_ms, emoji_tags.clone());
msg.preview_metadata = None;
})
};
if let Some(mut msg) = msg_for_emit {
traits::emit_message_update(to_npub, message_id, &mut msg).await;
if let Ok(db_chat_id) = db::id_cache::get_chat_id_by_identifier(to_npub) {
let _ = db::events::save_edit_event(
&edit_id, message_id, new_content, &emoji_tags, db_chat_id, None, &my_npub,
).await;
}
}
inbox_relays::send_gift_wrap(&client, &receiver_pubkey, rumor.clone(), [])
.await.map_err(VectorError::Other)?;
let self_wrap_client = client.clone();
let self_wrap_session = state::SessionGuard::capture();
tokio::spawn(async move {
if !self_wrap_session.is_valid() { return; }
let Ok(signer) = signer::active_signer() else { return };
if let Ok(wrap) = nostr_sdk::prelude::GiftWrapBuilder::new(my_public_key, rumor)
.finalize_async(&signer)
.await
{
let _ = self_wrap_client.send_event(&wrap).await;
}
});
Ok(edit_id)
}
/// Delete a DM you sent (NIP-09 over the retained gift-wrap keys).
pub async fn delete_dm(&self, message_id: &str) -> Result<deletion::DeleteOutcome> {
use nostr_sdk::prelude::*;
let rumor_id = EventId::from_hex(message_id).map_err(|e| VectorError::Nostr(e.to_string()))?;
deletion::delete_own_dm(&rumor_id).await.map_err(VectorError::Other)
}
/// Get chats from the in-memory state.
pub async fn get_chats(&self) -> Vec<SerializableChat> {
let state = state::STATE.lock().await;
state.chats.iter()
.map(|c| c.to_serializable_with_last_n(1, &state.interner))
.collect()
}
/// Get messages for a chat (paginated).
pub async fn get_messages(&self, chat_id: &str, limit: usize, offset: usize) -> Vec<Message> {
let state = state::STATE.lock().await;
if let Some(chat) = state.get_chat(chat_id) {
let msgs = chat.get_all_messages(&state.interner);
let start = offset.min(msgs.len());
let end = (offset + limit).min(msgs.len());
msgs[start..end].to_vec()
} else {
Vec::new()
}
}
/// Get a profile by npub.
pub async fn get_profile(&self, npub: &str) -> Option<SlimProfile> {
let state = state::STATE.lock().await;
state.get_profile(npub)
.map(|p| SlimProfile::from_profile(p, &state.interner))
}
/// Fetch a profile's metadata and status from relays.
pub async fn load_profile(&self, npub: &str) -> bool {
profile::sync::load_profile(npub.to_string(), &NoOpProfileSyncHandler).await
}
/// Update the current user's profile metadata and broadcast to relays.
pub async fn update_profile(&self, name: &str, avatar: &str, banner: &str, about: &str) -> bool {
profile::sync::update_profile(
name.to_string(), avatar.to_string(), banner.to_string(), about.to_string(),
&NoOpProfileSyncHandler,
).await
}
/// Like [`update_profile`](Self::update_profile) but marks the profile as a bot (`bot: true` in
/// the metadata). The SDK uses this for every bot; build human clients on `update_profile`.
pub async fn update_bot_profile(&self, name: &str, avatar: &str, banner: &str, about: &str) -> bool {
profile::sync::update_bot_profile(
name.to_string(), avatar.to_string(), banner.to_string(), about.to_string(),
&NoOpProfileSyncHandler,
).await
}
/// Update the current user's status and broadcast to relays.
pub async fn update_status(&self, status: &str) -> bool {
profile::sync::update_status(status.to_string()).await
}
/// Upload an image file to Blossom **unencrypted** and return its public URL — for avatars,
/// banners, and other images other clients must fetch directly. (The opposite of
/// [`send_file`](Self::send_file)'s encrypted attachments.) Pass the URL to [`update_profile`].
///
/// [`update_profile`]: Self::update_profile
pub async fn upload_public_image(&self, file_path: &str) -> Result<String> {
let path = std::path::Path::new(file_path);
let bytes = std::fs::read(path).map_err(VectorError::Io)?;
if bytes.is_empty() {
return Err(VectorError::Other("Empty image file".into()));
}
let extension = path.extension().and_then(|e| e.to_str()).unwrap_or("bin").to_lowercase();
let mime = crate::crypto::mime_from_extension(&extension);
let _client = state::nostr_client().ok_or_else(|| VectorError::Other("Not logged in".into()))?;
let signer = crate::signer::active_signer()
.map_err(|e| VectorError::Other(format!("Signer unavailable: {e}")))?;
let servers = crate::blossom_servers::compute_enabled_servers();
if servers.is_empty() {
return Err(VectorError::Other("No Blossom servers configured".into()));
}
// Avatars/banners run larger than emojis (up to ~1MB), so give a more generous
// 20s idle window before treating a silent server as dead and failing over.
crate::blossom::upload_blob_with_failover(
signer,
servers,
std::sync::Arc::new(bytes),
Some(mime),
Some(std::time::Duration::from_secs(20)),
)
.await
.map_err(VectorError::Other)
}
/// Block a user by npub.
pub async fn block_user(&self, npub: &str) -> bool {
profile::sync::block_user(npub.to_string(), &NoOpProfileSyncHandler).await
}
/// Unblock a user by npub.
pub async fn unblock_user(&self, npub: &str) -> bool {
profile::sync::unblock_user(npub.to_string(), &NoOpProfileSyncHandler).await
}
/// Set a nickname for a profile.
pub async fn set_nickname(&self, npub: &str, nickname: &str) -> bool {
profile::sync::set_nickname(npub.to_string(), nickname.to_string(), &NoOpProfileSyncHandler).await
}
/// Get all blocked profiles.
pub async fn get_blocked_users(&self) -> Vec<SlimProfile> {
profile::sync::get_blocked_users().await
}
/// Queue a profile for background sync.
pub fn queue_profile_sync(&self, npub: &str, priority: SyncPriority) {
profile::sync::queue_profile_sync(npub.to_string(), priority, false);
}
/// Get the current user's npub.
pub fn my_npub(&self) -> Option<String> {
state::my_public_key()
.and_then(|pk| ToBech32::to_bech32(&pk).ok())
}
// === Communities (headless) ===
// The GUI's Tauri commands carry optimistic-echo + emit machinery a headless client
// doesn't need; these are the lean equivalents over the same `community::service` layer,
// so a CLI / agent can join, read, post, and sync a Community.
/// List every Community held locally (owned or joined), each with its channels.
pub async fn list_communities(&self) -> Vec<serde_json::Value> {
use crate::community::ConcordProtocol;
let ids = crate::db::community::list_community_ids().unwrap_or_default();
let mut out = Vec::new();
for id in ids {
// Dual-stack: dispatch each held community by its stored protocol.
match crate::db::community::community_protocol(&id).ok().flatten() {
Some(ConcordProtocol::V2) => {
if let Ok(Some(c)) = crate::db::community::load_community_v2(&id) {
let me = state::my_public_key();
let is_owner = me.is_some_and(|m| c.owner().is_ok_and(|o| o == m));
out.push(serde_json::json!({
"community_id": crate::simd::hex::bytes_to_hex_32(&c.identity.community_id.0),
"version": 2,
"name": c.name,
"description": c.description,
"is_owner": is_owner,
"channels": c.channels.iter()
.map(|ch| serde_json::json!({ "channel_id": crate::simd::hex::bytes_to_hex_32(&ch.id.0), "name": ch.name, "private": ch.private }))
.collect::<Vec<_>>(),
}));
}
}
_ => {
if let Ok(Some(c)) = crate::db::community::load_community(&id) {
out.push(serde_json::json!({
"community_id": c.id.to_hex(),
"version": 1,
"name": c.name,
"description": c.description,
"is_owner": crate::community::service::is_proven_owner(&c),
"channels": c.channels.iter()
.map(|ch| serde_json::json!({ "channel_id": ch.id.to_hex(), "name": ch.name }))
.collect::<Vec<_>>(),
}));
}
}
}
}
out
}
/// Create a fresh **Concord v2** community owned by the local identity (the
/// SDK's default; the GUI's `create_community` stays v1 during the migration
/// window). Mints the self-certifying id + genesis, persists, publishes, and
/// registers each channel as a chat. Returns a `version: 2` JSON summary.
pub async fn create_community_v2(&self, name: &str) -> Result<serde_json::Value> {
use crate::community::{v2::service as v2, transport::LiveTransport};
let relays: Vec<String> = crate::state::active_trusted_relays()
.await
.iter()
.map(|s| s.to_string())
.collect();
if relays.is_empty() {
return Err(VectorError::Other("no relays available to host the Community".into()));
}
let session = state::SessionGuard::capture();
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(12));
let community = v2::create_community(&transport, name, relays, None)
.await
.map_err(VectorError::Other)?;
self.register_v2_chats(&community, &session).await;
// Start streaming this community's planes right away.
if let Some(client) = state::nostr_client() {
crate::community::v2::realtime::refresh_subscription(&client).await;
}
Ok(Self::v2_summary(&community))
}
/// If `channel_id` belongs to a locally-held **v2** community, its
/// `CommunityId`; `Ok(None)` for a v1 channel or unknown. The routing key for
/// every dual-stack message op — a DB read error PROPAGATES (fail-closed)
/// instead of silently routing a v2 channel down the v1 path on a transient
/// failure.
fn v2_community_for_channel(&self, channel_id: &str) -> Result<Option<crate::community::CommunityId>> {
use crate::community::ConcordProtocol;
let Some(cid_hex) = crate::db::community::community_id_for_channel(channel_id).map_err(VectorError::Other)? else {
return Ok(None);
};
let cid = crate::community::CommunityId(crate::simd::hex::hex_to_bytes_32(&cid_hex));
Ok(match crate::db::community::community_protocol(&cid).map_err(VectorError::Other)? {
Some(ConcordProtocol::V2) => Some(cid),
_ => None,
})
}
/// The `version: 2` JSON summary the SDK/facade hands back for a v2 community.
fn v2_summary(community: &crate::community::v2::community::CommunityV2) -> serde_json::Value {
let me = state::my_public_key();
let is_owner = me.is_some_and(|m| community.owner().is_ok_and(|o| o == m));
serde_json::json!({
"community_id": crate::simd::hex::bytes_to_hex_32(&community.identity.community_id.0),
"version": 2,
"name": community.name,
"description": community.description,
"is_owner": is_owner,
"channels": community.channels.iter()
.map(|c| serde_json::json!({ "channel_id": crate::simd::hex::bytes_to_hex_32(&c.id.0), "name": c.name, "private": c.private }))
.collect::<Vec<_>>(),
})
}
/// Register each of a v2 community's channels as a chat row (so it surfaces in
/// the chat list / `communities()`), mirroring the v1 create path. `session`
/// is captured by the caller BEFORE its network I/O, so this STATE write is
/// skipped if the account swapped mid-flight (else we'd write A's community
/// into B's in-memory chats).
pub async fn register_v2_chats(&self, community: &crate::community::v2::community::CommunityV2, session: &state::SessionGuard) {
register_v2_chats_inner(community, session).await
}
}
/// Free-function body of [`VectorCore::register_v2_chats`] — also the migration finalize's
/// chat stamp (it runs from a spawned task with no facade handle; only globals are touched).
pub(crate) async fn register_v2_chats_inner(community: &crate::community::v2::community::CommunityV2, session: &state::SessionGuard) {
let owner_npub = community.owner().ok().and_then(|p| ToBech32::to_bech32(&p).ok());
let me = state::my_public_key();
let is_owner = me.is_some_and(|m| community.owner().is_ok_and(|o| o == m));
let id_hex = crate::simd::hex::bytes_to_hex_32(&community.identity.community_id.0);
// The chat list shows ONE row per community — the primary channel under the
// community's metadata (v1-group parity; multi-channel UI is a later cut).
let Some(primary) = community.primary_channel() else { return };
let primary_hex = crate::simd::hex::bytes_to_hex_32(&primary.id.0);
// Every channel gets a real chat row carrying its own name plus the community's
// primary id. The chat list still shows ONE row per community (it renders only the
// primary), but the sibling rows are now addressable, which is what lets the UI
// reach a multi-channel community's other channels.
let slims = {
let mut st = state::STATE.lock().await;
if !session.is_valid() {
return; // account swapped during the join/create — don't write into the new one.
}
let mut slims = Vec::new();
for ch in &community.channels {
let ch_hex = crate::simd::hex::bytes_to_hex_32(&ch.id.0);
st.upsert_community_chat(
&ch_hex,
&community.name,
community.description.as_deref().unwrap_or(""),
&id_hex,
is_owner,
community.icon.is_some(),
owner_npub.as_deref(),
Some(community.created_at_ms),
community.dissolved,
crate::community::ConcordProtocol::V2,
&ch.name,
&primary_hex,
);
if let Some(chat) = st.chats.iter().find(|c| c.id == ch_hex) {
slims.push(crate::db::chats::SlimChatDB::from_chat(chat, &st.interner));
}
}
slims
};
// Persist the rows so a fresh boot reloads each channel's name/metadata
// instead of the bare auto-created anchor. Session re-check: don't write
// account A's rows into a swapped-in account B's DB.
if !session.is_valid() {
return;
}
for slim in &slims {
let _ = crate::db::chats::save_slim_chat(slim);
}
}
impl VectorCore {
/// Join a Community from a public invite URL (`vectorapp.io/invite#...`). Fetches the
/// token-encrypted bundle, persists the member-view Community, and registers its channels
/// as chats. Returns a JSON summary.
pub async fn join_community(&self, invite_url: &str) -> Result<serde_json::Value> {
use crate::community::{public_invite, service, transport::LiveTransport};
// Dual-stack: a v2 link is `…/invite/<naddr>#<fragment>` (a naddr in the
// path); a v1 link is `…/invite#<base64url>` (fragment only). Try the v2
// parser first — it only succeeds on the v2 shape — then fall through to v1.
if crate::community::v2::invite::parse_invite_link(invite_url).is_ok() {
let session = state::SessionGuard::capture();
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(12));
let community = crate::community::v2::service::accept_public_link(&transport, invite_url)
.await
.map_err(VectorError::Other)?;
self.register_v2_chats(&community, &session).await;
if let Some(client) = state::nostr_client() {
crate::community::v2::realtime::refresh_subscription(&client).await;
}
// Seed the membership store post-join. With a live listen the follow
// worker does it (and SURFACES the folded joins as presence lines —
// the joiner sees the room's history, own join included); headless
// callers seed directly (membership only, no feed to surface).
if crate::community::v2::realtime::follow_worker_running() {
crate::community::v2::realtime::enqueue_follow(community.id());
} else {
let seed_session = state::SessionGuard::capture();
let seed_community = community.clone();
tokio::spawn(async move {
if !seed_session.is_valid() {
return;
}
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(20));
if matches!(
crate::community::v2::service::sync_guestbook(&transport, &seed_community, &seed_session).await,
Ok(fresh) if !fresh.is_empty()
) {
let cid_hex = crate::simd::hex::bytes_to_hex_32(&seed_community.id().0);
emit_event("community_refreshed", &serde_json::json!({ "community_id": cid_hex }));
}
});
}
return Ok(Self::v2_summary(&community));
}
let (relays, token) = public_invite::parse_invite_url(invite_url)
.map_err(|e| VectorError::Other(e.to_string()))?;
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(12));
let bundle = service::fetch_public_invite(&transport, &relays, &token)
.await
.map_err(VectorError::Other)?;
let now = std::time::SystemTime::now()
.duration_since(std::time::UNIX_EPOCH)
.map(|d| d.as_secs())
.unwrap_or(0);
// Post-timelock door: a FRESH v1 join needs a migration carrier (the v2 on-ramp)
// or it is refused. Decode-only view — nothing persists unless the gate passes.
let probe_view = crate::community::invite::accept_invite(&bundle.join).map_err(VectorError::Other)?;
crate::community::migration::gate_fresh_v1_join(&transport, &probe_view, now)
.await
.map_err(VectorError::Other)?;
let community = service::accept_public_invite(&bundle, now).map_err(VectorError::Other)?;
// Attribute our join presence to the link we used (creator + label) so the owner's per-link
// counter ticks. Mirrors the desktop public-join path.
let attribution = bundle.creator_npub.clone().map(|by| (by, bundle.label.clone()));
self.finalize_member_join(community, &transport, attribution).await
}
/// List the parked private invites (giftwrapped) awaiting acceptance. Each entry is the
/// community id, its name (from the stored bundle), and the inviter's npub.
pub fn list_pending_invites(&self) -> Result<Vec<serde_json::Value>> {
let rows = crate::db::community::list_pending_invites().map_err(VectorError::Other)?;
Ok(rows.iter().map(|p| {
// A v2 bundle carries owner_salt/community_root and self-certifies its
// owner; a successful (validating) v2 parse means the modern protocol.
if let Ok(v2) = crate::community::v2::invite::CommunityInvite::from_bundle_json(&p.bundle_json) {
serde_json::json!({
"community_id": p.community_id,
"name": v2.name,
"inviter_npub": p.inviter_npub,
"version": 2,
})
} else {
let name = crate::community::invite::CommunityInvite::from_json(&p.bundle_json)
.ok().map(|i| i.name).unwrap_or_default();
serde_json::json!({
"community_id": p.community_id,
"name": name,
"inviter_npub": p.inviter_npub,
"version": 1,
})
}
}).collect())
}
/// Accept a PARKED private invite by community id: rebuild the member-view Community from the stored
/// bundle, finalize the join exactly like a public link, then drop the pending row. Mirrors the
/// desktop's consent-then-join for an invite delivered over a gift wrap.
pub async fn accept_pending_invite(&self, community_id: &str) -> Result<serde_json::Value> {
use crate::community::transport::LiveTransport;
let bundle_json = crate::db::community::get_pending_invite(community_id)
.map_err(VectorError::Other)?
.ok_or_else(|| VectorError::Other(format!("no pending invite for {community_id}")))?;
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(12));
// Dual-stack: a validating v2 bundle parse means a v2 Direct Invite.
if crate::community::v2::invite::CommunityInvite::from_bundle_json(&bundle_json).is_ok() {
let session = state::SessionGuard::capture();
// The inviter's hex (parked at receive) attributes the Guestbook Join.
let inviter = crate::db::community::list_pending_invites()
.ok()
.and_then(|rows| rows.into_iter().find(|p| p.community_id == community_id).map(|p| p.inviter_npub));
// On failure the parked row is LEFT INTACT for retry — we must NOT auto-delete
// on a verify failure: the multi-relay transport launders an unreachable-relay
// error into an empty fetch, which yields the same "could not verify" as a
// forged root (and a control-plane flood does too), so an auto-delete would
// erase a GENUINE invite on a transient blip or an attacker's flood. A
// pre-planted forged-root bundle (deferred protocol residual) is instead
// cleared by the user declining it.
let community = crate::community::v2::service::accept_parked_invite(&transport, &bundle_json, inviter.as_deref())
.await
.map_err(VectorError::Other)?;
if !session.is_valid() {
return Err(VectorError::Other("account changed during join".into()));
}
self.register_v2_chats(&community, &session).await;
if let Some(client) = state::nostr_client() {
crate::community::v2::realtime::refresh_subscription(&client).await;
}
crate::community::v2::realtime::enqueue_follow(community.id());
let _ = crate::db::community::delete_pending_invite(community_id);
return Ok(Self::v2_summary(&community));
}
// v1 route.
use crate::community::invite::{accept_invite, CommunityInvite};
let invite = CommunityInvite::from_json(&bundle_json).map_err(VectorError::Other)?;
let community = accept_invite(&invite).map_err(VectorError::Other)?;
// Post-timelock door: a FRESH v1 join needs a migration carrier (the v2 on-ramp) or it
// is refused — before finalize persists anything. The migrated fence inside
// finalize_member_join still wins for held communities.
let now = std::time::SystemTime::now()
.duration_since(std::time::UNIX_EPOCH)
.map(|d| d.as_secs())
.unwrap_or(0);
crate::community::migration::gate_fresh_v1_join(&transport, &community, now)
.await
.map_err(VectorError::Other)?;
// Private invites carry no public-link label; the inviter attribution metric is link-only.
let summary = self.finalize_member_join(community, &transport, None).await?;
let _ = crate::db::community::delete_pending_invite(community_id);
Ok(summary)
}
/// Shared finalization for joining a Community as a member — public link OR accepted private invite.
/// Walks any base rekey, folds the LATEST control plane (so the joiner sees current metadata, not
/// the bundle's genesis snapshot), refuses if banned, registers the channels as chats, and announces
/// presence. Returns the JSON summary.
pub(crate) async fn finalize_member_join<T: crate::community::transport::Transport + ?Sized>(
&self,
community: crate::community::Community,
transport: &T,
attribution: Option<(String, Option<String>)>,
) -> Result<serde_json::Value> {
use crate::community::service;
// Migration fence: if this v1 community already flipped to v2, a stale parked
// invite or a lingering link must NOT re-run `save_community` — its blind UPSERT would
// re-parent the stitched channel rows back to v1 with v1 keys (the catastrophic mixed
// state). Short-circuit to "already upgraded"; the rows stay v2-owned. This is
// `migrated_to`-aware (not a blind dissolved gate) precisely so a FRESH joiner redeeming
// a still-live link stays on the open on-ramp path below.
if let Ok(Some(v2)) = crate::db::community::get_migrated_to(&community.id.to_hex()) {
return Ok(serde_json::json!({
"community_id": v2,
"version": 2,
"migrated": true,
}));
}
// Persist the member-view row up front: the catch-up, the control fold, and chat registration all
// read it back from the DB. A private bundle (unlike a public one with a preview) arrives with no
// display metadata, so nothing else would have saved it. UPSERT — re-saving a public join is a no-op.
crate::db::community::save_community(&community).map_err(VectorError::Other)?;
// The bundle's root can predate a base rotation, so walk any rekey first (no-op if none) — then
// re-load so the control fold + registration happen at the CURRENT epoch.
if let Ok(c) = service::catch_up_server_root(transport, &community).await {
if c.removed {
let _ = crate::db::community::delete_community(&community.id.to_hex());
return Err(VectorError::Other("you have been removed from this community".into()));
}
}
let community = crate::db::community::load_community(&community.id)
.map_err(VectorError::Other)?
.unwrap_or(community);
// Fold the LATEST control plane before we register anything — the joiner should see the current
// name/description/roster/mode immediately, not a stale snapshot. Banlist first: an honest client
// REFUSES to join if this npub is banned (and the just-saved community is torn back down).
let _ = service::fetch_and_apply_control(transport, &community).await;
if service::am_i_banned(&community) {
let _ = crate::db::community::delete_community(&community.id.to_hex());
return Err(VectorError::Other("you are banned from this community".into()));
}
// Re-load so the chat we register + the summary we return carry the freshly-folded latest metadata.
let community = crate::db::community::load_community(&community.id)
.map_err(VectorError::Other)?
.unwrap_or(community);
let owner_npub = community
.owner_attestation
.as_ref()
.and_then(|att| crate::community::owner::verify_owner_attestation(att, &community.id.to_hex()))
.and_then(|pk| ToBech32::to_bech32(&pk).ok());
{
let created_at_ms = crate::db::community::community_created_at_ms(&community.id);
let primary_hex = community.channels.first().map(|c| c.id.to_hex()).unwrap_or_default();
let mut st = state::STATE.lock().await;
for ch in &community.channels {
st.upsert_community_chat(
&ch.id.to_hex(),
&community.name,
community.description.as_deref().unwrap_or(""),
&community.id.to_hex(),
crate::community::service::is_proven_owner(&community),
community.icon.is_some(),
owner_npub.as_deref(),
created_at_ms,
community.dissolved,
crate::community::ConcordProtocol::V1,
&ch.name,
&primary_hex,
);
}
}
// Best-effort join announcement (kind 3306) into the primary channel so honest peers
// see us in their member list even before we post. Failure must not fail the join.
if let Some(primary) = community.channels.first() {
let _ = service::publish_presence(transport, &community, primary, true, attribution).await;
}
Ok(serde_json::json!({
"community_id": community.id.to_hex(),
"version": 1,
"name": community.name,
"channels": community.channels.iter()
.map(|c| serde_json::json!({ "channel_id": c.id.to_hex(), "name": c.name }))
.collect::<Vec<_>>(),
}))
}
/// Create a Community (single "general" channel) on the default trusted relays. Signs the
/// owner attestation with this identity (so the creator is the proven owner), registers the
/// channel as a chat, and returns a JSON summary.
pub async fn create_community(&self, name: &str) -> Result<serde_json::Value> {
use crate::community::{service, transport::LiveTransport};
let relays: Vec<String> = crate::state::active_trusted_relays()
.await
.iter()
.map(|s| s.to_string())
.collect();
if relays.is_empty() {
return Err(VectorError::Other("no relays available to host the Community".into()));
}
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(12));
let community = service::create_community(&transport, name, "general", relays)
.await
.map_err(VectorError::Other)?;
let owner_npub = community
.owner_attestation
.as_ref()
.and_then(|att| crate::community::owner::verify_owner_attestation(att, &community.id.to_hex()))
.and_then(|pk| ToBech32::to_bech32(&pk).ok());
{
let created_at_ms = crate::db::community::community_created_at_ms(&community.id);
let primary_hex = community.channels.first().map(|c| c.id.to_hex()).unwrap_or_default();
let mut st = state::STATE.lock().await;
for ch in &community.channels {
st.upsert_community_chat(
&ch.id.to_hex(),
&community.name,
community.description.as_deref().unwrap_or(""),
&community.id.to_hex(),
crate::community::service::is_proven_owner(&community),
community.icon.is_some(),
owner_npub.as_deref(),
created_at_ms,
community.dissolved,
crate::community::ConcordProtocol::V1,
&ch.name,
&primary_hex,
);
}
}
Ok(serde_json::json!({
"community_id": community.id.to_hex(),
"version": 1,
"name": community.name,
"channels": community.channels.iter()
.map(|c| serde_json::json!({ "channel_id": c.id.to_hex(), "name": c.name }))
.collect::<Vec<_>>(),
}))
}
/// Mint a public invite link for a Community this identity owns. Returns the shareable URL.
pub async fn create_public_invite(&self, community_id: &str) -> Result<String> {
use crate::community::{service, transport::LiveTransport, CommunityId};
if community_id.len() != 64 {
return Err(VectorError::Other("malformed community id".into()));
}
let cid = CommunityId(crate::simd::hex::hex_to_bytes_32(community_id));
// Dual-stack: mint a v2 link for a v2 community (naddr#fragment).
if let Some(Some(crate::community::ConcordProtocol::V2)) =
crate::db::community::community_protocol(&cid).ok()
{
let community = crate::db::community::load_community_v2(&cid)
.map_err(VectorError::Other)?
.ok_or_else(|| VectorError::Other("v2 community not found".into()))?;
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(12));
// v2 `build_invite_url` appends its own `/invite/<naddr>`, so pass the
// bare domain (strip the `/invite` the v1 constant carries).
let base = crate::community::public_invite::INVITE_URL_BASE.trim_end_matches("/invite");
let minted = crate::community::v2::service::mint_public_link(&transport, &community, base, None, None)
.await
.map_err(VectorError::Other)?;
return Ok(minted.url);
}
let community = crate::db::community::load_community(&CommunityId(
crate::simd::hex::hex_to_bytes_32(community_id),
))
.map_err(VectorError::Other)?
.ok_or_else(|| VectorError::Other("community not found".into()))?;
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(12));
let (_token, url) = service::create_public_invite(&transport, &community, None, None)
.await
.map_err(VectorError::Other)?;
Ok(url)
}
/// Send a PRIVATE invite: gift-wrap this Community's invite bundle directly to an npub over a NIP-17
/// DM (the same transport as a regular DM). The invitee parks it pending consent (accept_pending_invite).
/// Requires CREATE_INVITE; a banned npub can't be re-invited. Returns the wrap's event id + relays.
pub async fn invite_to_community(&self, community_id: &str, invitee_npub: &str) -> Result<serde_json::Value> {
use crate::community::{service, CommunityId};
use crate::sending::{send_rumor_dm, NoOpSendCallback, SendCallback, SendConfig};
let session = crate::state::SessionGuard::capture();
let my_pk = crate::state::my_public_key()
.ok_or_else(|| VectorError::Other("Public key not set".into()))?;
if community_id.len() != 64 {
return Err(VectorError::Other("malformed community id".into()));
}
let cid = CommunityId(crate::simd::hex::hex_to_bytes_32(community_id));
// Dual-stack: a v2 community sends a Direct Invite (3313 giftwrap).
// DELIBERATELY ungated, unlike v1's CREATE_INVITE + banlist pre-check: a
// Direct Invite is an ungateable key handoff (CORD-05 §6 — "any keyholder
// can whisper keys"), so any member may extend one; the real access cut is
// the rekey, not a permission on inviting.
if let Some(Some(crate::community::ConcordProtocol::V2)) =
crate::db::community::community_protocol(&cid).ok()
{
let recipient = nostr_sdk::prelude::PublicKey::parse(invitee_npub)
.map_err(|e| VectorError::Other(format!("bad invitee npub: {e}")))?;
let client = crate::state::nostr_client().ok_or_else(|| VectorError::Other("Not connected".into()))?;
// Gift-wrap the 3313 Direct-Invite rumor (the bundle JSON) to the RECIPIENT'S
// inbox relays (kind-10050) — a not-yet-member sees it on their DM sub;
// the community relays wouldn't reach them. `#k=3313` per CORD-05 §6.
//
// Load + snapshot UNDER the rotation lock: a bundle minted while a Ban's
// refound is mid-rotation carries the root being buried, and its joiner
// lands on a dead epoch only to self-evict on the rekey exclusion.
let bundle = {
let lock = crate::community::v2::realtime::follow_lock(&cid);
let _rotation = lock.lock().await;
let community = crate::db::community::load_community_v2(&cid)
.map_err(VectorError::Other)?
.ok_or_else(|| VectorError::Other("v2 community not found".into()))?;
crate::community::v2::service::bundle_of(&community, Some(my_pk), None, None)
};
let bundle_json = serde_json::to_string(&bundle).map_err(|e| VectorError::Other(e.to_string()))?;
// Same 24h NIP-40 expiry as v1 (invite::DIRECT_INVITE_EXPIRY_SECS): a bundle is
// live key material for a community that keeps rotating, so it must not linger.
let expires_at = nostr_sdk::prelude::Timestamp::now().as_secs()
+ crate::community::invite::DIRECT_INVITE_EXPIRY_SECS;
let expiry_tag = nostr_sdk::prelude::Tag::expiration(nostr_sdk::prelude::Timestamp::from_secs(expires_at));
let rumor = nostr_sdk::prelude::EventBuilder::new(
nostr_sdk::prelude::Kind::Custom(crate::community::v2::kind::DIRECT_INVITE),
bundle_json,
)
.tag(expiry_tag.clone())
.finalize_unsigned_with_id(my_pk);
let k_tag = nostr_sdk::prelude::Tag::custom(
"k",
[crate::community::v2::kind::DIRECT_INVITE.to_string()],
);
if !session.is_valid() {
return Err(VectorError::Other("account changed".into()));
}
crate::inbox_relays::send_gift_wrap(&client, &recipient, rumor, [k_tag, expiry_tag])
.await
.map_err(VectorError::Other)?;
return Ok(serde_json::json!({ "invited": invitee_npub, "version": 2 }));
}
let community = crate::db::community::load_community(&CommunityId(
crate::simd::hex::hex_to_bytes_32(community_id),
))
.map_err(VectorError::Other)?
.ok_or_else(|| VectorError::Other("community not found".into()))?;
if !service::caller_has_permission(&community, crate::community::roles::Permissions::CREATE_INVITE) {
return Err(VectorError::Other("You need the create-invite permission to invite someone".into()));
}
let invitee_hex = nostr_sdk::prelude::PublicKey::parse(invitee_npub)
.map_err(|_| VectorError::Other("invalid npub".into()))?
.to_hex();
if crate::db::community::get_community_banlist(community_id)
.map_err(VectorError::Other)?
.iter()
.any(|b| b == &invitee_hex)
{
return Err(VectorError::Other("That member is banned from this community and can't be invited".into()));
}
// The bundle is built from purely local state; bail if the account swapped before the gift-wrap.
if !session.is_valid() {
return Err(VectorError::Other("account changed during invite".into()));
}
let now = nostr_sdk::prelude::Timestamp::now().as_secs();
let rumor = crate::community::invite::build_invite_rumor(&community, my_pk, now)
.map_err(VectorError::Other)?;
let pending_id = format!("community-invite-{}", community_id);
// self_send=false: the owner already holds the Community; the inbound guard would drop the echo.
let config = SendConfig { self_send: false, ..SendConfig::gui() };
let callback: Arc<dyn SendCallback> = Arc::new(NoOpSendCallback);
let result = send_rumor_dm(invitee_npub, &pending_id, rumor, &config, callback)
.await
.map_err(VectorError::Other)?;
Ok(serde_json::json!({
"community_id": community_id,
"invitee": invitee_npub,
"wrap_event_id": result.event_id,
}))
}
/// The public invite links this account minted for a Community (to list + revoke). Each carries
/// the hex `token` (the link secret) needed by [`Self::revoke_public_invite`]. A local read for
/// both protocols — links minted on this device (a v2 mint also syncs the cross-device 13303
/// record; v2 `join_count` is not yet tracked and is always 0).
pub fn list_public_invites(&self, community_id: &str) -> Result<Vec<crate::db::community::PublicInviteRecord>> {
crate::db::community::list_public_invites(community_id).map_err(VectorError::Other)
}
/// Revoke a public invite link by its hex token. Retiring the LAST active link flips the Community to
/// Private, which re-founds (rotates the base key + every channel key) to cut link-joined lurkers.
/// Idempotent: a token this account doesn't hold is a no-op. Needs a local key when the revoke triggers
/// the privatize rekey (a bunker account can't rotate).
pub async fn revoke_public_invite(&self, community_id: &str, token: &str) -> Result<()> {
use crate::community::{service, transport::LiveTransport, CommunityId};
if community_id.len() != 64 {
return Err(VectorError::Other("malformed community id".into()));
}
let cid = CommunityId(crate::simd::hex::hex_to_bytes_32(community_id));
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(20));
// Dual-stack: a v2 link is retired by its 16-byte token hex (re-post the
// coordinate as a tombstone + tombstone the 13303 entry + refresh the Registry).
if let Some(Some(crate::community::ConcordProtocol::V2)) = crate::db::community::community_protocol(&cid).ok() {
let community = crate::db::community::load_community_v2(&cid)
.map_err(VectorError::Other)?
.ok_or_else(|| VectorError::Other("v2 community not found".into()))?;
return crate::community::v2::service::revoke_public_link(&transport, &community, token)
.await
.map_err(VectorError::Other);
}
let token_bytes = crate::simd::hex::hex_to_bytes_32(token);
let community = crate::db::community::load_community(&cid)
.map_err(VectorError::Other)?
.ok_or_else(|| VectorError::Other("community not found".into()))?;
service::revoke_public_invite(&transport, &community, &token_bytes)
.await
.map_err(VectorError::Other)
}
/// Post a text message to a Community channel. Returns the message id (the inner id).
pub async fn send_community_message(
&self,
channel_id: &str,
content: &str,
replied_to: Option<&str>,
) -> Result<String> {
use crate::community::{envelope, inbound, service, transport::LiveTransport};
// Dual-stack: route by the owning community's stored protocol.
if let Some(id) = self.v2_community_for_channel(channel_id)? {
let community = crate::db::community::load_community_v2(&id)
.map_err(VectorError::Other)?
.ok_or_else(|| VectorError::Other("v2 community not found".into()))?;
let ch = crate::community::ChannelId(crate::simd::hex::hex_to_bytes_32(channel_id));
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(12));
// The NIP-C7 q tag's author slot is a SHOULD — best-effort from the
// held message, empty (= unknown) when the parent isn't in memory.
let reply = match replied_to.filter(|r| !r.is_empty()) {
Some(parent_id) => {
let author_hex = {
let st = state::STATE.lock().await;
st.find_message(parent_id)
.and_then(|(_, m)| m.npub.as_deref().and_then(|n| nostr_sdk::prelude::PublicKey::parse(n).ok()))
.map(|pk| pk.to_hex())
.unwrap_or_default()
};
Some((parent_id.to_string(), author_hex))
}
None => None,
};
let reply_ref = reply.as_ref().map(|(id, author)| (id.as_str(), author.as_str()));
// NIP-30: resolve `:shortcode:` against subscribed packs so the rumor
// carries `["emoji", ...]` pairs — parity with the v1 inner event.
let emoji_owned = crate::emoji_packs::resolve_outbound_emoji_tags(content);
let emoji_pairs: Vec<(&str, &str)> = emoji_owned.iter().map(|t| (t.shortcode.as_str(), t.url.as_str())).collect();
return crate::community::v2::service::send_chat_message(&transport, &community, &ch, content, reply_ref, &emoji_pairs, vec![])
.await
.map_err(VectorError::Other);
}
let (community, channel) = self.resolve_channel(channel_id)?;
let author_pk = state::my_public_key().ok_or_else(|| VectorError::Other("Not logged in".into()))?;
let reply = replied_to.filter(|r| !r.is_empty());
let ms = std::time::SystemTime::now()
.duration_since(std::time::UNIX_EPOCH)
.map(|d| d.as_millis() as u64)
.unwrap_or(0);
let unsigned = envelope::build_inner_typed(
author_pk,
&channel.id,
channel.epoch,
crate::stored_event::event_kind::COMMUNITY_MESSAGE,
content,
ms,
reply,
&[],
);
let message_id = unsigned.id.ok_or_else(|| VectorError::Other("inner event has no id".into()))?.to_hex();
let _client = state::nostr_client().ok_or_else(|| VectorError::Other("Not logged in".into()))?;
let signer = crate::signer::active_signer().map_err(|e| VectorError::Other(format!("Signer unavailable: {e}")))?;
let inner = unsigned.finalize_async(&signer).await.map_err(|e| VectorError::Other(format!("sign: {e}")))?;
let session = state::SessionGuard::capture();
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(12));
let outer = service::send_signed_message(&transport, &community, &channel, &inner)
.await
.map_err(VectorError::Other)?;
// Local echo so get_messages reflects the send (the relay echo dedups on inner id).
// A swap during the publish must not echo account A's message into account B.
if !session.is_valid() {
return Ok(message_id);
}
let echoed = {
let mut st = state::STATE.lock().await;
inbound::process_incoming(&mut st, &outer, &channel, &author_pk)
};
if let Some(inbound::IncomingEvent::NewMessage(msg)) = echoed {
let _ = crate::db::events::save_message(channel_id, &msg).await;
}
Ok(message_id)
}
/// Send a file to a Community channel as an encrypted attachment. Returns the message id.
/// Mirrors the DM file pipeline (encrypt → Blossom upload → NIP-92 `imeta`) but publishes
/// over the community transport.
pub async fn send_community_file(&self, channel_id: &str, file_path: &str) -> Result<String> {
use crate::community::{attachments, envelope, inbound, service, transport::LiveTransport};
let path = std::path::Path::new(file_path);
let bytes = std::fs::read(path).map_err(VectorError::Io)?;
if bytes.is_empty() {
return Err(VectorError::Other("Empty file".into()));
}
let filename = path.file_name().and_then(|n| n.to_str()).unwrap_or("file").to_string();
let extension = path.extension().and_then(|e| e.to_str()).unwrap_or("bin").to_lowercase();
// Snapshot the session BEFORE the upload: the destination below is resolved
// from THIS account's DB, and the upload can outlive an account swap.
let session = state::SessionGuard::capture();
// Dual-stack: resolve the destination BEFORE the upload so a bad channel
// fails fast (never spend an upload on an unroutable send).
let v2_target = match self.v2_community_for_channel(channel_id)? {
Some(id) => Some(
crate::db::community::load_community_v2(&id)
.map_err(VectorError::Other)?
.ok_or_else(|| VectorError::Other("v2 community not found".into()))?,
),
None => None,
};
let v1_target = match v2_target {
Some(_) => None,
None => Some(self.resolve_channel(channel_id)?),
};
let author_pk = state::my_public_key().ok_or_else(|| VectorError::Other("Not logged in".into()))?;
let file_hash = crate::crypto::sha256_hex(&bytes);
let mime = crate::crypto::mime_from_extension(&extension);
let img_meta = crate::crypto::generate_image_metadata(&bytes);
// Save the plaintext locally (hash-keyed) so the sender previews it instantly.
let download_dir = crate::db::get_download_dir();
let _ = std::fs::create_dir_all(&download_dir);
let local_name = if filename.is_empty() { format!("{}.{}", &file_hash, extension) } else { filename.clone() };
let local_path = crate::crypto::resolve_unique_filename(&download_dir, &local_name);
let _ = std::fs::write(&local_path, &bytes);
// Encrypt → upload to Blossom (signer reused for the envelope below).
let params = crate::crypto::generate_encryption_params();
let encrypted = crate::crypto::encrypt_data(&bytes, ¶ms)?;
let encrypted_size = encrypted.len() as u64;
let _client = state::nostr_client().ok_or_else(|| VectorError::Other("Not logged in".into()))?;
let signer = crate::signer::active_signer().map_err(|e| VectorError::Other(format!("Signer unavailable: {e}")))?;
let servers = crate::blossom_servers::compute_enabled_servers();
if servers.is_empty() {
return Err(VectorError::Other("No Blossom servers configured".into()));
}
let noop_progress: crate::blossom::ProgressCallback = std::sync::Arc::new(|_, _| Ok(()));
let url = crate::blossom::upload_blob_with_progress_and_failover(
signer.clone(),
servers,
std::sync::Arc::new(encrypted),
Some(mime),
/* is_encrypted */ true,
noop_progress,
Some(3),
Some(std::time::Duration::from_secs(2)),
None,
).await.map_err(VectorError::Other)?;
let attachment = crate::types::Attachment {
id: file_hash.clone(),
key: params.key.clone(),
nonce: params.nonce.clone(),
extension: extension.clone(),
name: filename.clone(),
url,
path: local_path.to_string_lossy().to_string(),
size: encrypted_size,
img_meta,
downloading: false,
downloaded: true,
..Default::default()
};
let imeta = vec![attachments::attachment_to_imeta(&attachment)];
// The upload straddled awaits — never publish a pre-swap destination.
if !session.is_valid() {
return Err(VectorError::Other("account changed during upload".into()));
}
// v2: the imeta rides the kind-9 rumor verbatim (NIP-92), content empty.
if let Some(community) = v2_target {
let ch = crate::community::ChannelId(crate::simd::hex::hex_to_bytes_32(channel_id));
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(30));
return crate::community::v2::service::send_chat_message(&transport, &community, &ch, "", None, &[], imeta)
.await
.map_err(VectorError::Other);
}
let (community, channel) = v1_target.expect("v1 target resolved when no v2 community matched");
let ms = std::time::SystemTime::now()
.duration_since(std::time::UNIX_EPOCH)
.map(|d| d.as_millis() as u64)
.unwrap_or(0);
let unsigned = envelope::build_inner_full(
author_pk, &channel.id, channel.epoch,
stored_event::event_kind::COMMUNITY_MESSAGE, "", ms, None, &[], &imeta,
);
let message_id = unsigned.id.ok_or_else(|| VectorError::Other("inner event has no id".into()))?.to_hex();
let inner = unsigned.finalize_async(&signer).await.map_err(|e| VectorError::Other(format!("sign: {e}")))?;
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(30));
let outer = service::send_signed_message(&transport, &community, &channel, &inner)
.await.map_err(VectorError::Other)?;
// Local echo so get_messages reflects the send.
let echoed = {
let mut st = state::STATE.lock().await;
inbound::process_incoming(&mut st, &outer, &channel, &author_pk)
};
if let Some(inbound::IncomingEvent::NewMessage(m)) = echoed {
let _ = crate::db::events::save_message(channel_id, &m).await;
}
Ok(message_id)
}
/// Send an ephemeral typing indicator to a Community channel.
pub async fn send_community_typing(&self, channel_id: &str) -> Result<()> {
use crate::community::{service, transport::LiveTransport};
if let Some(id) = self.v2_community_for_channel(channel_id)? {
let community = crate::db::community::load_community_v2(&id)
.map_err(VectorError::Other)?
.ok_or_else(|| VectorError::Other("v2 community not found".into()))?;
let ch = crate::community::ChannelId(crate::simd::hex::hex_to_bytes_32(channel_id));
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(8));
return crate::community::v2::service::send_typing(&transport, &community, &ch)
.await
.map_err(VectorError::Other);
}
let (community, channel) = self.resolve_channel(channel_id)?;
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(8));
service::publish_typing_signal(&transport, &community, &channel)
.await
.map_err(VectorError::Other)
}
/// React to a Community message. `emoji_url` carries the NIP-30 image URL for a custom
/// `:shortcode:` reaction (parity with DMs).
pub async fn send_community_reaction(
&self,
channel_id: &str,
message_id: &str,
emoji: &str,
emoji_url: Option<&str>,
) -> Result<()> {
let emoji_tags: Vec<crate::types::EmojiTag> = match emoji_url {
Some(url) if emoji.starts_with(':') && emoji.ends_with(':') && emoji.len() >= 3 && !url.is_empty() => {
vec![crate::types::EmojiTag { shortcode: emoji[1..emoji.len() - 1].to_string(), url: url.to_string() }]
}
_ => Vec::new(),
};
if let Some(id) = self.v2_community_for_channel(channel_id)? {
let session = state::SessionGuard::capture();
let community = crate::db::community::load_community_v2(&id)
.map_err(VectorError::Other)?
.ok_or_else(|| VectorError::Other("v2 community not found".into()))?;
let ch = crate::community::ChannelId(crate::simd::hex::hex_to_bytes_32(channel_id));
let transport = crate::community::transport::LiveTransport::with_timeout(std::time::Duration::from_secs(12));
// NIP-25 names the reacted-to author (a required `p`). STATE first, then
// the persisted row (v2 history + the send echo live in the shared events
// store, so this almost always resolves locally); the channel-page fetch
// is the last resort for a target this device never saw.
let held = {
let st = state::STATE.lock().await;
st.find_message(message_id)
.and_then(|(_, m)| m.npub.as_deref().and_then(|n| nostr_sdk::prelude::PublicKey::parse(n).ok()))
};
let held = held.or_else(|| {
crate::db::events::event_author(message_id)
.ok()
.flatten()
.and_then(|n| nostr_sdk::prelude::PublicKey::parse(&n).ok())
});
let target_author = match held {
Some(pk) => pk,
None => crate::community::v2::service::fetch_channel(&transport, &community, &ch, 500)
.await
.map_err(VectorError::Other)?
.iter()
.find(|f| f.event.opened().rumor_id.to_hex() == message_id)
.map(|f| f.event.opened().author)
.ok_or_else(|| VectorError::Other("reacted-to message not found".into()))?,
};
// The author lookup straddled awaits against THIS account's community.
if !session.is_valid() {
return Err(VectorError::Other("account changed before send".into()));
}
let pair = emoji_tags.first().map(|t| (t.shortcode.as_str(), t.url.as_str()));
// The NIP-25 `k` names the target's rumor kind. Stored rows don't keep
// wire-kind fidelity yet, so a reaction to a received kind-1111 thread
// reply claims `9` — Armada's fold ignores reaction `k`, and exact
// threading lands with the thread-aware GUI.
return crate::community::v2::service::send_reaction(
&transport, &community, &ch, message_id, &target_author.to_hex(), crate::community::v2::kind::MESSAGE, emoji, pair,
)
.await
.map(|_| ())
.map_err(VectorError::Other);
}
self.publish_community_control(
channel_id, stored_event::event_kind::COMMUNITY_REACTION, emoji, message_id, &emoji_tags,
).await
}
/// Edit one of your own Community messages.
pub async fn edit_community_message(&self, channel_id: &str, message_id: &str, new_content: &str) -> Result<()> {
let emoji_tags = emoji_packs::resolve_outbound_emoji_tags(new_content);
if let Some(id) = self.v2_community_for_channel(channel_id)? {
let community = crate::db::community::load_community_v2(&id)
.map_err(VectorError::Other)?
.ok_or_else(|| VectorError::Other("v2 community not found".into()))?;
let ch = crate::community::ChannelId(crate::simd::hex::hex_to_bytes_32(channel_id));
let transport = crate::community::transport::LiveTransport::with_timeout(std::time::Duration::from_secs(12));
return crate::community::v2::service::send_edit(&transport, &community, &ch, message_id, new_content)
.await
.map(|_| ())
.map_err(VectorError::Other);
}
self.publish_community_control(
channel_id, stored_event::event_kind::COMMUNITY_EDIT, new_content, message_id, &emoji_tags,
).await
}
/// Delete one of your own Community messages, resolving its channel from local
/// state (the GUI path). A headless v2 consumer holds no local history — use
/// [`Self::delete_community_message_in`] with the channel id instead.
pub async fn delete_community_message(&self, message_id: &str) -> Result<()> {
let channel_id = {
let st = state::STATE.lock().await;
match st.find_message(message_id) {
Some((chat, _)) => chat.id.clone(),
None => return Err(VectorError::Other("message not found (already deleted?)".into())),
}
};
self.delete_community_message_in(&channel_id, message_id).await
}
/// Delete one of your own Community messages in `channel_id`: a NIP-09 relay nuke when the
/// per-message key is held (v1) or the in-plane kind-5 (v2), plus a cooperative tombstone so
/// peers hide it, plus best-effort attachment cleanup.
pub async fn delete_community_message_in(&self, channel_id: &str, message_id: &str) -> Result<()> {
use crate::community::{service, transport::LiveTransport};
let session = state::SessionGuard::capture();
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(12));
// Attachment URLs come from local state when held (a headless v2 consumer
// has none — blob cleanup is then the receiving peers' concern, not ours).
let attachment_urls: Vec<String> = {
let st = state::STATE.lock().await;
st.find_message(message_id)
.map(|(_, msg)| msg.attachments.iter().flat_map(|a| a.all_urls().map(str::to_string)).collect())
.unwrap_or_default()
};
if let Some(id) = self.v2_community_for_channel(channel_id)? {
// v2: the cooperative in-plane kind-5 (the wrap-ciphertext scrub needs
// the ephemeral wrap key, not retained in this cut).
let community = crate::db::community::load_community_v2(&id)
.map_err(VectorError::Other)?
.ok_or_else(|| VectorError::Other("v2 community not found".into()))?;
let ch = crate::community::ChannelId(crate::simd::hex::hex_to_bytes_32(&channel_id));
crate::community::v2::service::send_delete(
&transport, &community, &ch, message_id, crate::community::v2::kind::MESSAGE,
)
.await
.map_err(VectorError::Other)?;
} else {
// Layer 1 — relay nuke against the retained per-message key (best-effort).
if crate::db::community::get_message_key(message_id).map(|k| k.is_some()).unwrap_or(false) {
let _ = service::delete_message(&transport, message_id).await;
}
// Layer 2 — cooperative tombstone so peers hide it.
self.publish_community_control(
&channel_id, stored_event::event_kind::COMMUNITY_DELETE, "", message_id, &[],
).await?;
}
// Layer 3 — best-effort attachment blob delete.
if !attachment_urls.is_empty() {
if let Some(_client) = state::nostr_client() {
if let Ok(signer) = crate::signer::active_signer() {
crate::blossom::delete_blobs_best_effort(signer, attachment_urls);
}
}
}
// Local removal — the publishes above straddled awaits; a swap must not let this
// strip the message from a swapped-in account's STATE + DB (message_id is global).
if !session.is_valid() {
return Ok(());
}
let removed_chat = {
let mut st = state::STATE.lock().await;
st.remove_message(message_id).map(|(cid, _)| cid)
};
let _ = crate::db::events::delete_event(message_id).await;
traits::emit_event_json("message_removed", serde_json::json!({
"id": message_id, "chat_id": removed_chat.as_deref().unwrap_or(&channel_id), "reason": "deleted",
}));
Ok(())
}
/// Moderation-hide someone ELSE's community message under `MANAGE_MESSAGES`
/// (CORD-04 §3/§5). Protocol-agnostic: v2 seals the same kind-5 its authors
/// use, v1 publishes its 3305 tombstone; both re-derive the actor's authority
/// from the signed inner against the folded Roster, so this is an authority
/// claim peers verify, never a local suppression.
pub async fn hide_community_message(&self, channel_id: &str, message_id: &str) -> Result<()> {
use crate::community::transport::LiveTransport;
let session = state::SessionGuard::capture();
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(12));
// You can only moderate a message you can see: the author resolves from
// STATE, then the store for a row that has paged out of the window.
let author_npub = {
let st = state::STATE.lock().await;
st.find_message(message_id).and_then(|(_, m)| m.npub)
};
let author_npub = match author_npub {
Some(n) => n,
None => crate::db::events::event_author(message_id)
.ok()
.flatten()
.ok_or_else(|| VectorError::Other("can't resolve the target message's author".into()))?,
};
let author = nostr_sdk::prelude::PublicKey::parse(&author_npub)
.map_err(|_| VectorError::Other("target message has an unreadable author".into()))?;
if let Some(id) = self.v2_community_for_channel(channel_id)? {
let community = crate::db::community::load_community_v2(&id)
.map_err(VectorError::Other)?
.ok_or_else(|| VectorError::Other("v2 community not found".into()))?;
let ch = crate::community::ChannelId(crate::simd::hex::hex_to_bytes_32(channel_id));
crate::community::v2::service::moderation_delete(
&transport, &community, &ch, message_id, crate::community::v2::kind::MESSAGE, &author,
)
.await
.map_err(VectorError::Other)?;
} else {
let cid = crate::db::community::community_id_for_channel(channel_id)
.map_err(VectorError::Other)?
.ok_or_else(|| VectorError::Other("unknown community channel".into()))?;
let community = crate::db::community::load_community(&crate::community::CommunityId(
crate::simd::hex::hex_to_bytes_32(&cid),
))
.map_err(VectorError::Other)?
.ok_or_else(|| VectorError::Other("community not found".into()))?;
let channel = community
.channels
.iter()
.find(|c| c.id.to_hex() == channel_id)
.cloned()
.ok_or_else(|| VectorError::Other("channel not found in community".into()))?;
crate::community::service::publish_owner_hide(&transport, &community, &channel, message_id)
.await
.map_err(VectorError::Other)?;
}
// The publish straddled a multi-second await; a swap must not strip the
// message from the swapped-in account's STATE + DB (message_id is global).
if !session.is_valid() {
return Ok(());
}
let removed_chat = {
let mut st = state::STATE.lock().await;
st.remove_message(message_id).map(|(cid, _)| cid)
};
let _ = crate::db::events::delete_event(message_id).await;
traits::emit_event_json("message_removed", serde_json::json!({
"id": message_id, "chat_id": removed_chat.as_deref().unwrap_or(channel_id), "reason": "hidden",
}));
Ok(())
}
/// Shared community control-event publish (reaction / edit / delete tombstone): build the
/// inner-typed envelope, sign, send over the community transport, then locally echo + persist + emit.
async fn publish_community_control(
&self,
channel_id: &str,
kind: u16,
content: &str,
target: &str,
emoji_tags: &[crate::types::EmojiTag],
) -> Result<()> {
use crate::community::{envelope, inbound, service, transport::LiveTransport};
let (community, channel) = self.resolve_channel(channel_id)?;
let author_pk = state::my_public_key().ok_or_else(|| VectorError::Other("Not logged in".into()))?;
let ms = std::time::SystemTime::now()
.duration_since(std::time::UNIX_EPOCH)
.map(|d| d.as_millis() as u64)
.unwrap_or(0);
let unsigned = envelope::build_inner_typed(
author_pk, &channel.id, channel.epoch, kind, content, ms, Some(target), emoji_tags,
);
let _client = state::nostr_client().ok_or_else(|| VectorError::Other("Not logged in".into()))?;
let signer = crate::signer::active_signer().map_err(|e| VectorError::Other(format!("Signer unavailable: {e}")))?;
let inner = unsigned.finalize_async(&signer).await.map_err(|e| VectorError::Other(format!("sign: {e}")))?;
let session = state::SessionGuard::capture();
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(12));
let outer = service::send_signed_message(&transport, &community, &channel, &inner)
.await.map_err(VectorError::Other)?;
// Local echo + persist + emit (relay echo dedups on inner id). A swap during the
// publish must not echo account A's control event into account B.
if !session.is_valid() {
return Ok(());
}
let outcome = {
let mut st = state::STATE.lock().await;
inbound::process_incoming(&mut st, &outer, &channel, &author_pk)
};
if let Some(inbound::IncomingEvent::Updated { target_id, mut message, edit_event }) = outcome {
if let Some(ev) = edit_event {
let mut ev = (*ev).clone();
if let Ok(cid) = crate::db::id_cache::get_chat_id_by_identifier(channel_id) { ev.chat_id = cid; }
let _ = crate::db::events::save_event(&ev).await;
} else {
let _ = crate::db::events::save_message(channel_id, &message).await;
}
traits::emit_message_update(channel_id, &target_id, &mut message).await;
}
Ok(())
}
/// Catch a Community channel up from relays. v1: fetch + ingest the latest page of messages,
/// reactions, edits, and deletes, returning how many were brand-new. v2: consensus catch-up
/// only (rekeys + control refold) — chat history delivers over the live handler bridge, so the
/// count is always 0. Returns `(new_message_count, warnings)`; `warnings` are NON-FATAL errors
/// hit during the sync (catch-up, control fold, read-cut resume) — surfaced rather than
/// swallowed so a headless caller is never blind to "the sync ran but a re-founding couldn't
/// be resumed."
pub async fn sync_community_channel(&self, channel_id: &str, limit: usize) -> Result<(usize, Vec<String>)> {
use crate::community::{inbound, send, service, transport::LiveTransport};
let my_pk = state::my_public_key().ok_or_else(|| VectorError::Other("Not logged in".into()))?;
// v2: consensus catch-up (rekeys then control refold) + chat backfill. With a
// running listen() the coalescing worker owns the follow (never run inline beside
// it — two concurrent follows can whole-row clobber); headless, walk it inline.
// The chat page is fetched + persisted either way, so get_messages backfills.
if let Some(id) = self.v2_community_for_channel(channel_id)? {
let warnings = if community::v2::realtime::follow_worker_running() {
community::v2::realtime::enqueue_follow(&id);
Vec::new()
} else {
Self::v2_inline_follow(&id).await
};
// Deepest catch-up walk: pages × page-size bounds one reconnect's fetch.
// Chat plane = fetch ASAP. NOTE: fetch_plane does not consult the
// evidence tier yet (#370) — until it does, the transport-seconds
// bound is the effective limit; the declared Fast records intent.
let new = Self::v2_backfill_channel(
&id, channel_id, limit, 8, None,
crate::community::transport::Evidence::Fast, 12,
).await;
return Ok((new, warnings));
}
let (community, _) = self.resolve_channel(channel_id)?;
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(12));
let mut warnings: Vec<String> = Vec::new();
// FIRST: walk any base (server-root) rotation — a privatize / private-ban rekey advances the
// epoch and re-anchors the control plane under the NEW root, so we must follow it BEFORE reading
// control/messages or we'd look at stale-epoch pseudonyms and silently fall off. No-op (one cheap
// probe) when there's been no rotation. Re-resolve after: the base epoch + root may have advanced.
// An AUTHORIZED base rotation that excluded us (private ban / read-cut) is a removal: erase local
// community data, exactly like an observed banlist/kick. This is the catch-all for a cut member who
// can no longer decrypt the new control plane to read the banlist the normal way (`am_i_banned`).
match service::catch_up_server_root(&transport, &community).await {
Ok(c) if c.removed => {
// ban-rekey exclusion is a self-removal → retain the held epoch keys for later self-scrub.
let _ = crate::db::community::delete_community_retain_keys(&community.id.to_hex());
return Ok((0, warnings));
}
Ok(_) => {}
Err(e) => warnings.push(format!("base catch-up failed: {e}")),
}
let (community, _) = self.resolve_channel(channel_id)?;
// Headless clients have no realtime control-plane subscription, so fold the latest control editions
// here (the desktop does the same on its own latest-page sync). Banlist FIRST: a ban that landed on
// us self-removes like a kick (drop keys + local data, no rejoin). Then roles, the per-creator invite
// links (Public/Private mode), and metadata (name/description/icon/channel-name) — so a rename, role,
// ban, or mode change reaches this member on sync, not just in a realtime client.
if let Err(e) = service::fetch_and_apply_control(&transport, &community).await {
warnings.push(format!("control fold failed: {e}"));
}
if service::am_i_banned(&community) {
// ban self-removal → retain the held epoch keys for later self-scrub.
let _ = crate::db::community::delete_community_retain_keys(&community.id.to_hex());
return Ok((0, warnings));
}
// Walk any CHANNEL rekey so we hold the current channel key before paging it, then re-resolve so the
// batch below carries the fresh channel epoch/key + the freshly-folded banned set + metadata.
let (community, channel) = self.resolve_channel(channel_id)?;
if let Err(e) = service::catch_up_channel_rekeys(&transport, &community, &channel.id).await {
warnings.push(format!("channel catch-up failed: {e}"));
}
// Resume any interrupted re-founding (a privatize/ban whose rotation aborted mid-way — e.g. a
// transient relay miss on the re-anchor). The GUI's sync did this; the agent's path did NOT, so an
// interrupted re-founding stayed `read_cut_pending` forever (channel frozen). Best-effort + surfaced.
let (community, _) = self.resolve_channel(channel_id)?;
if let Err(e) = service::retry_pending_read_cut(&transport, &community).await {
warnings.push(format!("read-cut resume failed: {e}"));
}
let (community, channel) = self.resolve_channel(channel_id)?;
// Guard straddles the fetch: the persist walk below writes this account's DB.
let session = state::SessionGuard::capture();
let events = send::fetch_channel_page(&transport, &community, &channel, None, None, limit.max(1))
.await
.map_err(VectorError::Other)?;
let outcomes = {
let mut st = state::STATE.lock().await;
inbound::process_channel_batch(&mut st, &events, &channel, &my_pk)
};
let mut new = 0usize;
// Message saves COLLECT into one batched transaction; deletes are flush barriers
// (see flush_message_batch — a save committing after a delete it preceded on the
// wire would resurrect the deleted row).
let mut pending: Vec<&crate::types::Message> = Vec::new();
for o in &outcomes {
// Every arm below writes this account's DB — a swap can land between them.
if !session.is_valid() {
pending.clear();
break;
}
match o {
inbound::IncomingEvent::NewMessage(m) => {
pending.push(m);
new += 1;
}
inbound::IncomingEvent::Updated { message, .. } => {
pending.push(message);
}
inbound::IncomingEvent::Removed { target_id } => {
crate::db::events::flush_message_batch(channel_id, &mut pending, &session).await;
let _ = crate::db::events::delete_event(target_id).await;
}
inbound::IncomingEvent::ReactionRemoved { reaction_id, .. } => {
// save_message is additive, so a revoked reaction's kind-7 row must be
// dropped explicitly or it resurrects on reload.
crate::db::events::flush_message_batch(channel_id, &mut pending, &session).await;
let _ = crate::db::events::delete_event(reaction_id).await;
}
inbound::IncomingEvent::Presence { npub, joined, event_id, created_at, invited_by, invited_label } => {
let et = if *joined {
crate::stored_event::SystemEventType::MemberJoined
} else {
crate::stored_event::SystemEventType::MemberLeft
};
// attribution persisted in the note: "invited_by[|label]".
let note = invited_by.as_ref().map(|by| match invited_label {
Some(l) if !l.is_empty() => format!("{by}|{l}"),
_ => by.clone(),
});
let _ = crate::db::events::save_system_event_at(event_id, channel_id, et, npub, note.as_deref(), *created_at, invited_by.as_deref(), invited_label.as_deref()).await;
}
inbound::IncomingEvent::WebxdcPeer { npub, topic_id, node_addr, event_id, created_at } => {
// Persist only (DM-parity row) — the miniapp layer bootstraps from the DB at
// game-open. Live gossip-feed pokes are the realtime subscription's job.
community::service::persist_webxdc_signal(
channel_id, npub, topic_id, node_addr.as_deref(), event_id, *created_at,
).await;
}
inbound::IncomingEvent::Kicked { community_id }
| inbound::IncomingEvent::SelfLeft { community_id } => {
// self-removal (kick of me, or a leave I/another device authored): drop the
// community's local state but RETAIN the held epoch keys (later self-scrub). The core-level
// half of leaving; a client shell layers on subscription-refresh + chat-row teardown + UI.
// Stop the batch — the community is gone, so later same-batch writes would orphan rows.
crate::db::events::flush_message_batch(channel_id, &mut pending, &session).await;
let _ = crate::db::community::delete_community_retain_keys(community_id);
break;
}
inbound::IncomingEvent::Typing { .. } => {
// Realtime-only ephemeral signal; never fetched in a sync batch. No-op.
}
}
}
crate::db::events::flush_message_batch(channel_id, &mut pending, &session).await;
Ok((new, warnings))
}
/// The composer's `/` picker snapshot for `chat_id`, answered INSTANTLY
/// from local state: the chat's bot-flagged members (kind-0 `bot: true` —
/// the SDK sets it on every bot it builds) and their last-known manifests
/// from the persistent store. When the last refresh is older than a minute
/// (or the bot set changed), ONE background REQ re-fetches every bot's
/// manifest together (5s unification window), persists newer editions, and
/// emits `chat_commands_updated` — the UI swaps the list in when it lands.
/// Works for BOTH community protocols (an invocation is plain content; only
/// the optional routing tag is v2-only) and DMs. The manifest REQ always
/// includes the discovery indexers beside the chat's own relays, so an
/// unreachable or stranger-dropping community relay can't blind the picker.
pub async fn get_chat_commands(&self, chat_id: &str) -> crate::bot_interface::ChatCommandsSnapshot {
use crate::bot_interface::{self, ChatCommandsSnapshot};
use nostr_sdk::prelude::ToBech32;
let mut bots: Vec<nostr_sdk::prelude::PublicKey> = Vec::new();
let mut relays: Vec<String> = Vec::new();
let community_hex = crate::db::community::community_id_for_channel(chat_id).ok().flatten();
if let Some(cid_hex) = community_hex {
let mut members: Vec<nostr_sdk::prelude::PublicKey> = Vec::new();
if let Ok(Some(community)) = Self::load_v2_if_v2(&cid_hex) {
members = community::v2::service::stored_memberlist(&community).unwrap_or_default();
relays = community.relays.clone();
} else {
let id = crate::community::CommunityId(crate::simd::hex::hex_to_bytes_32(&cid_hex));
let Ok(Some(community)) = crate::db::community::load_community(&id) else {
return ChatCommandsSnapshot { bots: 0, commands: Vec::new(), fresh: true };
};
relays = community.relays.clone();
for (npub, _) in crate::db::community::community_member_activity(&cid_hex).unwrap_or_default() {
if let Ok(pk) = nostr_sdk::prelude::PublicKey::parse(&npub) {
members.push(pk);
}
}
}
let state = crate::state::STATE.lock().await;
for pk in members {
let Ok(npub) = pk.to_bech32();
if state.get_profile(&npub).map(|p| p.flags.is_bot()).unwrap_or(false) {
bots.push(pk);
}
}
} else if chat_id.starts_with("npub1") {
if let Ok(pk) = nostr_sdk::prelude::PublicKey::parse(chat_id) {
let is_bot = {
let state = crate::state::STATE.lock().await;
state.get_profile(chat_id).map(|p| p.flags.is_bot()).unwrap_or(false)
};
if is_bot {
bots.push(pk);
// The counterpart published its manifest to its own login
// relays/indexers — our connected pool is the read set.
if let Some(client) = crate::state::nostr_client() {
relays = client.relays().await.keys().map(|u| u.to_string()).collect();
}
}
}
}
if bots.is_empty() {
return ChatCommandsSnapshot { bots: 0, commands: Vec::new(), fresh: true };
}
// The chat's own relays PLUS the discovery indexers, one REQ across the
// union — a room whose relays refuse kind 10304 still resolves.
relays.extend(bot_interface::DISCOVERY_RELAYS.iter().map(|s| s.to_string()));
relays.sort();
relays.dedup();
// Deterministic order: the freshness check compares the exact bot set,
// and picker sections stay stable across refreshes.
bots.sort_by_key(|p| p.to_hex());
let bot_hexes: Vec<String> = bots.iter().map(|p| p.to_hex()).collect();
let commands = bot_interface::assemble_from_store(&bot_hexes);
let fresh = bot_interface::commands_fresh(chat_id, &bot_hexes);
if !fresh {
bot_interface::spawn_commands_refresh(chat_id.to_string(), bots.clone(), relays);
}
ChatCommandsSnapshot { bots: bots.len(), commands, fresh }
}
/// Observed members of a Community (best-effort: those who've posted or announced a join,
/// minus anyone who's left or is banned). v1 entries are `{npub, last_active}`; a v2 entry
/// is `{npub}` (the Complete Memberlist carries no activity time). Best-effort throughout:
/// a transport failure yields an empty list, never an error.
pub async fn get_community_members(&self, community_id: &str) -> Vec<serde_json::Value> {
use nostr_sdk::prelude::ToBech32;
// v2: the Complete Memberlist from LOCAL state (persisted guestbook +
// observed authors + roster grantees − banlist). The store is seeded
// post-join and cursor-caught-up by the follow worker (boot/reconnect) +
// live ingest; a cold store (a hold predating the store) seeds in the
// background and refreshes the UI when it lands.
match Self::load_v2_if_v2(community_id) {
Ok(Some(community)) => {
let cid_hex = crate::simd::hex::bytes_to_hex_32(&community.id().0);
let (_, cursor) = crate::db::community::get_guestbook(&cid_hex).unwrap_or_default();
if cursor == 0 {
if crate::community::v2::realtime::follow_worker_running() {
crate::community::v2::realtime::enqueue_follow(community.id());
} else {
let session = state::SessionGuard::capture();
let c2 = community.clone();
tokio::spawn(async move {
if !session.is_valid() {
return;
}
let transport = crate::community::transport::LiveTransport::with_timeout(std::time::Duration::from_secs(20));
if matches!(crate::community::v2::service::sync_guestbook(&transport, &c2, &session).await, Ok(fresh) if !fresh.is_empty()) {
emit_event("community_refreshed", &serde_json::json!({ "community_id": cid_hex }));
}
});
}
}
return crate::community::v2::service::stored_memberlist(&community)
.unwrap_or_default()
.into_iter()
.filter_map(|pk| pk.to_bech32().ok())
.map(|npub| serde_json::json!({ "npub": npub }))
.collect();
}
Ok(None) => {} // genuinely v1 / unknown — fall through.
// Can't determine the protocol: best-effort empty, never a v1 guess.
Err(_) => return Vec::new(),
}
crate::db::community::community_member_activity(community_id)
.unwrap_or_default()
.into_iter()
.map(|(npub, last_active)| serde_json::json!({ "npub": npub, "last_active": last_active }))
.collect()
}
/// One synchronous v2 follow pass — rekeys first (a base adopt moves the
/// control address), then a control refold on the FRESH state, the same order
/// the live follow worker runs. Returns non-fatal warnings.
async fn v2_inline_follow(id: &crate::community::CommunityId) -> Vec<String> {
use crate::community::transport::LiveTransport;
let session = state::SessionGuard::capture();
// Serialize with the live follow worker: `follow_worker_running` is
// check-then-act, so a worker can spawn right after a caller saw `false` —
// this shared per-community lock is what actually prevents two follows of
// one community interleaving their whole-row saves.
let lock = crate::community::v2::realtime::follow_lock(id);
let _guard = lock.lock().await;
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(12));
let mut warnings: Vec<String> = Vec::new();
let Ok(Some(community)) = crate::db::community::load_community_v2(id) else {
warnings.push("v2 community not found".to_string());
return warnings;
};
let cid_hex = crate::simd::hex::bytes_to_hex_32(&id.0);
match crate::community::v2::service::follow_rekeys(&transport, &community, &session).await {
// A tombstone surfaced during catch-up — sealed read-only; stop here.
Ok(f) if f.dissolved => return warnings,
Ok(f) if f.self_removed => {
// An authorized rotation that excluded us IS a removal — but the
// follow straddled awaits, so never delete from a swapped-in DB.
if session.is_valid() {
let _ = crate::db::community::delete_community(&cid_hex);
}
return warnings;
}
Ok(_) => {}
Err(e) => warnings.push(format!("v2 rekey follow failed: {e}")),
}
if let Ok(Some(fresh)) = crate::db::community::load_community_v2(id) {
match crate::community::v2::service::follow_control(&transport, &fresh, &session).await {
// A control change can reveal rekey work that predates it (a
// just-announced private channel's key crate already sits on its
// rekey plane), so walk the rekeys once more on the fresh state.
Ok(Some(changed)) => {
if let Err(e) = crate::community::v2::service::follow_rekeys(&transport, &changed, &session).await {
warnings.push(format!("v2 rekey follow failed: {e}"));
}
}
Ok(None) => {}
Err(e) => warnings.push(format!("v2 control follow failed: {e}")),
}
}
// Banned by the freshly-folded banlist: a removal just like the rotation
// exclusion above, and it arrives FIRST (CORD-04 §6 orders the Banlist edition
// before the Refounding), so keying removal solely off the rotation leaves a
// banned headless client running against a community that already dropped it.
if let Some(me) = crate::my_public_key() {
if crate::db::community::is_author_banned(&cid_hex, &me) && session.is_valid() {
let _ = crate::db::community::delete_community(&cid_hex);
}
}
warnings
}
/// Fetch a v2 channel's recent chat history and PERSIST it into the shared events
/// tables (the same store v1 uses), so `get_messages`/`get_new_messages` backfill for
/// v2 exactly like v1. PAGES backwards until it reaches messages it already holds
/// (bounded), so a reconnecting bot that slept through more than one page of traffic
/// still catches the whole gap instead of only the newest `limit`. Reuses the v2
/// inbound bridge (dedup + STATE aggregate) + the v1 save path. Returns the count of
/// brand-new messages applied. Best-effort: a fetch failure is 0.
/// Reconnect/boot catch-up for one v2 channel: fetches the newest pages
/// and PAGES backwards until it reaches messages it already holds, then
/// ingests through the shared pipeline. The boot volley fetches its own
/// batches and shares only [`Self::v2_ingest_chat_page`].
async fn v2_backfill_channel(
id: &crate::community::CommunityId,
channel_id: &str,
limit: usize,
max_pages: usize,
since: Option<u64>,
evidence: crate::community::transport::Evidence,
transport_secs: u64,
) -> usize {
use crate::community::v2::inbound::{apply_chat_to_state, ChatPersist};
// Guard straddles the fetch: a swap mid-fetch must not persist account A's chat
// into account B's STATE/DB (the message ids are global).
let session = state::SessionGuard::capture();
let Some(my_pk) = state::my_public_key() else { return 0 };
// CORD-02 §9: a dissolved community honors no NEW events — old history reads
// through the explicit paths, but a catch-up sweep must not ingest anything
// authored into the grave.
if crate::db::community::get_community_dissolved(&crate::simd::hex::bytes_to_hex_32(&id.0)).unwrap_or(false) {
return 0;
}
let Ok(Some(community)) = crate::db::community::load_community_v2(id) else { return 0 };
let ch = crate::community::ChannelId(crate::simd::hex::hex_to_bytes_32(channel_id));
let transport = crate::community::transport::LiveTransport::with_timeout(std::time::Duration::from_secs(transport_secs));
let Ok(page) = crate::community::v2::service::fetch_channel_history(
&transport,
&community,
&ch,
limit.max(50),
max_pages,
since,
evidence,
// Keep paging while a page still contains a MESSAGE we don't hold; a page
// whose messages are all known means we've reached our own history. Only
// message kinds get their own rows (reactions/edits fold into their
// targets), so a page with no messages is undecidable — keep paging.
|page| {
let mut saw_message = false;
for f in page {
if matches!(&f.event, crate::community::v2::chat::ChatEvent::Message { .. }) {
saw_message = true;
if !crate::db::events::event_exists(&f.event.opened().rumor_id.to_hex()).unwrap_or(false) {
return true;
}
}
}
!saw_message
},
)
.await
else {
return 0;
};
Self::v2_ingest_chat_page(channel_id, my_pk, session, page).await
}
/// Ingest a fetched chat page: STATE apply, batched persist with delete
/// barriers, then UI surfacing — shared by the reconnect backfill and the
/// boot volley's batched paint path.
pub(crate) async fn v2_ingest_chat_page(
channel_id: &str,
my_pk: nostr_sdk::prelude::PublicKey,
session: crate::state::SessionGuard,
page: Vec<crate::community::v2::service::FetchedEvent>,
) -> usize {
use crate::community::v2::inbound::{apply_chat_to_state, ChatPersist};
let mut new = 0usize;
// Pass 1 — apply to STATE (per-item lock) and COLLECT outcomes in wire order.
let mut outcomes: Vec<ChatPersist> = Vec::with_capacity(page.len());
for f in &page {
// Re-check every iteration — STATE mutates per item, and a swap can land between them.
if !session.is_valid() {
break;
}
// A backfilled WebXDC peer ad persists through the shared 30078 row
// (recency-gated at read) so a reopening lobby lists peers who
// advertised while this device was closed — v1 sync parity. Own
// echoes drop; the ad is not a chat row.
if let crate::community::v2::chat::ChatEvent::Webxdc { opened } = &f.event {
if opened.author != my_pk {
if let Some((topic, addr)) = crate::webxdc::parse_peer_signal(&opened.rumor.content) {
let Ok(npub) = ToBech32::to_bech32(&opened.author);
crate::community::service::persist_webxdc_signal(
channel_id,
&npub,
&topic,
addr.as_deref(),
&opened.rumor_id.to_hex(),
opened.at_ms / 1000,
)
.await;
}
}
continue;
}
let outcome = {
let mut st = state::STATE.lock().await;
apply_chat_to_state(&mut st, &f.event, channel_id, &my_pk)
};
if let Some(outcome) = outcome {
if matches!(outcome, ChatPersist::New(_)) {
new += 1;
}
outcomes.push(outcome);
}
}
// Pass 2 — persist: message saves COLLECT into batched transactions; deletes are
// flush barriers (a save committing after a delete it preceded on the wire would
// resurrect the deleted row). One tx per page in the common no-delete case.
let mut pending: Vec<&crate::types::Message> = Vec::new();
for outcome in &outcomes {
if !session.is_valid() {
pending.clear();
break;
}
match outcome {
ChatPersist::New(m) => pending.push(m),
ChatPersist::Updated { message, edit_event } => match edit_event {
Some(ev) => {
let mut ev = (**ev).clone();
// get-or-CREATE: a lookup-only id would leave a fresh channel's edit at
// chat_id 0 (orphaned, dropped on the reload fold).
if let Ok(cid) = crate::db::id_cache::get_or_create_chat_id(channel_id) {
ev.chat_id = cid;
}
let _ = crate::db::events::save_event(&ev).await;
}
None => pending.push(message),
},
ChatPersist::Removed(target_id) => {
crate::db::events::flush_message_batch(channel_id, &mut pending, &session).await;
let _ = crate::db::events::delete_event(target_id).await;
}
ChatPersist::ReactionRemoved { reaction_id, message } => {
crate::db::events::flush_message_batch(channel_id, &mut pending, &session).await;
let _ = crate::db::events::delete_event(reaction_id).await;
pending.push(message);
}
}
}
crate::db::events::flush_message_batch(channel_id, &mut pending, &session).await;
// Pass 3 — surface to the live UI, mirroring v1's sweep + the live dispatch handler:
// a silent DB-only backfill left the chat-list preview, unread badge, and sort order
// stale until the channel was opened. Raw emits (no notification ping) — a boot
// catch-up must not fire an OS ping per message. Headless consumers register no
// emitter, so these are a no-op there. After the persists so nothing surfaces unsaved.
if session.is_valid() {
for outcome in &outcomes {
match outcome {
ChatPersist::New(msg) => crate::traits::emit_event(
"message_new",
&serde_json::json!({ "message": msg, "chat_id": channel_id }),
),
ChatPersist::Updated { message, .. }
| ChatPersist::ReactionRemoved { message, .. } => {
let mut message = message.clone();
let target_id = message.id.clone();
crate::traits::emit_message_update(channel_id, &target_id, &mut message).await;
}
ChatPersist::Removed(target_id) => crate::traits::emit_event(
"message_removed",
&serde_json::json!({ "id": target_id, "chat_id": channel_id, "reason": "deleted" }),
),
}
}
}
new
}
/// The held v2 community when `community_id` names one; `Ok(None)` for v1 (or
/// unknown). A DB read error PROPAGATES (fail-closed) instead of falling open
/// to the v1 route on a transient failure.
fn load_v2_if_v2(community_id: &str) -> Result<Option<crate::community::v2::community::CommunityV2>> {
if community_id.len() != 64 {
return Ok(None);
}
let cid = crate::community::CommunityId(crate::simd::hex::hex_to_bytes_32(community_id));
match crate::db::community::community_protocol(&cid).map_err(VectorError::Other)? {
Some(crate::community::ConcordProtocol::V2) => crate::db::community::load_community_v2(&cid).map_err(VectorError::Other),
_ => Ok(None),
}
}
// ── Community admin actions ── role-gated; vector-core re-checks authority on every action and peers
// re-verify against the owner-rooted roster, so these can't forge standing. A bunker account can't ban
// in a private community (the rekey needs a raw local key).
fn load_community_hex(community_id: &str) -> Result<crate::community::Community> {
use crate::community::CommunityId;
if community_id.len() != 64 {
return Err(VectorError::Other("malformed community id".into()));
}
crate::db::community::load_community(&CommunityId(crate::simd::hex::hex_to_bytes_32(community_id)))
.map_err(VectorError::Other)?
.ok_or_else(|| VectorError::Other("community not found".into()))
}
fn admin_role_id_of(community_id: &str) -> Result<String> {
let roles = crate::db::community::get_community_roles(community_id).map_err(VectorError::Other)?;
roles.roles.iter()
.find(|r| matches!(r.scope, crate::community::roles::RoleScope::Server)
&& r.permissions.contains(crate::community::roles::Permissions::ADMIN_ALL))
.map(|r| r.role_id.clone())
.ok_or_else(|| VectorError::Other("admin role not found (roster not synced?)".into()))
}
/// My effective management capabilities in a community (role engine — owner is just position 0). Use to
/// confirm a promotion/demotion landed. A local read: the roster is folded + persisted by the passive
/// sync (v1) / control follow (v2), never fetched here.
pub fn community_capabilities(&self, community_id: &str) -> Result<serde_json::Value> {
use crate::community::service;
if let Some(v2) = Self::load_v2_if_v2(community_id)? {
use crate::community::roles::Permissions;
let me = state::my_public_key().ok_or_else(|| VectorError::Other("Not logged in".into()))?.to_hex();
let owner_hex = v2.owner().map_err(VectorError::Other)?.to_hex();
let roster = crate::db::community::get_community_roles(community_id).map_err(VectorError::Other)?;
// A banned member holds no standing (CORD-04 §4), even if a since-skipped
// roster persist still lists their grant — the banlist advances on its own gate.
let banned = crate::db::community::get_community_banlist(community_id).unwrap_or_default();
if banned.contains(&me) && me != owner_hex {
return Ok(serde_json::json!({
"manage_metadata": false, "manage_channels": false, "create_invite": false, "kick": false,
"ban": false, "manage_messages": false, "manage_roles": false, "manage_admin_role": false,
}));
}
let has = |p: u64| roster.is_authorized(&me, Some(&owner_hex), p);
return Ok(serde_json::json!({
"manage_metadata": has(Permissions::MANAGE_METADATA), "manage_channels": has(Permissions::MANAGE_CHANNELS),
"create_invite": has(Permissions::CREATE_INVITE), "kick": has(Permissions::KICK), "ban": has(Permissions::BAN),
"manage_messages": has(Permissions::MANAGE_MESSAGES), "manage_roles": has(Permissions::MANAGE_ROLES),
// Only the owner (position 0) strictly outranks the position-1 Admin role.
"manage_admin_role": me == owner_hex,
}));
}
let community = Self::load_community_hex(community_id)?;
let caps = service::caller_capabilities(&community);
let manage_admin_role = Self::admin_role_id_of(community_id).ok()
.map(|rid| service::caller_can_manage_role_id(&community, &rid))
.unwrap_or(false);
Ok(serde_json::json!({
"manage_metadata": caps.manage_metadata, "manage_channels": caps.manage_channels,
"create_invite": caps.create_invite, "kick": caps.kick, "ban": caps.ban,
"manage_messages": caps.manage_messages, "manage_roles": caps.manage_roles,
"manage_admin_role": manage_admin_role,
}))
}
/// The community's owner npub + the admin npubs (role overview). A local read,
/// like [`Self::community_capabilities`].
pub fn community_roles(&self, community_id: &str) -> Result<serde_json::Value> {
use nostr_sdk::prelude::{PublicKey, ToBech32};
if let Some(v2) = Self::load_v2_if_v2(community_id)? {
let owner = v2.owner().map_err(VectorError::Other)?;
let roster = crate::db::community::get_community_roles(community_id).map_err(VectorError::Other)?;
// Exclude banned members from the admin list (a banned npub vanishes, §4).
let banned = crate::db::community::get_community_banlist(community_id).unwrap_or_default();
let admins: Vec<String> = roster.grants.iter()
.filter(|g| roster.is_admin(&g.member) && !banned.contains(&g.member))
.filter_map(|g| PublicKey::from_hex(&g.member).ok().and_then(|pk| pk.to_bech32().ok()))
.collect();
return Ok(serde_json::json!({ "owner": owner.to_bech32().ok(), "admins": admins }));
}
let community = Self::load_community_hex(community_id)?;
let owner = community.owner_attestation.as_ref()
.and_then(|att| crate::community::owner::verify_owner_attestation(att, &community.id.to_hex()))
.and_then(|pk| ToBech32::to_bech32(&pk).ok());
let roles = crate::db::community::get_community_roles(community_id).map_err(VectorError::Other)?;
let admins: Vec<String> = roles.grants.iter().filter(|g| roles.is_admin(&g.member))
.filter_map(|g| PublicKey::from_hex(&g.member).ok().and_then(|pk| pk.to_bech32().ok()))
.collect();
Ok(serde_json::json!({ "owner": owner, "admins": admins }))
}
/// Fold the v2 control plane back in right after publishing an authority change, so the
/// LOCAL roster/banlist — which is what every read is served from (crowns, in-chat tags,
/// capabilities, moderation gates) — is current by the time the call returns. `publish`
/// only returns once a relay ACKed, so this refetch sees our own edition; the fold
/// announces `community_refreshed` itself when the roster actually moved.
///
/// Best-effort: the edition is already published, so a failed refold is a stale local
/// cache the next follow repairs, never a failed action.
async fn converge_v2_authority(
transport: &crate::community::transport::LiveTransport,
community_id: &str,
session: &crate::state::SessionGuard,
) {
if !session.is_valid() {
return;
}
// Reload rather than reuse the caller's clone: the publish advanced edition floors,
// and a rekey/refound may have moved the control address under us.
if let Ok(Some(fresh)) = Self::load_v2_if_v2(community_id) {
let _ = crate::community::v2::service::follow_control(transport, &fresh, session).await;
// Membership is part of the view being converged: an unban must
// re-fetch the Guestbook, because a Join that legally raced the ban
// window may exist only on the relays — and our own just-published
// edition doesn't echo back to trigger a follow.
if let Ok(added) = crate::community::v2::service::sync_guestbook(transport, &fresh, session).await {
if !added.is_empty() && session.is_valid() {
traits::emit_event_json(
"community_refreshed",
serde_json::json!({ "community_id": community_id }),
);
}
}
}
}
/// Grant a member the @admin role. Requires MANAGE_ROLES + outranking the role's position.
pub async fn grant_admin(&self, community_id: &str, npub: &str) -> Result<()> {
use crate::community::{service, transport::LiveTransport};
let session = crate::state::SessionGuard::capture();
let member = nostr_sdk::prelude::PublicKey::parse(npub).map_err(|_| VectorError::Other("invalid npub".into()))?;
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(12));
if let Some(v2) = Self::load_v2_if_v2(community_id)? {
crate::community::v2::service::grant_admin(&transport, &v2, &member)
.await
.map_err(VectorError::Other)?;
Self::converge_v2_authority(&transport, community_id, &session).await;
return Ok(());
}
let community = Self::load_community_hex(community_id)?;
let role_id = Self::admin_role_id_of(community_id)?;
service::grant_role(&transport, &community, member, &role_id).await.map_err(VectorError::Other)
}
/// Revoke a member's @admin role.
pub async fn revoke_admin(&self, community_id: &str, npub: &str) -> Result<()> {
use crate::community::{service, transport::LiveTransport};
let session = crate::state::SessionGuard::capture();
let member = nostr_sdk::prelude::PublicKey::parse(npub).map_err(|_| VectorError::Other("invalid npub".into()))?;
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(12));
if let Some(v2) = Self::load_v2_if_v2(community_id)? {
crate::community::v2::service::revoke_admin(&transport, &v2, &member)
.await
.map_err(VectorError::Other)?;
Self::converge_v2_authority(&transport, community_id, &session).await;
return Ok(());
}
let community = Self::load_community_hex(community_id)?;
let role_id = Self::admin_role_id_of(community_id)?;
service::revoke_role(&transport, &community, member, &role_id).await.map_err(VectorError::Other)
}
/// Cooperatively kick a member — they self-remove but can rejoin. Requires KICK + outrank.
pub async fn kick_member(&self, community_id: &str, npub: &str) -> Result<()> {
use crate::community::{service, transport::LiveTransport};
let session = crate::state::SessionGuard::capture();
let pk = nostr_sdk::prelude::PublicKey::parse(npub).map_err(|_| VectorError::Other("invalid npub".into()))?;
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(12));
if let Some(v2) = Self::load_v2_if_v2(community_id)? {
crate::community::v2::service::kick_member(&transport, &v2, &pk)
.await
.map_err(VectorError::Other)?;
// Catch the local Guestbook up on our own Kick, so the memberlist read
// (which folds the STORE, not the network) drops them before this returns
// instead of waiting on the relay echo. The control fold follows because a
// Kick strips roles first (CORD-04 §6), which moves the roster too.
if session.is_valid() {
if let Ok(fresh) = crate::community::v2::service::sync_guestbook(&transport, &v2, &session).await {
if !fresh.is_empty() {
emit_event("community_refreshed", &serde_json::json!({ "community_id": community_id }));
}
}
}
Self::converge_v2_authority(&transport, community_id, &session).await;
return Ok(());
}
let community = Self::load_community_hex(community_id)?;
let channel = community.channels.first().ok_or_else(|| VectorError::Other("community has no channel".into()))?;
service::publish_kick(&transport, &community, channel, &pk.to_hex()).await.map(|_| ()).map_err(VectorError::Other)
}
/// Ban (`true`) or unban (`false`) a member. Ban is terminal (no rejoin); in a private community it also
/// fires the read-cut rekey (needs a local key). Requires BAN + outrank.
pub async fn set_member_banned(&self, community_id: &str, npub: &str, banned: bool) -> Result<()> {
use crate::community::{service, transport::LiveTransport, CommunityId};
let session = crate::state::SessionGuard::capture();
let pk = nostr_sdk::prelude::PublicKey::parse(npub).map_err(|_| VectorError::Other("invalid npub".into()))?;
let hex = pk.to_hex();
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(12));
// Recompute the full list (latest-wins): drop any existing entry, then add if banning.
let mut list = crate::db::community::get_community_banlist(community_id).map_err(VectorError::Other)?;
list.retain(|h| h != &hex);
if banned {
list.push(hex);
}
// Dual-stack: a v2 Ban is the CORD-04 §6 three-removal composition, in order —
// the Banlist edition first (instant silence), then the Grant strip (authority
// removal), then the Refounding read-cut (cryptographic severance).
if community_id.len() == 64 {
let cid = CommunityId(crate::simd::hex::hex_to_bytes_32(community_id));
if let Some(Some(crate::community::ConcordProtocol::V2)) = crate::db::community::community_protocol(&cid).ok() {
// Rotation barrier: a Ban's refound holds this lock for its whole
// multi-publish rotation while the row still names the OLD root. An
// unban/reban clicked in that window must WAIT and then load the
// post-commit root — unlocked, it publishes the edit to the epoch
// being buried, where no reader will ever fold it. Dropped before
// `refound_community`, which re-acquires it (non-reentrant).
let community = {
let lock = crate::community::v2::realtime::follow_lock(&cid);
let _rotation = lock.lock().await;
let community = crate::db::community::load_community_v2(&cid)
.map_err(VectorError::Other)?
.ok_or_else(|| VectorError::Other("v2 community not found".into()))?;
crate::community::v2::service::set_banlist(&transport, &community, &list).await.map_err(VectorError::Other)?;
if banned {
crate::community::v2::service::grant_roles(&transport, &community, &pk, vec![]).await.map_err(VectorError::Other)?;
}
community
};
if banned {
crate::community::v2::service::refound_community(&transport, &community, &[pk]).await.map_err(VectorError::Other)?;
}
Self::converge_v2_authority(&transport, community_id, &session).await;
return Ok(());
}
}
let community = Self::load_community_hex(community_id)?;
service::publish_banlist(&transport, &community, &list).await.map_err(VectorError::Other)
}
/// Owner dissolution / "Delete Community": publish the terminal GroupDissolved tombstone (and
/// retire the owner's own invite links, no rekey), sealing the community permanently. Owner-only
/// (re-verified cryptographically in `service::dissolve_community`); irreversible.
pub async fn dissolve_community(&self, community_id: &str) -> Result<()> {
use crate::community::{service, transport::LiveTransport, CommunityId};
if community_id.len() != 64 {
return Err(VectorError::Other("malformed community id".into()));
}
let cid = CommunityId(crate::simd::hex::hex_to_bytes_32(community_id));
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(12));
// Dual-stack: a v2 community dissolves at its own `community_id`-derived
// dissolved plane (CORD-02 §9), NOT v1's control-plane roster edition.
if let Some(Some(crate::community::ConcordProtocol::V2)) = crate::db::community::community_protocol(&cid).ok() {
let community = crate::db::community::load_community_v2(&cid)
.map_err(VectorError::Other)?
.ok_or_else(|| VectorError::Other("v2 community not found".into()))?;
return crate::community::v2::service::dissolve_community(&transport, &community)
.await
.map_err(VectorError::Other);
}
let community = Self::load_community_hex(community_id)?;
service::dissolve_community(&transport, &community).await.map_err(VectorError::Other)
}
/// Edit community metadata (name / description) as an authorized member (MANAGE_METADATA). `None` leaves
/// a field unchanged; an empty description clears it.
pub async fn edit_community_metadata(&self, community_id: &str, name: Option<&str>, description: Option<&str>) -> Result<()> {
use crate::community::{service, transport::LiveTransport, CommunityId};
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(12));
// Dual-stack: a v2 metadata edit is an authorized vsk-0 control edition.
// Overlay onto the FULL held document (`CommunityV2::metadata()`) — an
// edition replaces the entity, so a bare name edit would otherwise wipe
// the icon/banner for every member (CORD-02 §6).
if community_id.len() == 64 {
let cid = CommunityId(crate::simd::hex::hex_to_bytes_32(community_id));
if let Some(Some(crate::community::ConcordProtocol::V2)) = crate::db::community::community_protocol(&cid).ok() {
let community = crate::db::community::load_community_v2(&cid)
.map_err(VectorError::Other)?
.ok_or_else(|| VectorError::Other("v2 community not found".into()))?;
let mut meta = community.metadata();
if let Some(n) = name {
meta.name = n.to_string();
}
if let Some(d) = description {
meta.description = if d.is_empty() { None } else { Some(d.to_string()) };
}
return crate::community::v2::service::edit_community_metadata(&transport, &community, &meta)
.await
.map_err(VectorError::Other);
}
}
let mut community = Self::load_community_hex(community_id)?;
if let Some(n) = name { community.name = n.to_string(); }
if let Some(d) = description { community.description = if d.is_empty() { None } else { Some(d.to_string()) }; }
service::republish_community_metadata(&transport, &community).await.map_err(VectorError::Other)
}
/// Create a new channel in a v2 community. A PUBLIC channel derives from the
/// community_root, so peers fold it in with nothing to distribute; a PRIVATE one
/// mints an independent key at channel-epoch 1 and delivers it to every current
/// member over the rekey plane (CORD-03 §2 / CORD-06). Requires MANAGE_CHANNELS.
/// Returns the new channel id (hex).
pub async fn create_community_channel(&self, community_id: &str, name: &str, private: bool) -> Result<String> {
let v2 = Self::load_v2_if_v2(community_id)?
.ok_or_else(|| VectorError::Other("channel creation is available on v2 communities".into()))?;
let transport = crate::community::transport::LiveTransport::with_timeout(std::time::Duration::from_secs(12));
let id = if private {
crate::community::v2::service::create_private_channel(&transport, &v2, name).await
} else {
crate::community::v2::service::create_public_channel(&transport, &v2, name).await
}
.map_err(VectorError::Other)?;
// Subscribe the new channel's chat plane now — waiting on the round-trip of
// our own vsk-2 edition would leave the creator deaf to first replies.
if let Some(client) = state::nostr_client() {
crate::community::v2::realtime::refresh_subscription(&client).await;
}
Ok(crate::simd::hex::bytes_to_hex_32(&id.0))
}
/// Delete (tombstone) a v2 community channel. Requires MANAGE_CHANNELS (reader-gated).
pub async fn delete_community_channel(&self, community_id: &str, channel_id: &str) -> Result<()> {
let v2 = Self::load_v2_if_v2(community_id)?
.ok_or_else(|| VectorError::Other("channel deletion is available on v2 communities".into()))?;
let ch = crate::community::ChannelId(crate::simd::hex::hex_to_bytes_32(channel_id));
let name = v2.channels.iter().find(|c| c.id.0 == ch.0).map(|c| c.name.clone()).unwrap_or_default();
let transport = crate::community::transport::LiveTransport::with_timeout(std::time::Duration::from_secs(12));
crate::community::v2::service::delete_channel(&transport, &v2, &ch, &name)
.await
.map_err(VectorError::Other)
}
/// Leave a Community: announce a best-effort "left" presence (before dropping keys), then
/// drop the held keys + local channel chats. You need a fresh invite to rejoin.
pub async fn leave_community(&self, community_id: &str) -> Result<()> {
use crate::community::{transport::LiveTransport, CommunityId};
if community_id.len() != 64 {
return Err(VectorError::Other("malformed community id".into()));
}
let id = CommunityId(crate::simd::hex::hex_to_bytes_32(community_id));
// v2: guestbook Leave + cross-device List tombstone + local delete, in the service.
if let Some(v2) = Self::load_v2_if_v2(community_id)? {
let session = state::SessionGuard::capture();
let channel_ids: Vec<String> =
v2.channels.iter().map(|ch| crate::simd::hex::bytes_to_hex_32(&ch.id.0)).collect();
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(12));
crate::community::v2::service::leave_community(&transport, &v2)
.await
.map_err(VectorError::Other)?;
if !session.is_valid() {
return Err(VectorError::Other("account changed during leave".into()));
}
let mut st = state::STATE.lock().await;
st.chats.retain(|c| !channel_ids.contains(&c.id));
return Ok(());
}
let community = crate::db::community::load_community(&id).map_err(VectorError::Other)?;
let channel_ids: Vec<String> = community
.as_ref()
.map(|c| c.channels.iter().map(|ch| ch.id.to_hex()).collect())
.unwrap_or_default();
// "Left" announcement BEFORE dropping keys (afterward we can't sign/seal into the channel).
if let Some(ref c) = community {
if let Some(primary) = c.channels.first() {
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(12));
let _ = crate::community::service::publish_presence(&transport, c, primary, false, None).await;
}
}
// voluntary leave is a self-removal → retain the held epoch keys for later self-scrub.
crate::db::community::delete_community_retain_keys(community_id).map_err(VectorError::Other)?;
{
let mut st = state::STATE.lock().await;
st.chats.retain(|c| !channel_ids.contains(&c.id));
}
Ok(())
}
/// Resolve a channel id to its owning Community + the Channel (with its secret key).
fn resolve_channel(
&self,
channel_id: &str,
) -> Result<(crate::community::Community, crate::community::Channel)> {
use crate::community::CommunityId;
let community_id = crate::db::community::community_id_for_channel(channel_id)
.map_err(VectorError::Other)?
.ok_or_else(|| VectorError::Other("Unknown Community channel".into()))?;
if community_id.len() != 64 {
return Err(VectorError::Other("malformed community id".into()));
}
let community = crate::db::community::load_community(&CommunityId(
crate::simd::hex::hex_to_bytes_32(&community_id),
))
.map_err(VectorError::Other)?
.ok_or_else(|| VectorError::Other("Community not found".into()))?;
let channel = community
.channels
.iter()
.find(|c| c.id.to_hex() == channel_id)
.cloned()
.ok_or_else(|| VectorError::Other("Channel not found in Community".into()))?;
Ok((community, channel))
}
/// Sync DM history from relays using NIP-77 negentropy set reconciliation.
///
/// Reconciles local wrapper history with relay state, fetches missing events,
/// and processes them through the standard prepare → commit pipeline.
///
/// Returns (total_events, new_messages).
///
/// ```no_run
/// # async fn example() -> vector_core::Result<()> {
/// let core = vector_core::VectorCore;
/// // Sync last 7 days of DMs
/// let (events, new) = core.sync_dms(Some(7), &vector_core::NoOpEventHandler).await?;
/// println!("Processed {} events, {} new messages", events, new);
/// # Ok(())
/// # }
/// ```
pub async fn sync_dms(
&self,
since_days: Option<u64>,
handler: &dyn InboundEventHandler,
) -> Result<(u32, u32)> {
use futures_util::StreamExt;
use nostr_sdk::prelude::*;
let client = state::nostr_client()
.ok_or(VectorError::Other("Not connected".into()))?;
let my_pk = state::my_public_key()
.ok_or(VectorError::Other("Not logged in".into()))?;
// Load known wrapper IDs + timestamps for negentropy fingerprinting
let all_items = db::wrappers::load_negentropy_items().unwrap_or_default();
// Filter items to time window (or use all for full sync)
let (items, filter) = if let Some(days) = since_days {
let since_ts = Timestamp::now().as_secs().saturating_sub(days * 24 * 3600);
let items: Vec<(EventId, Timestamp)> = all_items.iter()
.filter(|(_, ts)| ts.as_secs() >= since_ts)
.cloned()
.collect();
let filter = Filter::new()
.pubkey(my_pk)
.kind(Kind::GiftWrap)
.since(Timestamp::from_secs(since_ts));
(items, filter)
} else {
let filter = Filter::new()
.pubkey(my_pk)
.kind(Kind::GiftWrap);
(all_items, filter)
};
log_info!("[SyncDMs] {} negentropy items, since_days={:?}", items.len(), since_days);
// Dry-run negentropy: exchange fingerprints to identify missing events
let sync_opts = nostr_sdk::prelude::SyncOptions::new()
.direction(nostr_sdk::prelude::SyncDirection::Down)
.initial_timeout(std::time::Duration::from_secs(10))
.dry_run();
// Race all relays — first to reconcile drives the fetch. Relays with a
// fresh no-NIP-77 verdict skip the doomed reconcile and get a bounded
// REQ pass below instead.
let relay_map = client.relays().await;
let (all_relays, no_neg_relays): (Vec<(RelayUrl, Relay)>, Vec<(RelayUrl, Relay)>) =
relay_map.iter()
.map(|(url, relay)| (url.clone(), relay.clone()))
.partition(|(url, _)| negentropy::neg_supported_cached(url.as_str()) != Some(false));
drop(relay_map);
let skipped_no_neg: Vec<String> = no_neg_relays.iter().map(|(u, _)| u.to_string()).collect();
if !skipped_no_neg.is_empty() {
log_info!("[SyncDMs] {} relay(s) on REQ path (no NIP-77)", skipped_no_neg.len());
}
// Tor-aware like the GUI path — a fixed clearnet budget over Tor makes
// a healthy relay's slow first frame look like connected-silence and
// earns it a false 24h no-NEG verdict in the shared account KV.
let neg_budget = relay_request_timeout(std::time::Duration::from_secs(10));
let neg_outer = neg_budget + std::time::Duration::from_secs(5);
let connect_allowance = relay_request_timeout(std::time::Duration::from_secs(3))
.min(neg_outer);
let mut relay_futs = futures_util::stream::FuturesUnordered::new();
for (url, relay) in &all_relays {
let url = url.clone();
let relay = relay.clone();
let f = filter.clone();
let i = items.clone();
let o = sync_opts.clone();
relay_futs.push(async move {
if !negentropy::wait_connected(&relay, connect_allowance).await {
return (url, None, false);
}
// Outer slack over the initial_timeout so the SDK's error
// (which distinguishes refusal from silence) surfaces first.
let result = tokio::time::timeout(
neg_outer,
relay.sync(f).items(i).opts(o),
).await;
let connected = relay.status() == RelayStatus::Connected;
(url, Some(result), connected)
});
}
// Collect missing IDs from all relays
let cap_session = state::SessionGuard::capture();
let mut all_missing: std::collections::HashSet<EventId> = std::collections::HashSet::new();
while let Some((url, result, connected)) = relay_futs.next().await {
let Some(result) = result else {
log_warn!("[SyncDMs] {} skipped: not connected", url);
continue;
};
match result {
Ok(Ok(recon)) => {
let count = recon.remote.len();
all_missing.extend(recon.remote);
log_info!("[SyncDMs] {} reconciled: {} missing", url, count);
if cap_session.is_valid() {
negentropy::record_neg_support(url.as_str(), true);
}
}
Ok(Err(e)) => {
log_warn!("[SyncDMs] {} failed: {}", url, e);
if cap_session.is_valid()
&& negentropy::classify_neg_sync_error(&e.to_string(), connected) == Some(false)
{
log_info!("[SyncDMs] {} marked no-NIP-77 for 24h", url);
negentropy::record_neg_support(url.as_str(), false);
}
}
Err(_) => log_warn!("[SyncDMs] {} timed out ({:?})", url, neg_outer),
}
}
let mut total_events = 0u32;
let mut new_messages = 0u32;
// No-NIP-77 relays still contribute: one bounded REQ over the same
// filter. The 500-event cap keeps a `since_days: None` call from
// pulling a whole mailbox — deep history is negentropy's job on the
// relays that speak it.
if !skipped_no_neg.is_empty() {
let req_filter = filter.clone().limit(500);
match client
.stream_events(nostr_sdk::prelude::ReqTarget::manual(
skipped_no_neg.iter().cloned().map(|u| (u, vec![req_filter.clone()])),
))
.timeout(std::time::Duration::from_secs(20))
.await
{
Ok(stream) => {
let mut seen: std::collections::HashSet<[u8; 32]> = std::collections::HashSet::new();
tokio::pin!(stream);
while let Some((_relay, res)) = stream.next().await {
let Ok(event) = res else { continue };
// Straddles the stream: a swap mid-drain must not push
// the old account's wrappers through the new account's
// pipeline (ErrorSkip would ledger them there).
if !cap_session.is_valid() { break; }
if !seen.insert(event.id.to_bytes()) { continue; }
total_events += 1;
let prepared = event_handler::prepare_event(event, &client, my_pk).await;
if event_handler::commit_prepared_event(prepared, false, handler).await {
new_messages += 1;
}
}
}
Err(e) => log_warn!("[SyncDMs] REQ pass failed: {}", e),
}
}
if all_missing.is_empty() {
log_info!("[SyncDMs] No missing events");
return Ok((total_events, new_messages));
}
// Fetch missing events in batches
log_info!("[SyncDMs] Fetching {} missing events", all_missing.len());
let ids: Vec<EventId> = all_missing.into_iter().collect();
let relay_strs: Vec<String> = client.relays().await.keys()
.map(|u| u.to_string()).collect();
const BATCH_SIZE: usize = 500;
for batch in ids.chunks(BATCH_SIZE) {
// The #p is not redundant: Ditto refuses gift-wrap REQs that carry
// neither authors nor #p, even authed — ids-only returns nothing.
let f = Filter::new().ids(batch.to_vec()).kind(Kind::GiftWrap).pubkey(my_pk);
match client
.stream_events(nostr_sdk::prelude::ReqTarget::manual(
relay_strs.iter().cloned().map(|u| (u, vec![f.clone()])),
))
.timeout(std::time::Duration::from_secs(30))
.await
{
Ok(stream) => {
let client_clone = client.clone();
let prepared_stream = stream
.filter_map(|(_relay, res)| async move { res.ok() })
.map(move |event| {
let c = client_clone.clone();
tokio::spawn(async move {
event_handler::prepare_event(event, &c, my_pk).await
})
})
.buffer_unordered(8);
tokio::pin!(prepared_stream);
while let Some(result) = prepared_stream.next().await {
total_events += 1;
if let Ok(prepared) = result {
if event_handler::commit_prepared_event(prepared, false, handler).await {
new_messages += 1;
}
}
}
}
Err(e) => log_warn!("[SyncDMs] Batch fetch error: {}", e),
}
}
log_info!("[SyncDMs] Complete: {} events processed, {} new messages", total_events, new_messages);
Ok((total_events, new_messages))
}
// ========================================================================
// Event Subscription
// ========================================================================
/// Subscribe to incoming DM events (NIP-17 GiftWraps).
///
/// Returns the subscription ID for use in a custom notification loop.
/// For a complete listen-and-process loop, use [`listen()`](Self::listen) instead.
pub async fn subscribe_dms(&self) -> Result<nostr_sdk::prelude::SubscriptionId> {
use nostr_sdk::prelude::*;
let client = state::nostr_client()
.ok_or(VectorError::Other("Not connected".into()))?;
let my_pk = state::my_public_key()
.ok_or(VectorError::Other("Not logged in".into()))?;
let filter = Filter::new()
.pubkey(my_pk)
.kind(Kind::GiftWrap)
.limit(0);
let output = client.subscribe(filter).await
.map_err(|e| VectorError::Nostr(e.to_string()))?;
Ok(output.value)
}
/// Catch up every locally-held Community: fold control / re-foundings / rekeys / banlist and
/// fetch recent messages into local state for each channel. State-only (does not replay to an
/// [`InboundEventHandler`]). Called at `listen()` start and periodically for outage resilience;
/// also safe to call manually after a known disconnect.
///
/// Catch up every locally-held Community. v1 channels are synced inline; a v2
/// community is ENQUEUED for the follow worker (control/rekey re-fold + adopt),
/// non-blocking. State-only (no handler replay of history). Called at `listen()`
/// start and on reconnect; safe to call manually — the v2 enqueue is a no-op if
/// no `listen()` worker is running.
pub async fn sync_communities(&self) -> Result<()> {
// Discover + rehydrate memberships from the 13302 across devices (CORD-02 §8),
// bootstrapping from the client's connected relays so even a fresh device that
// holds no community yet can find them. Best-effort.
{
use crate::community::{transport::LiveTransport, v2::service as v2};
let bootstrap: Vec<String> = match crate::state::nostr_client() {
Some(client) => client.relays().await.keys().map(|r| r.to_string()).collect(),
None => Vec::new(),
};
let transport = LiveTransport::with_timeout(std::time::Duration::from_secs(12));
if let Ok(outcome) = v2::sync_community_list(&transport, &bootstrap).await {
// Headless: core already dropped the rows; a GUI shell additionally clears the
// chat rows + STATE via `removed` (see `ListSyncOutcome`).
let joined = outcome.joined;
for c in &joined {
if community::v2::realtime::follow_worker_running() {
community::v2::realtime::enqueue_follow(c.id());
} else {
let _ = Self::v2_inline_follow(c.id()).await;
}
}
if !joined.is_empty() {
if let Some(client) = crate::state::nostr_client() {
community::v2::realtime::refresh_subscription(&client).await;
}
}
}
}
let ids = db::community::list_community_ids().map_err(VectorError::from)?;
for id in ids {
if matches!(db::community::community_protocol(&id).ok().flatten(), Some(crate::community::ConcordProtocol::V2)) {
// With a live listen() the coalescing worker owns the follow; headless
// (no worker) it would be dropped, so walk it inline instead.
if community::v2::realtime::follow_worker_running() {
community::v2::realtime::enqueue_follow(&id);
} else {
let _ = Self::v2_inline_follow(&id).await;
}
continue;
}
if let Ok(Some(community)) = db::community::load_community(&id) {
for ch in &community.channels {
let _ = self.sync_community_channel(&ch.id.to_hex(), 50).await;
}
}
}
Ok(())
}
/// Start listening for incoming DMs.
///
/// Blocks until the client disconnects. Processes GiftWraps
/// (DMs, files) → prepare_event → commit_prepared_event.
///
/// ```no_run
/// use vector_core::*;
/// use std::sync::Arc;
///
/// struct MyBot;
/// impl InboundEventHandler for MyBot {
/// fn on_dm_received(&self, chat_id: &str, msg: &Message, _is_new: bool) {
/// if msg.mine { return; }
/// let to = chat_id.to_string();
/// let reply = format!("Echo: {}", msg.content);
/// tokio::spawn(async move {
/// let _ = VectorCore.send_dm(&to, &reply).await;
/// });
/// }
/// }
///
/// # async fn example() -> vector_core::Result<()> {
/// let core = VectorCore::init(CoreConfig {
/// data_dir: "/tmp/bot-data".into(),
/// event_emitter: None,
/// })?;
/// core.login("nsec1...", None).await?;
/// core.listen(Arc::new(MyBot)).await?;
/// # Ok(())
/// # }
/// ```
pub async fn listen(&self, handler: Arc<dyn InboundEventHandler>) -> Result<()> {
use nostr_sdk::prelude::*;
let client = state::nostr_client()
.ok_or(VectorError::Other("Not connected".into()))?;
let my_pk = state::my_public_key()
.ok_or(VectorError::Other("Not logged in".into()))?;
// Start the stream-AUTH responder BEFORE any relay interaction: a gating
// relay issues its NIP-42 challenge ONCE per connection, and the DM
// subscribe below consumes it via nostr-sdk's user auto-auth — if the
// responder isn't already watching, that challenge is never remembered
// and the stream keys registered later can NEVER authenticate (the relay
// won't re-challenge an authed connection; the v2 sub dies silently).
community::v2::streamauth::ensure_responder(&client);
// Outage resilience — catch up on connect, then re-sync periodically.
//
// Catch up BEFORE going realtime so a bot that was offline folds any missed re-foundings /
// metadata / banlist changes (and recent messages) into local state, and subscribes at the
// CURRENT epoch pseudonyms. This is state-only: historical messages are not replayed to the
// handler (matches the gateway model) — query them via `get_messages`.
// Spawn the single per-community follow worker for this session; the v2
// follow queue (fed by dispatch, catch-up, and sync) drains through it.
community::v2::realtime::spawn_follow_worker(handler.clone());
let _ = self.sync_communities().await;
let _ = self.sync_dms(None, &NoOpEventHandler).await;
// Subscribe to DMs (GiftWraps) AND Community channel events — one loop dispatches both
// through the same handler, so `on_dm_received`/`on_community_message` share a sink.
let dm_sub_id = self.subscribe_dms().await?;
community::realtime::refresh_subscription(&client).await;
community::v2::realtime::refresh_subscription(&client).await;
// Outage resilience via the relay Monitor — event-driven, not polling.
//
// (1) Reconnect-driven catch-up: a `limit(0)` realtime sub never replays what was published
// while we were down, so a relay (re)connecting is exactly when we must catch up. On each
// Connected transition we refold consensus + reconcile DMs (NIP-77 negentropy → only the
// diff) and re-track the realtime sub at the current epochs. Idle when healthy. Stops on swap.
if let Some(monitor) = client.monitor() {
let mut rx = monitor.subscribe();
let session = state::SessionGuard::capture();
tokio::spawn(async move {
// Debounce reconnect bursts: StatusChanged is per-relay, but one catch-up queries the
// whole pool — so coalesce Connected transitions within a short window into one resync.
let mut last_resync: Option<std::time::Instant> = None;
while let Ok(notification) = rx.recv().await {
if !session.is_valid() {
return;
}
let MonitorNotification::StatusChanged { status, .. } = notification;
if status == RelayStatus::Connected {
if last_resync.is_some_and(|t| t.elapsed() < std::time::Duration::from_secs(3)) {
continue;
}
let _ = VectorCore.sync_communities().await;
let _ = VectorCore.sync_dms(None, &NoOpEventHandler).await;
if let Some(c) = state::nostr_client() {
community::realtime::refresh_subscription(&c).await;
community::v2::realtime::refresh_subscription(&c).await;
}
last_resync = Some(std::time::Instant::now());
}
}
});
}
// (2) Health probe: a relay can report Connected while silently dead. Every 60s probe each
// with a tiny query + timeout; a zombie is force-reconnected (which fires the monitor above
// → catch-up), and Disconnected/Terminated relays are reconnected directly.
{
let client_health = client.clone();
let session = state::SessionGuard::capture();
tokio::spawn(async move {
tokio::time::sleep(std::time::Duration::from_secs(30)).await; // warm-up
loop {
if !session.is_valid() {
return;
}
for (url, relay) in client_health.relays().await {
match relay.status() {
RelayStatus::Connected => {
let probe = tokio::time::timeout(
std::time::Duration::from_secs(10),
client_health
.fetch_events(nostr_sdk::prelude::ReqTarget::single(
url.to_string(),
[Filter::new().kind(Kind::Metadata).limit(1)],
))
.timeout(std::time::Duration::from_secs(8)),
)
.await;
if !matches!(probe, Ok(Ok(_))) {
let _ = relay.disconnect();
tokio::time::sleep(std::time::Duration::from_millis(500)).await;
let _ = relay.try_connect().timeout(crate::relay_connect_timeout(std::time::Duration::from_secs(10))).await;
}
}
RelayStatus::Terminated | RelayStatus::Disconnected => {
let _ = relay.try_connect().timeout(crate::relay_connect_timeout(std::time::Duration::from_secs(10))).await;
}
_ => {}
}
}
tokio::time::sleep(std::time::Duration::from_secs(60)).await;
}
});
}
let client_for_closure = client.clone();
// 0.45 removed `handle_notifications`; drive the stream directly. It ends when
// the client shuts down, which is what stops this loop on `swap_session`.
let mut notifications = client.notifications();
while let Some(notification) = notifications.next().await {
let handler = handler.clone();
let c = client_for_closure.clone();
let dm_sid = dm_sub_id.clone();
{
// Relay OKs feed the send pipeline: an OK that outlives the
// per-attempt wait still confirms delivery, and can rescue a
// message already marked Failed.
if let nostr_sdk::prelude::ClientNotification::Message { message, .. } = ¬ification {
if let nostr_sdk::prelude::RelayMessage::Ok { event_id, status, .. } = &**message {
sending::note_relay_ok(event_id, *status);
}
}
if let nostr_sdk::prelude::ClientNotification::Event { event, subscription_id, .. } = notification {
if subscription_id == dm_sid {
// DMs, files, reactions
let prepared = event_handler::prepare_event(*event, &c, my_pk).await;
event_handler::commit_prepared_event(prepared, true, &*handler).await;
} else if community::realtime::subscription_id().await.as_ref() == Some(&subscription_id)
|| community::realtime::poolwide_subscription_id().await.as_ref() == Some(&subscription_id)
{
// Community (v1) channel messages / reactions / edits / control editions.
// OR the pool-wide sub (the path that streams on Android) — else v1 events
// arriving under it match no branch and are silently dropped.
let session = state::SessionGuard::capture();
community::realtime::dispatch_event(&session, *event, handler.clone()).await;
} else if community::v2::realtime::subscription_id().await.as_ref() == Some(&subscription_id)
|| community::v2::realtime::poolwide_subscription_id().await.as_ref() == Some(&subscription_id)
{
// Concord v2 plane events (authors-addressed kind-1059/21059).
let session = state::SessionGuard::capture();
community::v2::realtime::dispatch_event(&session, *event, handler.clone()).await;
}
}
}
}
Ok(())
}
/// Disconnect and clean up.
pub async fn logout(&self) {
if let Some(client) = state::nostr_client() {
let _ = client.disconnect().await;
}
db::close_database();
}
/// Tear down the current session for an in-process account swap — the account-agnostic core of
/// the app's `reset_session()`. Advances the session generation FIRST so any background task
/// holding a `SessionGuard` short-circuits before it can touch the next account's storage; shuts
/// the client down (which ends any `listen()` notification loop bound to it, so the old account's
/// events can't land in the new account's DB); closes the DB pool; and clears the key vaults plus
/// all in-memory per-account state. Follow with `login()` to bind the next account, then re-attach
/// `listen()`. (The app's `reset_session()` additionally clears Tauri-only caches it owns.)
pub async fn swap_session(&self) {
// FIRST — invalidate every captured guard before any teardown begins.
state::bump_session_generation();
// Shut the client down before anything else: this detaches relay subscriptions and ends the
// prior `listen()` loop, so it stops firing the old account's events into the new session.
if let Some(client) = state::take_nostr_client() {
let _ = client.shutdown().await;
}
db::close_database();
// Key vaults + transient secrets.
state::ENCRYPTION_KEY.clear(&[&state::MY_SECRET_KEY]);
state::MY_SECRET_KEY.clear(&[&state::ENCRYPTION_KEY]);
{
use zeroize::Zeroize;
if let Ok(mut g) = state::MNEMONIC_SEED.lock() {
if let Some(s) = g.as_mut() { s.zeroize(); }
*g = None;
}
if let Ok(mut g) = state::PENDING_NSEC.lock() {
if let Some(s) = g.as_mut() { s.zeroize(); }
*g = None;
}
}
// In-memory per-account state owned by vector-core's globals.
{
let mut st = state::STATE.lock().await;
st.profiles.clear();
st.chats.clear();
st.db_loaded = false;
st.is_syncing = false;
}
state::WRAPPER_ID_CACHE.lock().await.clear();
state::PENDING_EVENTS.lock().await.clear();
state::set_active_chat(None);
crate::profile::sync::clear_profile_sync_queue();
crate::inbox_relays::clear_inbox_relay_cache();
// In-flight wrap confirmations carry the prior account's chat and
// message ids — a late OK must not "rescue" into the new session.
crate::sending::clear_wrap_confirms();
crate::emoji_packs::clear_nip65_cache();
// Chat/user row-id caches are PER-ACCOUNT (row ids belong to the prior account's DB). Not clearing
// them here let a swapped-in account resolve a channel/npub to the WRONG (prior-account) row id →
// saves FK-failed silently + reads hit the wrong row (e.g. a community member vanished post-swap).
crate::db::clear_id_caches();
// Community sync RAM cache (page cursors, history-start, in-flight, invite preload) is
// account-scoped — drop it so the next account can't read A's cursors/warmed pages. The
// generation stamp self-invalidates too, but clear explicitly for parity with the GUI swap.
crate::community::cache::clear();
// Community realtime route/subscription state is account-scoped (channel keys + banned sets);
// drop it so a swapped-in account can't listen on the prior account's pseudonyms.
crate::community::realtime::clear().await;
crate::community::v2::realtime::clear().await;
// Pooled plane connections are authed as the prior account's plane secret keys.
crate::community::transport::clear_plane_pool();
// Theme-pack emoji tags are account-scoped; leaving the prior account's set active would tag the
// next account's outbound messages with A's theme shortcodes (leaking A's pack Blossom URLs). The
// frontend re-registers the new account's theme, but only if it HAS one — clear to be safe.
crate::emoji_packs::set_theme_emoji_tags(Vec::new());
}
}
#[cfg(all(test, feature = "tor", not(target_arch = "wasm32")))]
mod transport_policy_tests {
use std::time::Duration;
/// ONE test covering proxy + budgets: the Tor preference is a process-global
/// atomic, so separate `#[test]` fns would race under the parallel runner.
#[test]
fn tor_transport_policy() {
let short = Duration::from_secs(5);
let long = Duration::from_secs(300);
// Tor off: connections may go direct, and every caller's clearnet budget
// passes through untouched so the common path is never slowed down.
crate::tor::set_tor_enabled_pref(false);
assert_eq!(super::tor_proxy_target(), None);
assert_eq!(super::relay_connect_timeout(short), short);
assert_eq!(super::relay_request_timeout(short), short);
// `RequiredButInactive` (Tor chosen, proxy not up yet) must raise the floor
// just like `Active`: that window is when connects are slowest, and treating
// it as clearnet is what tore relays down mid-handshake.
crate::tor::set_tor_enabled_pref(true);
assert!(matches!(
crate::tor::transport_state(),
crate::tor::TorTransportState::RequiredButInactive
));
// THE leak invariant: `None` here means "connect direct". While Tor is the
// chosen transport it must never be None — least of all during bootstrap,
// which is exactly when a naive implementation falls through to direct.
// Silent failure with an IP disclosure as the cost, so it gets a permanent
// guard rather than a one-off manual check.
assert_eq!(
super::tor_proxy_target(),
Some(crate::tor::blackhole_proxy_addr()),
"Tor enabled but inactive must blackhole, never connect direct"
);
assert_eq!(super::relay_connect_timeout(short), super::TOR_RELAY_CONNECT_FLOOR);
assert_eq!(super::relay_request_timeout(short), super::TOR_RELAY_REQUEST_FLOOR);
// The floor only ever raises. A caller asking for longer than the floor has
// a reason to, and shortening it would abort operations that used to finish.
for tor in [true, false] {
crate::tor::set_tor_enabled_pref(tor);
assert_eq!(super::relay_connect_timeout(long), long, "connect, tor={tor}");
assert_eq!(super::relay_request_timeout(long), long, "request, tor={tor}");
}
}
}
#[cfg(test)]
mod facade_tests {
use super::*;
/// SSRF regression: `download_attachment` must reject a private/link-local URL via
/// `validate_url_not_private` BEFORE any network fetch (the URL is attacker-controlled).
#[tokio::test]
async fn download_attachment_rejects_private_url() {
let att = crate::types::Attachment {
url: "http://169.254.169.254/latest/meta-data/".to_string(),
..Default::default()
};
match VectorCore.download_attachment(&att).await {
Err(VectorError::Other(msg)) => {
assert!(msg.contains("Private/internal"), "expected SSRF rejection, got: {msg}")
}
other => panic!("expected SSRF rejection, got {other:?}"),
}
}
#[tokio::test]
async fn download_attachment_rejects_empty_url() {
let att = crate::types::Attachment::default();
assert!(VectorCore.download_attachment(&att).await.is_err());
}
/// The facade dual-stack dispatch: a v2 community surfaces in `list_communities`
/// with `version: 2`, and `v2_community_for_channel` routes its channels to the
/// v2 send path — while a v1 community is untouched (version 1).
#[tokio::test]
async fn list_communities_and_channel_routing_are_protocol_aware() {
use crate::community::transport::memory::MemoryRelay;
use nostr_sdk::prelude::Keys;
let _guard = crate::db::DB_TEST_GUARD.lock().unwrap_or_else(|e| e.into_inner());
crate::db::close_database();
crate::db::clear_id_caches();
let tmp = tempfile::tempdir().unwrap();
// A valid bech32-charset, npub-length account dir name.
let acct = {
const B: &[u8] = b"qpzry9x8gf2tvdw0s3jn54khce6mua7l";
let mut s = String::from("npub1");
for i in 0..58 {
s.push(B[(i * 7 + 3) % 32] as char);
}
s
};
std::fs::create_dir_all(tmp.path().join(&acct)).unwrap();
crate::db::set_app_data_dir(tmp.path().to_path_buf());
crate::db::set_current_account(acct.clone()).unwrap();
crate::db::init_database(&acct).unwrap();
let _ = crate::state::take_nostr_client();
let me = Keys::generate();
crate::state::MY_SECRET_KEY.store_from_keys(&me, &[]);
crate::state::set_my_public_key(me.public_key());
// Create a v2 community directly through the v2 service (offline).
let relay = MemoryRelay::new();
let community = crate::community::v2::service::create_community(&relay, "V2 Guild", vec!["wss://r".into()], None)
.await
.unwrap();
let channel_hex = crate::simd::hex::bytes_to_hex_32(&community.channels[0].id.0);
// The facade lists it as version 2, owned by me.
let listed = VectorCore.list_communities().await;
let v2 = listed.iter().find(|c| c["version"] == 2).expect("the v2 community is listed");
assert_eq!(v2["name"], "V2 Guild");
assert_eq!(v2["is_owner"], true);
assert_eq!(v2["channels"][0]["channel_id"], channel_hex);
// The channel routes to the v2 send path.
assert_eq!(
VectorCore.v2_community_for_channel(&channel_hex).unwrap(),
Some(community.identity.community_id),
"a v2 channel is routed to v2"
);
// An unknown channel routes nowhere (would fall through to v1).
assert_eq!(VectorCore.v2_community_for_channel(&"00".repeat(32)).unwrap(), None);
}
/// The facade builds a v2 invite URL by trimming `/invite` off the v1
/// constant (v2's `build_invite_url` re-appends its own `/invite/<naddr>`).
/// Lock that the derived URL is v2-shaped and round-trips through the v2
/// parser — a stale constant or a double-`/invite` would silently break joins.
#[test]
fn v2_invite_url_base_derivation_round_trips() {
use crate::community::v2::derive::TOKEN_LEN;
use crate::community::v2::invite::{build_invite_url, parse_invite_link};
use nostr_sdk::prelude::Keys;
let base = crate::community::public_invite::INVITE_URL_BASE.trim_end_matches("/invite");
assert!(!base.ends_with("/invite"), "the bare domain must not carry /invite");
let signer = Keys::generate();
let token = [0x07u8; TOKEN_LEN];
let url = build_invite_url(base, &signer.public_key(), &token, &[]).unwrap();
assert!(url.contains("/invite/"), "a v2 URL carries the naddr path");
assert!(!url.contains("/invite/invite/"), "no doubled /invite from the base");
let parsed = parse_invite_link(&url).unwrap();
assert_eq!(parsed.link_signer, signer.public_key());
assert_eq!(parsed.token, token);
}
}