File size: 41,585 Bytes
88c4c60 | 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 | "use client";
import { useCallback, useEffect, useMemo, useState, useRef } from "react";
import { Badge, Button, Card, CardSkeleton, Input, Modal, Toggle, ConfirmModal } from "@/shared/components";
import { useNotificationStore } from "@/store/notificationStore";
function getStatusVariant(status) {
if (status === "active") return "success";
if (status === "error") return "error";
return "default";
}
function formatDateTime(value) {
if (!value) return "Never";
const date = new Date(value);
if (Number.isNaN(date.getTime())) return "Never";
return date.toLocaleString();
}
function normalizeFormData(data = {}) {
return {
name: data.name || "",
proxyUrl: data.proxyUrl || "",
noProxy: data.noProxy || "",
isActive: data.isActive !== false,
strictProxy: data.strictProxy === true,
};
}
export default function ProxyPoolsPage() {
const [proxyPools, setProxyPools] = useState([]);
const [loading, setLoading] = useState(true);
const [showFormModal, setShowFormModal] = useState(false);
const [showBatchImportModal, setShowBatchImportModal] = useState(false);
const [showVercelModal, setShowVercelModal] = useState(false);
const [showCloudflareModal, setShowCloudflareModal] = useState(false);
const [showDenoModal, setShowDenoModal] = useState(false);
const [showRelayMenu, setShowRelayMenu] = useState(false);
const [editingProxyPool, setEditingProxyPool] = useState(null);
const [formData, setFormData] = useState(normalizeFormData());
const [batchImportText, setBatchImportText] = useState("");
const [vercelForm, setVercelForm] = useState({ vercelToken: "", projectName: "vercel-relay" });
const [cloudflareForm, setCloudflareForm] = useState({ accountId: "", apiToken: "", projectName: "cloudflare-relay" });
const [denoForm, setDenoForm] = useState({ denoToken: "", orgDomain: "", projectName: "" });
const [saving, setSaving] = useState(false);
const [importing, setImporting] = useState(false);
const [deploying, setDeploying] = useState(false);
const [testingId, setTestingId] = useState(null);
const [selectedIds, setSelectedIds] = useState([]);
const [healthChecking, setHealthChecking] = useState(false);
const [healthProgress, setHealthProgress] = useState({ current: 0, total: 0 });
const [bulkBusy, setBulkBusy] = useState(false);
const [confirmState, setConfirmState] = useState(null);
const relayMenuRef = useRef(null);
const notify = useNotificationStore();
useEffect(() => {
const handleClickOutside = (e) => {
if (relayMenuRef.current && !relayMenuRef.current.contains(e.target)) {
setShowRelayMenu(false);
}
};
if (showRelayMenu) {
document.addEventListener("mousedown", handleClickOutside);
}
return () => document.removeEventListener("mousedown", handleClickOutside);
}, [showRelayMenu]);
const fetchProxyPools = useCallback(async () => {
try {
const res = await fetch("/api/proxy-pools?includeUsage=true", { cache: "no-store" });
const data = await res.json();
if (res.ok) {
setProxyPools(data.proxyPools || []);
}
} catch (error) {
console.log("Error fetching proxy pools:", error);
} finally {
setLoading(false);
}
}, []);
useEffect(() => {
fetchProxyPools();
}, [fetchProxyPools]);
const resetForm = () => {
setEditingProxyPool(null);
setFormData(normalizeFormData());
};
const openCreateModal = () => {
resetForm();
setShowFormModal(true);
};
const openEditModal = (proxyPool) => {
setEditingProxyPool(proxyPool);
setFormData(normalizeFormData(proxyPool));
setShowFormModal(true);
};
const closeFormModal = () => {
setShowFormModal(false);
resetForm();
};
const handleSave = async () => {
const payload = {
name: formData.name.trim(),
proxyUrl: formData.proxyUrl.trim(),
noProxy: formData.noProxy.trim(),
isActive: formData.isActive === true,
strictProxy: formData.strictProxy === true,
};
if (!payload.name || !payload.proxyUrl) return;
setSaving(true);
try {
const isEdit = !!editingProxyPool;
const res = await fetch(isEdit ? `/api/proxy-pools/${editingProxyPool.id}` : "/api/proxy-pools", {
method: isEdit ? "PUT" : "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(payload),
});
if (res.ok) {
await fetchProxyPools();
closeFormModal();
notify.success(editingProxyPool ? "Proxy pool updated" : "Proxy pool created");
} else {
const data = await res.json();
notify.error(data.error || "Failed to save proxy pool");
}
} catch (error) {
console.log("Error saving proxy pool:", error);
} finally {
setSaving(false);
}
};
const handleDelete = async (proxyPool) => {
setConfirmState({
title: "Delete Proxy Pool",
message: `Delete proxy pool "${proxyPool.name}"?`,
onConfirm: async () => {
setConfirmState(null);
try {
const res = await fetch(`/api/proxy-pools/${proxyPool.id}`, { method: "DELETE" });
if (res.ok) {
setProxyPools((prev) => prev.filter((item) => item.id !== proxyPool.id));
notify.success("Proxy pool deleted");
return;
}
const data = await res.json();
if (res.status === 409) {
notify.warning(`Cannot delete: ${data.boundConnectionCount || 0} connection(s) are still using this pool.`);
} else {
notify.error(data.error || "Failed to delete proxy pool");
}
} catch (error) {
console.log("Error deleting proxy pool:", error);
notify.error("Failed to delete proxy pool");
}
}
});
};
const handleTest = async (proxyPoolId) => {
setTestingId(proxyPoolId);
try {
const res = await fetch(`/api/proxy-pools/${proxyPoolId}/test`, { method: "POST" });
const data = await res.json();
if (!res.ok) {
notify.error(data.error || "Failed to test proxy");
return;
}
await fetchProxyPools();
notify.success(data.ok ? "Proxy test passed" : "Proxy test failed");
} catch (error) {
console.log("Error testing proxy pool:", error);
notify.error("Failed to test proxy");
} finally {
setTestingId(null);
}
};
const handleToggleActive = async (pool) => {
const next = !pool.isActive;
setProxyPools((prev) => prev.map((p) => p.id === pool.id ? { ...p, isActive: next } : p));
try {
const res = await fetch(`/api/proxy-pools/${pool.id}`, {
method: "PUT",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ isActive: next }),
});
if (!res.ok) {
setProxyPools((prev) => prev.map((p) => p.id === pool.id ? { ...p, isActive: pool.isActive } : p));
notify.error("Failed to update active state");
}
} catch (error) {
console.log("Error toggling active:", error);
setProxyPools((prev) => prev.map((p) => p.id === pool.id ? { ...p, isActive: pool.isActive } : p));
}
};
const allSelected = proxyPools.length > 0 && selectedIds.length === proxyPools.length;
const toggleSelect = (id) => setSelectedIds((prev) => prev.includes(id) ? prev.filter((x) => x !== id) : [...prev, id]);
const toggleSelectAll = () => setSelectedIds(allSelected ? [] : proxyPools.map((p) => p.id));
const clearSelection = () => setSelectedIds([]);
const bulkSetActive = async (isActive) => {
const targets = selectedIds.length > 0 ? selectedIds : proxyPools.map((p) => p.id);
if (targets.length === 0) return;
setBulkBusy(true);
try {
let ok = 0; let failed = 0;
for (const id of targets) {
try {
const res = await fetch(`/api/proxy-pools/${id}`, {
method: "PUT",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ isActive }),
});
if (res.ok) ok += 1; else failed += 1;
} catch { failed += 1; }
}
await fetchProxyPools();
notify.success(`${isActive ? "Activated" : "Deactivated"} ${ok}${failed ? `, failed ${failed}` : ""}`);
} finally {
setBulkBusy(false);
}
};
const bulkDelete = async () => {
if (selectedIds.length === 0) return;
setConfirmState({
title: "Delete Proxy Pools",
message: `Delete ${selectedIds.length} proxy pool(s)?`,
onConfirm: async () => {
setConfirmState(null);
setBulkBusy(true);
try {
let ok = 0; let blocked = 0; let failed = 0;
for (const id of selectedIds) {
try {
const res = await fetch(`/api/proxy-pools/${id}`, { method: "DELETE" });
if (res.ok) ok += 1;
else if (res.status === 409) blocked += 1;
else failed += 1;
} catch { failed += 1; }
}
await fetchProxyPools();
clearSelection();
notify.success(`Deleted ${ok}${blocked ? `, ${blocked} bound` : ""}${failed ? `, ${failed} failed` : ""}`);
} finally {
setBulkBusy(false);
}
}
});
};
const handleHealthCheck = async () => {
const targets = selectedIds.length > 0
? proxyPools.filter((p) => selectedIds.includes(p.id))
: proxyPools;
if (targets.length === 0) return;
setHealthChecking(true);
setHealthProgress({ current: 0, total: targets.length });
let alive = 0; const deadIds = [];
let done = 0;
const CONCURRENCY = 10;
const queue = [...targets];
const worker = async () => {
while (queue.length > 0) {
const pool = queue.shift();
if (!pool) break;
try {
const res = await fetch(`/api/proxy-pools/${pool.id}/test`, { method: "POST" });
const data = await res.json();
if (res.ok && data.ok) alive += 1; else deadIds.push(pool.id);
} catch {
deadIds.push(pool.id);
} finally {
done += 1;
setHealthProgress({ current: done, total: targets.length });
}
}
};
await Promise.all(Array.from({ length: Math.min(CONCURRENCY, targets.length) }, worker));
await fetchProxyPools();
setHealthChecking(false);
setHealthProgress({ current: 0, total: 0 });
if (deadIds.length > 0) {
setConfirmState({
title: "Disable Dead Proxies",
message: `Alive: ${alive}, Dead: ${deadIds.length}.\n\nDisable ${deadIds.length} dead proxies?`,
onConfirm: async () => {
setConfirmState(null);
setBulkBusy(true);
try {
for (const id of deadIds) {
try {
await fetch(`/api/proxy-pools/${id}`, {
method: "PUT",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ isActive: false }),
});
} catch {}
}
await fetchProxyPools();
notify.success(`Disabled ${deadIds.length} dead proxies`);
} finally {
setBulkBusy(false);
}
}
});
} else {
notify.success(`Health check done. Alive: ${alive}, Dead: ${deadIds.length}`);
}
};
// Cleanup selectedIds when pools change
useEffect(() => {
setSelectedIds((prev) => prev.filter((id) => proxyPools.some((p) => p.id === id)));
}, [proxyPools]);
const openBatchImportModal = () => {
setBatchImportText("");
setShowBatchImportModal(true);
};
const closeBatchImportModal = () => {
if (importing) return;
setShowBatchImportModal(false);
};
const openVercelModal = () => {
setVercelForm({ vercelToken: "", projectName: "vercel-relay" });
setShowVercelModal(true);
};
const closeVercelModal = () => {
if (deploying) return;
setShowVercelModal(false);
};
const openCloudflareModal = () => {
setCloudflareForm({ accountId: "", apiToken: "", projectName: "cloudflare-relay" });
setShowCloudflareModal(true);
};
const closeCloudflareModal = () => {
if (deploying) return;
setShowCloudflareModal(false);
};
const openDenoModal = () => {
setDenoForm({ denoToken: "", orgDomain: "", projectName: "" });
setShowDenoModal(true);
};
const closeDenoModal = () => {
if (deploying) return;
setShowDenoModal(false);
};
const handleVercelDeploy = async () => {
if (!vercelForm.vercelToken.trim()) return;
setDeploying(true);
try {
const res = await fetch("/api/proxy-pools/vercel-deploy", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(vercelForm),
});
const data = await res.json();
if (res.ok) {
await fetchProxyPools();
closeVercelModal();
notify.success(`Deployed: ${data.deployUrl}`);
} else {
notify.error(data.error || "Deploy failed");
}
} catch (error) {
console.log("Error deploying Vercel relay:", error);
notify.error("Deploy failed");
} finally {
setDeploying(false);
}
};
const handleCloudflareDeploy = async () => {
if (!cloudflareForm.accountId.trim() || !cloudflareForm.apiToken.trim()) return;
setDeploying(true);
try {
const res = await fetch("/api/proxy-pools/cloudflare-deploy", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(cloudflareForm),
});
const data = await res.json();
if (res.ok) {
await fetchProxyPools();
closeCloudflareModal();
notify.success(`Deployed: ${data.deployUrl}`);
} else {
notify.error(data.error || "Deploy failed");
}
} catch (error) {
console.log("Error deploying Cloudflare relay:", error);
notify.error("Deploy failed");
} finally {
setDeploying(false);
}
};
const handleDenoDeploy = async () => {
if (!denoForm.denoToken.trim()) return;
setDeploying(true);
try {
const res = await fetch("/api/proxy-pools/deno-deploy", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(denoForm),
});
const data = await res.json();
if (res.ok) {
await fetchProxyPools();
closeDenoModal();
notify.success(`Deployed: ${data.deployUrl}`);
} else {
notify.error(data.error || "Deploy failed");
}
} catch (error) {
console.log("Error deploying Deno relay:", error);
notify.error("Deploy failed");
} finally {
setDeploying(false);
}
};
const parseProxyLine = (line) => {
const trimmed = line.trim();
if (!trimmed) return null;
if (trimmed.includes("://")) {
const parsed = new URL(trimmed);
const hostLabel = parsed.port ? `${parsed.hostname}:${parsed.port}` : parsed.hostname;
return {
proxyUrl: parsed.toString(),
name: `Imported ${hostLabel}`,
};
}
const parts = trimmed.split(":");
if (parts.length === 4) {
const [host, port, username, password] = parts;
if (!host || !port || !username || !password) {
throw new Error("Invalid host:port:user:pass format");
}
const proxyUrl = `http://${encodeURIComponent(username)}:${encodeURIComponent(password)}@${host}:${port}`;
const parsed = new URL(proxyUrl);
return {
proxyUrl: parsed.toString(),
name: `Imported ${host}:${port}`,
};
}
throw new Error("Unsupported format");
};
const handleBatchImport = async () => {
const lines = batchImportText
.split(/\r?\n/)
.map((line) => line.trim())
.filter(Boolean);
if (lines.length === 0) {
notify.warning("Please paste at least one proxy line.");
return;
}
const parsedEntries = [];
const invalidLines = [];
lines.forEach((line, index) => {
try {
const parsed = parseProxyLine(line);
if (parsed) {
parsedEntries.push({
...parsed,
lineNumber: index + 1,
});
}
} catch (error) {
invalidLines.push(`Line ${index + 1}: ${error.message}`);
}
});
if (invalidLines.length > 0) {
notify.error(`Invalid proxy format:\n${invalidLines.join("\n")}`);
return;
}
setImporting(true);
try {
const existingKeys = new Set(
proxyPools.map((pool) => `${(pool.proxyUrl || "").trim()}|||${(pool.noProxy || "").trim()}`)
);
let created = 0;
let skipped = 0;
let failed = 0;
for (const entry of parsedEntries) {
const dedupeKey = `${entry.proxyUrl}|||`;
if (existingKeys.has(dedupeKey)) {
skipped += 1;
continue;
}
const res = await fetch("/api/proxy-pools", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
name: entry.name,
proxyUrl: entry.proxyUrl,
noProxy: "",
isActive: true,
}),
});
if (res.ok) {
created += 1;
existingKeys.add(dedupeKey);
} else {
failed += 1;
}
}
await fetchProxyPools();
setShowBatchImportModal(false);
notify.success(`Batch import completed: Created ${created}, Skipped ${skipped}, Failed ${failed}`);
} catch (error) {
console.log("Error batch importing proxies:", error);
notify.error("Batch import failed");
} finally {
setImporting(false);
}
};
const activeCount = useMemo(
() => proxyPools.filter((pool) => pool.isActive === true).length,
[proxyPools]
);
if (loading) {
return (
<div className="mx-auto flex w-full max-w-5xl flex-col gap-4 px-1 sm:gap-6 sm:px-0">
<CardSkeleton />
<CardSkeleton />
</div>
);
}
return (
<div className="mx-auto flex w-full max-w-5xl flex-col gap-4 px-1 sm:gap-6 sm:px-0">
<div className="flex flex-col gap-3 sm:flex-row sm:items-start sm:justify-between">
<div className="min-w-0">
<h1 className="text-xl font-semibold sm:text-2xl">Proxy Pools</h1>
</div>
<div className="grid grid-cols-1 gap-2 sm:flex sm:items-center">
<div className="relative" ref={relayMenuRef}>
<Button
size="sm"
variant="secondary"
icon="rocket_launch"
onClick={() => setShowRelayMenu(!showRelayMenu)}
>
Deploy Relay
<span className="material-symbols-outlined ml-1 text-[18px]">
{showRelayMenu ? "expand_less" : "expand_more"}
</span>
</Button>
{showRelayMenu && (
<div className="absolute left-0 top-full z-50 mt-1 w-48 rounded-xl border border-black/10 bg-white p-1 shadow-xl dark:border-white/10 dark:bg-zinc-900 sm:left-auto sm:right-0">
<button
onClick={() => {
openCloudflareModal();
setShowRelayMenu(false);
}}
className="flex w-full items-center gap-2 rounded-lg px-3 py-2 text-sm text-text-main transition-colors hover:bg-black/5 dark:hover:bg-white/5"
>
<span className="material-symbols-outlined text-[20px] text-orange-500">cloud</span>
Cloudflare Relay
</button>
<button
onClick={() => {
openVercelModal();
setShowRelayMenu(false);
}}
className="flex w-full items-center gap-2 rounded-lg px-3 py-2 text-sm text-text-main transition-colors hover:bg-black/5 dark:hover:bg-white/5"
>
<span className="material-symbols-outlined text-[20px] text-blue-500">cloud_upload</span>
Vercel Relay
</button>
<button
onClick={() => {
openDenoModal();
setShowRelayMenu(false);
}}
className="flex w-full items-center gap-2 rounded-lg px-3 py-2 text-sm text-text-main transition-colors hover:bg-black/5 dark:hover:bg-white/5"
>
<span className="material-symbols-outlined text-[20px] text-green-500">terminal</span>
Deno Relay
</button>
</div>
)}
</div>
<Button size="sm" variant="secondary" icon="upload" onClick={openBatchImportModal}>
Batch Import
</Button>
<Button size="sm" icon="add" onClick={openCreateModal}>Add Proxy Pool</Button>
</div>
</div>
<Card>
<div className="mb-4 flex flex-wrap items-center gap-2">
{proxyPools.length > 0 && (
<label className="flex items-center gap-1.5 text-xs text-text-muted cursor-pointer">
<input
type="checkbox"
checked={allSelected}
onChange={toggleSelectAll}
className="size-4 rounded border-black/20 dark:border-white/20"
/>
{allSelected ? "Unselect all" : "Select all"}
</label>
)}
<Badge variant="default">Total: {proxyPools.length}</Badge>
<Badge variant="success">Active: {activeCount}</Badge>
</div>
{(selectedIds.length > 0 || healthChecking) && (
<div className="mb-4 flex flex-wrap items-center gap-2 rounded-lg border border-primary/30 bg-primary/5 px-3 py-2">
<span className="material-symbols-outlined text-[18px] text-primary">checklist</span>
<span className="text-xs font-medium text-primary">
{selectedIds.length > 0 ? `${selectedIds.length} selected` : "All pools"}
</span>
<div className="ml-auto flex flex-wrap items-center gap-2">
<Button
size="sm"
icon={healthChecking ? "progress_activity" : "health_and_safety"}
onClick={handleHealthCheck}
disabled={healthChecking || bulkBusy || proxyPools.length === 0}
>
{healthChecking ? `Checking ${healthProgress.current}/${healthProgress.total}` : "Health Check"}
</Button>
{selectedIds.length > 0 && (
<>
<Button size="sm" variant="secondary" icon="toggle_on" onClick={() => bulkSetActive(true)} disabled={bulkBusy || healthChecking}>
Activate
</Button>
<Button size="sm" variant="secondary" icon="toggle_off" onClick={() => bulkSetActive(false)} disabled={bulkBusy || healthChecking}>
Deactivate
</Button>
<Button size="sm" variant="secondary" icon="delete" onClick={bulkDelete} disabled={bulkBusy || healthChecking}>
Delete
</Button>
<Button size="sm" variant="ghost" onClick={clearSelection} disabled={bulkBusy || healthChecking}>
Clear
</Button>
</>
)}
</div>
</div>
)}
{proxyPools.length === 0 ? (
<div className="text-center py-10">
<p className="text-text-main font-medium mb-1">No proxy pool entries yet</p>
<p className="text-sm text-text-muted mb-4">
Create a proxy pool entry, then assign it to connections.
</p>
<Button icon="add" onClick={openCreateModal}>Add Proxy Pool</Button>
</div>
) : (
<div className="flex flex-col divide-y divide-black/[0.04] dark:divide-white/[0.05]">
{proxyPools.map((pool) => (
<div key={pool.id} className="flex flex-col gap-3 py-3 sm:flex-row sm:items-center sm:justify-between">
<div className="flex items-start gap-3 min-w-0 flex-1">
<input
type="checkbox"
checked={selectedIds.includes(pool.id)}
onChange={() => toggleSelect(pool.id)}
className="mt-1 size-4 shrink-0 rounded border-black/20 dark:border-white/20"
/>
<div className="min-w-0 flex-1">
<div className="flex items-center gap-2 flex-wrap">
<p className="min-w-0 max-w-full truncate text-sm font-medium sm:max-w-[18rem]">{pool.name}</p>
<Badge variant={getStatusVariant(pool.testStatus)} size="sm" dot>
{pool.testStatus || "unknown"}
</Badge>
<Badge variant={pool.isActive ? "success" : "default"} size="sm">
{pool.isActive ? "active" : "inactive"}
</Badge>
{pool.type === "vercel" && (
<Badge variant="default" size="sm">vercel relay</Badge>
)}
{pool.type === "cloudflare" && (
<Badge variant="default" size="sm">cloudflare relay</Badge>
)}
<Badge variant="default" size="sm">
{pool.boundConnectionCount || 0} bound
</Badge>
</div>
<p className="text-xs text-text-muted truncate mt-1">{pool.proxyUrl}</p>
{pool.noProxy ? (
<p className="text-xs text-text-muted truncate">No proxy: {pool.noProxy}</p>
) : null}
<p className="text-[11px] text-text-muted mt-1">
Last tested: {formatDateTime(pool.lastTestedAt)}
{pool.lastError ? ` Β· ${pool.lastError}` : ""}
</p>
</div>
</div>
<div className="flex items-center justify-end gap-1">
<Toggle
size="sm"
checked={pool.isActive === true}
onChange={() => handleToggleActive(pool)}
title={pool.isActive ? "Disable" : "Enable"}
/>
<button
onClick={() => handleTest(pool.id)}
className="p-2 rounded hover:bg-black/5 dark:hover:bg-white/5 text-text-muted hover:text-primary"
title="Test proxy"
disabled={testingId === pool.id}
>
<span
className="material-symbols-outlined text-[18px]"
style={testingId === pool.id ? { animation: "spin 1s linear infinite" } : undefined}
>
{testingId === pool.id ? "progress_activity" : "science"}
</span>
</button>
<button
onClick={() => openEditModal(pool)}
className="p-2 rounded hover:bg-black/5 dark:hover:bg-white/5 text-text-muted hover:text-primary"
title="Edit"
>
<span className="material-symbols-outlined text-[18px]">edit</span>
</button>
<button
onClick={() => handleDelete(pool)}
className="p-2 rounded hover:bg-red-500/10 text-red-500"
title="Delete"
>
<span className="material-symbols-outlined text-[18px]">delete</span>
</button>
</div>
</div>
))}
</div>
)}
</Card>
<Modal
isOpen={showBatchImportModal}
title="Batch Import Proxies"
onClose={closeBatchImportModal}
>
<div className="flex flex-col gap-4">
<div>
<label className="text-sm font-medium text-text-main mb-1 block">Paste Proxy List (One per line)</label>
<textarea
value={batchImportText}
onChange={(e) => setBatchImportText(e.target.value)}
placeholder={"http://user:pass@127.0.0.1:7897\n127.0.0.1:7897:user:pass"}
className="w-full min-h-[180px] py-2 px-3 text-sm text-text-main bg-white dark:bg-white/5 border border-black/10 dark:border-white/10 rounded-md focus:ring-1 focus:ring-primary/30 focus:border-primary/50 focus:outline-none transition-all"
/>
<p className="text-xs text-text-muted mt-1">
Supported formats: protocol://user:pass@host:port, host:port:user:pass
</p>
</div>
<div className="grid grid-cols-1 gap-2 sm:grid-cols-2">
<Button fullWidth onClick={handleBatchImport} disabled={!batchImportText.trim() || importing}>
{importing ? "Importing..." : "Import"}
</Button>
<Button fullWidth variant="ghost" onClick={closeBatchImportModal} disabled={importing}>
Cancel
</Button>
</div>
</div>
</Modal>
<Modal
isOpen={showVercelModal}
title="Deploy Vercel Relay"
onClose={closeVercelModal}
>
<div className="flex flex-col gap-4">
<div className="rounded-lg bg-blue-500/5 border border-blue-500/10 p-3 flex flex-col gap-1.5">
<p className="text-sm text-text-main font-medium">What is Vercel Relay?</p>
<p className="text-xs text-text-muted">
Deploys an edge relay function to Vercel. All AI provider requests will be forwarded through Vercel's edge network, masking your real IP from providers.
</p>
<ul className="text-xs text-text-muted list-disc pl-4 space-y-0.5">
<li>Your IP is replaced by Vercel's dynamic edge IPs (hundreds of IPs across 20+ global regions)</li>
<li>Vercel serves millions of apps β providers can't block Vercel IPs without affecting legitimate traffic</li>
<li>Free tier: 100GB bandwidth/month, 500K edge invocations</li>
<li>Deploy multiple relays on different accounts for more IP diversity</li>
</ul>
</div>
<Input
label="Vercel API Token"
value={vercelForm.vercelToken}
onChange={(e) => setVercelForm((prev) => ({ ...prev, vercelToken: e.target.value }))}
placeholder="your-vercel-api-token"
hint={<>Token is used once for deployment and not stored. <a href="https://vercel.com/account/tokens" target="_blank" rel="noopener noreferrer" className="text-primary hover:underline">Get token β</a></>}
type="password"
/>
<Input
label="Project Name"
value={vercelForm.projectName}
onChange={(e) => setVercelForm((prev) => ({ ...prev, projectName: e.target.value }))}
placeholder="my-relay"
hint="Unique name for your Vercel project. Leave empty for auto-generated name."
/>
<div className="grid grid-cols-1 gap-2 sm:grid-cols-2">
<Button
fullWidth
onClick={handleVercelDeploy}
disabled={!vercelForm.vercelToken.trim() || deploying}
>
{deploying ? "Deploying... (may take ~1 min)" : "Deploy"}
</Button>
<Button fullWidth variant="ghost" onClick={closeVercelModal} disabled={deploying}>
Cancel
</Button>
</div>
</div>
</Modal>
<Modal
isOpen={showCloudflareModal}
title="Deploy Cloudflare Relay"
onClose={closeCloudflareModal}
>
<div className="flex flex-col gap-4">
<div className="rounded-lg bg-orange-500/5 border border-orange-500/10 p-3 flex flex-col gap-1.5">
<p className="text-sm text-text-main font-medium">What is Cloudflare Relay?</p>
<p className="text-xs text-text-muted">
Deploys a Cloudflare Worker as a proxy relay. All AI provider requests will be forwarded through Cloudflare's global edge network.
</p>
<ul className="text-xs text-text-muted list-disc pl-4 space-y-0.5">
<li>High performance global routing and IP masking via Cloudflare Workers</li>
<li>Free tier: 100,000 requests per day</li>
<li>Requires Cloudflare Account ID and a Workers API Token (Edit Workers permission)</li>
</ul>
<div className="mt-2 pt-2 border-t border-orange-500/10 text-xs text-text-muted">
<p className="font-medium text-text-main mb-1">How to generate your API Token:</p>
<ol className="list-decimal pl-4 space-y-0.5">
<li>Go to <b>My Profile</b> β <b>API Tokens</b> β <b>Create Token</b></li>
<li>Scroll down to <b>Custom Token</b> and click <b>Get started</b></li>
<li>Under <b>Permissions</b>: Account | Workers Scripts | Edit</li>
<li>Under <b>Account Resources</b>: Include | Account | <i>Your Account Name</i></li>
<li>Click <b>Continue to summary</b> β <b>Create Token</b></li>
</ol>
</div>
</div>
<Input
label="Account ID"
value={cloudflareForm.accountId}
onChange={(e) => setCloudflareForm((prev) => ({ ...prev, accountId: e.target.value }))}
placeholder="your-cloudflare-account-id"
hint={<>Found on the right side of the Cloudflare dashboard overview page.</>}
/>
<Input
label="API Token"
value={cloudflareForm.apiToken}
onChange={(e) => setCloudflareForm((prev) => ({ ...prev, apiToken: e.target.value }))}
placeholder="your-cloudflare-api-token"
hint={<>Requires "Workers Scripts: Edit" permission. <a href="https://dash.cloudflare.com/profile/api-tokens" target="_blank" rel="noopener noreferrer" className="text-primary hover:underline">Get token β</a></>}
type="password"
/>
<Input
label="Worker Name"
value={cloudflareForm.projectName}
onChange={(e) => setCloudflareForm((prev) => ({ ...prev, projectName: e.target.value }))}
placeholder="my-relay"
hint="Unique name for your Cloudflare Worker. Leave empty for auto-generated name."
/>
<div className="grid grid-cols-1 gap-2 sm:grid-cols-2">
<Button
fullWidth
onClick={handleCloudflareDeploy}
disabled={!cloudflareForm.accountId.trim() || !cloudflareForm.apiToken.trim() || deploying}
>
{deploying ? "Deploying..." : "Deploy Worker"}
</Button>
<Button fullWidth variant="ghost" onClick={closeCloudflareModal} disabled={deploying}>
Cancel
</Button>
</div>
</div>
</Modal>
<Modal
isOpen={showDenoModal}
title="Deploy Deno Relay"
onClose={closeDenoModal}
>
<div className="flex flex-col gap-4">
<div className="rounded-lg bg-black/5 dark:bg-white/5 border border-black/10 dark:border-white/10 p-3 flex flex-col gap-1.5">
<p className="text-sm text-text-main font-medium">What is Deno Relay?</p>
<p className="text-xs text-text-muted">
Deploys a relay worker to Deno Deploy's global edge network. All AI provider requests are forwarded through Deno's edge, masking your real IP.
</p>
<ul className="text-xs text-text-muted list-disc pl-4 space-y-0.5">
<li>Deno Deploy v2 runs on a high-performance global edge network</li>
<li>Free tier: 1M requests & 100GiB outbound traffic per month</li>
<li>No per-request CPU time limits (unlike Vercel/Cloudflare)</li>
<li>Support up to 20 active apps & 50 custom domains</li>
<li>Deploy multiple relays for maximum IP diversity</li>
</ul>
<div className="mt-2 pt-2 border-t border-black/10 dark:border-white/10 text-xs text-text-muted">
<p className="font-medium text-text-main mb-1">How to generate API token:</p>
<ol className="list-decimal pl-4 space-y-0.5">
<li>Go to <b>console.deno.com</b></li>
<li>Select your <b>Organization</b> β <b>Settings</b> β <b>Organization Tokens</b></li>
<li>Create a <b>Organization Token</b> (prefix <b>ddo_</b>)</li>
</ol>
</div>
</div>
<Input
label="Deno Deploy API Token"
value={denoForm.denoToken}
onChange={(e) => setDenoForm((prev) => ({ ...prev, denoToken: e.target.value }))}
placeholder="ddo_xxxxxxxxxxxxxxxx"
hint={<>Token is used once for deployment, not stored. Found in Organization Settings.</>}
type="password"
/>
<Input
label="Organization Domain"
value={denoForm.orgDomain}
onChange={(e) => setDenoForm((prev) => ({ ...prev, orgDomain: e.target.value }))}
placeholder="your-org.deno.net"
hint="Organization's default domain. Your relay URL will be in the format: https://my-relay.your-org.deno.net"
/>
<Input
label="App Name"
value={denoForm.projectName}
onChange={(e) => setDenoForm((prev) => ({ ...prev, projectName: e.target.value }))}
placeholder="deno-relay"
hint="Unique app name. Leave empty for auto-generated name."
/>
<div className="grid grid-cols-1 gap-2 sm:grid-cols-2">
<Button
fullWidth
onClick={handleDenoDeploy}
disabled={!denoForm.denoToken.trim() || !denoForm.orgDomain.trim() || deploying}
>
{deploying ? "Deploying..." : "Deploy Relay"}
</Button>
<Button fullWidth variant="ghost" onClick={closeDenoModal} disabled={deploying}>
Cancel
</Button>
</div>
</div>
</Modal>
<Modal
isOpen={showFormModal}
title={editingProxyPool ? "Edit Proxy Pool" : "Add Proxy Pool"}
onClose={closeFormModal}
>
<div className="flex flex-col gap-4">
<Input
label="Name"
value={formData.name}
onChange={(e) => setFormData((prev) => ({ ...prev, name: e.target.value }))}
placeholder="Office Proxy"
/>
<Input
label="Proxy URL"
value={formData.proxyUrl}
onChange={(e) => setFormData((prev) => ({ ...prev, proxyUrl: e.target.value }))}
placeholder="http://127.0.0.1:7897"
/>
<Input
label="No Proxy"
value={formData.noProxy}
onChange={(e) => setFormData((prev) => ({ ...prev, noProxy: e.target.value }))}
placeholder="localhost,127.0.0.1,.internal"
hint="Comma-separated hosts/domains to bypass proxy"
/>
<div className="flex flex-col gap-3 rounded-lg border border-border/50 p-3 sm:flex-row sm:items-center sm:justify-between">
<div>
<p className="font-medium text-sm">Active</p>
<p className="text-xs text-text-muted">Inactive pools are ignored by runtime resolution.</p>
</div>
<Toggle
checked={formData.isActive === true}
onChange={() => setFormData((prev) => ({ ...prev, isActive: !prev.isActive }))}
disabled={saving}
/>
</div>
<div className="flex flex-col gap-3 rounded-lg border border-border/50 p-3 sm:flex-row sm:items-center sm:justify-between">
<div>
<p className="font-medium text-sm">Strict Proxy</p>
<p className="text-xs text-text-muted">Fail request if proxy is unreachable instead of falling back to direct.</p>
</div>
<Toggle
checked={formData.strictProxy === true}
onChange={() => setFormData((prev) => ({ ...prev, strictProxy: !prev.strictProxy }))}
disabled={saving}
/>
</div>
<div className="grid grid-cols-1 gap-2 sm:grid-cols-2">
<Button
fullWidth
onClick={handleSave}
disabled={!formData.name.trim() || !formData.proxyUrl.trim() || saving}
>
{saving ? "Saving..." : "Save"}
</Button>
<Button fullWidth variant="ghost" onClick={closeFormModal} disabled={saving}>
Cancel
</Button>
</div>
</div>
</Modal>
{/* Confirm Modal */}
<ConfirmModal
isOpen={!!confirmState}
onClose={() => setConfirmState(null)}
onConfirm={confirmState?.onConfirm}
title={confirmState?.title || "Confirm"}
message={confirmState?.message}
variant="danger"
/>
</div>
);
}
|