Spaces:
Sleeping
Sleeping
File size: 130,707 Bytes
f6266b9 | 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 | <!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WindsurfAPI bydwgx1337 控制台</title>
<style>
:root {
--bg: #09090b;
--bg-elev: #0d0d10;
--surface: #111114;
--surface-2: #17171c;
--surface-3: #1c1c22;
--border: #26262e;
--border-strong: #32323c;
--text: #f4f4f5;
--text-muted: #a1a1aa;
--text-dim: #71717a;
--accent: #6366f1;
--accent-hover: #7c7ff5;
--accent-soft: rgba(99, 102, 241, .14);
--success: #22c55e;
--success-soft: rgba(34, 197, 94, .14);
--warn: #f59e0b;
--warn-soft: rgba(245, 158, 11, .14);
--error: #ef4444;
--error-soft: rgba(239, 68, 68, .14);
--info: #3b82f6;
--info-soft: rgba(59, 130, 246, .14);
--radius: 10px;
--radius-sm: 6px;
--radius-lg: 14px;
--shadow: 0 1px 2px rgba(0,0,0,.4), 0 4px 12px rgba(0,0,0,.2);
--shadow-lg: 0 10px 40px rgba(0,0,0,.4);
--font: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', system-ui, sans-serif;
--mono: 'JetBrains Mono', 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
font-family: var(--font);
background: var(--bg);
color: var(--text);
font-size: 14px;
line-height: 1.5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: flex;
min-height: 100vh;
}
/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 5px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--border-strong); }
a { color: var(--accent); text-decoration: none; }
code {
font-family: var(--mono);
font-size: 12px;
background: var(--surface-2);
color: var(--text);
padding: 2px 6px;
border-radius: 4px;
border: 1px solid var(--border);
}
/* ─── Sidebar ──────────────────────────────────── */
.sidebar {
width: 232px;
background: var(--surface);
border-right: 1px solid var(--border);
position: fixed;
top: 0; left: 0; bottom: 0;
display: flex;
flex-direction: column;
z-index: 10;
}
.sidebar .brand {
padding: 20px 22px 18px;
display: flex;
align-items: center;
gap: 10px;
border-bottom: 1px solid var(--border);
}
.sidebar .brand-logo {
width: 32px; height: 32px;
border-radius: 8px;
background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 100%);
display: flex; align-items: center; justify-content: center;
font-weight: 800; color: #fff; font-size: 15px;
box-shadow: 0 4px 12px rgba(99,102,241,.35);
}
.sidebar .brand-name { font-size: 15px; font-weight: 600; letter-spacing: -.01em; }
.sidebar .brand-sub { font-size: 11px; color: var(--text-dim); margin-top: 1px; }
.sidebar nav { flex: 1; padding: 12px 10px; overflow-y: auto; }
.sidebar nav .nav-group { margin-bottom: 18px; }
.sidebar nav .nav-group-label {
font-size: 10px;
text-transform: uppercase;
letter-spacing: .08em;
color: var(--text-dim);
padding: 0 12px 6px;
font-weight: 600;
}
.sidebar nav a {
display: flex;
align-items: center;
gap: 10px;
padding: 8px 12px;
color: var(--text-muted);
font-size: 13px;
font-weight: 500;
border-radius: var(--radius-sm);
transition: all .15s;
margin-bottom: 2px;
}
.sidebar nav a:hover { color: var(--text); background: var(--surface-2); }
.sidebar nav a.active {
color: var(--text);
background: var(--surface-3);
box-shadow: inset 2px 0 0 var(--accent);
}
.sidebar nav a svg { width: 16px; height: 16px; stroke-width: 2; flex-shrink: 0; }
.sidebar .footer {
padding: 12px 18px;
font-size: 11px;
color: var(--text-dim);
border-top: 1px solid var(--border);
display: flex;
justify-content: space-between;
align-items: center;
}
.sidebar .footer .ver { font-family: var(--mono); }
/* ─── Main Layout ─────────────────────────────── */
.main {
margin-left: 232px;
flex: 1;
padding: 28px 36px 40px;
min-height: 100vh;
max-width: 1400px;
}
.page-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 24px;
gap: 16px;
flex-wrap: wrap;
}
.page-title {
font-size: 22px;
font-weight: 700;
letter-spacing: -.02em;
}
.page-subtitle {
font-size: 13px;
color: var(--text-muted);
margin-top: 2px;
}
.panel { display: none; animation: fadeIn .2s ease; }
.panel.active { display: block; }
@keyframes fadeIn {
from { opacity: 0; transform: translateY(4px); }
to { opacity: 1; transform: translateY(0); }
}
/* ─── Cards ───────────────────────────────────── */
.card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 18px 20px;
transition: border-color .15s;
}
.card:hover { border-color: var(--border-strong); }
.card-header {
display: flex;
align-items: flex-start;
justify-content: space-between;
margin-bottom: 4px;
}
.card-title {
font-size: 12px;
font-weight: 500;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: .04em;
}
.card-icon {
width: 18px; height: 18px;
color: var(--text-dim);
}
.card-value {
font-size: 26px;
font-weight: 700;
letter-spacing: -.02em;
line-height: 1.2;
margin-top: 6px;
}
.card-sub { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.card.accent .card-value { color: var(--accent); }
.card.success .card-value { color: var(--success); }
.card.warn .card-value { color: var(--warn); }
.card.error .card-value { color: var(--error); }
.card.info .card-value { color: var(--info); }
.metrics-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
gap: 14px;
margin-bottom: 24px;
}
/* ─── Section Block ───────────────────────────── */
.section {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius);
margin-bottom: 20px;
overflow: hidden;
}
.section-header {
padding: 16px 20px;
border-bottom: 1px solid var(--border);
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
flex-wrap: wrap;
}
.section-title {
font-size: 14px;
font-weight: 600;
letter-spacing: -.01em;
}
.section-desc {
font-size: 12px;
color: var(--text-muted);
margin-top: 2px;
font-weight: 400;
}
.section-body { padding: 20px; }
.section-body.tight { padding: 0; }
/* ─── Buttons ─────────────────────────────────── */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
padding: 8px 16px;
font-size: 13px;
font-weight: 500;
font-family: var(--font);
border: 1px solid transparent;
border-radius: var(--radius-sm);
cursor: pointer;
transition: all .15s;
background: var(--surface-2);
color: var(--text);
white-space: nowrap;
line-height: 1.2;
}
.btn:hover:not(:disabled) { background: var(--surface-3); border-color: var(--border-strong); }
.btn:active:not(:disabled) { transform: translateY(1px); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn svg { width: 14px; height: 14px; }
.btn-primary {
background: var(--accent);
color: #fff;
border-color: var(--accent);
box-shadow: 0 1px 3px rgba(99,102,241,.3);
}
.btn-primary:hover:not(:disabled) { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-outline {
background: transparent;
border-color: var(--border-strong);
color: var(--text);
}
.btn-outline:hover:not(:disabled) { background: var(--surface-2); border-color: var(--accent); }
.btn-ghost { background: transparent; border-color: transparent; color: var(--text-muted); }
.btn-ghost:hover:not(:disabled) { background: var(--surface-2); color: var(--text); }
.btn-danger {
background: var(--error);
color: #fff;
border-color: var(--error);
}
.btn-danger:hover:not(:disabled) { background: #dc2626; border-color: #dc2626; }
.btn-success {
background: var(--success);
color: #fff;
border-color: var(--success);
}
.btn-success:hover:not(:disabled) { background: #16a34a; border-color: #16a34a; }
.btn-sm { padding: 5px 10px; font-size: 12px; }
.btn-xs { padding: 3px 8px; font-size: 11px; }
.btn-icon { padding: 7px; }
.btn-group { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.btn.active, .btn.active:hover {
background: var(--accent); color: #fff; border-color: var(--accent);
}
/* ─── Switch ──────────────────────────────────── */
.switch { position: relative; display: inline-block; width: 40px; height: 22px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch-slider {
position: absolute; cursor: pointer; inset: 0;
background: var(--surface-2); border: 1px solid var(--border);
border-radius: 22px; transition: .18s;
}
.switch-slider::before {
content: ''; position: absolute; height: 16px; width: 16px;
left: 2px; bottom: 2px; background: var(--text);
border-radius: 50%; transition: .18s;
}
.switch input:checked + .switch-slider {
background: var(--accent); border-color: var(--accent);
}
.switch input:checked + .switch-slider::before { transform: translateX(18px); background: #fff; }
/* ─── Form Controls ───────────────────────────── */
.input, .select, .textarea {
display: block;
width: 100%;
padding: 9px 12px;
font-size: 13px;
font-family: var(--font);
background: var(--bg-elev);
border: 1px solid var(--border);
border-radius: var(--radius-sm);
color: var(--text);
outline: none;
transition: all .15s;
line-height: 1.35;
}
.input:hover, .select:hover, .textarea:hover { border-color: var(--border-strong); }
.input:focus, .select:focus, .textarea:focus {
border-color: var(--accent);
box-shadow: 0 0 0 3px var(--accent-soft);
}
.input::placeholder, .textarea::placeholder { color: var(--text-dim); }
.select {
appearance: none;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
background-repeat: no-repeat;
background-position: right 10px center;
padding-right: 32px;
cursor: pointer;
}
.select option { background: var(--surface); color: var(--text); }
.field { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 0; }
.field-label {
font-size: 12px;
color: var(--text-muted);
font-weight: 500;
}
.field-hint {
font-size: 12px;
color: var(--text-dim);
line-height: 1.5;
}
.field-row {
display: grid;
gap: 12px;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
align-items: end;
}
.field-row-actions {
display: flex;
gap: 8px;
margin-top: 14px;
flex-wrap: wrap;
}
/* Input group (prefix + input) */
.input-group { display: flex; gap: 6px; align-items: stretch; }
.input-group .input { flex: 1; }
/* Switch / Checkbox */
.checkbox {
display: inline-flex;
align-items: center;
gap: 8px;
cursor: pointer;
font-size: 13px;
color: var(--text-muted);
user-select: none;
}
.checkbox input { position: absolute; opacity: 0; pointer-events: none; }
.checkbox .box {
width: 16px; height: 16px;
border: 1.5px solid var(--border-strong);
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
background: var(--bg-elev);
transition: all .15s;
flex-shrink: 0;
}
.checkbox input:checked + .box {
background: var(--accent);
border-color: var(--accent);
}
.checkbox input:checked + .box::after {
content: '';
width: 4px; height: 8px;
border: solid #fff;
border-width: 0 2px 2px 0;
transform: rotate(45deg) translateY(-1px);
}
.checkbox:hover .box { border-color: var(--accent); }
/* Tab-style radio group */
.segmented {
display: inline-flex;
background: var(--bg-elev);
border: 1px solid var(--border);
border-radius: var(--radius-sm);
padding: 3px;
gap: 2px;
}
.segmented label {
padding: 6px 14px;
font-size: 12px;
font-weight: 500;
color: var(--text-muted);
cursor: pointer;
border-radius: 5px;
transition: all .15s;
position: relative;
}
.segmented label input { position: absolute; opacity: 0; pointer-events: none; }
.segmented label:hover { color: var(--text); }
.segmented label:has(input:checked) {
background: var(--surface-3);
color: var(--text);
box-shadow: 0 1px 2px rgba(0,0,0,.3);
}
/* ─── Tables ──────────────────────────────────── */
.table-wrap {
overflow-x: auto;
border-radius: var(--radius);
}
table {
width: 100%;
border-collapse: collapse;
font-size: 13px;
}
thead th {
text-align: left;
padding: 11px 16px;
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .04em;
color: var(--text-muted);
background: var(--surface-2);
border-bottom: 1px solid var(--border);
white-space: nowrap;
}
tbody td {
padding: 11px 16px;
border-bottom: 1px solid var(--border);
vertical-align: middle;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr { transition: background .1s; }
tbody tr:hover td { background: var(--surface-2); }
.empty-row td {
text-align: center;
color: var(--text-dim);
padding: 32px 16px;
font-style: italic;
}
/* ─── Badges ──────────────────────────────────── */
.badge {
display: inline-flex;
align-items: center;
gap: 4px;
padding: 2px 8px;
border-radius: 999px;
font-size: 11px;
font-weight: 600;
line-height: 1.5;
border: 1px solid transparent;
}
.badge::before {
content: '';
width: 6px; height: 6px;
border-radius: 50%;
background: currentColor;
}
.badge.active, .badge.running, .badge.success {
background: var(--success-soft);
color: var(--success);
}
.badge.error, .badge.stopped {
background: var(--error-soft);
color: var(--error);
}
.badge.disabled, .badge.muted {
background: var(--surface-3);
color: var(--text-muted);
}
.badge.warn {
background: var(--warn-soft);
color: var(--warn);
}
.badge.info, .badge.pro {
background: var(--info-soft);
color: var(--info);
}
.badge.no-dot::before { display: none; }
/* Tier pill */
.tier {
display: inline-flex;
align-items: center;
padding: 2px 10px;
border-radius: 5px;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .04em;
}
.tier.pro { background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff; }
.tier.free { background: var(--info-soft); color: var(--info); }
.tier.expired { background: var(--error-soft); color: var(--error); }
.tier.unknown { background: var(--surface-3); color: var(--text-muted); }
/* ─── LS Pool Cards ───────────────────────────── */
.ls-pool {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
gap: 12px;
}
.ls-inst {
padding: 14px 16px;
background: var(--bg-elev);
border: 1px solid var(--border);
border-radius: var(--radius-sm);
font-size: 12px;
}
.ls-inst .ls-key {
font-weight: 600;
color: var(--text);
font-size: 13px;
display: flex;
align-items: center;
gap: 6px;
margin-bottom: 6px;
}
.ls-inst .ls-dot {
width: 8px; height: 8px;
border-radius: 50%;
background: var(--success);
box-shadow: 0 0 8px var(--success);
}
.ls-inst .ls-dot.pending { background: var(--warn); box-shadow: 0 0 8px var(--warn); }
.ls-inst .ls-meta { color: var(--text-dim); font-family: var(--mono); font-size: 11px; margin-top: 2px; }
/* ─── Model Chips ─────────────────────────────── */
.model-chips {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin: 10px 0;
}
.model-chip {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 5px 11px;
border-radius: 6px;
font-size: 12px;
border: 1px solid var(--border);
background: var(--bg-elev);
color: var(--text-muted);
cursor: pointer;
transition: all .15s;
font-weight: 500;
}
.model-chip:hover {
border-color: var(--accent);
color: var(--text);
}
.model-chip.selected {
background: var(--accent-soft);
border-color: var(--accent);
color: var(--accent);
}
.model-chip .remove {
color: var(--error);
font-weight: 700;
cursor: pointer;
padding: 0 2px;
}
.provider-group { margin-bottom: 16px; }
.provider-label {
font-size: 10px;
color: var(--text-dim);
text-transform: uppercase;
letter-spacing: .08em;
margin-bottom: 6px;
font-weight: 600;
}
/* ─── Log Viewer ──────────────────────────────── */
.log-container {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius);
height: 520px;
overflow-y: auto;
font-family: var(--mono);
font-size: 12px;
line-height: 1.6;
}
.log-entry {
padding: 3px 16px;
border-bottom: 1px solid rgba(255,255,255,.02);
display: flex;
gap: 10px;
align-items: baseline;
word-break: break-all;
}
.log-entry:hover { background: var(--surface-2); }
.log-entry .ts { color: var(--text-dim); flex-shrink: 0; }
.log-entry .lvl {
font-weight: 700;
flex-shrink: 0;
width: 50px;
}
.log-entry.debug .lvl { color: var(--text-dim); }
.log-entry.info .lvl { color: var(--info); }
.log-entry.warn .lvl { color: var(--warn); }
.log-entry.error .lvl { color: var(--error); }
.log-entry.error { background: rgba(239,68,68,.03); }
.log-controls {
display: flex;
gap: 10px;
align-items: center;
flex-wrap: wrap;
margin-bottom: 14px;
}
.log-controls .input, .log-controls .select { width: auto; }
.log-controls .search { flex: 1; min-width: 200px; }
/* ─── Chart ───────────────────────────────────── */
.chart {
padding: 20px;
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius);
margin-bottom: 20px;
}
.chart h3 { font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.bars {
display: flex;
align-items: flex-end;
gap: 3px;
height: 140px;
}
.bar-wrap {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
height: 100%;
justify-content: flex-end;
position: relative;
}
.bar {
width: 100%;
min-width: 6px;
background: linear-gradient(to top, var(--accent), var(--accent-hover));
border-radius: 3px 3px 0 0;
transition: height .4s cubic-bezier(.4,0,.2,1);
}
.bar.has-errors {
background: linear-gradient(to top, var(--error), var(--accent));
}
.bar-wrap:hover .bar { filter: brightness(1.2); }
.bar-label {
font-size: 9px;
color: var(--text-dim);
margin-top: 4px;
font-family: var(--mono);
}
/* ─── Toast ───────────────────────────────────── */
.toast-stack {
position: fixed;
bottom: 24px;
right: 24px;
display: flex;
flex-direction: column-reverse;
gap: 10px;
z-index: 9999;
pointer-events: none;
}
.toast {
padding: 12px 18px;
border-radius: var(--radius-sm);
font-size: 13px;
background: var(--surface);
border: 1px solid var(--border);
box-shadow: var(--shadow-lg);
animation: slideIn .25s ease;
pointer-events: auto;
max-width: 400px;
display: flex;
align-items: center;
gap: 10px;
}
.toast.success { border-left: 3px solid var(--success); }
.toast.error { border-left: 3px solid var(--error); }
.toast.info { border-left: 3px solid var(--info); }
@keyframes slideIn {
from { opacity: 0; transform: translateX(20px); }
to { opacity: 1; transform: translateX(0); }
}
/* ─── Modal ───────────────────────────────────── */
.modal-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,.7);
backdrop-filter: blur(4px);
display: flex;
align-items: center;
justify-content: center;
z-index: 100;
animation: fadeIn .15s ease;
}
.modal {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
width: 90%;
max-width: 440px;
box-shadow: var(--shadow-lg);
overflow: hidden;
animation: modalIn .2s cubic-bezier(.16,1,.3,1);
}
@keyframes modalIn {
from { opacity: 0; transform: translateY(-10px) scale(.98); }
to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-header {
padding: 20px 24px 12px;
}
.modal-title { font-size: 16px; font-weight: 600; }
.modal-desc { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.modal-body { padding: 12px 24px 20px; }
.modal-footer {
padding: 14px 24px;
background: var(--surface-2);
display: flex;
justify-content: flex-end;
gap: 8px;
border-top: 1px solid var(--border);
}
/* ─── Login Overlay ───────────────────────────── */
.login-overlay {
position: fixed;
inset: 0;
background: radial-gradient(ellipse at center, rgba(99,102,241,.08) 0%, var(--bg) 70%);
display: flex;
align-items: center;
justify-content: center;
z-index: 200;
}
.login-box {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 36px 32px;
width: 380px;
box-shadow: var(--shadow-lg);
}
.login-box .login-logo {
width: 56px; height: 56px;
margin: 0 auto 18px;
border-radius: 14px;
background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 100%);
display: flex; align-items: center; justify-content: center;
font-weight: 800; font-size: 22px; color: #fff;
box-shadow: 0 10px 30px rgba(99,102,241,.35);
}
.login-box h3 { text-align: center; font-size: 18px; margin-bottom: 8px; }
.login-box p { text-align: center; font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.login-box .input { margin-bottom: 14px; }
.login-box .btn { width: 100%; padding: 11px; font-weight: 600; }
/* ─── Spinner ─────────────────────────────────── */
.spinner {
display: inline-block;
width: 14px; height: 14px;
border: 2px solid rgba(255,255,255,.2);
border-top-color: currentColor;
border-radius: 50%;
animation: spin .7s linear infinite;
vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }
/* ─── Capability Markers ──────────────────────── */
.cap-list { display: inline-flex; flex-wrap: wrap; gap: 4px; }
.cap-item {
font-size: 10px;
padding: 1px 7px;
border-radius: 4px;
font-family: var(--mono);
font-weight: 600;
}
.cap-item.ok { background: var(--success-soft); color: var(--success); }
.cap-item.fail { background: var(--error-soft); color: var(--error); text-decoration: line-through; }
/* ─── Utilities ───────────────────────────────── */
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; }
.mt-2 { margin-top: 8px; } .mt-3 { margin-top: 12px; } .mt-4 { margin-top: 16px; }
.text-muted { color: var(--text-muted); }
.text-dim { color: var(--text-dim); }
.text-sm { font-size: 12px; }
.text-xs { font-size: 11px; }
.nowrap { white-space: nowrap; }
.hidden { display: none !important; }
.break-all { word-break: break-all; }
/* ─── Responsive ──────────────────────────────── */
@media (max-width: 900px) {
.sidebar { width: 60px; }
.sidebar .brand-name, .sidebar .brand-sub, .sidebar nav a span, .sidebar .footer .ver, .sidebar .nav-group-label { display: none; }
.sidebar .brand { justify-content: center; padding: 20px 0; }
.sidebar nav a { justify-content: center; padding: 10px; }
.main { margin-left: 60px; padding: 20px 16px; }
}
</style>
<script type="module">
import { initializeApp } from 'https://www.gstatic.com/firebasejs/11.6.0/firebase-app.js';
import { getAuth, signInWithPopup, GoogleAuthProvider, GithubAuthProvider } from 'https://www.gstatic.com/firebasejs/11.6.0/firebase-auth.js';
const _fbApp = initializeApp({
apiKey: 'AIzaSyDsOl-1XpT5err0Tcnx8FFod1H8gVGIycY',
authDomain: 'exa2-fb170.firebaseapp.com',
projectId: 'exa2-fb170',
});
const _fbAuth = getAuth(_fbApp);
window._firebaseOAuth = async function(provider) {
const p = provider === 'github' ? new GithubAuthProvider() : new GoogleAuthProvider();
if (provider === 'google') p.addScope('email');
const result = await signInWithPopup(_fbAuth, p);
const idToken = await result.user.getIdToken();
return {
idToken,
refreshToken: result.user.stsTokenManager?.refreshToken || '',
email: result.user.email || '',
provider,
};
};
</script>
</head>
<body>
<!-- ════════ Sidebar ════════ -->
<aside class="sidebar">
<div class="brand">
<div class="brand-logo">W</div>
<div>
<div class="brand-name">WindsurfAPI <span style="font-size:10px;opacity:.6;vertical-align:top;margin-left:2px">bydwgx1337</span></div>
<div class="brand-sub" data-i18n="brand.sub">管理控制台</div>
</div>
</div>
<nav>
<div class="nav-group">
<div class="nav-group-label" data-i18n="nav.group.overview">概览</div>
<a href="#overview" class="active" data-panel="overview">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="7" height="7"/><rect x="14" y="3" width="7" height="7"/><rect x="14" y="14" width="7" height="7"/><rect x="3" y="14" width="7" height="7"/></svg>
<span data-i18n="nav.overview">仪表盘</span>
</a>
<a href="#stats" data-panel="stats">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="20" x2="18" y2="10"/><line x1="12" y1="20" x2="12" y2="4"/><line x1="6" y1="20" x2="6" y2="14"/></svg>
<span data-i18n="nav.stats">统计分析</span>
</a>
</div>
<div class="nav-group">
<div class="nav-group-label" data-i18n="nav.group.account">账号</div>
<a href="#windsurf-login" data-panel="windsurf-login">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"/><polyline points="10 17 15 12 10 7"/><line x1="15" y1="12" x2="3" y2="12"/></svg>
<span data-i18n="nav.windsurf-login">登录取号</span>
</a>
<a href="#accounts" data-panel="accounts">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>
<span data-i18n="nav.accounts">账号管理</span>
</a>
<a href="#bans" data-panel="bans">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"/><line x1="12" y1="9" x2="12" y2="13"/><line x1="12" y1="17" x2="12.01" y2="17"/></svg>
<span data-i18n="nav.bans">异常监测</span>
</a>
</div>
<div class="nav-group">
<div class="nav-group-label" data-i18n="nav.group.system">系统</div>
<a href="#models" data-panel="models">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2L2 7l10 5 10-5-10-5z"/><path d="M2 17l10 5 10-5"/><path d="M2 12l10 5 10-5"/></svg>
<span data-i18n="nav.models">模型控制</span>
</a>
<a href="#proxy" data-panel="proxy">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="M17 1l4 4-4 4"/><path d="M3 11V9a4 4 0 0 1 4-4h14"/><path d="M7 23l-4-4 4-4"/><path d="M21 13v2a4 4 0 0 1-4 4H3"/></svg>
<span data-i18n="nav.proxy">代理配置</span>
</a>
<a href="#logs" data-panel="logs">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/><polyline points="10 9 9 9 8 9"/></svg>
<span data-i18n="nav.logs">运行日志</span>
</a>
<a href="#experimental" data-panel="experimental">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="M10 2v7.31"/><path d="M14 9.3V2"/><path d="M8.5 2h7"/><path d="M14 9.3a6.5 6.5 0 1 1-4 0"/></svg>
<span data-i18n="nav.experimental">实验性功能</span>
</a>
</div>
</nav>
<div class="footer">
<button class="btn btn-ghost btn-xs" onclick="App.toggleLang()" title="Switch language" style="margin-right:8px">
<span id="lang-indicator">中</span> / EN
</button>
<span>© Windsurf</span>
<span class="ver" id="sidebar-ver" title="版本">v1.2.0</span>
</div>
</aside>
<!-- ════════ Main ════════ -->
<main class="main">
<!-- Overview -->
<section class="panel active" id="p-overview">
<div class="page-header">
<div>
<h1 class="page-title" data-i18n="page.overview">仪表盘</h1>
<div class="page-subtitle">系统运行状态与关键指标概览</div>
</div>
<div class="btn-group">
<button class="btn btn-outline btn-sm" id="btn-check-update" onclick="App.checkUpdate()">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M21 12a9 9 0 0 1-9 9 9 9 0 0 1-6.24-2.52L3 21"/><path d="M3 12a9 9 0 0 1 9-9 9 9 0 0 1 6.24 2.52L21 3"/><path d="M21 3v6h-6"/><path d="M3 21v-6h6"/></svg>
检查更新
</button>
<button class="btn btn-primary btn-sm hidden" id="btn-apply-update" onclick="App.applyUpdate()">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M12 2v20M2 12h20"/></svg>
<span id="btn-apply-update-text">一键更新并重启</span>
</button>
</div>
</div>
<div id="update-status" class="section hidden" style="padding:12px;margin-bottom:12px"></div>
<div class="metrics-grid" id="overview-cards"></div>
<div class="section">
<div class="section-header">
<div>
<div class="section-title">Language Server</div>
<div class="section-desc">语言服务器实例状态</div>
</div>
<button class="btn btn-outline btn-sm" onclick="App.restartLs()">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><polyline points="23 4 23 10 17 10"/><path d="M20.49 15a9 9 0 1 1-2.12-9.36L23 10"/></svg>
重启
</button>
</div>
<div class="section-body">
<div id="ls-status"></div>
</div>
</div>
</section>
<!-- Windsurf Login -->
<section class="panel" id="p-windsurf-login">
<div class="page-header">
<div>
<h1 class="page-title" data-i18n="page.windsurf-login">登录取号</h1>
<div class="page-subtitle">支持 Google / GitHub / 邮箱密码 三种方式登录 Windsurf 获取 API Key</div>
</div>
</div>
<div class="section">
<div class="section-header">
<div>
<div class="section-title">快捷登录(推荐)</div>
<div class="section-desc">用你的 Google 或 GitHub 账号直接登录 Windsurf 无需密码</div>
</div>
</div>
<div class="section-body">
<div style="display:flex;gap:12px;flex-wrap:wrap">
<button class="btn" onclick="App.oauthLogin('google')" id="oauth-google-btn" style="background:#4285F4;color:#fff;padding:10px 24px;font-weight:600;display:flex;align-items:center;gap:8px">
<svg width="18" height="18" viewBox="0 0 48 48"><path fill="#FFC107" d="M43.6 20.1H42V20H24v8h11.3C33.9 33.1 29.3 36 24 36c-6.6 0-12-5.4-12-12s5.4-12 12-12c3.1 0 5.8 1.2 8 3l5.7-5.7C34 6 29.3 4 24 4 13 4 4 13 4 24s9 20 20 20 20-9 20-20c0-1.3-.2-2.7-.4-3.9z"/><path fill="#FF3D00" d="M6.3 14.7l6.6 4.8C14.5 15.5 18.8 12 24 12c3.1 0 5.8 1.2 8 3l5.7-5.7C34 6 29.3 4 24 4 16.3 4 9.7 8.3 6.3 14.7z"/><path fill="#4CAF50" d="M24 44c5.2 0 9.9-2 13.4-5.2l-6.2-5.2C29.2 35.1 26.7 36 24 36c-5.2 0-9.6-3.6-11.2-8.5l-6.5 5C9.5 39.6 16.2 44 24 44z"/><path fill="#1976D2" d="M43.6 20.1H42V20H24v8h11.3c-.8 2.2-2.2 4.1-4.1 5.6l6.2 5.2C37 39.2 44 34 44 24c0-1.3-.2-2.7-.4-3.9z"/></svg>
Google 登录
</button>
<button class="btn" onclick="App.oauthLogin('github')" id="oauth-github-btn" style="background:#24292e;color:#fff;padding:10px 24px;font-weight:600;display:flex;align-items:center;gap:8px">
<svg width="18" height="18" viewBox="0 0 24 24" fill="currentColor"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.3 3.44 9.8 8.2 11.38.6.11.82-.26.82-.58v-2.03c-3.34.73-4.04-1.61-4.04-1.61-.55-1.39-1.34-1.76-1.34-1.76-1.08-.74.08-.73.08-.73 1.2.08 1.84 1.23 1.84 1.23 1.07 1.83 2.81 1.3 3.5 1 .1-.78.42-1.3.76-1.6-2.67-.3-5.47-1.33-5.47-5.93 0-1.31.47-2.38 1.24-3.22-.13-.3-.54-1.52.12-3.18 0 0 1-.32 3.3 1.23a11.5 11.5 0 016.02 0c2.28-1.55 3.29-1.23 3.29-1.23.66 1.66.25 2.88.12 3.18.77.84 1.24 1.91 1.24 3.22 0 4.61-2.8 5.63-5.48 5.92.43.37.82 1.1.82 2.22v3.29c0 .32.21.7.82.58C20.56 21.8 24 17.3 24 12 24 5.37 18.63 0 12 0z"/></svg>
GitHub 登录
</button>
</div>
<div id="oauth-status" style="margin-top:8px;font-size:12px;color:var(--text-muted)"></div>
</div>
</div>
<div class="section">
<div class="section-header">
<div>
<div class="section-title">邮箱密码登录</div>
<div class="section-desc">仅限邮箱+密码注册的账号 第三方登录请用上面的按钮</div>
</div>
</div>
<div class="section-body">
<div class="field-row">
<div class="field">
<label class="field-label">邮箱</label>
<input id="wl-email" class="input" placeholder="your-email@example.com" autocomplete="off">
</div>
<div class="field">
<label class="field-label">密码</label>
<input id="wl-password" class="input" type="password" placeholder="••••••••" autocomplete="off" onkeydown="if(event.key==='Enter')App.windsurfLogin()">
</div>
</div>
</div>
<div class="field-row-actions">
<button class="btn btn-primary" onclick="App.windsurfLogin()" id="wl-btn">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"/><polyline points="10 17 15 12 10 7"/><line x1="15" y1="12" x2="3" y2="12"/></svg>
登录
</button>
<label class="checkbox" style="margin-left:auto">
<input type="checkbox" id="wl-auto-add" checked>
<span class="box"></span>
<span>登录成功自动加入账号池</span>
</label>
</div>
</div>
</div>
<div class="section" id="wl-proxy-section">
<div class="section-header">
<div>
<div class="section-title">登录代理(可选)</div>
<div class="section-desc">为本次登录指定代理;留空则使用全局代理设置。代理生效后账号的后续聊天请求也会经此代理出站</div>
</div>
</div>
<div class="section-body">
<div class="field-row">
<div class="field" style="max-width:120px">
<label class="field-label">类型</label>
<select id="wl-proxy-type" class="select">
<option value="http">HTTP</option>
<option value="https">HTTPS</option>
<option value="socks5">SOCKS5</option>
</select>
</div>
<div class="field" style="flex:2">
<label class="field-label">主机</label>
<input id="wl-proxy-host" class="input" placeholder="留空=使用全局">
</div>
<div class="field" style="max-width:110px">
<label class="field-label">端口</label>
<input id="wl-proxy-port" class="input" placeholder="8080" type="number">
</div>
<div class="field">
<label class="field-label">用户名</label>
<input id="wl-proxy-user" class="input" placeholder="可选">
</div>
<div class="field">
<label class="field-label">密码</label>
<input id="wl-proxy-pass" class="input" type="password" placeholder="可选">
</div>
</div>
<div style="display:flex;gap:8px;align-items:center;margin-top:10px">
<button class="btn btn-outline btn-sm" onclick="App.testLoginProxy()" id="wl-proxy-test-btn">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M9 12l2 2 4-4"/><circle cx="12" cy="12" r="10"/></svg>
测试代理
</button>
<span id="wl-proxy-test-result" class="text-sm text-muted"></span>
</div>
</div>
</div>
<div class="section hidden" id="wl-result"></div>
<div class="section">
<div class="section-header">
<div>
<div class="section-title">登录历史</div>
<div class="section-desc">本地记录最近 50 条登录操作</div>
</div>
</div>
<div class="section-body tight">
<div class="table-wrap">
<table id="wl-history-table">
<thead><tr><th>时间</th><th>邮箱</th><th>状态</th><th>代理</th><th>操作</th></tr></thead>
<tbody></tbody>
</table>
</div>
</div>
</div>
</section>
<!-- Accounts -->
<section class="panel" id="p-accounts">
<div class="page-header">
<div>
<h1 class="page-title" data-i18n="page.accounts">账号管理</h1>
<div class="page-subtitle">维护账号池,探测各账号订阅层级与可用模型</div>
</div>
<div class="btn-group">
<button class="btn btn-outline" onclick="App.refreshAllCredits()">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M21 12a9 9 0 0 1-9 9 9 9 0 0 1-6.24-2.52L3 21"/><path d="M3 12a9 9 0 0 1 9-9 9 9 0 0 1 6.24 2.52L21 3"/><path d="M21 3v6h-6"/><path d="M3 21v-6h6"/></svg>
刷新余额
</button>
<button class="btn btn-outline" onclick="App.probeAll()">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><circle cx="11" cy="11" r="8"/><line x1="21" y1="21" x2="16.65" y2="16.65"/></svg>
全部探测
</button>
</div>
</div>
<div class="section">
<div class="section-header">
<div>
<div class="section-title">添加账号</div>
<div class="section-desc">支持 API Key 或 Auth Token 两种方式</div>
</div>
</div>
<div class="section-body">
<div style="padding:8px 12px;margin-bottom:12px;background:var(--surface-2);border-radius:var(--radius);font-size:12px;color:var(--text-muted);line-height:1.6">
推荐用 Token 方式添加账号 点
<a href="https://windsurf.com/show-auth-token" target="_blank" style="color:var(--accent);font-weight:600">windsurf.com/show-auth-token</a>
登录后复制 Token 粘贴到下面就行 所有登录方式(邮箱/Google/GitHub)都能用
</div>
<div class="field-row">
<div class="field" style="max-width:180px">
<label class="field-label">类型</label>
<select id="acc-type" class="select">
<option value="token" selected>Auth Token</option>
<option value="api_key">API Key</option>
</select>
</div>
<div class="field" style="flex:2">
<label class="field-label">Key / Token</label>
<input id="acc-key" class="input" placeholder="粘贴 Auth Token(从 windsurf.com/show-auth-token 获取)">
</div>
<div class="field" style="max-width:200px">
<label class="field-label">标签</label>
<input id="acc-label" class="input" placeholder="可选">
</div>
</div>
<div class="field-row-actions">
<button class="btn btn-primary" onclick="App.addAccount()">添加账号</button>
</div>
</div>
</div>
<div id="ls-pool-card"></div>
<div class="section">
<div class="section-header">
<div>
<div class="section-title">账号列表</div>
<div class="section-desc">点击探测按钮可单独更新某个账号的能力信息</div>
</div>
</div>
<div class="section-body tight">
<div class="table-wrap">
<table id="accounts-table">
<thead><tr><th>ID</th><th>标签</th><th>层级</th><th>RPM</th><th>余额</th><th>可用模型</th><th>状态</th><th>错误</th><th>最后使用</th><th>Key</th><th>操作</th></tr></thead>
<tbody></tbody>
</table>
</div>
</div>
</div>
</section>
<!-- Models -->
<section class="panel" id="p-models">
<div class="page-header">
<div>
<h1 class="page-title" data-i18n="page.models">模型控制</h1>
<div class="page-subtitle">配置模型访问策略,限制可用模型范围</div>
</div>
</div>
<div class="section">
<div class="section-header">
<div>
<div class="section-title">访问策略</div>
<div class="section-desc">选择"全部允许"不限制;"白名单"只允许列出的模型;"黑名单"屏蔽列出的模型</div>
</div>
</div>
<div class="section-body">
<div class="segmented" id="model-mode-group">
<label><input type="radio" name="model-mode" value="all" onchange="App.setModelMode(this.value)">全部允许</label>
<label><input type="radio" name="model-mode" value="allowlist" onchange="App.setModelMode(this.value)">白名单</label>
<label><input type="radio" name="model-mode" value="blocklist" onchange="App.setModelMode(this.value)">黑名单</label>
</div>
</div>
</div>
<div class="section hidden" id="model-list-section">
<div class="section-header">
<div>
<div class="section-title" id="model-list-title">模型清单</div>
<div class="section-desc" id="model-list-hint"></div>
</div>
</div>
<div class="section-body">
<div class="field-row">
<div class="field">
<label class="field-label">搜索模型</label>
<input id="model-search" class="input" placeholder="输入模型名称筛选..." oninput="App.filterModels()">
</div>
<div class="field" style="max-width:220px">
<label class="field-label">供应商</label>
<select id="model-provider-filter" class="select" onchange="App.filterModels()">
<option value="">全部供应商</option>
<option value="anthropic">Anthropic</option>
<option value="openai">OpenAI</option>
<option value="google">Google</option>
<option value="deepseek">DeepSeek</option>
<option value="xai">xAI</option>
<option value="alibaba">Alibaba</option>
<option value="moonshot">Moonshot</option>
<option value="windsurf">Windsurf</option>
</select>
</div>
</div>
<div id="model-list-current" class="mt-4"></div>
<div id="model-chips-container" class="mt-4"></div>
</div>
</div>
</section>
<!-- Proxy -->
<section class="panel" id="p-proxy">
<div class="page-header">
<div>
<h1 class="page-title" data-i18n="page.proxy">代理配置</h1>
<div class="page-subtitle">全局或按账号配置出口代理,独立代理将启动独立的语言服务器实例</div>
</div>
</div>
<div class="section">
<div class="section-header">
<div>
<div class="section-title">全局代理</div>
<div class="section-desc">未配置独立代理的账号将使用此配置</div>
</div>
</div>
<div class="section-body">
<div class="field-row">
<div class="field" style="max-width:140px">
<label class="field-label">类型</label>
<select id="proxy-type" class="select">
<option value="http">HTTP</option>
<option value="https">HTTPS</option>
<option value="socks5">SOCKS5</option>
</select>
</div>
<div class="field">
<label class="field-label">主机</label>
<input id="proxy-host" class="input" placeholder="proxy.example.com">
</div>
<div class="field" style="max-width:140px">
<label class="field-label">端口</label>
<input id="proxy-port" class="input" type="number" placeholder="8080">
</div>
</div>
<div class="field-row mt-3">
<div class="field">
<label class="field-label">用户名</label>
<input id="proxy-user" class="input" placeholder="代理认证用户名">
</div>
<div class="field">
<label class="field-label">密码</label>
<div class="input-group">
<input id="proxy-pass" class="input" type="password" placeholder="代理认证密码">
<button class="btn btn-outline btn-icon" onclick="const el=document.getElementById('proxy-pass');el.type=el.type==='password'?'text':'password'" title="显示/隐藏">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"/><circle cx="12" cy="12" r="3"/></svg>
</button>
</div>
</div>
</div>
<div class="field-row-actions">
<button class="btn btn-primary" onclick="App.saveGlobalProxy()">保存</button>
<button class="btn btn-outline" onclick="App.clearGlobalProxy()">清除</button>
<span id="proxy-current" class="text-sm text-muted" style="margin-left:auto;align-self:center"></span>
</div>
</div>
</div>
<div class="section">
<div class="section-header">
<div>
<div class="section-title">账号独立代理</div>
<div class="section-desc">为特定账号设置专属代理;每个独立代理会启动独立 LS 实例</div>
</div>
</div>
<div class="section-body tight">
<div class="table-wrap">
<table id="proxy-accounts-table">
<thead><tr><th>账号</th><th>代理</th><th>操作</th></tr></thead>
<tbody></tbody>
</table>
</div>
</div>
</div>
</section>
<!-- Logs -->
<section class="panel" id="p-logs">
<div class="page-header">
<div>
<h1 class="page-title" data-i18n="page.logs">运行日志</h1>
<div class="page-subtitle">通过 SSE 实时流式接收服务端日志</div>
</div>
</div>
<div class="log-controls">
<select id="log-level" class="select" style="width:130px" onchange="App.filterLogs()">
<option value="">所有级别</option>
<option value="debug">Debug</option>
<option value="info">Info</option>
<option value="warn">Warn</option>
<option value="error">Error</option>
</select>
<input id="log-search" class="input search" placeholder="搜索日志内容..." oninput="App.debouncedFilterLogs()">
<label class="checkbox">
<input type="checkbox" id="log-autoscroll" checked>
<span class="box"></span>
<span>自动滚动</span>
</label>
<button class="btn btn-outline btn-sm" onclick="App.clearLogView()">清空视图</button>
</div>
<div class="log-container" id="log-container"></div>
</section>
<!-- Stats -->
<section class="panel" id="p-stats">
<div class="page-header">
<div>
<h1 class="page-title" data-i18n="page.stats">统计分析</h1>
<div class="page-subtitle">请求量、成功率、延迟分位数与账号/模型维度统计</div>
</div>
<div class="btn-group">
<button class="btn btn-ghost btn-sm" onclick="App.loadStats()" title="刷新">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M21 12a9 9 0 0 1-9 9 9 9 0 0 1-6.24-2.52L3 21"/><path d="M3 12a9 9 0 0 1 9-9 9 9 0 0 1 6.24 2.52L21 3"/><path d="M21 3v6h-6"/><path d="M3 21v-6h6"/></svg>
刷新
</button>
<button class="btn btn-danger btn-sm" onclick="App.resetStats()">重置统计</button>
</div>
</div>
<div class="metrics-grid" id="stats-cards"></div>
<div class="chart">
<div style="display:flex;align-items:center;justify-content:space-between;margin-bottom:10px;flex-wrap:wrap;gap:10px">
<h3 style="margin:0">请求量时间序列</h3>
<div class="btn-group" role="tablist">
<button class="btn btn-ghost btn-xs stats-range-btn" data-range="6" onclick="App.setStatsRange(6)">近 6h</button>
<button class="btn btn-ghost btn-xs stats-range-btn active" data-range="24" onclick="App.setStatsRange(24)">近 24h</button>
<button class="btn btn-ghost btn-xs stats-range-btn" data-range="72" onclick="App.setStatsRange(72)">近 72h</button>
</div>
</div>
<div class="bars" id="stats-chart"></div>
</div>
<div class="section">
<div class="section-header">
<div>
<div class="section-title">模型使用统计</div>
<div class="section-desc">按模型聚合:请求量、成功率、平均耗时与 p50 / p95 延迟分位数</div>
</div>
</div>
<div class="section-body tight">
<div class="table-wrap">
<table id="model-stats-table">
<thead><tr><th>模型</th><th>请求</th><th>成功</th><th>错误</th><th>成功率</th><th>平均</th><th>p50</th><th>p95</th></tr></thead>
<tbody></tbody>
</table>
</div>
</div>
</div>
<div class="section">
<div class="section-header">
<div>
<div class="section-title">账号维度统计</div>
<div class="section-desc">每个账号 ID 前 8 位的请求量与成功率</div>
</div>
</div>
<div class="section-body tight">
<div class="table-wrap">
<table id="account-stats-table">
<thead><tr><th>账号 ID</th><th>请求</th><th>成功</th><th>错误</th><th>成功率</th></tr></thead>
<tbody></tbody>
</table>
</div>
</div>
</div>
</section>
<!-- Bans -->
<section class="panel" id="p-bans">
<div class="page-header">
<div>
<h1 class="page-title" data-i18n="page.bans">异常监测</h1>
<div class="page-subtitle">追踪错误账号和异常状态</div>
</div>
</div>
<div class="metrics-grid" id="ban-cards"></div>
<div class="section">
<div class="section-header">
<div class="section-title">账号健康状况</div>
</div>
<div class="section-body tight">
<div class="table-wrap">
<table id="ban-table">
<thead><tr><th>账号</th><th>状态</th><th>错误数</th><th>最后使用</th><th>操作</th></tr></thead>
<tbody></tbody>
</table>
</div>
</div>
</div>
</section>
<section class="panel" id="p-experimental">
<div class="page-header">
<div>
<h1 class="page-title" data-i18n="page.experimental">实验性功能</h1>
<div class="page-subtitle">尚未稳定的优化项;如果发现异常可以随时关闭</div>
</div>
</div>
<div class="section">
<div class="section-header">
<div class="section-title">Cascade 对话复用</div>
</div>
<div class="section-body">
<div class="section-desc" style="margin-bottom:12px">
多轮对话时复用同一个 <code>cascade_id</code>,只把最新一条 user 消息发给 Windsurf,
让服务端维持上下文缓存。命中时可显著降低 TTFB 与上传体积;未命中或账号/LS 变更会自动回退到新会话。
需要客户端保留完整历史并按顺序追加(如 new-api、OpenWebUI)。
</div>
<div style="display:flex;align-items:center;gap:16px;margin-bottom:16px">
<label class="switch">
<input type="checkbox" id="exp-cascade-reuse" onchange="App.toggleExperimental('cascadeConversationReuse', this.checked)">
<span class="switch-slider"></span>
</label>
<div>
<div style="font-weight:500">启用 Cascade 对话复用</div>
<div class="text-sm text-muted">默认关闭。开启后对当前对话池立即生效。</div>
</div>
</div>
<div class="metrics-grid" id="exp-pool-cards"></div>
<div style="margin-top:12px">
<button class="btn btn-outline btn-sm" onclick="App.clearConversationPool()">清空对话池</button>
<button class="btn btn-ghost btn-sm" onclick="App.loadExperimental()">刷新</button>
</div>
</div>
</div>
<div class="section" style="margin-top:24px">
<div class="section-header">
<div>
<div class="section-title">模型身份注入</div>
<div class="section-desc">开启后在每个请求最前面注入一条系统提示词,覆盖 Cascade 自带的 Windsurf 身份;下面每个厂商的模板可自定义,保存后立即生效</div>
</div>
</div>
<div class="section-body">
<div style="display:flex;align-items:center;gap:16px;margin-bottom:20px;padding:12px;background:var(--surface-2);border-radius:var(--radius)">
<label class="switch">
<input type="checkbox" id="exp-identity-prompt" onchange="App.toggleExperimental('modelIdentityPrompt', this.checked)">
<span class="switch-slider"></span>
</label>
<div style="flex:1">
<div style="font-weight:600">启用模型身份注入</div>
<div class="text-sm text-muted">默认开启;关闭后下面的模板不起作用</div>
</div>
</div>
<div class="section-desc" style="margin-bottom:10px">
每个厂商的模板可编辑,<code>{model}</code> 占位符会被替换成请求的模型名(例如 <code>claude-opus-4.6</code>)。
</div>
<div id="identity-prompts-editor" style="display:grid;gap:14px"></div>
</div>
</div>
</section>
</main>
<!-- Login Overlay -->
<div class="login-overlay hidden" id="login-overlay">
<div class="login-box">
<div class="login-logo">W</div>
<h3>控制台登录</h3>
<p>请输入管理密码以继续</p>
<input type="password" id="login-password" class="input" placeholder="Dashboard 密码" onkeydown="if(event.key==='Enter')App.login()">
<button class="btn btn-primary" onclick="App.login()">登 录</button>
</div>
</div>
<!-- Modal Container -->
<div id="modal-container"></div>
<!-- Toast Container -->
<div class="toast-stack" id="toast-stack"></div>
<script>
// Minimal i18n: zh-CN default (embedded in HTML), en switches visible text
// via data-i18n attributes. Only top-level navigation + panel titles
// translated — detail copy stays Chinese to keep the system lightweight.
const I18N_EN = {
'brand.sub': 'Control Panel',
'nav.group.overview': 'Overview',
'nav.group.account': 'Accounts',
'nav.group.system': 'System',
'nav.overview': 'Dashboard',
'nav.stats': 'Statistics',
'nav.windsurf-login': 'Account Login',
'nav.accounts': 'Account Pool',
'nav.bans': 'Health Check',
'nav.models': 'Model Control',
'nav.proxy': 'Proxy',
'nav.logs': 'Logs',
'nav.experimental': 'Experimental',
'page.overview': 'Dashboard',
'page.stats': 'Statistics',
'page.windsurf-login': 'Account Login',
'page.accounts': 'Account Pool',
'page.bans': 'Health Check',
'page.models': 'Model Control',
'page.proxy': 'Proxy Config',
'page.logs': 'Runtime Logs',
'page.experimental': 'Experimental Features',
};
const App = {
password: localStorage.getItem('dp') || '',
lang: localStorage.getItem('lang') || 'zh',
sseConn: null,
logEntries: [],
pollers: {},
allModels: [],
modelAccessConfig: { mode: 'all', list: [] },
loginHistory: JSON.parse(localStorage.getItem('wl_history') || '[]'),
_filterTimer: null,
applyLang() {
const indicator = document.getElementById('lang-indicator');
if (indicator) indicator.textContent = this.lang === 'zh' ? '中' : 'EN';
document.documentElement.lang = this.lang === 'zh' ? 'zh-CN' : 'en';
document.querySelectorAll('[data-i18n]').forEach(el => {
const key = el.dataset.i18n;
if (this.lang === 'en') {
if (!el.dataset.i18nOrig) el.dataset.i18nOrig = el.textContent;
const v = I18N_EN[key];
if (v) el.textContent = v;
} else {
if (el.dataset.i18nOrig) el.textContent = el.dataset.i18nOrig;
}
});
},
toggleLang() {
this.lang = this.lang === 'zh' ? 'en' : 'zh';
localStorage.setItem('lang', this.lang);
this.applyLang();
},
// Register a polling loader. Guarantees exactly one timer per key even if
// the loader is invoked repeatedly, and auto-pauses while the tab is
// hidden to avoid hammering the server in background tabs.
poll(key, fn, intervalMs) {
if (this.pollers[key]) clearInterval(this.pollers[key]);
this.pollers[key] = setInterval(() => {
if (document.hidden) return;
fn();
}, intervalMs);
},
async init() {
this.applyLang();
const auth = await this.api('GET', '/auth');
if (auth.required && !auth.valid) {
document.getElementById('login-overlay').classList.remove('hidden');
return;
}
document.getElementById('login-overlay').classList.add('hidden');
document.querySelectorAll('.sidebar nav a').forEach(a => {
a.onclick = (e) => { e.preventDefault(); this.navigate(a.dataset.panel); };
});
const hash = location.hash.slice(1);
if (hash) this.navigate(hash);
else this.loadOverview();
},
login() {
this.password = document.getElementById('login-password').value;
localStorage.setItem('dp', this.password);
this.init();
},
navigate(panel) {
document.querySelectorAll('.panel').forEach(p => p.classList.remove('active'));
document.querySelectorAll('.sidebar nav a').forEach(a => a.classList.remove('active'));
const el = document.getElementById('p-' + panel);
const nav = document.querySelector(`[data-panel="${panel}"]`);
if (el) el.classList.add('active');
if (nav) nav.classList.add('active');
location.hash = panel;
Object.values(this.pollers).forEach(clearInterval);
this.pollers = {};
if (this.sseConn) { this.sseConn.close(); this.sseConn = null; }
const loaders = {
overview: 'loadOverview', 'windsurf-login': 'loadWindsurfLogin',
accounts: 'loadAccounts', models: 'loadModels', proxy: 'loadProxy',
logs: 'loadLogs', stats: 'loadStats', bans: 'loadBans',
experimental: 'loadExperimental',
};
if (loaders[panel]) this[loaders[panel]]();
},
async api(method, path, body) {
const opts = { method, headers: { 'Content-Type': 'application/json' } };
if (this.password) opts.headers['X-Dashboard-Password'] = this.password;
if (body) opts.body = JSON.stringify(body);
try {
const r = await fetch('/dashboard/api' + path, opts);
const data = await r.json();
if (r.status === 401) {
document.getElementById('login-overlay').classList.remove('hidden');
return {};
}
return data;
} catch (e) { this.toast(e.message, 'error'); return {}; }
},
toast(msg, type = 'success') {
const t = document.createElement('div');
t.className = 'toast ' + type;
t.textContent = msg;
document.getElementById('toast-stack').appendChild(t);
setTimeout(() => {
t.style.opacity = '0';
t.style.transform = 'translateX(20px)';
t.style.transition = 'all .2s';
setTimeout(() => t.remove(), 200);
}, 3000);
},
// ─── Modal helpers ───────────────────────────
confirm(title, desc, opts = {}) {
return new Promise(resolve => {
const wrap = document.createElement('div');
wrap.className = 'modal-overlay';
// opts.html=true lets callers pass rich markup in `desc` (e.g. the
// per-account blocked-models editor). opts.wide=true widens the modal
// so the 2-col model grid has room to breathe.
const descHtml = desc
? (opts.html
? `<div class="modal-body">${desc}</div>`
: `<div class="modal-desc">${this.esc(desc)}</div>`)
: '';
const widthStyle = opts.wide ? ' style="max-width:640px;width:92vw"' : '';
// Title is trusted caller input but may contain <code>/<b>; use esc by
// default to match prior behaviour.
wrap.innerHTML = `
<div class="modal"${widthStyle}>
<div class="modal-header">
<div class="modal-title">${opts.titleHtml ? title : this.esc(title)}</div>
${opts.html ? '' : (desc ? `<div class="modal-desc">${this.esc(desc)}</div>` : '')}
</div>
${opts.html ? descHtml : ''}
<div class="modal-footer">
<button class="btn btn-ghost" data-act="cancel">${this.esc(opts.cancelText || '取消')}</button>
<button class="btn ${opts.danger ? 'btn-danger' : 'btn-primary'}" data-act="ok">${this.esc(opts.okText || '确认')}</button>
</div>
</div>`;
document.getElementById('modal-container').appendChild(wrap);
const close = (v) => { wrap.remove(); resolve(v); };
wrap.querySelector('[data-act=cancel]').onclick = () => close(false);
wrap.querySelector('[data-act=ok]').onclick = () => close(true);
wrap.onclick = (e) => { if (e.target === wrap) close(false); };
});
},
prompt(title, desc, fields) {
return new Promise(resolve => {
const wrap = document.createElement('div');
wrap.className = 'modal-overlay';
const fieldHtml = fields.map(f => `
<div class="field mt-3">
<label class="field-label">${this.esc(f.label)}</label>
${f.type === 'select' ? `
<select class="select" data-name="${f.name}">
${f.options.map(o => `<option value="${this.esc(o.value)}" ${o.value === f.value ? 'selected' : ''}>${this.esc(o.label)}</option>`).join('')}
</select>
` : `
<input class="input" data-name="${f.name}" type="${f.type || 'text'}" placeholder="${this.esc(f.placeholder || '')}" value="${this.esc(f.value || '')}">
`}
${f.hint ? `<div class="field-hint">${this.esc(f.hint)}</div>` : ''}
</div>
`).join('');
wrap.innerHTML = `
<div class="modal">
<div class="modal-header">
<div class="modal-title">${this.esc(title)}</div>
${desc ? `<div class="modal-desc">${this.esc(desc)}</div>` : ''}
</div>
<div class="modal-body">${fieldHtml}</div>
<div class="modal-footer">
<button class="btn btn-ghost" data-act="cancel">取消</button>
<button class="btn btn-primary" data-act="ok">确认</button>
</div>
</div>`;
document.getElementById('modal-container').appendChild(wrap);
const close = (v) => { wrap.remove(); resolve(v); };
wrap.querySelector('[data-act=cancel]').onclick = () => close(null);
wrap.querySelector('[data-act=ok]').onclick = () => {
const values = {};
wrap.querySelectorAll('[data-name]').forEach(el => values[el.dataset.name] = el.value);
close(values);
};
wrap.onclick = (e) => { if (e.target === wrap) close(null); };
setTimeout(() => wrap.querySelector('input, select')?.focus(), 100);
});
},
// ─── Overview ────────────────────────────────
async checkUpdate() {
const btn = document.getElementById('btn-check-update');
const status = document.getElementById('update-status');
const apply = document.getElementById('btn-apply-update');
btn.disabled = true;
status.classList.remove('hidden');
status.innerHTML = '<span class="text-muted">正在检查更新...</span>';
try {
const r = await this.api('GET', '/self-update/check');
if (!r.ok) {
if (/not a git repository/i.test(r.error || '')) {
status.innerHTML = `
<div style="color:var(--warning,#f59e0b);font-weight:600;margin-bottom:4px">此实例不是 git 部署 一键更新不可用</div>
<div class="text-sm text-muted">如果你用 git clone 部署的 需要确保 .git 目录和 WindsurfAPI 源代码目录在一起。SFTP / 压缩包上传的部署请手动替换文件后 pm2 重启</div>`;
apply.classList.add('hidden');
return;
}
throw new Error(r.error || '检查失败');
}
if (r.behind) {
status.innerHTML = `
<div style="color:var(--accent);font-weight:600;margin-bottom:6px">发现新版本</div>
<div class="text-sm" style="display:grid;gap:3px">
<div>当前: <code>${r.commit}</code> <span class="text-muted">${this.esc(r.localMessage)}</span></div>
<div>远程: <code>${r.remoteCommit}</code> <span class="text-muted">${this.esc(r.remoteMessage || '')}</span></div>
</div>`;
apply.classList.remove('hidden');
} else {
status.innerHTML = `<span style="color:var(--success)">✓ 已是最新 (${r.commit}) · ${this.esc(r.localMessage)}</span>`;
apply.classList.add('hidden');
}
} catch (err) {
status.innerHTML = `<span style="color:var(--error)">✗ ${this.esc(err.message)}</span>`;
} finally {
btn.disabled = false;
}
},
async applyUpdate() {
const ok = await this.confirm('一键更新并重启', '将执行 git pull 并重启 PM2。重启期间 dashboard 会短暂不可用(约 5-10 秒)。确定继续?', { okText: '更新并重启', danger: true });
if (!ok) return;
const status = document.getElementById('update-status');
const apply = document.getElementById('btn-apply-update');
apply.disabled = true;
status.innerHTML = '<span class="text-muted">正在拉取 + 重启...</span>';
try {
let r = await this.api('POST', '/self-update');
if (r.dirty) {
const filesList = (r.dirtyFiles || []).slice(0, 10).map(f => this.esc(f)).join('<br>');
const force = await this.confirm(
'工作区有本地修改',
`以下文件已被修改但未提交:<br><br><code style="display:block;padding:8px;background:var(--surface-2);font-size:11px;max-height:150px;overflow:auto">${filesList}</code><br>继续将用远程版本覆盖这些修改。非 git 部署(SFTP / 压缩包)请点强制覆盖。`,
{ okText: '强制覆盖并更新', danger: true, html: true }
);
if (!force) {
status.innerHTML = '<span class="text-muted">已取消</span>';
apply.disabled = false;
return;
}
r = await this.api('POST', '/self-update', { forceReset: true });
}
if (!r.ok) throw new Error(r.error || '更新失败');
if (r.changed) {
status.innerHTML = `
<div style="color:var(--success);font-weight:600;margin-bottom:6px">更新完成 ${r.before} → ${r.after}</div>
<div class="text-sm text-muted">服务正在后台重启 约 8 秒后自动刷新页面...</div>
<pre style="margin-top:8px;font-size:11px;max-height:200px;overflow:auto;padding:8px;background:var(--surface-2);border-radius:4px">${this.esc(r.pullOutput || '')}</pre>`;
setTimeout(() => location.reload(), 8000);
} else {
status.innerHTML = `<span class="text-muted">已是最新,无需更新</span>`;
apply.classList.add('hidden');
}
} catch (err) {
status.innerHTML = `<span style="color:var(--error)">✗ ${this.esc(err.message)}</span>`;
} finally {
apply.disabled = false;
}
},
async loadOverview() {
const d = await this.api('GET', '/overview');
// Fetch /health (no auth) in parallel for version/commit info
try {
const h = await fetch('/health').then(r => r.json()).catch(() => null);
if (h) {
const sv = document.getElementById('sidebar-ver');
if (sv) {
const label = h.commit ? `v${h.version} · ${h.commit}` : `v${h.version}`;
sv.textContent = label;
sv.title = h.commitMessage
? `${h.commitMessage}\n${h.commitDate || ''}${h.branch ? ` (${h.branch})` : ''}`
: `版本 ${h.version}`;
}
this._versionInfo = h;
}
} catch {}
const uptime = d.uptime ? this.fmtDuration(d.uptime) : '-';
const ls = d.langServer || {};
const poolCount = (ls.instances || []).length || (ls.running ? 1 : 0);
document.getElementById('overview-cards').innerHTML = `
<div class="card success">
<div class="card-header"><div class="card-title">活跃账号</div>
<svg class="card-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/></svg>
</div>
<div class="card-value">${d.accounts?.active || 0}</div>
<div class="card-sub">${d.accounts?.total || 0} 个总账号 · ${d.accounts?.error || 0} 异常</div>
</div>
<div class="card info">
<div class="card-header"><div class="card-title">总请求数</div>
<svg class="card-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M22 12h-4l-3 9L9 3l-3 9H2"/></svg>
</div>
<div class="card-value">${d.totalRequests || 0}</div>
<div class="card-sub">成功率 ${d.successRate || 0}%</div>
</div>
<div class="card">
<div class="card-header"><div class="card-title">运行时间</div>
<svg class="card-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>
</div>
<div class="card-value" style="font-size:20px">${uptime}</div>
<div class="card-sub">启动于 ${d.startedAt ? new Date(d.startedAt).toLocaleString() : '-'}</div>
</div>
<div class="card ${ls.running ? 'success' : 'error'}">
<div class="card-header"><div class="card-title">Language Server</div>
<svg class="card-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><rect x="2" y="2" width="20" height="8" rx="2"/><rect x="2" y="14" width="20" height="8" rx="2"/><line x1="6" y1="6" x2="6.01" y2="6"/><line x1="6" y1="18" x2="6.01" y2="18"/></svg>
</div>
<div class="card-value" style="font-size:20px">${ls.running ? '运行中' : '已停止'}</div>
<div class="card-sub">${poolCount} 个实例 · 端口 ${ls.port || '-'}</div>
</div>
<div class="card info">
<div class="card-header"><div class="card-title">响应缓存</div>
<svg class="card-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><ellipse cx="12" cy="5" rx="9" ry="3"/><path d="M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"/><path d="M3 12c0 1.66 4 3 9 3s9-1.34 9-3"/></svg>
</div>
<div class="card-value">${d.cache?.hitRate || '0.0'}%</div>
<div class="card-sub">${d.cache?.hits || 0} 命中 / ${d.cache?.misses || 0} 未命中 · ${d.cache?.size || 0}/${d.cache?.maxSize || 0} 条</div>
</div>
`;
const instances = ls.instances || [];
if (instances.length > 0) {
document.getElementById('ls-status').innerHTML = `
<div class="ls-pool">
${instances.map(i => `
<div class="ls-inst">
<div class="ls-key">
<span class="ls-dot ${i.ready ? '' : 'pending'}"></span>
${this.esc(i.key === 'default' ? '默认实例' : i.key.replace(/^px_/, ''))}
</div>
<div class="ls-meta">端口 ${i.port} · PID ${i.pid || '-'}</div>
<div class="ls-meta">${this.esc(i.proxy || '无代理')}</div>
</div>
`).join('')}
</div>`;
} else {
document.getElementById('ls-status').innerHTML = `
<span class="badge ${ls.running ? 'running' : 'stopped'}">${ls.running ? '运行中' : '已停止'}</span>
<span class="text-sm text-muted" style="margin-left:12px">PID ${ls.pid || '-'} · 端口 ${ls.port || '-'} · 重启 ${ls.restartCount || 0} 次</span>
`;
}
this.poll('overview', () => this.loadOverview(), 15000);
},
async restartLs() {
const ok = await this.confirm('重启 Language Server', '进行中的请求将会失败,确定要继续吗?', { danger: true, okText: '重启' });
if (!ok) return;
await this.api('POST', '/langserver/restart', { confirm: true });
this.toast('Language Server 重启中...', 'info');
},
// ─── Windsurf Login ──────────────────────────
loadWindsurfLogin() { this.renderLoginHistory(); },
async oauthLogin(provider) {
const btn = document.getElementById(`oauth-${provider}-btn`);
const status = document.getElementById('oauth-status');
const label = provider === 'google' ? 'Google' : 'GitHub';
if (btn) btn.disabled = true;
status.textContent = `正在通过 ${label} 登录...`;
status.style.color = 'var(--text-muted)';
try {
if (!window._firebaseOAuth) throw new Error('Firebase SDK 加载失败 请刷新页面重试');
const cred = await window._firebaseOAuth(provider);
status.textContent = `${label} 认证成功 正在注册 Codeium...`;
const r = await this.api('POST', '/oauth-login', {
idToken: cred.idToken,
refreshToken: cred.refreshToken,
email: cred.email,
provider: cred.provider,
autoAdd: true,
});
if (r.error) throw new Error(r.error);
status.style.color = '#22c55e';
status.textContent = `登录成功 ${r.email || label} 已加入账号池`;
this.toast(`${label} 登录成功`, 'success');
this.loadAccounts();
const entry = { time: new Date().toISOString(), email: r.email || label, proxy: '直连', status: 'ok', method: label };
this.loginHistory.unshift(entry);
if (this.loginHistory.length > 50) this.loginHistory.length = 50;
localStorage.setItem('wl_history', JSON.stringify(this.loginHistory));
this.renderLoginHistory();
} catch (err) {
status.style.color = '#ef4444';
status.textContent = `${label} 登录失败: ${err.message}`;
this.toast(`${label} 登录失败: ${err.message}`, 'error');
} finally {
if (btn) btn.disabled = false;
}
},
async windsurfLogin() {
const email = document.getElementById('wl-email').value.trim();
const password = document.getElementById('wl-password').value.trim();
if (!email || !password) return this.toast('请输入邮箱和密码', 'error');
const proxyHost = document.getElementById('wl-proxy-host').value.trim();
const proxy = proxyHost ? {
type: document.getElementById('wl-proxy-type').value,
host: proxyHost,
port: parseInt(document.getElementById('wl-proxy-port').value) || 8080,
username: document.getElementById('wl-proxy-user').value,
password: document.getElementById('wl-proxy-pass').value,
} : null;
const autoAdd = document.getElementById('wl-auto-add').checked;
const btn = document.getElementById('wl-btn');
btn.disabled = true;
btn.innerHTML = '<span class="spinner"></span> 登录中...';
const entry = { time: new Date().toISOString(), email, proxy: proxy ? `${proxy.type}://${proxy.host}:${proxy.port}` : '全局', status: 'pending' };
try {
const r = await this.api('POST', '/windsurf-login', { email, password, proxy, autoAdd });
if (r.success) {
entry.status = 'success';
entry.apiKey = r.apiKey?.slice(0, 16) + '...';
const rd = document.getElementById('wl-result');
rd.classList.remove('hidden');
rd.innerHTML = `
<div class="section-header">
<div>
<div class="section-title" style="color:var(--success)">✓ 登录成功</div>
<div class="section-desc">API Key 已生成${autoAdd ? '并加入账号池' : ''}</div>
</div>
</div>
<div class="section-body">
<table style="background:transparent">
<tr><td style="color:var(--text-muted);width:120px">邮箱</td><td>${this.esc(r.email)}</td></tr>
<tr><td style="color:var(--text-muted)">姓名</td><td>${this.esc(r.name || '-')}</td></tr>
<tr><td style="color:var(--text-muted)">API Key</td><td><code class="break-all">${this.esc(r.apiKey)}</code></td></tr>
${r.account ? `<tr><td style="color:var(--text-muted)">账号 ID</td><td><code>${r.account.id}</code> <span class="badge active">${r.account.status}</span></td></tr>` : ''}
</table>
</div>`;
this.toast('登录成功,账号已加入');
} else {
entry.status = 'error: ' + (r.error || 'unknown');
const rd = document.getElementById('wl-result');
rd.classList.remove('hidden');
const actionBlock = r.isAuthFail ? `
<div style="margin-top:12px;padding:12px;background:var(--surface-2);border-radius:var(--radius);border-left:3px solid var(--accent)">
<div style="font-weight:600;margin-bottom:8px">换个方式试试</div>
<div style="display:flex;gap:8px;flex-wrap:wrap">
<button class="btn btn-sm" style="background:#4285F4;color:#fff" onclick="App.oauthLogin('google')">Google 登录</button>
<button class="btn btn-sm" style="background:#24292e;color:#fff" onclick="App.oauthLogin('github')">GitHub 登录</button>
<a class="btn btn-sm btn-outline" href="https://windsurf.com/show-auth-token" target="_blank">复制 Auth Token</a>
<button class="btn btn-sm btn-ghost" onclick="document.querySelector('[data-panel=accounts]').click();setTimeout(()=>document.getElementById('acc-key')?.focus(),100)">去账号管理粘贴 Token</button>
</div>
</div>` : '';
rd.innerHTML = `
<div class="section-header">
<div>
<div class="section-title" style="color:var(--error)">✗ 登录失败</div>
</div>
</div>
<div class="section-body"><p class="text-sm">${this.esc(r.error || '未知错误')}</p>${actionBlock}</div>`;
this.toast(r.error || '登录失败', 'error');
}
} catch (err) {
entry.status = 'error: ' + err.message;
this.toast(err.message, 'error');
}
this.loginHistory.unshift(entry);
if (this.loginHistory.length > 50) this.loginHistory.length = 50;
localStorage.setItem('wl_history', JSON.stringify(this.loginHistory));
this.renderLoginHistory();
btn.disabled = false;
btn.innerHTML = '<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"/><polyline points="10 17 15 12 10 7"/><line x1="15" y1="12" x2="3" y2="12"/></svg> 登录';
},
renderLoginHistory() {
const tbody = document.querySelector('#wl-history-table tbody');
if (!tbody) return;
tbody.innerHTML = this.loginHistory.map((h, i) => {
const ok = h.status === 'success';
return `<tr>
<td class="text-sm nowrap">${new Date(h.time).toLocaleString()}</td>
<td>${this.esc(h.email)}</td>
<td>
<span class="badge ${ok ? 'active' : 'error'}">${ok ? '成功' : '失败'}</span>
${!ok ? `<div class="text-xs" style="color:var(--error);margin-top:3px;max-width:240px;overflow:hidden;text-overflow:ellipsis">${this.esc((h.status||'').replace('error: ',''))}</div>` : ''}
</td>
<td class="text-sm">${this.esc(h.proxy || '-')}</td>
<td><button class="btn btn-ghost btn-xs" onclick="App.removeLoginHistory(${i})">删除</button></td>
</tr>`;
}).join('') || '<tr class="empty-row"><td colspan="5">暂无登录记录</td></tr>';
},
removeLoginHistory(idx) {
this.loginHistory.splice(idx, 1);
localStorage.setItem('wl_history', JSON.stringify(this.loginHistory));
this.renderLoginHistory();
},
// ─── Accounts ────────────────────────────────
async loadAccounts() {
const [d, ov] = await Promise.all([
this.api('GET', '/accounts'),
this.api('GET', '/overview').catch(() => null),
]);
const instances = ov?.langServer?.instances || [];
const poolCard = document.getElementById('ls-pool-card');
if (poolCard) {
if (instances.length > 0) {
poolCard.innerHTML = `
<div class="section">
<div class="section-header">
<div>
<div class="section-title">语言服务器池</div>
<div class="section-desc">${instances.length} 个 LS 实例 · 每个独立代理对应一个进程</div>
</div>
</div>
<div class="section-body">
<div class="ls-pool">
${instances.map(i => `
<div class="ls-inst">
<div class="ls-key">
<span class="ls-dot ${i.ready ? '' : 'pending'}"></span>
${this.esc(i.key === 'default' ? '默认实例' : i.key.replace(/^px_/, ''))}
</div>
<div class="ls-meta">端口 ${i.port} · PID ${i.pid || '-'}</div>
<div class="ls-meta">${this.esc(i.proxy || '无代理')}</div>
</div>
`).join('')}
</div>
</div>
</div>`;
} else {
poolCard.innerHTML = '';
}
}
const tbody = document.querySelector('#accounts-table tbody');
const tierLabel = { pro: 'PRO', free: 'FREE', expired: '已过期', unknown: '未知' };
tbody.innerHTML = (d.accounts || []).map(a => {
const tier = a.tier || 'unknown';
// GetUserStatus snapshot — authoritative plan/trial/credit info (may be null)
const us = a.userStatus || null;
const usTipLines = [];
let tierSubline = '';
if (us) {
if (us.planName) usTipLines.push(`Plan: ${us.planName}`);
if (us.trialEndMs) {
const daysLeft = Math.max(0, Math.ceil((us.trialEndMs - Date.now()) / 86400000));
usTipLines.push(`Trial ends: ${new Date(us.trialEndMs).toLocaleDateString()} (${daysLeft}d left)`);
tierSubline = `${daysLeft}d trial`;
} else if (us.planName) {
tierSubline = us.planName.length > 12 ? us.planName.slice(0, 12) + '…' : us.planName;
}
if (us.monthlyPromptCredits > 0) {
usTipLines.push(`Prompt: ${us.promptCreditsUsed}/${us.monthlyPromptCredits}`);
}
if (us.monthlyFlowCredits > 0) {
usTipLines.push(`Flow: ${us.flowCreditsUsed}/${us.monthlyFlowCredits}`);
}
if (us.allowedModels?.length) {
usTipLines.push(`Allowed cascade models: ${us.allowedModels.length}`);
}
if (a.userStatusLastFetched) {
const ago = Math.round((Date.now() - a.userStatusLastFetched) / 60000);
usTipLines.push(`Fetched: ${ago}m ago`);
}
}
const tierTooltip = usTipLines.length
? usTipLines.join('\n')
: '点击手动修改层级(探测异常时用)';
// Compact summary: avail/total + 编辑 button. Clicking opens modal.
const tierModels = a.tierModels || [];
const blockedCount = (a.blockedModels || []).length;
const availCount = tierModels.length - blockedCount;
const capsHtml = tierModels.length
? `<button class="btn btn-ghost btn-xs" style="min-width:96px" onclick="App.openBlockedModal('${a.id}')" title="编辑该账号可用模型">
<span style="color:var(--success,#10b981);font-weight:600">${availCount}</span>
<span style="color:var(--text-dim)">/${tierModels.length}</span>
${blockedCount > 0 ? `<span class="badge warn" style="margin-left:4px">-${blockedCount}</span>` : ''}
</button>`
: `<span class="text-xs text-dim">-</span>`;
const rateLimitBadge = a.rateLimited ? ` <span class="badge warn">限流中</span>` : '';
const rpmUsed = a.rpmUsed ?? 0;
const rpmLimit = a.rpmLimit ?? 0;
const rpmPct = rpmLimit > 0 ? Math.min(100, Math.round((rpmUsed / rpmLimit) * 100)) : 0;
const rpmColor = rpmPct >= 90 ? 'var(--error)' : rpmPct >= 60 ? 'var(--warn, #f59e0b)' : 'var(--success, #10b981)';
const rpmCell = rpmLimit > 0
? `<div style="min-width:90px">
<div class="text-xs" style="display:flex;justify-content:space-between;margin-bottom:2px">
<span>${rpmUsed}/${rpmLimit}</span><span style="color:${rpmColor}">${rpmPct}%</span>
</div>
<div style="height:4px;background:var(--surface-3);border-radius:2px;overflow:hidden">
<div style="height:100%;width:${rpmPct}%;background:${rpmColor};transition:width .3s"></div>
</div>
</div>`
: `<span class="text-xs text-dim">-</span>`;
// Credit / quota cell — collapses the legacy credit contract and the
// newer daily/weekly percent contract into a single progress bar.
const cr = a.credits || null;
let creditCell;
if (!cr) {
creditCell = `<span class="text-xs text-dim">尚未获取</span>`;
} else if (cr.lastError && cr.percent == null && !cr.prompt?.limit) {
creditCell = `<span class="text-xs" style="color:var(--error)" title="${this.esc(cr.lastError)}">获取失败</span>`;
} else {
const pct = cr.percent != null ? Math.max(0, Math.min(100, cr.percent)) : null;
const pctStr = pct != null ? pct.toFixed(0) + '%' : '-';
const pctColor = pct == null ? 'var(--text-dim)'
: pct <= 10 ? 'var(--error)'
: pct <= 30 ? 'var(--warn, #f59e0b)'
: 'var(--success, #10b981)';
const planName = cr.planName || '-';
const fetchedAgo = cr.fetchedAt ? Math.round((Date.now() - cr.fetchedAt) / 60000) + 'm ago' : '-';
const tipLines = [
`Plan: ${planName}`,
cr.dailyPercent != null ? `Daily: ${cr.dailyPercent.toFixed(1)}% left` : '',
cr.weeklyPercent != null ? `Weekly: ${cr.weeklyPercent.toFixed(1)}% left` : '',
cr.prompt?.limit ? `Prompt: ${(cr.prompt.used || 0).toFixed(0)}/${cr.prompt.limit.toFixed(0)}` : '',
cr.flex?.limit ? `Flex: ${(cr.flex.used || 0).toFixed(0)}/${cr.flex.limit.toFixed(0)}` : '',
cr.dailyResetAt ? `Daily reset: ${new Date(cr.dailyResetAt * 1000).toLocaleString()}` : '',
`Updated: ${fetchedAgo}`,
cr.lastError ? `Last error: ${cr.lastError}` : '',
].filter(Boolean).join('\n');
creditCell = `<div style="min-width:100px" title="${this.esc(tipLines)}">
<div class="text-xs" style="display:flex;justify-content:space-between;margin-bottom:2px">
<span>${this.esc(planName.slice(0, 10))}</span><span style="color:${pctColor}">${pctStr}</span>
</div>
<div style="height:4px;background:var(--surface-3);border-radius:2px;overflow:hidden">
<div style="height:100%;width:${pct != null ? pct : 0}%;background:${pctColor};transition:width .3s"></div>
</div>
</div>`;
}
return `
<tr>
<td><code>${a.id}</code></td>
<td>${this.esc(a.email)}</td>
<td>
<div style="display:flex;flex-direction:column;gap:2px">
<span class="tier ${tier}" style="cursor:pointer" title="${this.esc(tierTooltip)}" onclick="App.overrideTier('${a.id}','${tier}')">${tierLabel[tier] || tier}${a.tierManual ? ' ✎' : ''}</span>
${tierSubline ? `<span class="text-xs text-dim" style="font-size:10px">${this.esc(tierSubline)}</span>` : ''}
</div>
</td>
<td>${rpmCell}</td>
<td>${creditCell}</td>
<td>${capsHtml}</td>
<td><span class="badge ${a.status}">${a.status}</span>${rateLimitBadge}</td>
<td style="color:${a.errorCount > 0 ? 'var(--error)' : 'inherit'}">${a.errorCount}</td>
<td class="text-sm nowrap">${a.lastUsed ? new Date(a.lastUsed).toLocaleString() : '-'}</td>
<td class="nowrap">
<code style="cursor:pointer" title="点击复制" onclick="App.copyKey('${this.esc(a.apiKey)}')">${a.keyPrefix}</code>
</td>
<td class="nowrap">
<div class="btn-group">
<button class="btn btn-ghost btn-xs" onclick="App.probeAccount('${a.id}')" title="探测能力">探测</button>
<button class="btn btn-ghost btn-xs" onclick="App.refreshCredits('${a.id}')" title="刷新余额">余额</button>
${a.status === 'active'
? `<button class="btn btn-ghost btn-xs" onclick="App.toggleAccount('${a.id}','disabled')">停用</button>`
: `<button class="btn btn-success btn-xs" onclick="App.toggleAccount('${a.id}','active')">启用</button>`}
<button class="btn btn-ghost btn-xs" onclick="App.resetErrors('${a.id}')">重置</button>
<button class="btn btn-ghost btn-xs" style="color:var(--error)" onclick="App.deleteAccount('${a.id}')">删除</button>
</div>
</td>
</tr>`;
}).join('') || '<tr class="empty-row"><td colspan="11">暂无账号,请先添加</td></tr>';
},
async refreshCredits(id) {
try {
const r = await this.api('POST', `/accounts/${id}/refresh-credits`, {});
if (r.ok) {
this.toast('余额已刷新');
this.loadAccounts();
} else {
this.toast(r.error || '刷新失败', 'error');
}
} catch (e) { this.toast('刷新失败: ' + e.message, 'error'); }
},
async refreshAllCredits() {
this.toast('正在刷新所有账号余额...', 'info');
try {
const r = await this.api('POST', '/accounts/refresh-credits', {});
if (r.success) {
const okCount = (r.results || []).filter(x => x.ok).length;
const failCount = (r.results || []).length - okCount;
this.toast(`余额刷新完成:${okCount} 成功 / ${failCount} 失败`);
this.loadAccounts();
} else {
this.toast(r.error || '刷新失败', 'error');
}
} catch (e) { this.toast('刷新失败: ' + e.message, 'error'); }
},
async probeAll() {
this.toast('全部探测中,依账号数量约需 1-3 分钟...', 'info');
try {
const r = await this.api('POST', '/accounts/probe-all', {});
if (r.success) {
const tierLabel = { pro: 'Pro', free: 'Free', expired: '已过期', unknown: '未知' };
const summary = (r.results || []).map(x => `${x.email}: ${tierLabel[x.tier] || x.tier || x.error}`).join(';');
this.toast('探测完成:' + summary);
this.loadAccounts();
} else {
this.toast(r.error || '探测失败', 'error');
}
} catch (e) { this.toast('探测失败: ' + e.message, 'error'); }
},
async probeAccount(id) {
this.toast('探测中,约需 10-30 秒...', 'info');
try {
const r = await this.api('POST', `/accounts/${id}/probe`, {});
if (r.success) {
const tierLabel = { pro: 'Pro', free: 'Free', expired: '已过期', unknown: '未知' };
this.toast(`探测完成:${tierLabel[r.tier] || r.tier}`);
this.loadAccounts();
} else {
this.toast(r.error || '探测失败', 'error');
}
} catch (e) { this.toast('探测失败: ' + e.message, 'error'); }
},
async openBlockedModal(id) {
try {
const d = await this.api('GET', '/accounts', null);
const acct = (d.accounts || []).find(a => a.id === id);
if (!acct) return this.toast('账号不存在', 'error');
const tierModels = acct.tierModels || [];
const blocked = new Set(acct.blockedModels || []);
if (!tierModels.length) return this.toast('该账号层级无可用模型', 'info');
const providerOf = (m) => {
if (m.startsWith('claude')) return 'anthropic';
if (m.startsWith('gpt') || m.startsWith('o3') || m.startsWith('o4')) return 'openai';
if (m.startsWith('gemini')) return 'google';
if (m.startsWith('grok')) return 'xai';
if (m.startsWith('deepseek')) return 'deepseek';
if (m.startsWith('qwen')) return 'alibaba';
if (m.startsWith('kimi')) return 'moonshot';
if (m.startsWith('swe') || m.startsWith('arena')) return 'windsurf';
return 'other';
};
const groups = {};
for (const m of tierModels) (groups[providerOf(m)] = groups[providerOf(m)] || []).push(m);
const total = tierModels.length;
const availInit = total - blocked.size;
const html = `
<div style="display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:10px;padding:8px 10px;background:var(--surface-2);border-radius:6px">
<div class="text-xs text-dim">勾选 = 可用;取消 = 对该账号禁用</div>
<div style="font-size:13px">
已启用 <span id="bm-avail" style="color:var(--success,#10b981);font-weight:600">${availInit}</span>
<span style="color:var(--text-dim)"> / ${total}</span>
</div>
</div>
<div style="display:flex;gap:6px;margin-bottom:10px">
<button class="btn btn-ghost btn-xs" onclick="App.blockedModalToggleAll(true)">全选</button>
<button class="btn btn-ghost btn-xs" onclick="App.blockedModalToggleAll(false)">全不选</button>
<button class="btn btn-ghost btn-xs" onclick="App.blockedModalInvert()">反选</button>
</div>
<div style="max-height:50vh;overflow:auto;padding:2px 2px 2px 0">
${Object.entries(groups).map(([provider, models]) => `
<div class="bm-group" data-provider="${provider}" style="margin-bottom:12px;border:1px solid var(--border);border-radius:6px;padding:8px 10px">
<label style="display:flex;align-items:center;gap:8px;cursor:pointer;margin-bottom:6px;padding-bottom:6px;border-bottom:1px solid var(--border)">
<input type="checkbox" class="bm-group-cb" data-provider="${provider}">
<span style="text-transform:uppercase;letter-spacing:.5px;font-size:11px;color:var(--text-muted);font-weight:600">${provider}</span>
<span class="text-xs text-dim" data-role="count">(${models.filter(m => !blocked.has(m)).length}/${models.length})</span>
</label>
<div style="display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:2px 10px">
${models.map(m => `
<label style="display:flex;align-items:center;gap:6px;padding:3px 4px;border-radius:3px;cursor:pointer;font-size:12px" onmouseover="this.style.background='var(--surface-2)'" onmouseout="this.style.background=''">
<input type="checkbox" class="blocked-model-cb" data-model="${this.esc(m)}" data-provider="${provider}" ${blocked.has(m) ? '' : 'checked'}>
<span>${this.esc(m)}</span>
</label>
`).join('')}
</div>
</div>
`).join('')}
</div>`;
// Fire-and-forget: confirm() drops the modal into the DOM synchronously
// so we can wire listeners on the next microtask. We don't await its
// Promise — _bindBlockedModal replaces the OK handler with one that
// PATCHes and closes itself, so the original resolve() only fires on
// Cancel, which we ignore.
this.confirm(`编辑可用模型 — ${acct.email}`, html, { okText: '保存', html: true, wide: true });
setTimeout(() => this._bindBlockedModal(id), 0);
} catch (e) { this.toast('打开失败: ' + e.message, 'error'); }
},
// Bind listeners once the blocked-models modal is mounted.
// Listeners live on the modal so they're GC'd when it closes.
// `accountId` is passed by the caller so the PATCH target can't drift
// if the user opens two modals in quick succession.
_bindBlockedModal(accountId) {
const root = document.querySelector('.modal-overlay:last-child');
if (!root) return;
const updateGroup = (provider) => {
const group = root.querySelector(`.bm-group[data-provider="${provider}"]`);
if (!group) return;
const boxes = group.querySelectorAll('.blocked-model-cb');
const checked = [...boxes].filter(b => b.checked).length;
const groupCb = group.querySelector('.bm-group-cb');
groupCb.checked = checked === boxes.length;
groupCb.indeterminate = checked > 0 && checked < boxes.length;
group.querySelector('[data-role=count]').textContent = `(${checked}/${boxes.length})`;
};
const updateTotal = () => {
const all = root.querySelectorAll('.blocked-model-cb');
const checked = [...all].filter(b => b.checked).length;
const el = root.querySelector('#bm-avail');
if (el) el.textContent = checked;
};
root.querySelectorAll('.bm-group').forEach(g => updateGroup(g.dataset.provider));
updateTotal();
root.querySelectorAll('.blocked-model-cb').forEach(cb => {
cb.addEventListener('change', () => { updateGroup(cb.dataset.provider); updateTotal(); });
});
root.querySelectorAll('.bm-group-cb').forEach(gcb => {
gcb.addEventListener('change', () => {
const provider = gcb.dataset.provider;
root.querySelectorAll(`.blocked-model-cb[data-provider="${provider}"]`).forEach(cb => { cb.checked = gcb.checked; });
updateGroup(provider);
updateTotal();
});
});
// Intercept OK to PATCH, then close. We replace the handler confirm()
// installed so the modal stays open on network errors.
const okBtn = root.querySelector('[data-act=ok]');
const cancelBtn = root.querySelector('[data-act=cancel]');
if (!okBtn || okBtn.dataset.bmBound) return;
okBtn.dataset.bmBound = '1';
const id = accountId;
const self = this;
okBtn.onclick = async () => {
const newBlocked = [];
root.querySelectorAll('.blocked-model-cb').forEach(cb => { if (!cb.checked) newBlocked.push(cb.dataset.model); });
okBtn.disabled = true; cancelBtn.disabled = true;
okBtn.textContent = '保存中...';
try {
const r = await self.api('PATCH', `/accounts/${id}`, { blockedModels: newBlocked });
if (r.success) {
self.toast(`已保存:启用 ${root.querySelectorAll('.blocked-model-cb:checked').length} / 禁用 ${newBlocked.length}`, 'success');
root.remove();
self.loadAccounts();
} else {
self.toast(r.error || '保存失败', 'error');
okBtn.disabled = false; cancelBtn.disabled = false; okBtn.textContent = '保存';
}
} catch (e) {
self.toast('保存失败: ' + e.message, 'error');
okBtn.disabled = false; cancelBtn.disabled = false; okBtn.textContent = '保存';
}
};
},
blockedModalToggleAll(checked) {
const root = document.querySelector('.modal-overlay:last-child');
if (!root) return;
root.querySelectorAll('.blocked-model-cb').forEach(cb => { cb.checked = checked; });
root.querySelectorAll('.blocked-model-cb').forEach(cb => cb.dispatchEvent(new Event('change')));
},
blockedModalInvert() {
const root = document.querySelector('.modal-overlay:last-child');
if (!root) return;
root.querySelectorAll('.blocked-model-cb').forEach(cb => {
cb.checked = !cb.checked;
cb.dispatchEvent(new Event('change'));
});
},
async addAccount() {
const type = document.getElementById('acc-type').value;
const key = document.getElementById('acc-key').value.trim();
const label = document.getElementById('acc-label').value.trim();
if (!key) return this.toast('请输入 Key 或 Token', 'error');
const body = type === 'api_key' ? { api_key: key, label } : { token: key, label };
const r = await this.api('POST', '/accounts', body);
if (r.success) { this.toast('账号已添加'); document.getElementById('acc-key').value = ''; document.getElementById('acc-label').value = ''; this.loadAccounts(); }
else this.toast(r.error || '添加失败', 'error');
},
async toggleAccount(id, status) { await this.api('PATCH', `/accounts/${id}`, { status }); this.loadAccounts(); },
async overrideTier(id, current) {
const newTier = await this.prompt(
'手动设置账号层级',
`当前: ${current}。Windsurf Pro 试用有时自动探测失败(issue #8 的连锁影响),手动改成 pro 即可解锁所有 Pro 模型。`,
[{ name: 'tier', label: '层级', type: 'select', options: [
{ value: 'pro', label: 'Pro(解锁所有模型)' },
{ value: 'free', label: 'Free(仅 gpt-4o-mini 和 gemini-2.5-flash)' },
{ value: 'unknown', label: 'Unknown(让系统重新判定)' },
], value: current }]
);
if (!newTier) return;
await this.api('PATCH', `/accounts/${id}`, { tier: newTier.tier });
this.toast(`层级已设为 ${newTier.tier}`, 'success');
this.loadAccounts();
},
async resetErrors(id) { await this.api('PATCH', `/accounts/${id}`, { resetErrors: true }); this.loadAccounts(); this.toast('错误已重置'); },
async deleteAccount(id) {
const ok = await this.confirm('删除账号', '此操作不可撤销,确定要删除该账号吗?', { danger: true, okText: '删除' });
if (!ok) return;
await this.api('DELETE', `/accounts/${id}`);
this.loadAccounts();
this.toast('账号已删除');
},
// ─── Models ──────────────────────────────────
async loadModels() {
const [modelData, accessData] = await Promise.all([
this.api('GET', '/models'),
this.api('GET', '/model-access'),
]);
this.allModels = modelData.models || [];
this.modelAccessConfig = accessData.mode ? accessData : { mode: 'all', list: [] };
document.querySelector(`input[name="model-mode"][value="${this.modelAccessConfig.mode}"]`).checked = true;
this.updateModelListUI();
},
updateModelListUI() {
const sec = document.getElementById('model-list-section');
if (this.modelAccessConfig.mode === 'all') {
sec.classList.add('hidden');
return;
}
sec.classList.remove('hidden');
const isAllow = this.modelAccessConfig.mode === 'allowlist';
document.getElementById('model-list-title').textContent = isAllow ? '允许的模型' : '屏蔽的模型';
document.getElementById('model-list-hint').textContent = isAllow
? '只有选中的模型可以使用,未选中的模型将返回 403 错误'
: '选中的模型将被屏蔽,未选中的模型可正常使用';
const current = this.modelAccessConfig.list;
if (current.length > 0) {
document.getElementById('model-list-current').innerHTML = `
<div class="text-xs text-muted" style="margin-bottom:6px">当前清单 (${current.length})</div>
<div class="model-chips">${current.map(m => `<span class="model-chip selected">${m}<span class="remove" onclick="App.removeModelFromList('${m}')">×</span></span>`).join('')}</div>`;
} else {
document.getElementById('model-list-current').innerHTML = '<div class="text-xs text-dim">清单为空</div>';
}
this.filterModels();
},
filterModels() {
const search = (document.getElementById('model-search')?.value || '').toLowerCase();
const provider = document.getElementById('model-provider-filter')?.value || '';
const list = this.modelAccessConfig.list;
const filtered = this.allModels.filter(m => {
if (search && !m.name.toLowerCase().includes(search) && !m.provider.toLowerCase().includes(search)) return false;
if (provider && m.provider !== provider) return false;
return true;
});
const grouped = {};
for (const m of filtered) {
if (!grouped[m.provider]) grouped[m.provider] = [];
grouped[m.provider].push(m);
}
const container = document.getElementById('model-chips-container');
container.innerHTML = Object.entries(grouped).map(([prov, models]) => `
<div class="provider-group">
<div class="provider-label">${prov}</div>
<div class="model-chips">${models.map(m => {
const inList = list.includes(m.id);
return `<span class="model-chip ${inList ? 'selected' : ''}" onclick="App.toggleModelInList('${m.id}')">${m.name}</span>`;
}).join('')}</div>
</div>
`).join('') || '<div class="text-sm text-dim">没有符合的模型</div>';
},
async setModelMode(mode) {
await this.api('PUT', '/model-access', { mode });
this.modelAccessConfig.mode = mode;
this.updateModelListUI();
this.toast('模式已更新');
},
async toggleModelInList(modelId) {
const idx = this.modelAccessConfig.list.indexOf(modelId);
if (idx > -1) {
await this.api('POST', '/model-access/remove', { model: modelId });
this.modelAccessConfig.list.splice(idx, 1);
} else {
await this.api('POST', '/model-access/add', { model: modelId });
this.modelAccessConfig.list.push(modelId);
}
this.updateModelListUI();
},
async removeModelFromList(modelId) {
await this.api('POST', '/model-access/remove', { model: modelId });
this.modelAccessConfig.list = this.modelAccessConfig.list.filter(m => m !== modelId);
this.updateModelListUI();
},
// ─── Proxy ───────────────────────────────────
async loadProxy() {
const d = await this.api('GET', '/proxy');
if (d.global) {
document.getElementById('proxy-type').value = d.global.type || 'http';
document.getElementById('proxy-host').value = (d.global.host || '').replace(/:\d+$/, '');
document.getElementById('proxy-port').value = d.global.port || '';
document.getElementById('proxy-user').value = d.global.username || '';
document.getElementById('proxy-pass').value = d.global.password || '';
const h = (d.global.host || '').replace(/:\d+$/, '');
const authInfo = d.global.username ? `(认证:${d.global.username})` : '';
document.getElementById('proxy-current').textContent = `当前:${d.global.type}://${h}:${d.global.port}${authInfo}`;
} else {
document.getElementById('proxy-current').textContent = '未配置全局代理';
}
const accts = await this.api('GET', '/accounts');
const tbody = document.querySelector('#proxy-accounts-table tbody');
const pa = d.perAccount || {};
tbody.innerHTML = (accts.accounts || []).map(a => {
const p = pa[a.id];
return `<tr>
<td>${this.esc(a.email)} <code class="text-xs">${a.id}</code></td>
<td>${p ? `<code>${p.type}://${p.username ? p.username + '@' : ''}${p.host}:${p.port}</code>` : '<span class="text-sm text-dim">无(使用全局)</span>'}</td>
<td class="nowrap">
<div class="btn-group">
<button class="btn btn-outline btn-xs" onclick="App.editAccountProxy('${a.id}','${this.esc(a.email)}')">配置</button>
${p ? `<button class="btn btn-ghost btn-xs" style="color:var(--error)" onclick="App.clearAccountProxy('${a.id}')">清除</button>` : ''}
</div>
</td>
</tr>`;
}).join('') || '<tr class="empty-row"><td colspan="3">暂无账号</td></tr>';
},
async saveGlobalProxy() {
const cfg = {
type: document.getElementById('proxy-type').value,
host: document.getElementById('proxy-host').value.trim(),
port: document.getElementById('proxy-port').value,
username: document.getElementById('proxy-user').value,
password: document.getElementById('proxy-pass').value,
};
if (!cfg.host) return this.toast('请输入代理主机', 'error');
await this.api('PUT', '/proxy/global', cfg);
this.toast('全局代理已保存');
this.loadProxy();
},
async clearGlobalProxy() {
await this.api('DELETE', '/proxy/global');
['proxy-host','proxy-port','proxy-user','proxy-pass'].forEach(id => document.getElementById(id).value = '');
this.toast('全局代理已清除');
this.loadProxy();
},
async editAccountProxy(id, label) {
const values = await this.prompt(
`配置账号代理`,
`为账号 ${label} 设置独立代理`,
[
{ name: 'type', label: '类型', type: 'select', value: 'http', options: [
{ value: 'http', label: 'HTTP' },
{ value: 'https', label: 'HTTPS' },
{ value: 'socks5', label: 'SOCKS5' },
]},
{ name: 'host', label: '主机', placeholder: '例如 proxy.example.com' },
{ name: 'port', label: '端口', type: 'number', placeholder: '8080' },
{ name: 'username', label: '用户名', placeholder: '可选' },
{ name: 'password', label: '密码', type: 'password', placeholder: '可选' },
]
);
if (!values || !values.host) return;
await this.api('PUT', `/proxy/accounts/${id}`, {
type: values.type || 'http',
host: values.host,
port: parseInt(values.port) || 8080,
username: values.username || '',
password: values.password || '',
});
this.toast('账号代理已配置');
this.loadProxy();
},
async clearAccountProxy(id) {
await this.api('DELETE', `/proxy/accounts/${id}`);
this.toast('账号代理已清除');
this.loadProxy();
},
// ─── Logs ────────────────────────────────────
loadLogs() {
this.logEntries = [];
document.getElementById('log-container').innerHTML = '';
// EventSource can't set custom headers, so pass the dashboard password
// via query string (same secret, only transmitted over same-origin).
const qs = this.password ? `?pwd=${encodeURIComponent(this.password)}` : '';
this.sseConn = new EventSource('/dashboard/api/logs/stream' + qs);
this.sseConn.onmessage = (e) => {
try {
const entry = JSON.parse(e.data);
this.logEntries.push(entry);
if (this.logEntries.length > 500) this.logEntries.shift();
this.renderLogEntry(entry);
} catch {}
};
this.sseConn.onerror = () => {};
},
renderLogEntry(entry) {
const container = document.getElementById('log-container');
const levelFilter = document.getElementById('log-level').value;
const search = document.getElementById('log-search').value.toLowerCase();
if (levelFilter && entry.level !== levelFilter) return;
if (search && !entry.msg.toLowerCase().includes(search)) return;
const div = document.createElement('div');
div.className = 'log-entry ' + entry.level;
const ts = new Date(entry.ts).toLocaleTimeString();
div.innerHTML = `<span class="ts">${ts}</span><span class="lvl">${entry.level.toUpperCase()}</span><span>${this.esc(entry.msg)}</span>`;
container.appendChild(div);
if (container.children.length > 500) container.removeChild(container.firstChild);
if (document.getElementById('log-autoscroll').checked) container.scrollTop = container.scrollHeight;
},
debouncedFilterLogs() {
clearTimeout(this._filterTimer);
this._filterTimer = setTimeout(() => this.filterLogs(), 200);
},
filterLogs() {
const container = document.getElementById('log-container');
const frag = document.createDocumentFragment();
const levelFilter = document.getElementById('log-level').value;
const search = document.getElementById('log-search').value.toLowerCase();
for (const entry of this.logEntries) {
if (levelFilter && entry.level !== levelFilter) continue;
if (search && !entry.msg.toLowerCase().includes(search)) continue;
const div = document.createElement('div');
div.className = 'log-entry ' + entry.level;
const ts = new Date(entry.ts).toLocaleTimeString();
div.innerHTML = `<span class="ts">${ts}</span><span class="lvl">${entry.level.toUpperCase()}</span><span>${this.esc(entry.msg)}</span>`;
frag.appendChild(div);
}
container.innerHTML = '';
container.appendChild(frag);
},
clearLogView() {
this.logEntries = [];
document.getElementById('log-container').innerHTML = '';
},
// ─── Stats ───────────────────────────────────
statsRange: 24,
setStatsRange(hours) {
this.statsRange = hours;
document.querySelectorAll('.stats-range-btn').forEach(b => {
b.classList.toggle('active', Number(b.dataset.range) === hours);
});
this.loadStats();
},
async loadStats() {
const d = await this.api('GET', '/stats');
const totalReq = d.totalRequests || 0;
const successRate = totalReq > 0 ? ((d.successCount/totalReq)*100).toFixed(1) : '0.0';
const allP95 = Object.values(d.modelCounts || {})
.filter(m => m.p95Ms > 0).map(m => m.p95Ms);
const avgP95 = allP95.length ? Math.round(allP95.reduce((a,b)=>a+b,0) / allP95.length) : 0;
const uptimeSec = d.startedAt ? Math.floor((Date.now() - d.startedAt) / 1000) : 0;
const fmtUptime = s => s < 60 ? `${s}s` : s < 3600 ? `${Math.floor(s/60)}m` : s < 86400 ? `${(s/3600).toFixed(1)}h` : `${(s/86400).toFixed(1)}d`;
document.getElementById('stats-cards').innerHTML = `
<div class="card info"><div class="card-header"><div class="card-title">总请求</div></div><div class="card-value">${totalReq}</div><div class="card-sub">运行 ${fmtUptime(uptimeSec)}</div></div>
<div class="card success"><div class="card-header"><div class="card-title">成功</div></div><div class="card-value">${d.successCount || 0}</div><div class="card-sub">成功率 ${successRate}%</div></div>
<div class="card error"><div class="card-header"><div class="card-title">错误</div></div><div class="card-value">${d.errorCount || 0}</div><div class="card-sub">失败率 ${totalReq > 0 ? (100-Number(successRate)).toFixed(1) : '0.0'}%</div></div>
<div class="card accent"><div class="card-header"><div class="card-title">平均 p95 延迟</div></div><div class="card-value">${avgP95}<span style="font-size:14px;font-weight:400;margin-left:4px">ms</span></div><div class="card-sub">${allP95.length} 个模型</div></div>
`;
const models = d.modelCounts || {};
// sort by requests desc
const sortedModels = Object.entries(models).sort(([,a],[,b]) => b.requests - a.requests);
const tbody = document.querySelector('#model-stats-table tbody');
tbody.innerHTML = sortedModels.map(([m, s]) => {
const rate = s.requests > 0 ? ((s.success/s.requests)*100).toFixed(1) : '0.0';
const rateColor = Number(rate) >= 95 ? 'var(--success)' : Number(rate) >= 80 ? 'var(--warning, #f59e0b)' : 'var(--error)';
return `
<tr>
<td><code>${this.esc(m)}</code></td>
<td>${s.requests}</td>
<td style="color:var(--success)">${s.success}</td>
<td style="color:${s.errors > 0 ? 'var(--error)' : 'inherit'}">${s.errors}</td>
<td style="color:${rateColor};font-weight:600">${rate}%</td>
<td class="text-sm">${s.avgMs || 0} ms</td>
<td class="text-sm">${s.p50Ms || 0} ms</td>
<td class="text-sm">${s.p95Ms || 0} ms</td>
</tr>`;
}).join('') || '<tr class="empty-row"><td colspan="8">暂无请求数据</td></tr>';
// Account breakdown
const accounts = d.accountCounts || {};
const sortedAccts = Object.entries(accounts).sort(([,a],[,b]) => b.requests - a.requests);
const acctBody = document.querySelector('#account-stats-table tbody');
if (acctBody) {
acctBody.innerHTML = sortedAccts.map(([aid, s]) => {
const rate = s.requests > 0 ? ((s.success/s.requests)*100).toFixed(1) : '0.0';
return `<tr>
<td><code>${this.esc(aid)}</code></td>
<td>${s.requests}</td>
<td style="color:var(--success)">${s.success}</td>
<td style="color:${s.errors > 0 ? 'var(--error)' : 'inherit'}">${s.errors}</td>
<td>${rate}%</td>
</tr>`;
}).join('') || '<tr class="empty-row"><td colspan="5">暂无账号级请求数据</td></tr>';
}
// Time-range chart
const buckets = (d.hourlyBuckets || []).slice(-this.statsRange);
const maxReq = Math.max(1, ...buckets.map(b => b.requests));
document.getElementById('stats-chart').innerHTML = buckets.map(b => {
const h = Math.max(2, (b.requests / maxReq) * 100);
const errRate = b.requests > 0 ? ((b.errors / b.requests) * 100).toFixed(0) : '0';
const hr = new Date(b.hour).getHours();
return `<div class="bar-wrap"><div class="bar ${b.errors > 0 ? 'has-errors' : ''}" style="height:${h}%" title="${b.hour} · ${b.requests} 请求 · ${b.errors} 错误 (${errRate}%)"></div><div class="bar-label">${hr}时</div></div>`;
}).join('') || '<div class="text-sm text-dim" style="text-align:center;width:100%;padding:30px">暂无数据</div>';
this.poll('stats', () => this.loadStats(), 30000);
},
async resetStats() {
const ok = await this.confirm('重置统计', '所有请求统计数据将被清空,此操作不可恢复', { danger: true, okText: '重置' });
if (!ok) return;
await this.api('DELETE', '/stats');
this.toast('统计已重置');
this.loadStats();
},
// ─── Experimental features ───────────────────
PROVIDER_LABELS: {
anthropic: 'Anthropic · Claude',
openai: 'OpenAI · GPT / o 系列',
google: 'Google · Gemini',
deepseek: 'DeepSeek',
xai: 'xAI · Grok',
alibaba: 'Alibaba · Qwen',
moonshot: 'Moonshot · Kimi',
zhipu: 'Zhipu · GLM',
minimax: 'MiniMax',
windsurf: 'Windsurf · SWE',
},
async loadExperimental() {
const d = await this.api('GET', '/experimental');
const cb = document.getElementById('exp-cascade-reuse');
if (cb) cb.checked = !!d.flags?.cascadeConversationReuse;
const idCb = document.getElementById('exp-identity-prompt');
if (idCb) idCb.checked = !!d.flags?.modelIdentityPrompt;
const pool = d.conversationPool || {};
document.getElementById('exp-pool-cards').innerHTML = `
<div class="card info">
<div class="card-header"><div class="card-title">命中率</div></div>
<div class="card-value">${pool.hitRate || '0.0'}%</div>
<div class="card-sub">${pool.hits || 0} 命中 / ${pool.misses || 0} 未命中</div>
</div>
<div class="card">
<div class="card-header"><div class="card-title">对话池</div></div>
<div class="card-value">${pool.size || 0}</div>
<div class="card-sub">上限 ${pool.maxSize || 0} · TTL ${Math.round((pool.ttlMs || 0) / 60000)} 分钟</div>
</div>
<div class="card">
<div class="card-header"><div class="card-title">存储次数</div></div>
<div class="card-value">${pool.stores || 0}</div>
<div class="card-sub">过期 ${pool.expired || 0} · 淘汰 ${pool.evictions || 0}</div>
</div>
`;
// Identity prompts editor
const ip = await this.api('GET', '/identity-prompts');
this._identityDefaults = ip.defaults || {};
const holder = document.getElementById('identity-prompts-editor');
if (holder) {
const prompts = ip.prompts || {};
holder.innerHTML = Object.entries(prompts).map(([provider, text]) => {
const label = this.PROVIDER_LABELS[provider] || provider;
const isDefault = text === this._identityDefaults[provider];
return `
<div style="border:1px solid var(--border);border-radius:var(--radius);padding:12px;background:var(--surface)">
<div style="display:flex;align-items:center;justify-content:space-between;margin-bottom:8px">
<div style="display:flex;align-items:center;gap:8px">
<code style="color:var(--accent);font-weight:600">${provider}</code>
<span class="text-sm text-muted">${label}</span>
${isDefault ? '' : '<span class="text-xs" style="background:var(--accent);color:#fff;padding:2px 6px;border-radius:3px">已自定义</span>'}
</div>
<div class="btn-group">
<button class="btn btn-ghost btn-xs" onclick="App.resetIdentityPrompt('${provider}')" ${isDefault ? 'disabled' : ''}>恢复默认</button>
<button class="btn btn-primary btn-xs" onclick="App.saveIdentityPrompt('${provider}')">保存</button>
</div>
</div>
<textarea id="id-prompt-${provider}" class="input" rows="3" style="width:100%;font-family:var(--mono);font-size:12px;resize:vertical;line-height:1.5">${this.esc(text)}</textarea>
</div>
`;
}).join('');
}
},
async saveIdentityPrompt(provider) {
const ta = document.getElementById(`id-prompt-${provider}`);
if (!ta) return;
const v = ta.value.trim();
if (!v) return this.toast('模板不能为空', 'error');
if (!v.includes('{model}')) {
const ok = await this.confirm('缺少 {model} 占位符', '保存后该厂商的模型名将无法被替换进提示词。确定继续?', { okText: '仍然保存' });
if (!ok) return;
}
await this.api('PUT', '/identity-prompts', { [provider]: v });
this.toast(`${provider} 模板已保存`, 'success');
this.loadExperimental();
},
async resetIdentityPrompt(provider) {
const ok = await this.confirm('恢复默认', `确定将 ${provider} 模板恢复到默认?`, { okText: '恢复' });
if (!ok) return;
await this.api('DELETE', `/identity-prompts/${provider}`);
this.toast(`${provider} 已恢复默认`, 'success');
this.loadExperimental();
},
async testLoginProxy() {
const host = document.getElementById('wl-proxy-host').value.trim();
const port = parseInt(document.getElementById('wl-proxy-port').value) || 0;
if (!host || !port) return this.toast('请先填主机和端口', 'error');
const type = document.getElementById('wl-proxy-type').value;
const username = document.getElementById('wl-proxy-user').value.trim();
const password = document.getElementById('wl-proxy-pass').value;
const btn = document.getElementById('wl-proxy-test-btn');
const out = document.getElementById('wl-proxy-test-result');
btn.disabled = true;
out.textContent = '测试中...';
out.style.color = 'var(--text-muted)';
try {
const r = await this.api('POST', '/test-proxy', { host, port, username, password, type });
if (r.ok) {
out.textContent = `✓ 连通成功 出口 IP ${r.egressIp} · 耗时 ${r.latencyMs}ms`;
out.style.color = 'var(--success)';
} else {
out.textContent = `✗ 失败: ${r.error} · ${r.latencyMs}ms`;
out.style.color = 'var(--error)';
}
} catch (e) {
out.textContent = `✗ ${e.message}`;
out.style.color = 'var(--error)';
} finally {
btn.disabled = false;
}
},
async toggleExperimental(key, enabled) {
try {
await this.api('PUT', '/experimental', { [key]: enabled });
this.toast(`${enabled ? '已启用' : '已关闭'}实验性功能`, 'success');
this.loadExperimental();
} catch (e) {
this.toast('切换失败:' + e.message, 'error');
this.loadExperimental();
}
},
async clearConversationPool() {
const ok = await this.confirm('清空对话池', '当前所有进行中的 Cascade 会话都将放弃复用,确定继续吗?', { okText: '清空' });
if (!ok) return;
const r = await this.api('DELETE', '/experimental/conversation-pool');
this.toast(`已清空 ${r.cleared || 0} 条会话`, 'success');
this.loadExperimental();
},
// ─── Ban Detection ───────────────────────────
async loadBans() {
const d = await this.api('GET', '/accounts');
const accounts = d.accounts || [];
const errored = accounts.filter(a => a.status === 'error' || a.errorCount > 0);
document.getElementById('ban-cards').innerHTML = `
<div class="card ${errored.length > 0 ? 'error' : 'success'}">
<div class="card-header"><div class="card-title">异常账号</div></div>
<div class="card-value">${errored.length}</div>
<div class="card-sub">共 ${accounts.length} 个账号</div>
</div>
<div class="card warn">
<div class="card-header"><div class="card-title">已停用</div></div>
<div class="card-value">${accounts.filter(a => a.status === 'error').length}</div>
<div class="card-sub">自动错误停用</div>
</div>
<div class="card info">
<div class="card-header"><div class="card-title">限流中</div></div>
<div class="card-value">${accounts.filter(a => a.rateLimited).length}</div>
<div class="card-sub">暂时不参与调度</div>
</div>
`;
const tbody = document.querySelector('#ban-table tbody');
tbody.innerHTML = accounts.map(a => {
const flagged = a.status === 'error' || a.errorCount > 0;
return `<tr style="${flagged ? 'background:rgba(239,68,68,.03)' : ''}">
<td>${this.esc(a.email)} <code class="text-xs">${a.id}</code></td>
<td><span class="badge ${a.status}">${a.status}</span></td>
<td style="color:${a.errorCount > 0 ? 'var(--error)' : 'inherit'}">${a.errorCount}</td>
<td class="text-sm">${a.lastUsed ? new Date(a.lastUsed).toLocaleString() : '-'}</td>
<td class="nowrap">
<div class="btn-group">
${a.status === 'error' ? `<button class="btn btn-success btn-xs" onclick="App.toggleAccount('${a.id}','active');setTimeout(()=>App.loadBans(),500)">重新启用</button>` : ''}
${a.errorCount > 0 ? `<button class="btn btn-outline btn-xs" onclick="App.resetErrors('${a.id}');setTimeout(()=>App.loadBans(),500)">重置错误</button>` : ''}
</div>
</td>
</tr>`;
}).join('') || '<tr class="empty-row"><td colspan="5">暂无账号</td></tr>';
this.poll('bans', () => this.loadBans(), 30000);
},
// ─── Helpers ─────────────────────────────────
fmtDuration(secs) {
const d = Math.floor(secs / 86400), h = Math.floor((secs % 86400) / 3600), m = Math.floor((secs % 3600) / 60);
if (d > 0) return `${d}天 ${h}时 ${m}分`;
if (h > 0) return `${h}时 ${m}分`;
return `${m}分 ${Math.floor(secs % 60)}秒`;
},
copyKey(key) {
const fallback = () => {
try {
const ta = document.createElement('textarea');
ta.value = key;
ta.style.position = 'fixed';
ta.style.left = '-9999px';
document.body.appendChild(ta);
ta.focus();
ta.select();
const ok = document.execCommand('copy');
ta.remove();
this.toast(ok ? 'API Key 已复制' : '复制失败,请手动选择', ok ? 'success' : 'error');
} catch (e) {
this.toast('复制失败: ' + e.message, 'error');
}
};
if (navigator.clipboard && window.isSecureContext) {
navigator.clipboard.writeText(key).then(() => this.toast('API Key 已复制')).catch(fallback);
} else {
fallback();
}
},
esc(s) { return String(s == null ? '' : s).replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>').replace(/"/g,'"').replace(/'/g,'''); },
};
window.addEventListener('DOMContentLoaded', () => App.init());
</script>
</body>
</html>
|