Welcome to mirror list, hosted at ThFree Co, Russian Federation.

setting.html « xui « html « web - github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 54d54d728264aacf0fa97b36f8d770061fd07f21 (plain)
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
<!DOCTYPE html>
<html lang="en">
{{template "head" .}}
<style>
    @media (min-width: 769px) {
        .ant-layout-content {
            margin: 24px 16px;
        }
    }

    .ant-col-sm-24 {
        margin-top: 10px;
    }

    .ant-tabs-bar {
        margin: 0;
    }

    .ant-list-item {
        display: block;
    }

    :not(.ant-card-dark)>.ant-tabs-top-bar {
        background: white;
    }
</style>

<body>
    <a-layout id="app" v-cloak>
        {{ template "commonSider" . }}
        <a-layout id="content-layout" :style="siderDrawer.isDarkTheme ? bgDarkStyle : ''">
            <a-layout-content>
                <a-spin :spinning="spinning" :delay="500" tip="loading">
                    <a-space direction="vertical">
                        <a-space direction="horizontal">
                            <a-button type="primary" :disabled="saveBtnDisable" @click="updateAllSetting">{{ i18n "pages.setting.save" }}</a-button>
                            <a-button type="danger" :disabled="!saveBtnDisable" @click="restartPanel">{{ i18n "pages.setting.restartPanel" }}</a-button>
                        </a-space>

                        <a-tabs default-active-key="1" :class="siderDrawer.isDarkTheme ? darkClass : ''">
                            <a-tab-pane key="1" tab='{{ i18n "pages.setting.panelConfig"}}'>
                                <a-list item-layout="horizontal" :style="siderDrawer.isDarkTheme ? 'color: hsla(0,0%,100%,.65);': 'background: white;'">
                                    <setting-list-item type="text" title='{{ i18n "pages.setting.panelListeningIP"}}' desc='{{ i18n "pages.setting.panelListeningIPDesc"}}' v-model="allSetting.webListen"></setting-list-item>
                                    <setting-list-item type="number" title='{{ i18n "pages.setting.panelPort"}}' desc='{{ i18n "pages.setting.panelPortDesc"}}' v-model.number="allSetting.webPort"></setting-list-item>
                                    <setting-list-item type="text" title='{{ i18n "pages.setting.publicKeyPath"}}' desc='{{ i18n "pages.setting.publicKeyPathDesc"}}' v-model="allSetting.webCertFile"></setting-list-item>
                                    <setting-list-item type="text" title='{{ i18n "pages.setting.privateKeyPath"}}' desc='{{ i18n "pages.setting.privateKeyPathDesc"}}' v-model="allSetting.webKeyFile"></setting-list-item>
                                    <setting-list-item type="text" title='{{ i18n "pages.setting.panelUrlPath"}}' desc='{{ i18n "pages.setting.panelUrlPathDesc"}}' v-model="allSetting.webBasePath"></setting-list-item>
                                    <setting-list-item type="number" title='{{ i18n "pages.setting.expireTimeDiff" }}' desc='{{ i18n "pages.setting.expireTimeDiffDesc" }}'  v-model="allSetting.expireDiff" :min="0"></setting-list-item>
                                    <setting-list-item type="number" title='{{ i18n "pages.setting.trafficDiff" }}' desc='{{ i18n "pages.setting.trafficDiffDesc" }}'  v-model="allSetting.trafficDiff" :min="0"></setting-list-item>
                                    <a-list-item>
                                        <a-row style="padding: 20px">
                                            <a-col :lg="24" :xl="12">
                                                <a-list-item-meta title="Language" />
                                            </a-col>

                                            <a-col :lg="24" :xl="12">
                                                <template>
                                                    <a-select
                                                        ref="selectLang"
                                                        v-model="lang"
                                                        @change="setLang(lang)"
                                                        :dropdown-class-name="siderDrawer.isDarkTheme ? 'ant-card-dark' : ''"
                                                        style="width: 100%"
                                                    >
                                                        <a-select-option :value="l.value" :label="l.value" v-for="l in supportLangs">
                                                            <span role="img" aria-label="l.name" v-text="l.icon"></span>&nbsp;&nbsp;<span v-text="l.name"></span>
                                                        </a-select-option>
                                                    </a-select>
                                                </template>
                                            </a-col>
                                        </a-row>
                                    </a-list-item>
                                </a-list>
                            </a-tab-pane>

                            <a-tab-pane key="2" tab='{{ i18n "pages.setting.userSetting"}}'>
                                <a-form :style="siderDrawer.isDarkTheme ? 'color: hsla(0,0%,100%,.65); padding: 20px;': 'background: white; padding: 20px;'">
                                    <a-form-item label='{{ i18n "pages.setting.oldUsername"}}'>
                                        <a-input v-model="user.oldUsername" style="max-width: 300px"></a-input>
                                    </a-form-item>
                                    <a-form-item label='{{ i18n "pages.setting.currentPassword"}}'>
                                        <a-input type="password" v-model="user.oldPassword" style="max-width: 300px"></a-input>
                                    </a-form-item>
                                    <a-form-item label='{{ i18n "pages.setting.newUsername"}}'>
                                        <a-input v-model="user.newUsername" style="max-width: 300px"></a-input>
                                    </a-form-item>
                                    <a-form-item label='{{ i18n "pages.setting.newPassword"}}'>
                                        <a-input type="password" v-model="user.newPassword" style="max-width: 300px"></a-input>
                                    </a-form-item>
                                    <a-form-item>
                                        <a-button type="primary" @click="updateUser">{{ i18n "confirm" }}</a-button>
                                    </a-form-item>
                                </a-form>
                            </a-tab-pane>

                            <a-tab-pane key="3" tab='{{ i18n "pages.setting.xrayConfiguration"}}'>
                                <a-list item-layout="horizontal" :style="siderDrawer.isDarkTheme ? 'color: hsla(0,0%,100%,.65);': 'background: white;'">
                                    <a-divider>{{ i18n "pages.setting.generalConfigs"}}</a-divider>
                                    <setting-list-item type="switch" title='{{ i18n "pages.setting.xrayConfigTorrent"}}' desc='{{ i18n "pages.setting.xrayConfigTorrentDesc"}}'  v-model="torrentSettings"></setting-list-item>
                                    <setting-list-item type="switch" title='{{ i18n "pages.setting.xrayConfigPrivateIp"}}' desc='{{ i18n "pages.setting.xrayConfigPrivateIpDesc"}}'  v-model="privateIpSettings"></setting-list-item>
                                    <setting-list-item type="switch" title='{{ i18n "pages.setting.xrayConfigAds"}}' desc='{{ i18n "pages.setting.xrayConfigAdsDesc"}}'  v-model="AdsSettings"></setting-list-item>
                                    <setting-list-item type="switch" title='{{ i18n "pages.setting.xrayConfigPorn"}}' desc='{{ i18n "pages.setting.xrayConfigPornDesc"}}'  v-model="PornSettings"></setting-list-item>
                                    <a-divider>{{ i18n "pages.setting.countryConfigs"}}</a-divider>
                                    <setting-list-item type="switch" title='{{ i18n "pages.setting.xrayConfigIRIp"}}' desc='{{ i18n "pages.setting.xrayConfigIRIpDesc"}}'  v-model="IRIpSettings"></setting-list-item>
                                    <setting-list-item type="switch" title='{{ i18n "pages.setting.xrayConfigIRDomain"}}' desc='{{ i18n "pages.setting.xrayConfigIRDomainDesc"}}'  v-model="IRDomainSettings"></setting-list-item>
                                    <setting-list-item type="switch" title='{{ i18n "pages.setting.xrayConfigChinaIp"}}' desc='{{ i18n "pages.setting.xrayConfigChinaIpDesc"}}'  v-model="ChinaIpSettings"></setting-list-item>
                                    <setting-list-item type="switch" title='{{ i18n "pages.setting.xrayConfigChinaDomain"}}' desc='{{ i18n "pages.setting.xrayConfigChinaDomainDesc"}}'  v-model="ChinaDomainSettings"></setting-list-item>
                                    <a-divider>{{ i18n "pages.setting.ipv4Configs"}}</a-divider>
                                    <setting-list-item type="switch" title='{{ i18n "pages.setting.xrayConfigGoogleIPv4"}}' desc='{{ i18n "pages.setting.xrayConfigGoogleIPv4Desc"}}'  v-model="GoogleIPv4Settings"></setting-list-item>
                                    <setting-list-item type="switch" title='{{ i18n "pages.setting.xrayConfigNetflixIPv4"}}' desc='{{ i18n "pages.setting.xrayConfigNetflixIPv4Desc"}}'  v-model="NetflixIPv4Settings"></setting-list-item>
                                    <a-divider>{{ i18n "pages.setting.warpConfigs"}}</a-divider>
                                    <setting-list-item type="switch" title='{{ i18n "pages.setting.xrayConfigGoogleWARP"}}' desc='{{ i18n "pages.setting.xrayConfigGoogleWARPDesc"}}'  v-model="GoogleWARPSettings"></setting-list-item>
                                    <setting-list-item type="switch" title='{{ i18n "pages.setting.xrayConfigOpenAIWARP"}}' desc='{{ i18n "pages.setting.xrayConfigOpenAIWARPDesc"}}'  v-model="OpenAIWARPSettings"></setting-list-item>
                                    <setting-list-item type="switch" title='{{ i18n "pages.setting.xrayConfigNetflixWARP"}}' desc='{{ i18n "pages.setting.xrayConfigNetflixWARPDesc"}}'  v-model="NetflixWARPSettings"></setting-list-item>
                                    <setting-list-item type="switch" title='{{ i18n "pages.setting.xrayConfigSpotifyWARP"}}' desc='{{ i18n "pages.setting.xrayConfigSpotifyWARPDesc"}}'  v-model="SpotifyWARPSettings"></setting-list-item>
                                    <setting-list-item type="switch" title='{{ i18n "pages.setting.xrayConfigIRWARP"}}' desc='{{ i18n "pages.setting.xrayConfigIRWARPDesc"}}'  v-model="IRWARPSettings"></setting-list-item>
                                    <a-divider>{{ i18n "pages.setting.advancedTemplate"}}</a-divider>
                                    <a-collapse>
                                        <a-collapse-panel header='{{ i18n "pages.setting.xrayConfigInbounds"}}'>
                                            <setting-list-item type="textarea" title='{{ i18n "pages.setting.xrayConfigInbounds"}}' desc='{{ i18n "pages.setting.xrayConfigInboundsDesc"}}' v-model="inboundSettings"></setting-list-item>
                                        </a-collapse-panel>
                                        <a-collapse-panel header='{{ i18n "pages.setting.xrayConfigOutbounds"}}'>
                                            <setting-list-item type="textarea" title='{{ i18n "pages.setting.xrayConfigOutbounds"}}' desc='{{ i18n "pages.setting.xrayConfigOutboundsDesc"}}' v-model="outboundSettings"></setting-list-item>
                                        </a-collapse-panel>
                                        <a-collapse-panel header='{{ i18n "pages.setting.xrayConfigRoutings"}}'>
                                            <setting-list-item type="textarea" title='{{ i18n "pages.setting.xrayConfigRoutings"}}' desc='{{ i18n "pages.setting.xrayConfigRoutingsDesc"}}' v-model="routingRuleSettings"></setting-list-item>
                                        </a-collapse-panel>
                                    </a-collapse>
                                    <a-divider>{{ i18n "pages.setting.completeTemplate"}}</a-divider>
                                    <setting-list-item type="textarea" title='{{ i18n "pages.setting.xrayConfigTemplate"}}' desc='{{ i18n "pages.setting.xrayConfigTemplateDesc"}}' v-model="allSetting.xrayTemplateConfig"></setting-list-item>
                                </a-list>
                            </a-tab-pane>

                            <a-tab-pane key="4" tab='{{ i18n "pages.setting.TGReminder"}}'>
                                <a-list item-layout="horizontal" :style="siderDrawer.isDarkTheme ? 'color: hsla(0,0%,100%,.65);': 'background: white;'">
                                    <setting-list-item type="switch" title='{{ i18n "pages.setting.telegramBotEnable" }}' desc='{{ i18n "pages.setting.telegramBotEnableDesc" }}' v-model="allSetting.tgBotEnable"></setting-list-item>
                                    <setting-list-item type="text" title='{{ i18n "pages.setting.telegramToken"}}' desc='{{ i18n "pages.setting.telegramTokenDesc"}}' v-model="allSetting.tgBotToken"></setting-list-item>
                                    <setting-list-item type="text" title='{{ i18n "pages.setting.telegramChatId"}}' desc='{{ i18n "pages.setting.telegramChatIdDesc"}}' v-model="allSetting.tgBotChatId"></setting-list-item>
                                    <setting-list-item type="text" title='{{ i18n "pages.setting.telegramNotifyTime"}}' desc='{{ i18n "pages.setting.telegramNotifyTimeDesc"}}' v-model="allSetting.tgRunTime"></setting-list-item>
                                    <setting-list-item type="switch" title='{{ i18n "pages.setting.tgNotifyBackup" }}' desc='{{ i18n "pages.setting.tgNotifyBackupDesc" }}' v-model="allSetting.tgBotBackup"></setting-list-item>
                                    <setting-list-item type="number" title='{{ i18n "pages.setting.tgNotifyCpu" }}' desc='{{ i18n "pages.setting.tgNotifyCpuDesc" }}' v-model="allSetting.tgCpu" :min="0" :max="100"></setting-list-item>
                                </a-list>
                            </a-tab-pane>

                            <a-tab-pane key="5" tab='{{ i18n "pages.setting.otherSetting"}}'>
                                <a-list item-layout="horizontal" :style="siderDrawer.isDarkTheme ? 'color: hsla(0,0%,100%,.65);': 'background: white;'">
                                    <setting-list-item type="text" title='{{ i18n "pages.setting.timeZonee"}}' desc='{{ i18n "pages.setting.timeZoneDesc"}}' v-model="allSetting.timeLocation"></setting-list-item>
                                </a-list>
                            </a-tab-pane>
                        </a-tabs>
                    </a-space>
                </a-spin>
            </a-layout-content>
        </a-layout>
    </a-layout>
    {{template "js" .}}
    {{template "component/setting"}}
    <script>

const app = new Vue({
            delimiters: ['[[', ']]'],
            el: '#app',
            data: {
                siderDrawer,
                spinning: false,
                oldAllSetting: new AllSetting(),
                allSetting: new AllSetting(),
                saveBtnDisable: true,
                user: {},
                lang: getLang(),
                ipv4Settings: {
                    tag: "IPv4",
                    protocol: "freedom",
                    settings: {
                        domainStrategy: "UseIPv4"
                    }
                },
                warpSettings: {
                    tag: "WARP",
                    protocol: "socks",
                    settings: {
                        servers: [
                            {
                                address: "127.0.0.1",
                                port: 40000
                            }
                        ]
                    }
                },
                settingsData: {
                    protocols: {
                        bittorrent: ["bittorrent"],
                    },
                    ips: {
                        local: ["geoip:private"],
                        google: ["geoip:google"],
                        cn: ["geoip:cn"],
                        ir: ["geoip:ir"],
                    },
                    domains: {
                        ads: [
                            "geosite:category-ads-all",
                            "geosite:category-ads",
                            "geosite:google-ads",
                            "geosite:spotify-ads"
                        ],
                        porn: ["geosite:category-porn"],
                        openai: ["geosite:openai"],
                        google: ["geosite:google"],
                        spotify: ["geosite:spotify"],
                        netflix: ["geosite:netflix"],
                        cn: ["geosite:cn"],
                        ir: [
                            "regexp:.*\\.ir$",
                            "ext:iran.dat:ir",
                            "ext:iran.dat:other",
                            "geosite:category-ir",
                            "bank",
                            "tapsi",
                            "snapp",
                            "blogfa",
                            "digikala",
                            "Torob.com",
                            "sheypoor.com",
                            "Tgju.org",
                            "sb24.com",
                            "tebyan.net",
                            "beytoote.com",
                            "telewebion.com",
                            "Film2movie.ws",
                            "Setare.com",
                            "Filimo.com",
                            "downloadha.com",
                            "P30download.com",
                            "Sarzamindownload.com",
                            "Sanjesh.org"
                        ]
                    },
                }
            },
            methods: {
                loading(spinning = true) {
                    this.spinning = spinning;
                },
                async getAllSetting() {
                    this.loading(true);
                    const msg = await HttpUtil.post("/xui/setting/all");
                    this.loading(false);
                    if (msg.success) {
                        this.oldAllSetting = new AllSetting(msg.obj);
                        this.allSetting = new AllSetting(msg.obj);
                        this.saveBtnDisable = true;
                    }
                },
                async updateAllSetting() {
                    this.loading(true);
                    const msg = await HttpUtil.post("/xui/setting/update", this.allSetting);
                    this.loading(false);
                    if (msg.success) {
                        await this.getAllSetting();
                    }
                },
                async updateUser() {
                    this.loading(true);
                    const msg = await HttpUtil.post("/xui/setting/updateUser", this.user);
                    this.loading(false);
                    if (msg.success) {
                        this.user = {};
                    }
                },
                async restartPanel() {
                    await new Promise(resolve => {
                        this.$confirm({
                            title: '{{ i18n "pages.setting.restartPanel" }}',
                            content: '{{ i18n "pages.setting.restartPanelDesc" }}',
                            okText: '{{ i18n "sure" }}',
                            cancelText: '{{ i18n "cancel" }}',
                            onOk: () => resolve(),
                        });
                    });
                    this.loading(true);
                    const msg = await HttpUtil.post("/xui/setting/restartPanel");
                    this.loading(false);
                    if (msg.success) {
                        this.loading(true);
                        await PromiseUtil.sleep(5000);
                        location.reload();
                    }
                },
                checkRequiredOutbounds() {
                    const newTemplateSettings = this.templateSettings;
                    const haveIPv4Outbounds = newTemplateSettings.outbounds.some((o) => o?.tag === "IPv4");
                    const haveIPv4Rules = newTemplateSettings.routing.rules.some((r) => r?.outboundTag === "IPv4");
                    const haveWARPOutbounds = newTemplateSettings.outbounds.some((o) => o?.tag === "WARP");
                    const haveWARPRules = newTemplateSettings.routing.rules.some((r) => r?.outboundTag === "WARP");
                    if (haveWARPRules && !haveWARPOutbounds) {
                        newTemplateSettings.outbounds.push(this.warpSettings);
                    }
                    if (haveIPv4Rules && !haveIPv4Outbounds) {
                        newTemplateSettings.outbounds.push(this.ipv4Settings);
                    }
                    this.templateSettings = newTemplateSettings;
                },
                templateRuleGetter(routeSettings) {
                    const { data, property, outboundTag } = routeSettings;
                    let result = false;
                    if (this.templateSettings != null) {
                        this.templateSettings.routing.rules.forEach(
                            (routingRule) => {
                                if (
                                    routingRule.hasOwnProperty(property) &&
                                    routingRule.hasOwnProperty("outboundTag") &&
                                    routingRule.outboundTag === outboundTag
                                ) {
                                    if (data.includes(routingRule[property][0])) {
                                        result = true;
                                    }
                                }
                            }
                        );
                    }
                    return result;
                },
                templateRuleSetter(routeSettings) {
                    const { newValue, data, property, outboundTag } = routeSettings;
                    const oldTemplateSettings = this.templateSettings;
                    const newTemplateSettings = oldTemplateSettings;
                    if (newValue) {
                        const propertyRule = {
                            type: "field",
                            outboundTag,
                            [property]: data
                        };
                        newTemplateSettings.routing.rules.push(propertyRule);
                    }
                    else {
                        const newRules = [];
                        newTemplateSettings.routing.rules.forEach(
                            (routingRule) => {
                                if (
                                    routingRule.hasOwnProperty(property) &&
                                    routingRule.hasOwnProperty("outboundTag") &&
                                    routingRule.outboundTag === outboundTag
                                ) {
                                    if (data.includes(routingRule[property][0])) {
                                        return;
                                    }
                                }
                                newRules.push(routingRule);
                            }
                        );
                        newTemplateSettings.routing.rules = newRules;
                    }
                    this.templateSettings = newTemplateSettings;
                    this.checkRequiredOutbounds();
                }
            },
            async mounted() {
                await this.getAllSetting();
                while (true) {
                    await PromiseUtil.sleep(1000);
                    this.saveBtnDisable = this.oldAllSetting.equals(this.allSetting);
                }
            },
            computed: {
                templateSettings: {
                    get: function () { return this.allSetting.xrayTemplateConfig ? JSON.parse(this.allSetting.xrayTemplateConfig) : null; },
                    set: function (newValue) { this.allSetting.xrayTemplateConfig = JSON.stringify(newValue, null, 2) },
                },
                inboundSettings: {
                    get: function () { return this.templateSettings ? JSON.stringify(this.templateSettings.inbounds, null, 2) : null; },
                    set: function (newValue) {
                        newTemplateSettings = this.templateSettings;
                        newTemplateSettings.inbounds = JSON.parse(newValue)
                        this.templateSettings = newTemplateSettings
                    },
                },
                outboundSettings: {
                    get: function () { return this.templateSettings ? JSON.stringify(this.templateSettings.outbounds, null, 2) : null; },
                    set: function (newValue) {
                        newTemplateSettings = this.templateSettings;
                        newTemplateSettings.outbounds = JSON.parse(newValue)
                        this.templateSettings = newTemplateSettings
                    },
                },
                routingRuleSettings: {
                    get: function () { return this.templateSettings ? JSON.stringify(this.templateSettings.routing.rules, null, 2) : null; },
                    set: function (newValue) {
                        newTemplateSettings = this.templateSettings;
                        newTemplateSettings.routing.rules = JSON.parse(newValue)
                        this.templateSettings = newTemplateSettings
                    },
                },
                torrentSettings: {
                    get: function () {
                        return this.templateRuleGetter({
                            outboundTag: "blocked",
                            property: "protocol",
                            data: this.settingsData.protocols.bittorrent
                        });
                    },
                    set: function (newValue) {
                        this.templateRuleSetter({
                            newValue,
                            outboundTag: "blocked",
                            property: "protocol",
                            data: this.settingsData.protocols.bittorrent
                        });
                    },
                },
                privateIpSettings: {
                    get: function () {
                        return this.templateRuleGetter({
                            outboundTag: "blocked",
                            property: "ip",
                            data: this.settingsData.ips.local
                        });
                    },
                    set: function (newValue) {
                        this.templateRuleSetter({
                            newValue,
                            outboundTag: "blocked",
                            property: "ip",
                            data: this.settingsData.ips.local
                        });
                    },
                },
                AdsSettings: {
                    get: function () {
                        return this.templateRuleGetter({
                            outboundTag: "blocked",
                            property: "domain",
                            data: this.settingsData.domains.ads
                        });
                    },
                    set: function (newValue) {
                        this.templateRuleSetter({
                            newValue,
                            outboundTag: "blocked",
                            property: "domain",
                            data: this.settingsData.domains.ads
                        });
                    },
                },
                PornSettings: {
                    get: function () {
                        return this.templateRuleGetter({
                            outboundTag: "blocked",
                            property: "domain",
                            data: this.settingsData.domains.porn
                        });
                    },
                    set: function (newValue) {
                        this.templateRuleSetter({
                            newValue,
                            outboundTag: "blocked",
                            property: "domain",
                            data: this.settingsData.domains.porn
                        });
                    },
                },
                GoogleIPv4Settings: {
                    get: function () {
                        return this.templateRuleGetter({
                            outboundTag: "IPv4",
                            property: "domain",
                            data: this.settingsData.domains.google
                        });
                    },
                    set: function (newValue) {
                        this.templateRuleSetter({
                            newValue,
                            outboundTag: "IPv4",
                            property: "domain",
                            data: this.settingsData.domains.google
                        });
                    },
                },
                NetflixIPv4Settings: {
                    get: function () {
                        return this.templateRuleGetter({
                            outboundTag: "IPv4",
                            property: "domain",
                            data: this.settingsData.domains.netflix
                        });
                    },
                    set: function (newValue) {
                        this.templateRuleSetter({
                            newValue,
                            outboundTag: "IPv4",
                            property: "domain",
                            data: this.settingsData.domains.netflix
                        });
                    },
                },
                IRIpSettings: {
                    get: function () {
                        return this.templateRuleGetter({
                            outboundTag: "blocked",
                            property: "ip",
                            data: this.settingsData.ips.ir
                        });
                    },
                    set: function (newValue) {
                        this.templateRuleSetter({
                            newValue,
                            outboundTag: "blocked",
                            property: "ip",
                            data: this.settingsData.ips.ir
                        });
                    },
                },
                IRDomainSettings: {
                    get: function () {
                        return this.templateRuleGetter({
                            outboundTag: "blocked",
                            property: "domain",
                            data: this.settingsData.domains.ir
                        });
                    },
                    set: function (newValue) {
                        this.templateRuleSetter({
                            newValue,
                            outboundTag: "blocked",
                            property: "domain",
                            data: this.settingsData.domains.ir
                        });
                    },
                },
                ChinaIpSettings: {
                    get: function () {
                        return this.templateRuleGetter({
                            outboundTag: "blocked",
                            property: "ip",
                            data: this.settingsData.ips.cn
                        });
                    },
                    set: function (newValue) {
                        this.templateRuleSetter({
                            newValue,
                            outboundTag: "blocked",
                            property: "ip",
                            data: this.settingsData.ips.cn
                        });
                    },
                },
                ChinaDomainSettings: {
                    get: function () {
                        return this.templateRuleGetter({
                            outboundTag: "blocked",
                            property: "domain",
                            data: this.settingsData.domains.cn
                        });
                    },
                    set: function (newValue) {
                        this.templateRuleSetter({
                            newValue,
                            outboundTag: "blocked",
                            property: "domain",
                            data: this.settingsData.domains.cn
                        });
                    },
                },
                GoogleWARPSettings: {
                    get: function () {
                        return this.templateRuleGetter({
                            outboundTag: "WARP",
                            property: "domain",
                            data: this.settingsData.domains.google
                        });
                    },
                    set: function (newValue) {
                        this.templateRuleSetter({
                            newValue,
                            outboundTag: "WARP",
                            property: "domain",
                            data: this.settingsData.domains.google
                        });
                    },
                },
                OpenAIWARPSettings: {
                    get: function () {
                        return this.templateRuleGetter({
                            outboundTag: "WARP",
                            property: "domain",
                            data: this.settingsData.domains.openai
                        });
                    },
                    set: function (newValue) {
                        this.templateRuleSetter({
                            newValue,
                            outboundTag: "WARP",
                            property: "domain",
                            data: this.settingsData.domains.openai
                        });
                    },
                },
                NetflixWARPSettings: {
                    get: function () {
                        return this.templateRuleGetter({
                            outboundTag: "WARP",
                            property: "domain",
                            data: this.settingsData.domains.netflix
                        });
                    },
                    set: function (newValue) {
                        this.templateRuleSetter({
                            newValue,
                            outboundTag: "WARP",
                            property: "domain",
                            data: this.settingsData.domains.netflix
                        });
                    },
                },
                SpotifyWARPSettings: {
                    get: function () {
                        return this.templateRuleGetter({
                            outboundTag: "WARP",
                            property: "domain",
                            data: this.settingsData.domains.spotify
                        });
                    },
                    set: function (newValue) {
                        this.templateRuleSetter({
                            newValue,
                            outboundTag: "WARP",
                            property: "domain",
                            data: this.settingsData.domains.spotify
                        });
                    },
                },
                IRWARPSettings: {
                    get: function () {
                        return this.templateRuleGetter({
                            outboundTag: "WARP",
                            property: "domain",
                            data: this.settingsData.domains.ir
                        });
                    },
                    set: function (newValue) {
                        this.templateRuleSetter({
                            newValue,
                            outboundTag: "WARP",
                            property: "domain",
                            data: this.settingsData.domains.ir
                        });
                    },
                },
            }
        });

    </script>
</body>

</html>