Sublink Worker-轻量订阅转换,一键部署cloudflareWorkers,附带汉化教程

【YouTube频道】 | 【Telegram频道】 | 【GitHub仓库】

一、简介

Sublink Worker 是一个可部署在 Cloudflare Worker 上轻量级的订阅转换工具。它可以将各种代理协议的分享 URL 转换为不同客户端可用的订阅链接。同时还提供灵活的自定义规则与API支持。

体验地址:https://sw.yixiu920.us.kg/

二、仓库

  • 一休仓库:github仓库
    • 修改base64编码方法,修复bota编码导致的异常
  • 原作者仓库:github仓库
    • 原作者已根据一休提供的issue接受了最新代码

三、功能特点

  • 支持协议:ShadowSocks, VMess, VLESS, Hysteria2, Trojan, TUIC
  • 支持导入 Base64 的 http/https 订阅链接
  • 一键部署,Vanilla JS + Cloudflare Worker,无需后端
  • 支持客户端:
  • Sing-Box
  • Clash
  • Xray/V2Ray
    • 支持短链接生成(基于 KV)
    • 浅色/深色主题切换
    • 灵活的 API,支持脚本化操作
    • 用户友好的 Web 界面,灵活的自定义规则
    • 提供多种预定义规则集
    • 可自建关于geo-site, geo-ip, ip-cidr和domain-suffix的自定义策略组

四、部署方式

  1. fork项目
  2. 编辑README.md文件
    • 修改第40行后面的仓库地址为自己的仓库地址,然后保存
  3. 点击文档中的自动部署
  4. 根据提示获取cloudflare中的参数填入
  5. 打开工作流
  6. 等待部署完成即可食用

五、汉化教程

  1. 打开github中src/htmlBuilder.js文件
  2. 编辑文件替换为以下代码,然后保存,等待工作流部署完成即可
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
import { UNIFIED_RULES, PREDEFINED_RULE_SETS } from './config.js';
import { generateStyles } from './style.js';

export function generateHtml(xrayUrl, singboxUrl, clashUrl, baseUrl) {
return `
<!DOCTYPE html>
<html lang="en">
${generateHead()}
${generateBody(xrayUrl, singboxUrl, clashUrl, baseUrl)}
</html>
`;
}

const generateHead = () => `
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Sublink Worker是一款强大的在线订阅链接转换工具,支持V2Ray/Xray、SingBox、Clash等多种客户端,提供自定义规则和高效转换,帮助您轻松管理和优化代理节点。">
<meta name="keywords" content="Sublink, Worker, 订阅链接, 代理, Xray, SingBox, Clash, V2Ray, 自定义规则, 在线, 订阅转换, 机场订阅, 节点管理, 节点解析">
<title>Sublink Worker - 轻量高效的订阅转换工具 | 支持V2Ray/Xray、SingBox、Clash</title>
<meta property="og:title" content="Sublink Worker - 轻量高效的订阅链接转换工具">
<meta property="og:description" content="强大的在线订阅链接转换工具,支持多种代理协议和自定义规则">
<meta property="og:type" content="website">
<meta property="og:url" content="https://sublink-worker.sageer.me/">
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/qrcode.min.js"></script>
<style>
${generateStyles()}
</style>
</head>
`;



const generateBody = (xrayUrl, singboxUrl, clashUrl, baseUrl) => `
<body>
${generateDarkModeToggle()}
${generateGithubLink()}
<div class="container mt-5">
<div class="card mb-5">
${generateCardHeader()}
<div class="card-body">
${generateForm()}
<div id="subscribeLinksContainer">
${generateSubscribeLinks(xrayUrl, singboxUrl, clashUrl, baseUrl)}
</div>
</div>
</div>
</div>
${generateScripts()}
<!-- Cloudflare Web Analytics -->
<script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "67ed5892c109479cb0baddfaa9249c4e"}'></script>
<!-- End Cloudflare Web Analytics -->
</body>
`;

const generateDarkModeToggle = () => `
<button id="darkModeToggle" class="btn btn-outline-secondary">
<i class="fas fa-moon"></i>
</button>
`;

const generateGithubLink = () => `
<a href="https://github.com/yixiu001/sublink-worker" target="_blank" rel="noopener noreferrer" class="github-link">
<i class="fab fa-github"></i>
</a>
`;

const generateCardHeader = () => `
<div class="card-header text-center">
<h1 class="display-4 mb-0">Sublink Worker 汉化版</h1>
</div>
`;

const generateForm = () => `
<form method="POST" id="encodeForm">
<div class="form-section">
<div class="form-section-title">订阅链接</div>
<textarea class="form-control" id="inputTextarea" name="input" required placeholder="vmess://abcd..." rows="3"></textarea>
</div>

<div class="form-check form-switch mb-3">
<input class="form-check-input" type="checkbox" id="advancedToggle">
<label class="form-check-label" for="advancedToggle">高级选项</label>
</div>

<div id="advancedOptions">
<div class="form-section">
${generateRuleSetSelection()}
</div>

<div class="form-section">
<div class="form-section-title d-flex align-items-center">
基本配置设置(可选)
<span class="tooltip-icon ms-2">
<i class="fas fa-question-circle"></i>
<span class="tooltip-content">
此功能是实验性的,可能无法按预期工作。您可以在此处粘贴自己的基本配置。转到 <a href="https://github.com/yixiu001/sublink-worker/blob/main/docs/base-config.md" target="_blank">文档</a> 了解更多信息。
</span>
</span>
</div>
<div class="mb-3">
<select class="form-select" id="configType">
<option value="singbox">SingBox (JSON)</option>
<option value="clash">Clash (YAML)</option>
</select>
</div>
<div class="mb-3">
<textarea class="form-control" id="configEditor" rows="3" placeholder="将您的自定义配置粘贴到此处..."></textarea>
</div>
<div class="d-flex gap-2">
<button type="button" class="btn btn-secondary" onclick="saveConfig()">保存配置</button>
<button type="button" class="btn btn-outline-danger" onclick="clearConfig()">
<i class="fas fa-trash-alt me-2"></i>清除配置
</button>
</div>
</div>
</div>

<div class="d-flex gap-2 mt-4">
<button type="submit" class="btn btn-primary flex-grow-1">
<i class="fas fa-sync-alt me-2"></i>转换
</button>
<button type="button" class="btn btn-outline-secondary" id="clearFormBtn">
<i class="fas fa-trash-alt me-2"></i>清除
</button>
</div>
</form>
`;

const generateSubscribeLinks = (xrayUrl, singboxUrl, clashUrl, baseUrl) => `
<div class="mt-5">
<h2 class="mb-4">您的订阅链接:</h2>
${generateLinkInput('v2ray 订阅:', 'xrayLink', xrayUrl)}
${generateLinkInput('SingBox 订阅:', 'singboxLink', singboxUrl)}
${generateLinkInput('Clash 订阅:', 'clashLink', clashUrl)}
<div class="mb-3">
<label for="customShortCode" class="form-label">自定义路径(可选):</label>
<div class="input-group flex-nowrap">
<span class="input-group-text text-truncate" style="max-width: 400px;" title="${baseUrl}/s/">
${baseUrl}/s/
</span>
<input type="text" class="form-control" id="customShortCode" placeholder="e.g. my-custom-link">
<select id="savedCustomPaths" class="form-select" style="max-width: 200px;">
<option value="">保存的路径</option>
</select>
<button class="btn btn-outline-danger" type="button" onclick="deleteSelectedPath()">
<i class="fas fa-trash-alt"></i>
</button>
</div>
</div>
<div class="d-grid">
<button class="btn btn-primary btn-lg" type="button" onclick="shortenAllUrls()">
<i class="fas fa-compress-alt me-2"></i>短链接
</button>
</div>
</div>
`;

const generateLinkInput = (label, id, value) => `
<div class="mb-4">
<label for="${id}" class="form-label">${label}</label>
<div class="input-group">
<span class="input-group-text"><i class="fas fa-link"></i></span>
<input type="text" class="form-control" id="${id}" value="${value}" readonly>
<button class="btn btn-outline-secondary" type="button" onclick="copyToClipboard('${id}')">
<i class="fas fa-copy"></i>
</button>
<button class="btn btn-outline-secondary" type="button" onclick="generateQRCode('${id}')">
<i class="fas fa-qrcode"></i>
</button>
</div>
</div>
`;

const generateScripts = () => `
<script>
${copyToClipboardFunction()}
${shortenAllUrlsFunction()}
${darkModeToggleFunction()}
${advancedOptionsToggleFunction()}
${applyPredefinedRulesFunction()}
${tooltipFunction()}
${submitFormFunction()}
${customRuleFunctions}
${generateQRCodeFunction()}
${customPathFunctions()}
${saveConfig()}
${clearConfig()}
</script>
`;

const customPathFunctions = () => `
function saveCustomPath() {
const customPath = document.getElementById('customShortCode').value;
if (customPath) {
let savedPaths = JSON.parse(localStorage.getItem('savedCustomPaths') || '[]');
if (!savedPaths.includes(customPath)) {
savedPaths.push(customPath);
localStorage.setItem('savedCustomPaths', JSON.stringify(savedPaths));
updateSavedPathsDropdown();
}
}
}

function updateSavedPathsDropdown() {
const savedPaths = JSON.parse(localStorage.getItem('savedCustomPaths') || '[]');
const dropdown = document.getElementById('savedCustomPaths');
dropdown.innerHTML = '<option value="">保存的路径</option>';
savedPaths.forEach(path => {
const option = document.createElement('option');
option.value = path;
option.textContent = path;
dropdown.appendChild(option);
});
}

function loadSavedCustomPath() {
const dropdown = document.getElementById('savedCustomPaths');
const customShortCode = document.getElementById('customShortCode');
if (dropdown.value) {
customShortCode.value = dropdown.value;
}
}

function deleteSelectedPath() {
const dropdown = document.getElementById('savedCustomPaths');
const selectedPath = dropdown.value;
if (selectedPath) {
let savedPaths = JSON.parse(localStorage.getItem('savedCustomPaths') || '[]');
savedPaths = savedPaths.filter(path => path !== selectedPath);
localStorage.setItem('savedCustomPaths', JSON.stringify(savedPaths));
updateSavedPathsDropdown();
document.getElementById('customShortCode').value = '';
}
}

document.addEventListener('DOMContentLoaded', function() {
updateSavedPathsDropdown();
document.getElementById('savedCustomPaths').addEventListener('change', loadSavedCustomPath);
});
`;

const advancedOptionsToggleFunction = () => `
document.getElementById('advancedToggle').addEventListener('change', function() {
const advancedOptions = document.getElementById('advancedOptions');
if (this.checked) {
advancedOptions.classList.add('show');
} else {
advancedOptions.classList.remove('show');
}
});
`;

const copyToClipboardFunction = () => `
function copyToClipboard(elementId) {
const element = document.getElementById(elementId);
element.select();
document.execCommand('copy');

const button = element.nextElementSibling;
const originalText = button.innerHTML;
button.innerHTML = '<i class="fas fa-check"></i> Copied!';
button.classList.remove('btn-outline-secondary');
button.classList.add('btn-success');
setTimeout(() => {
button.innerHTML = originalText;
button.classList.remove('btn-success');
button.classList.add('btn-outline-secondary');
}, 2000);
}
`;

const shortenAllUrlsFunction = () => `
let isShortening = false; // Add flag to track shortening status

async function shortenUrl(url, customShortCode) {
saveCustomPath();
const response = await fetch(\`/shorten-v2?url=\${encodeURIComponent(url)}&shortCode=\${encodeURIComponent(customShortCode || '')}\`);
if (response.ok) {
const data = await response.text();
return data;
}
throw new Error('Failed to shorten URL');
}

async function shortenAllUrls() {
// Prevent multiple clicks
if (isShortening) {
return;
}

const shortenButton = document.querySelector('button[onclick="shortenAllUrls()"]');

try {
isShortening = true;
shortenButton.disabled = true;
shortenButton.innerHTML = '<i class="fas fa-spinner fa-spin me-2"></i>缩短...';

const singboxLink = document.getElementById('singboxLink');
const customShortCode = document.getElementById('customShortCode').value;

// Check if links are already shortened
if (singboxLink.value.includes('/b/')) {
alert('链接已经缩短!');
return;
}

const shortCode = await shortenUrl(singboxLink.value, customShortCode);

const xrayLink = document.getElementById('xrayLink');
const clashLink = document.getElementById('clashLink');

xrayLink.value = window.location.origin + '/x/' + shortCode;
singboxLink.value = window.location.origin + '/b/' + shortCode;
clashLink.value = window.location.origin + '/c/' + shortCode;
} catch (error) {
console.error('Error:', error);
alert('无法缩短 URL。请重试。');
} finally {
isShortening = false;
shortenButton.disabled = false;
shortenButton.innerHTML = '<i class="fas fa-compress-alt me-2"></i>短链接';
}
}
`;

const darkModeToggleFunction = () => `
const darkModeToggle = document.getElementById('darkModeToggle');
const body = document.body;

darkModeToggle.addEventListener('click', () => {
body.setAttribute('data-theme', body.getAttribute('data-theme') === 'dark' ? 'light' : 'dark');
darkModeToggle.innerHTML = body.getAttribute('data-theme') === 'dark' ? '<i class="fas fa-sun"></i>' : '<i class="fas fa-moon"></i>';
});

// Check for saved theme preference or use system preference
const savedTheme = localStorage.getItem('theme');
const systemDarkMode = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches;

if (savedTheme) {
body.setAttribute('data-theme', savedTheme);
darkModeToggle.innerHTML = savedTheme === 'dark' ? '<i class="fas fa-sun"></i>' : '<i class="fas fa-moon"></i>';
} else if (systemDarkMode) {
body.setAttribute('data-theme', 'dark');
darkModeToggle.innerHTML = '<i class="fas fa-sun"></i>';
}

// Save theme preference when changed
const observer = new MutationObserver((mutations) => {
mutations.forEach((mutation) => {
if (mutation.type === 'attributes' && mutation.attributeName === 'data-theme') {
localStorage.setItem('theme', body.getAttribute('data-theme'));
}
});
});

observer.observe(body, { attributes: true });
`;

const generateRuleSetSelection = () => `
<div class="container">
<div class="header-container">
<h4 class="header-title">规则选择</h4>
<span class="tooltip-icon">
<i class="fas fa-question-circle"></i>
<span class="tooltip-content">
这些规则确定如何通过不同的代理或直接引导流量。如果您不确定,可以使用预定义的规则集。
</span>
</span>
</div>

<div class="content-container mb-3">
<select class="form-select" id="predefinedRules" onchange="applyPredefinedRules()">
<option value="custom">自定义</option>
<option value="minimal">轻量</option>
<option value="balanced">常用</option>
<option value="comprehensive">全部</option>
</select>
</div>
<div class="row" id="ruleCheckboxes">
${UNIFIED_RULES.map(rule => `
<div class="col-md-4 mb-2">
<div class="form-check">
<input class="form-check-input rule-checkbox" type="checkbox" value="${rule.name}" id="${rule.name}" name="selectedRules">
<label class="form-check-label" for="${rule.name}">${rule.outbound}</label>
</div>
</div>
`).join('')}
</div>
<div class="mt-4">
<h5>自定义规则</h5>
<div class="form-check form-switch mb-3">
<input class="form-check-input" type="checkbox" id="crpinToggle">
<label class="form-check-label" for="crpinToggle">固定自定义规则</label>
</div>
<div id="customRules">
<!-- Custom rules will be dynamically added here -->
</div>
<button type="button" class="btn btn-secondary mt-2" onclick="addCustomRule()">添加自定义规则</button>
</div>
</div>
`;

const applyPredefinedRulesFunction = () => `
function applyPredefinedRules() {
const predefinedRules = document.getElementById('predefinedRules').value;
const checkboxes = document.querySelectorAll('.rule-checkbox');

checkboxes.forEach(checkbox => {
checkbox.checked = false;
});

if (predefinedRules === 'custom') {
return;
}

const rulesToApply = ${JSON.stringify(PREDEFINED_RULE_SETS)};

rulesToApply[predefinedRules].forEach(rule => {
const checkbox = document.getElementById(rule);
if (checkbox) {
checkbox.checked = true;
}
});
}
`;

const tooltipFunction = () => `
function initTooltips() {
const tooltips = document.querySelectorAll('.tooltip-icon');
tooltips.forEach(tooltip => {
tooltip.addEventListener('click', (e) => {
e.stopPropagation();
const content = tooltip.querySelector('.tooltip-content');
content.style.display = content.style.display === 'block' ? 'none' : 'block';
});
});

document.addEventListener('click', () => {
const openTooltips = document.querySelectorAll('.tooltip-content[style="display: block;"]');
openTooltips.forEach(tooltip => {
tooltip.style.display = 'none';
});
});
}

document.addEventListener('DOMContentLoaded', initTooltips);
`;

const submitFormFunction = () => `
function submitForm(event) {
event.preventDefault();
const form = event.target;
const formData = new FormData(form);
const inputString = formData.get('input');

// Save form data to localStorage
localStorage.setItem('inputTextarea', inputString);
localStorage.setItem('advancedToggle', document.getElementById('advancedToggle').checked);
localStorage.setItem('crpinToggle', document.getElementById('crpinToggle').checked);

// 保存 configEditor 和 configType 到 localStorage
localStorage.setItem('configEditor', document.getElementById('configEditor').value);
localStorage.setItem('configType', document.getElementById('configType').value);

let selectedRules;
const predefinedRules = document.getElementById('predefinedRules').value;
if (predefinedRules !== 'custom') {
selectedRules = predefinedRules;
} else {
selectedRules = Array.from(document.querySelectorAll('input[name="selectedRules"]:checked'))
.map(checkbox => checkbox.value);
}

let pin = document.getElementById('crpinToggle').checked;
const configEditor = document.getElementById('configEditor');
const configId = new URLSearchParams(window.location.search).get('configId') || '';

const customRules = Array.from(document.querySelectorAll('.custom-rule')).map(rule => ({
site: rule.querySelector('input[name="customRuleSite[]"]').value,
ip: rule.querySelector('input[name="customRuleIP[]"]').value,
name: rule.querySelector('input[name="customRuleName[]"]').value,
domain_suffix: rule.querySelector('input[name="customRuleDomainSuffix[]"]').value,
domain_keyword: rule.querySelector('input[name="customRuleDomainKeyword[]"]').value,
ip_cidr: rule.querySelector('input[name="customRuleIPCIDR[]"]').value
}));

const configParam = configId ? \`&configId=\${configId}\` : '';
const xrayUrl = \`\${window.location.origin}/xray?config=\${encodeURIComponent(inputString)}\${configParam}\`;
const singboxUrl = \`\${window.location.origin}/singbox?config=\${encodeURIComponent(inputString)}&selectedRules=\${encodeURIComponent(JSON.stringify(selectedRules))}&customRules=\${encodeURIComponent(JSON.stringify(customRules))}&pin=\${pin}\${configParam}\`;
const clashUrl = \`\${window.location.origin}/clash?config=\${encodeURIComponent(inputString)}&selectedRules=\${encodeURIComponent(JSON.stringify(selectedRules))}&customRules=\${encodeURIComponent(JSON.stringify(customRules))}&pin=\${pin}\${configParam}\`;

document.getElementById('xrayLink').value = xrayUrl;
document.getElementById('singboxLink').value = singboxUrl;
document.getElementById('clashLink').value = clashUrl;

// Show the subscribe part
const subscribeLinksContainer = document.getElementById('subscribeLinksContainer');
subscribeLinksContainer.classList.remove('hide');
subscribeLinksContainer.classList.add('show');

// Scroll to the subscribe part
subscribeLinksContainer.scrollIntoView({ behavior: 'smooth' });
}

function loadSavedFormData() {
const savedInput = localStorage.getItem('inputTextarea');
if (savedInput) {
document.getElementById('inputTextarea').value = savedInput;
}

const advancedToggle = localStorage.getItem('advancedToggle');
if (advancedToggle) {
document.getElementById('advancedToggle').checked = advancedToggle === 'true';
if (advancedToggle === 'true') {
document.getElementById('advancedOptions').classList.add('show');
}
}

// 加载 configEditor 和 configType
const savedConfig = localStorage.getItem('configEditor');
const savedConfigType = localStorage.getItem('configType');

if (savedConfig) {
document.getElementById('configEditor').value = savedConfig;
}
if (savedConfigType) {
document.getElementById('configType').value = savedConfigType;
}

const savedCustomPath = localStorage.getItem('customPath');
if (savedCustomPath) {
document.getElementById('customShortCode').value = savedCustomPath;
}

loadSelectedRules();
}

function saveSelectedRules() {
const selectedRules = Array.from(document.querySelectorAll('input[name="selectedRules"]:checked'))
.map(checkbox => checkbox.value);
localStorage.setItem('selectedRules', JSON.stringify(selectedRules));
localStorage.setItem('predefinedRules', document.getElementById('predefinedRules').value);
}

function loadSelectedRules() {
const savedRules = localStorage.getItem('selectedRules');
if (savedRules) {
const rules = JSON.parse(savedRules);
rules.forEach(rule => {
const checkbox = document.querySelector(\`input[name="selectedRules"][value="\${rule}"]\`);
if (checkbox) {
checkbox.checked = true;
}
});
}

const savedPredefinedRules = localStorage.getItem('predefinedRules');
if (savedPredefinedRules) {
document.getElementById('predefinedRules').value = savedPredefinedRules;
}
}

function clearFormData() {
localStorage.removeItem('inputTextarea');
localStorage.removeItem('advancedToggle');
localStorage.removeItem('selectedRules');
localStorage.removeItem('predefinedRules');
localStorage.removeItem('configEditor'); // 添加清除 configEditor
localStorage.removeItem('configType'); // 添加清除 configType

document.getElementById('inputTextarea').value = '';
document.getElementById('advancedToggle').checked = false;
document.getElementById('advancedOptions').classList.remove('show');
document.getElementById('configEditor').value = '';
document.getElementById('configType').value = 'singbox'; // 重置为默认值

localStorage.removeItem('customPath');
document.getElementById('customShortCode').value = '';

const subscribeLinksContainer = document.getElementById('subscribeLinksContainer');
subscribeLinksContainer.classList.remove('show');
subscribeLinksContainer.classList.add('hide');

document.getElementById('xrayLink').value = '';
document.getElementById('singboxLink').value = '';
document.getElementById('clashLink').value = '';

// wait to reset the container
setTimeout(() => {
subscribeLinksContainer.classList.remove('hide');
}, 500);
}

document.addEventListener('DOMContentLoaded', function() {
loadSavedFormData();
document.getElementById('encodeForm').addEventListener('submit', submitForm);
document.getElementById('clearFormBtn').addEventListener('click', clearFormData);
});
`;

const customRuleFunctions = `
let customRuleCount = 0;

function addCustomRule() {
const customRulesDiv = document.getElementById('customRules');
const newRuleDiv = document.createElement('div');
newRuleDiv.className = 'custom-rule mb-3 p-3 border rounded';
newRuleDiv.dataset.ruleId = customRuleCount++;
newRuleDiv.innerHTML = \`
<div class="mb-2">
<label class="form-label">规则名称*</label>
<input type="text" class="form-control mb-2" name="customRuleName[]" placeholder="规则名称" required>
</div>
<div class="mb-2">
<label class="form-label">Geo-Site 规则集</label>
<span class="tooltip-icon">
<i class="fas fa-question-circle"></i>
<span class="tooltip-content">
SingBox 中的站点规则来自 https://github.com/lyc8503/sing-box-rules,这意味着您的自定义规则必须在存储库中
</span>
</span>
<input type="text" class="form-control" name="customRuleSite[]" placeholder="e.g., google,anthropic">
</div>
<div class="mb-2">
<label class="form-label">Geo-IP 规则集</label>
<span class="tooltip-icon">
<i class="fas fa-question-circle"></i>
<span class="tooltip-content">
SingBox 中的 IP 规则来自 https://github.com/lyc8503/sing-box-rules,这意味着您的自定义规则必须在存储库中
</span>
</span>
<input type="text" class="form-control" name="customRuleIP[]" placeholder="e.g., private,cn">
</div>
<div class="mb-2">
<label class="form-label">域名后缀</label>
<input type="text" class="form-control mb-2" name="customRuleDomainSuffix[]" placeholder="域名后缀(逗号分隔)">
</div>
<div class="mb-2">
<label class="form-label">域名关键字</label>
<input type="text" class="form-control mb-2" name="customRuleDomainKeyword[]" placeholder="域名关键字(逗号分隔)">
</div>
<div class="mb-2">
<label class="form-label">IP段</label>
<input type="text" class="form-control mb-2" name="customRuleIPCIDR[]" placeholder="IP段(逗号分隔)">
</div>
<button type="button" class="btn btn-danger btn-sm" onclick="removeCustomRule(this)">删除</button>
\`;
customRulesDiv.appendChild(newRuleDiv);
}

function removeCustomRule(button) {
const ruleDiv = button.closest('.custom-rule');
if (ruleDiv) {
ruleDiv.classList.add('removing');
ruleDiv.addEventListener('animationend', () => {
ruleDiv.remove();
customRuleCount--;
}, { once: true });
}
}
`;

const generateQRCodeFunction = () => `
function generateQRCode(id) {
const input = document.getElementById(id);
const text = input.value;
if (!text) {
alert('未提供链接!');
return;
}
try {
const qr = qrcode(0, 'M');
qr.addData(text);
qr.make();

const moduleCount = qr.getModuleCount();
const cellSize = Math.max(2, Math.min(8, Math.floor(300 / moduleCount)));
const margin = Math.floor(cellSize * 0.5);

const qrImage = qr.createDataURL(cellSize, margin);

const modal = document.createElement('div');
modal.className = 'qr-modal';
modal.innerHTML = \`
<div class="qr-card">
<img src="\${qrImage}" alt="QR Code">
<p>扫描二维码</p>
</div>
\`;

document.body.appendChild(modal);

modal.addEventListener('click', (e) => {
if (e.target === modal) {
closeQRModal();
}
});

document.addEventListener('keydown', (e) => {
if (e.key === 'Escape') {
closeQRModal();
}
});

requestAnimationFrame(() => {
modal.classList.add('show');
});
} catch (error) {
console.error('Error in generating:', error);
alert('尝试使用短链接!');
}
}

function closeQRModal() {
const modal = document.querySelector('.qr-modal');
if (modal) {
modal.classList.remove('show');
modal.addEventListener('transitionend', () => {
document.body.removeChild(modal);
}, { once: true });
}
}
`;

const saveConfig = () => `
function saveConfig() {
const configEditor = document.getElementById('configEditor');
const configType = document.getElementById('configType').value;
const config = configEditor.value;

localStorage.setItem('configEditor', config);
localStorage.setItem('configType', configType);

fetch('/config?type=' + configType, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
type: configType,
content: config
})
})
.then(response => {
if (!response.ok) {
throw new Error('Failed to save configuration');
}
return response.text();
})
.then(configId => {
const currentUrl = new URL(window.location.href);
currentUrl.searchParams.set('configId', configId);
window.history.pushState({}, '', currentUrl);
alert('配置保存成功!');
})
.catch(error => {
alert('异常: ' + error.message);
});
}
`;

const clearConfig = () => `
function clearConfig() {
document.getElementById('configEditor').value = '';
const currentUrl = new URL(window.location.href);
currentUrl.searchParams.delete('configId');
window.history.pushState({}, '', currentUrl);
localStorage.removeItem('configEditor');
}
`;


▶️ 新人YouTube 需要您的支持,请务必帮我点赞关注打开小铃铛,十分感谢!!! ✅
🎁 不要只是下载或Fork。请 follow 我的GitHub、给我所有项目一个 Star 星星(拜托了)!你的支持是我不断前进的动力! 💖