settings.html 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. {{template "head" .}}
  4. <style>
  5. @media (min-width: 769px) {
  6. .ant-layout-content {
  7. margin: 24px 16px;
  8. }
  9. }
  10. @media (max-width: 768px) {
  11. .ant-tabs-nav .ant-tabs-tab {
  12. margin: 0;
  13. padding: 12px .5rem;
  14. }
  15. }
  16. .ant-tabs-bar {
  17. margin: 0;
  18. }
  19. .ant-list-item {
  20. display: block;
  21. }
  22. .alert-msg {
  23. color: rgb(194, 117, 18);
  24. font-weight: normal;
  25. font-size: 16px;
  26. padding: .5rem 1rem;
  27. text-align: center;
  28. background: rgb(255 145 0 / 15%);
  29. margin: 1.5rem 2.5rem 0rem;
  30. border-radius: .5rem;
  31. transition: all 0.5s;
  32. animation: signal 3s cubic-bezier(0.18, 0.89, 0.32, 1.28) infinite;
  33. }
  34. .alert-msg:hover {
  35. cursor: default;
  36. transition-duration: .3s;
  37. animation: signal 0.9s ease infinite;
  38. }
  39. @keyframes signal {
  40. 0% {
  41. box-shadow: 0 0 0 0 rgba(194, 118, 18, 0.5);
  42. }
  43. 50% {
  44. box-shadow: 0 0 0 6px rgba(0, 0, 0, 0);
  45. }
  46. 100% {
  47. box-shadow: 0 0 0 6px rgba(0, 0, 0, 0);
  48. }
  49. }
  50. .alert-msg>i {
  51. color: inherit;
  52. font-size: 24px;
  53. }
  54. .collapse-title {
  55. color: inherit;
  56. font-weight: bold;
  57. font-size: 18px;
  58. padding: 10px 20px;
  59. border-bottom: 2px solid;
  60. }
  61. .collapse-title>i {
  62. color: inherit;
  63. font-size: 24px;
  64. }
  65. .ant-collapse-content-box .ant-list-item {
  66. border-bottom: none !important;
  67. }
  68. </style>
  69. <body>
  70. <a-layout id="app" v-cloak :class="themeSwitcher.currentTheme">
  71. {{ template "commonSider" . }}
  72. <a-layout id="content-layout">
  73. <a-layout-content>
  74. <a-spin :spinning="spinning" :delay="500" tip='{{ i18n "loading"}}'>
  75. <transition name="list" appear>
  76. <a-alert type="error" v-if="confAlerts.length>0" style="margin-bottom: 10px;"
  77. message='{{ i18n "secAlertTitle" }}'
  78. color="red"
  79. show-icon closable>
  80. <template slot="description">
  81. <b>{{ i18n "secAlertConf" }}</b>
  82. <ul><li v-for="a in confAlerts">[[ a ]]</li></ul>
  83. </template>
  84. </a-alert>
  85. </transition>
  86. <a-space direction="vertical">
  87. <a-card hoverable style="margin-bottom: .5rem; overflow-x: hidden;">
  88. <a-row style="display: flex; flex-wrap: wrap; align-items: center;">
  89. <a-col :xs="24" :sm="10" style="padding: 4px;">
  90. <a-space direction="horizontal">
  91. <a-button type="primary" :disabled="saveBtnDisable" @click="updateAllSetting">{{ i18n "pages.settings.save" }}</a-button>
  92. <a-button type="danger" :disabled="!saveBtnDisable" @click="restartPanel">{{ i18n "pages.settings.restartPanel" }}</a-button>
  93. </a-space>
  94. </a-col>
  95. <a-col :xs="24" :sm="14">
  96. <template>
  97. <div>
  98. <a-back-top :target="() => document.getElementById('content-layout')" visibility-height="200"></a-back-top>
  99. <a-alert type="warning" style="float: right; width: fit-content"
  100. message='{{ i18n "pages.settings.infoDesc" }}'
  101. show-icon>
  102. </a-alert>
  103. </div>
  104. </template>
  105. </a-col>
  106. </a-row>
  107. </a-card>
  108. <a-tabs default-active-key="1">
  109. <a-tab-pane key="1" tab='{{ i18n "pages.settings.panelSettings"}}'>
  110. <a-list item-layout="horizontal">
  111. <a-list-item>
  112. <a-row style="padding: 20px">
  113. <a-col :lg="24" :xl="12">
  114. <a-list-item-meta title='{{ i18n "pages.settings.remarkModel"}}'>
  115. <template slot="description">{{ i18n "pages.settings.sampleRemark"}}: <i>#[[ remarkSample ]]</i></template>
  116. </a-list-item-meta>
  117. </a-col>
  118. <a-col :lg="24" :xl="12">
  119. <a-input-group style="width: 100%;">
  120. <a-select style="padding-right: .5rem; min-width: 80%; width: auto;"
  121. mode="multiple"
  122. v-model="remarkModel"
  123. :dropdown-class-name="themeSwitcher.currentTheme">
  124. <a-select-option v-for="(value, key) in remarkModels" :value="key">[[ value ]]</a-select-option>
  125. </a-select>
  126. <a-select style="width: 20%;" v-model="remarkSeparator" :dropdown-class-name="themeSwitcher.currentTheme">
  127. <a-select-option v-for="key in remarkSeparators" :value="key">[[ key ]]</a-select-option>
  128. </a-select>
  129. </a-input-group>
  130. </a-col>
  131. </a-row>
  132. </a-list-item>
  133. <setting-list-item type="text" title='{{ i18n "pages.settings.panelListeningIP"}}' desc='{{ i18n "pages.settings.panelListeningIPDesc"}}' v-model="allSetting.webListen"></setting-list-item>
  134. <setting-list-item type="text" title='{{ i18n "pages.settings.panelListeningDomain"}}' desc='{{ i18n "pages.settings.panelListeningDomainDesc"}}' v-model="allSetting.webDomain"></setting-list-item>
  135. <setting-list-item type="number" title='{{ i18n "pages.settings.panelPort"}}' desc='{{ i18n "pages.settings.panelPortDesc"}}' v-model="allSetting.webPort" :min="1" :max="65531"></setting-list-item>
  136. <setting-list-item type="text" title='{{ i18n "pages.settings.publicKeyPath"}}' desc='{{ i18n "pages.settings.publicKeyPathDesc"}}' v-model="allSetting.webCertFile"></setting-list-item>
  137. <setting-list-item type="text" title='{{ i18n "pages.settings.privateKeyPath"}}' desc='{{ i18n "pages.settings.privateKeyPathDesc"}}' v-model="allSetting.webKeyFile"></setting-list-item>
  138. <setting-list-item type="text" title='{{ i18n "pages.settings.panelUrlPath"}}' desc='{{ i18n "pages.settings.panelUrlPathDesc"}}' v-model="allSetting.webBasePath"></setting-list-item>
  139. <setting-list-item type="number" title='{{ i18n "pages.settings.sessionMaxAge" }}' desc='{{ i18n "pages.settings.sessionMaxAgeDesc" }}' v-model="allSetting.sessionMaxAge" :min="60"></setting-list-item>
  140. <setting-list-item type="number" title='{{ i18n "pages.settings.pageSize" }}' desc='{{ i18n "pages.settings.pageSizeDesc" }}' v-model="allSetting.pageSize" :min="0" :step="5"></setting-list-item>
  141. <setting-list-item type="number" title='{{ i18n "pages.settings.expireTimeDiff" }}' desc='{{ i18n "pages.settings.expireTimeDiffDesc" }}' v-model="allSetting.expireDiff" :min="0"></setting-list-item>
  142. <setting-list-item type="number" title='{{ i18n "pages.settings.trafficDiff" }}' desc='{{ i18n "pages.settings.trafficDiffDesc" }}' v-model="allSetting.trafficDiff" :min="0"></setting-list-item>
  143. <setting-list-item type="switch" title='{{ i18n "pages.settings.externalTrafficInformEnable"}}' desc='{{ i18n "pages.settings.externalTrafficInformEnableDesc"}}' v-model="allSetting.externalTrafficInformEnable"></setting-list-item>
  144. <setting-list-item type="text" title='{{ i18n "pages.settings.externalTrafficInformURI"}}' desc='{{ i18n "pages.settings.externalTrafficInformURIDesc"}}' v-model="allSetting.externalTrafficInformURI" placeholder="(http|https)://domain[:port]/path/"></setting-list-item>
  145. <setting-list-item type="text" title='{{ i18n "pages.settings.timeZone"}}' desc='{{ i18n "pages.settings.timeZoneDesc"}}' v-model="allSetting.timeLocation"></setting-list-item>
  146. <a-list-item>
  147. <a-row style="padding: 20px">
  148. <a-col :lg="24" :xl="12">
  149. <a-list-item-meta title='{{ i18n "pages.settings.datepicker"}}'>
  150. <template slot="description">{{ i18n "pages.settings.datepickerDescription"}}</template>
  151. </a-list-item-meta>
  152. </a-col>
  153. <a-col :lg="24" :xl="12">
  154. <template>
  155. <a-select style="width: 100%" :dropdown-class-name="themeSwitcher.currentTheme" v-model="datepicker">
  156. <a-select-option v-for="item in datepickerList" :value="item.value">
  157. <span v-text="item.name"></span>
  158. </a-select-option>
  159. </a-select>
  160. </template>
  161. </a-col>
  162. </a-row>
  163. </a-list-item>
  164. <a-list-item>
  165. <a-row style="padding: 20px">
  166. <a-col :lg="24" :xl="12">
  167. <a-list-item-meta title="Language"></a-list-item-meta>
  168. </a-col>
  169. <a-col :lg="24" :xl="12">
  170. <template>
  171. <a-select ref="selectLang"
  172. v-model="lang"
  173. @change="setLang(lang)"
  174. :dropdown-class-name="themeSwitcher.currentTheme"
  175. style="width: 100%">
  176. <a-select-option :value="l.value" :label="l.value" v-for="l in supportLangs">
  177. <span role="img" :aria-label="l.name" v-text="l.icon"></span> &nbsp;&nbsp; <span v-text="l.name"></span>
  178. </a-select-option>
  179. </a-select>
  180. </template>
  181. </a-col>
  182. </a-row>
  183. </a-list-item>
  184. </a-list>
  185. </a-tab-pane>
  186. <a-tab-pane key="2" tab='{{ i18n "pages.settings.securitySettings"}}' style="padding-top: 20px;">
  187. <a-collapse>
  188. <a-collapse-panel header='{{ i18n "pages.settings.security.admin"}}'>
  189. <a-list-item>
  190. <a-row style="padding: 0 20px; padding-bottom: 10px;">
  191. <a-col :lg="24" :xl="12">
  192. <a-list-item-meta title='{{ i18n "pages.settings.oldUsername"}}'></a-list-item-meta>
  193. </a-col>
  194. <a-col :lg="24" :xl="12">
  195. <template>
  196. <a-input autocomplete="username" v-model="user.oldUsername"></a-input>
  197. </template>
  198. </a-col>
  199. </a-row>
  200. <a-row style="padding: 10px 20px">
  201. <a-col :lg="24" :xl="12">
  202. <a-list-item-meta title='{{ i18n "pages.settings.currentPassword"}}'></a-list-item-meta>
  203. </a-col>
  204. <a-col :lg="24" :xl="12">
  205. <template>
  206. <password-input autocomplete="current-password" v-model="user.oldPassword"></password-input>
  207. </template>
  208. </a-col>
  209. </a-row>
  210. <a-row style="padding: 10px 20px">
  211. <a-col :lg="24" :xl="12">
  212. <a-list-item-meta title='{{ i18n "pages.settings.newUsername"}}'></a-list-item-meta>
  213. </a-col>
  214. <a-col :lg="24" :xl="12">
  215. <template>
  216. <a-input v-model="user.newUsername"></a-input>
  217. </template>
  218. </a-col>
  219. </a-row>
  220. <a-row style="padding: 10px 20px">
  221. <a-col :lg="24" :xl="12">
  222. <a-list-item-meta title='{{ i18n "pages.settings.newPassword"}}'></a-list-item-meta>
  223. </a-col>
  224. <a-col :lg="24" :xl="12">
  225. <template>
  226. <password-input autocomplete="new-password" v-model="user.newPassword"></password-input>
  227. </template>
  228. </a-col>
  229. </a-row>
  230. <a-space direction="horizontal" style="padding: 0 20px; padding-top: 20px;">
  231. <a-button type="primary" @click="updateUser">{{ i18n "confirm" }}</a-button>
  232. </a-space>
  233. </a-list-item>
  234. </a-collapse-panel>
  235. <a-collapse-panel header='{{ i18n "pages.settings.security.secret"}}'>
  236. <a-list-item>
  237. <a-row style="padding: 0 20px; padding-bottom: 10px;">
  238. <a-col :lg="24" :xl="12">
  239. <a-list-item-meta title='{{ i18n "pages.settings.security.loginSecurity" }}'
  240. description='{{ i18n "pages.settings.security.loginSecurityDesc" }}'>
  241. </a-list-item-meta>
  242. </a-col>
  243. <a-col :lg="24" :xl="12">
  244. <template>
  245. <a-switch @change="toggleToken(allSetting.secretEnable)" v-model="allSetting.secretEnable"></a-switch>
  246. <a-icon style="margin-left: 1rem;" v-if="allSetting.secretEnable" :spin="this.changeSecret" type="sync" @click="getNewSecret"></a-icon>
  247. </template>
  248. </a-col>
  249. </a-row>
  250. <a-row style="padding: 10px 20px">
  251. <a-col :lg="24" :xl="12">
  252. <a-list-item-meta title='{{ i18n "pages.settings.security.secretToken" }}'
  253. description='{{ i18n "pages.settings.security.secretTokenDesc" }}'>
  254. </a-list-item-meta>
  255. </a-col>
  256. <a-col :lg="24" :xl="12">
  257. <template>
  258. <a-textarea type="text" :disabled="!allSetting.secretEnable" v-model="user.loginSecret"></a-textarea>
  259. </template>
  260. </a-col>
  261. </a-row>
  262. <a-space direction="horizontal" style="padding: 0 20px; padding-top: 20px;">
  263. <a-button type="primary" :loading="this.changeSecret" @click="updateSecret">{{ i18n "confirm" }}</a-button>
  264. </a-space>
  265. </a-list-item>
  266. </a-collapse-panel>
  267. </a-collapse>
  268. <!--
  269. <a-divider>{{ i18n "pages.settings.security.secret"}}</a-divider>
  270. <a-form style="padding: 0 20px;">
  271. <a-list-item>
  272. <a-row>
  273. <a-col :lg="24" :xl="12">
  274. <a-list-item-meta title='{{ i18n "pages.settings.security.loginSecurity" }}'
  275. description='{{ i18n "pages.settings.security.loginSecurityDesc" }}'>
  276. </a-list-item-meta>
  277. </a-col>
  278. <a-col :lg="24" :xl="12">
  279. <template>
  280. <a-switch @change="toggleToken(allSetting.secretEnable)" v-model="allSetting.secretEnable"></a-switch>
  281. <a-icon style="margin-left: 1rem;" v-if="allSetting.secretEnable" :spin="this.changeSecret" type="sync" @click="getNewSecret"></a-icon>
  282. </template>
  283. </a-col>
  284. </a-row>
  285. </a-list-item>
  286. <a-button type="primary" :loading="this.changeSecret" @click="updateSecret">{{ i18n "confirm" }}</a-button>
  287. </a-form> -->
  288. </a-tab-pane>
  289. <a-tab-pane key="3" tab='{{ i18n "pages.settings.TGBotSettings"}}'>
  290. <a-list item-layout="horizontal">
  291. <setting-list-item type="switch" title='{{ i18n "pages.settings.telegramBotEnable" }}' desc='{{ i18n "pages.settings.telegramBotEnableDesc" }}' v-model="allSetting.tgBotEnable"></setting-list-item>
  292. <setting-list-item type="text" title='{{ i18n "pages.settings.telegramToken"}}' desc='{{ i18n "pages.settings.telegramTokenDesc"}}' v-model="allSetting.tgBotToken"></setting-list-item>
  293. <setting-list-item type="text" title='{{ i18n "pages.settings.telegramChatId"}}' desc='{{ i18n "pages.settings.telegramChatIdDesc"}}' v-model="allSetting.tgBotChatId"></setting-list-item>
  294. <setting-list-item type="text" title='{{ i18n "pages.settings.telegramNotifyTime"}}' desc='{{ i18n "pages.settings.telegramNotifyTimeDesc"}}' v-model="allSetting.tgRunTime"></setting-list-item>
  295. <setting-list-item type="switch" title='{{ i18n "pages.settings.tgNotifyBackup" }}' desc='{{ i18n "pages.settings.tgNotifyBackupDesc" }}' v-model="allSetting.tgBotBackup"></setting-list-item>
  296. <setting-list-item type="switch" title='{{ i18n "pages.settings.tgNotifyLogin" }}' desc='{{ i18n "pages.settings.tgNotifyLoginDesc" }}' v-model="allSetting.tgBotLoginNotify"></setting-list-item>
  297. <setting-list-item type="number" title='{{ i18n "pages.settings.tgNotifyCpu" }}' desc='{{ i18n "pages.settings.tgNotifyCpuDesc" }}' v-model="allSetting.tgCpu" :min="0" :max="100"></setting-list-item>
  298. <setting-list-item type="text" title='{{ i18n "pages.settings.telegramProxy"}}' desc='{{ i18n "pages.settings.telegramProxyDesc"}}' v-model="allSetting.tgBotProxy" placeholder="socks5://user:pass@host:port"></setting-list-item>
  299. <setting-list-item type="text" title='{{ i18n "pages.settings.telegramAPIServer"}}' desc='{{ i18n "pages.settings.telegramAPIServerDesc"}}' v-model="allSetting.tgBotAPIServer" placeholder="https://api.example.com"></setting-list-item>
  300. <a-list-item>
  301. <a-row style="padding: 20px">
  302. <a-col :lg="24" :xl="12">
  303. <a-list-item-meta title="Telegram Bot Language" />
  304. </a-col>
  305. <a-col :lg="24" :xl="12">
  306. <template>
  307. <a-select ref="selectBotLang" v-model="allSetting.tgLang" :dropdown-class-name="themeSwitcher.currentTheme" style="width: 100%">
  308. <a-select-option :value="l.value" :label="l.value" v-for="l in supportLangs">
  309. <span role="img" :aria-label="l.name" v-text="l.icon"></span> &nbsp;&nbsp; <span v-text="l.name"></span>
  310. </a-select-option>
  311. </a-select>
  312. </template>
  313. </a-col>
  314. </a-row>
  315. </a-list-item>
  316. </a-list>
  317. </a-tab-pane>
  318. <a-tab-pane key="4" tab='{{ i18n "pages.settings.subSettings" }}'>
  319. <a-list item-layout="horizontal">
  320. <setting-list-item type="switch" title='{{ i18n "pages.settings.subEnable"}}' desc='{{ i18n "pages.settings.subEnableDesc"}}' v-model="allSetting.subEnable"></setting-list-item>
  321. <setting-list-item type="switch" title='{{ i18n "pages.settings.subEncrypt"}}' desc='{{ i18n "pages.settings.subEncryptDesc"}}' v-model="allSetting.subEncrypt"></setting-list-item>
  322. <setting-list-item type="switch" title='{{ i18n "pages.settings.subShowInfo"}}' desc='{{ i18n "pages.settings.subShowInfoDesc"}}' v-model="allSetting.subShowInfo"></setting-list-item>
  323. <setting-list-item type="text" title='{{ i18n "pages.settings.subListen"}}' desc='{{ i18n "pages.settings.subListenDesc"}}' v-model="allSetting.subListen"></setting-list-item>
  324. <setting-list-item type="text" title='{{ i18n "pages.settings.subDomain"}}' desc='{{ i18n "pages.settings.subDomainDesc"}}' v-model="allSetting.subDomain"></setting-list-item>
  325. <setting-list-item type="number" title='{{ i18n "pages.settings.subPort"}}' desc='{{ i18n "pages.settings.subPortDesc"}}' v-model.number="allSetting.subPort" :min="1" :max="65531"></setting-list-item>
  326. <setting-list-item type="text" title='{{ i18n "pages.settings.subPath"}}' desc='{{ i18n "pages.settings.subPathDesc"}}' v-model="allSetting.subPath"></setting-list-item>
  327. <setting-list-item type="text" title='{{ i18n "pages.settings.subCertPath"}}' desc='{{ i18n "pages.settings.subCertPathDesc"}}' v-model="allSetting.subCertFile"></setting-list-item>
  328. <setting-list-item type="text" title='{{ i18n "pages.settings.subKeyPath"}}' desc='{{ i18n "pages.settings.subKeyPathDesc"}}' v-model="allSetting.subKeyFile"></setting-list-item>
  329. <setting-list-item type="text" title='{{ i18n "pages.settings.subURI"}}' desc='{{ i18n "pages.settings.subURIDesc"}}' v-model="allSetting.subURI" placeholder="(http|https)://domain[:port]/path/"></setting-list-item>
  330. <setting-list-item type="number" title='{{ i18n "pages.settings.subUpdates"}}' desc='{{ i18n "pages.settings.subUpdatesDesc"}}' v-model="allSetting.subUpdates" :min="1"></setting-list-item>
  331. </a-list>
  332. </a-tab-pane>
  333. <a-tab-pane key="5" tab='{{ i18n "pages.settings.subSettings" }} Json' v-if="allSetting.subEnable">
  334. <a-list item-layout="horizontal">
  335. <setting-list-item type="text" title='{{ i18n "pages.settings.subPath"}}' desc='{{ i18n "pages.settings.subPathDesc"}}' v-model="allSetting.subJsonPath"></setting-list-item>
  336. <setting-list-item type="text" title='{{ i18n "pages.settings.subURI"}}' desc='{{ i18n "pages.settings.subURIDesc"}}' v-model="allSetting.subJsonURI" placeholder="(http|https)://domain[:port]/path/"></setting-list-item>
  337. <a-list-item style="padding: 20px">
  338. <a-row>
  339. <a-col :lg="24" :xl="12">
  340. <a-list-item-meta title='{{ i18n "pages.settings.fragment"}}'>
  341. <template slot="description">{{ i18n "pages.settings.fragmentDesc"}}</template>
  342. </a-list-item-meta>
  343. </a-col>
  344. <a-col :lg="24" :xl="12">
  345. <a-switch v-model="fragment"></a-switch>
  346. </a-col>
  347. </a-row>
  348. <a-collapse v-if="fragment" style="margin-top: 14px;">
  349. <a-collapse-panel header='{{ i18n "pages.settings.fragmentSett"}}' v-if="fragment">
  350. <setting-list-item style="padding: 10px 20px" type="text" title='Packets' v-model="fragmentPackets" placeholder="1-1 | 1-3 | tlshello | ..."></setting-list-item>
  351. <setting-list-item style="padding: 10px 20px" type="text" title='Length' v-model="fragmentLength" placeholder="100-200"></setting-list-item>
  352. <setting-list-item style="padding: 10px 20px" type="text" title='Interval' v-model="fragmentInterval" placeholder="10-20"></setting-list-item>
  353. </a-collapse-panel>
  354. </a-collapse>
  355. </a-list-item>
  356. <a-list-item style="padding: 20px">
  357. <a-row>
  358. <a-col :lg="24" :xl="12">
  359. <a-list-item-meta title='Noises'>
  360. <template slot="description">{{ i18n "pages.settings.noisesDesc"}}</template>
  361. </a-list-item-meta>
  362. </a-col>
  363. <a-col :lg="24" :xl="12">
  364. <a-switch v-model="noises"></a-switch>
  365. </a-col>
  366. </a-row>
  367. <a-collapse v-if="noises" style="margin-top: 14px;">
  368. <a-collapse-panel v-for="(noise, index) in noisesArray" :key="index" :header="`Noise ${index + 1}`">
  369. <a-list-item style="padding: 10px 20px">
  370. <a-row>
  371. <a-col :lg="24" :xl="12">
  372. <a-list-item-meta title='Type'></a-list-item-meta>
  373. </a-col>
  374. <a-col :lg="24" :xl="12">
  375. <a-select :value="noise.type" style="width: 100%" :dropdown-class-name="themeSwitcher.currentTheme"
  376. @change="(value) => updateNoiseType(index, value)">
  377. <a-select-option :value="p" :label="p" v-for="p in ['rand', 'base64', 'str']" :key="p">
  378. [[ p ]] </a-select-option>
  379. </a-select>
  380. </a-col>
  381. </a-row>
  382. </a-list-item>
  383. <setting-list-item style="padding: 10px 20px" type="text" title='Packet' :value="noise.packet"
  384. @input="(value) => updateNoisePacket(index, value)" placeholder="5-10"></setting-list-item>
  385. <setting-list-item style="padding: 10px 20px" type="text" title='Delay (ms)' :value="noise.delay"
  386. @input="(value) => updateNoiseDelay(index, value)" placeholder="10-20"></setting-list-item>
  387. <a-button v-if="noisesArray.length > 1" type="danger" @click="removeNoise(index)">Remove</a-button>
  388. </a-collapse-panel>
  389. </a-collapse>
  390. <a-button v-if="noises" type="primary" @click="addNoise" style="margin-top: 10px">Add Noise</a-button>
  391. </a-list-item>
  392. <a-list-item style="padding: 20px">
  393. <a-row>
  394. <a-col :lg="24" :xl="12">
  395. <a-list-item-meta title='{{ i18n "pages.settings.mux"}}'>
  396. <template slot="description">{{ i18n "pages.settings.muxDesc"}}</template>
  397. </a-list-item-meta>
  398. </a-col>
  399. <a-col :lg="24" :xl="12">
  400. <a-switch v-model="enableMux"></a-switch>
  401. </a-col>
  402. </a-row>
  403. <a-collapse v-if="enableMux" style="margin-top: 14px;">
  404. <a-collapse-panel header='{{ i18n "pages.settings.muxSett"}}'>
  405. <setting-list-item style="padding: 10px 20px" type="number" title='Concurrency' v-model="muxConcurrency" :min="-1" :max="1024"></setting-list-item>
  406. <setting-list-item style="padding: 10px 20px" type="number" title='xudp Concurrency' v-model="muxXudpConcurrency" :min="-1" :max="1024"></setting-list-item>
  407. <a-list-item style="padding: 10px 20px">
  408. <a-row>
  409. <a-col :lg="24" :xl="12">
  410. <a-list-item-meta title='xudp UDP 443'></a-list-item-meta>
  411. </a-col>
  412. <a-col :lg="24" :xl="12">
  413. <a-select v-model="muxXudpProxyUDP443" style="width: 100%" :dropdown-class-name="themeSwitcher.currentTheme">
  414. <a-select-option :value="p" :label="p" v-for="p in ['reject', 'allow', 'skip']"> [[ p ]] </a-select-option>
  415. </a-select>
  416. </a-col>
  417. </a-row>
  418. </a-list-item>
  419. </a-collapse-panel>
  420. </a-collapse>
  421. </a-list-item>
  422. <a-list-item style="padding: 20px">
  423. <a-row>
  424. <a-col :lg="24" :xl="12">
  425. <a-list-item-meta title='{{ i18n "pages.settings.direct"}}'>
  426. <template slot="description">{{ i18n "pages.settings.directDesc"}}</template>
  427. </a-list-item-meta>
  428. </a-col>
  429. <a-col :lg="24" :xl="12">
  430. <a-switch v-model="enableDirect"></a-switch>
  431. </a-col>
  432. </a-row>
  433. <a-collapse v-if="enableDirect" style="margin-top: 14px;">
  434. <a-collapse-panel header='{{ i18n "pages.settings.direct"}}'>
  435. <a-list-item>
  436. <a-row style="padding: 0 20px">
  437. <a-col :lg="24" :xl="12">
  438. <a-list-item-meta
  439. title='{{ i18n "pages.xray.directips" }}'/>
  440. </a-col>
  441. <a-col :lg="24" :xl="12">
  442. <a-select mode="tags" style="width: 100%"
  443. v-model="directIPs"
  444. :dropdown-class-name="themeSwitcher.currentTheme">
  445. <a-select-option :value="p.value" :label="p.label"
  446. v-for="p in directIPsOptions"> [[ p.label ]]
  447. </a-select-option>
  448. </a-select>
  449. </a-col>
  450. </a-row>
  451. </a-list-item>
  452. <a-list-item>
  453. <a-row style="padding: 0 20px">
  454. <a-col :lg="24" :xl="12">
  455. <a-list-item-meta
  456. title='{{ i18n "pages.xray.directdomains" }}'/>
  457. </a-col>
  458. <a-col :lg="24" :xl="12">
  459. <a-select mode="tags" style="width: 100%"
  460. v-model="directDomains"
  461. :dropdown-class-name="themeSwitcher.currentTheme">
  462. <a-select-option :value="p.value" :label="p.label"
  463. v-for="p in diretDomainsOptions"> [[ p.label ]]
  464. </a-select-option>
  465. </a-select>
  466. </a-col>
  467. </a-row>
  468. </a-list-item>
  469. </a-collapse-panel>
  470. </a-collapse>
  471. </a-list-item>
  472. </a-list>
  473. </a-tab-pane>
  474. </a-tabs>
  475. </a-space>
  476. </a-spin>
  477. </a-layout-content>
  478. </a-layout>
  479. </a-layout>
  480. {{template "js" .}}
  481. <script src="{{ .base_path }}assets/js/model/setting.js?{{ .cur_ver }}"></script>
  482. {{template "component/themeSwitcher" .}}
  483. {{template "component/password" .}}
  484. {{template "component/setting"}}
  485. <script>
  486. const app = new Vue({
  487. delimiters: ['[[', ']]'],
  488. el: '#app',
  489. data: {
  490. siderDrawer,
  491. themeSwitcher,
  492. spinning: false,
  493. changeSecret: false,
  494. oldAllSetting: new AllSetting(),
  495. allSetting: new AllSetting(),
  496. saveBtnDisable: true,
  497. user: {},
  498. lang: getLang(),
  499. remarkModels: { i: 'Inbound', e: 'Email', o: 'Other' },
  500. remarkSeparators: [' ', '-', '_', '@', ':', '~', '|', ',', '.', '/'],
  501. datepickerList: [{ name: 'Gregorian (Standard)', value: 'gregorian' }, { name: 'Jalalian (شمسی)', value: 'jalalian' }],
  502. remarkSample: '',
  503. defaultFragment: {
  504. tag: "fragment",
  505. protocol: "freedom",
  506. settings: {
  507. domainStrategy: "AsIs",
  508. fragment: {
  509. packets: "tlshello",
  510. length: "100-200",
  511. interval: "10-20"
  512. }
  513. },
  514. streamSettings: {
  515. sockopt: {
  516. tcpKeepAliveIdle: 100,
  517. tcpMptcp: true,
  518. penetrate: true
  519. }
  520. }
  521. },
  522. defaultNoises: {
  523. tag: "noises",
  524. protocol: "freedom",
  525. settings: {
  526. domainStrategy: "AsIs",
  527. noises: [
  528. { type: "rand", packet: "10-20", delay: "10-16" },
  529. ],
  530. },
  531. },
  532. defaultMux: {
  533. enabled: true,
  534. concurrency: 8,
  535. xudpConcurrency: 16,
  536. xudpProxyUDP443: "reject"
  537. },
  538. defaultRules: [
  539. {
  540. type: "field",
  541. outboundTag: "direct",
  542. domain: [
  543. "geosite:category-ir"
  544. ]
  545. },
  546. {
  547. type: "field",
  548. outboundTag: "direct",
  549. ip: [
  550. "geoip:private",
  551. "geoip:ir"
  552. ]
  553. },
  554. ],
  555. directIPsOptions: [
  556. { label: 'Private IP', value: 'geoip:private' },
  557. { label: '🇮🇷 Iran', value: 'geoip:ir' },
  558. { label: '🇨🇳 China', value: 'geoip:cn' },
  559. { label: '🇷🇺 Russia', value: 'geoip:ru' },
  560. { label: '🇻🇳 Vietnam', value: 'geoip:vn' },
  561. { label: '🇪🇸 Spain', value: 'geoip:es' },
  562. { label: '🇮🇩 Indonesia', value: 'geoip:id' },
  563. { label: '🇺🇦 Ukraine', value: 'geoip:ua' },
  564. { label: '🇹🇷 Türkiye', value: 'geoip:tr' },
  565. { label: '🇧🇷 Brazil', value: 'geoip:br' },
  566. ],
  567. diretDomainsOptions: [
  568. { label: 'Private DNS', value: 'geosite:private' },
  569. { label: '🇮🇷 Iran', value: 'geosite:category-ir' },
  570. { label: '🇨🇳 China', value: 'geosite:cn' },
  571. { label: '🇷🇺 Russia', value: 'geosite:category-ru' },
  572. { label: 'Apple', value: 'geosite:apple' },
  573. { label: 'Meta', value: 'geosite:meta' },
  574. { label: 'Google', value: 'geosite:google' },
  575. ],
  576. get remarkModel() {
  577. rm = this.allSetting.remarkModel;
  578. return rm.length > 1 ? rm.substring(1).split('') : [];
  579. },
  580. set remarkModel(value) {
  581. rs = this.allSetting.remarkModel[0];
  582. this.allSetting.remarkModel = rs + value.join('');
  583. this.changeRemarkSample();
  584. },
  585. get remarkSeparator() {
  586. return this.allSetting.remarkModel.length > 1 ? this.allSetting.remarkModel.charAt(0) : '-';
  587. },
  588. set remarkSeparator(value) {
  589. this.allSetting.remarkModel = value + this.allSetting.remarkModel.substring(1);
  590. this.changeRemarkSample();
  591. },
  592. get datepicker() {
  593. return this.allSetting.datepicker ? this.allSetting.datepicker : 'gregorian';
  594. },
  595. set datepicker(value) {
  596. this.allSetting.datepicker = value;
  597. },
  598. changeRemarkSample() {
  599. sample = []
  600. this.remarkModel.forEach(r => sample.push(this.remarkModels[r]));
  601. this.remarkSample = sample.length == 0 ? '' : sample.join(this.remarkSeparator);
  602. }
  603. },
  604. methods: {
  605. loading(spinning = true) {
  606. this.spinning = spinning;
  607. },
  608. async getAllSetting() {
  609. this.loading(true);
  610. const msg = await HttpUtil.post("/panel/setting/all");
  611. this.loading(false);
  612. if (msg.success) {
  613. this.oldAllSetting = new AllSetting(msg.obj);
  614. this.allSetting = new AllSetting(msg.obj);
  615. app.changeRemarkSample();
  616. this.saveBtnDisable = true;
  617. }
  618. await this.fetchUserSecret();
  619. },
  620. async updateAllSetting() {
  621. this.loading(true);
  622. const msg = await HttpUtil.post("/panel/setting/update", this.allSetting);
  623. this.loading(false);
  624. if (msg.success) {
  625. await this.getAllSetting();
  626. }
  627. },
  628. async updateUser() {
  629. this.loading(true);
  630. const msg = await HttpUtil.post("/panel/setting/updateUser", this.user);
  631. this.loading(false);
  632. if (msg.success) {
  633. this.user = {};
  634. window.location.replace(basePath + "logout");
  635. }
  636. },
  637. async restartPanel() {
  638. await new Promise(resolve => {
  639. this.$confirm({
  640. title: '{{ i18n "pages.settings.restartPanel" }}',
  641. content: '{{ i18n "pages.settings.restartPanelDesc" }}',
  642. class: themeSwitcher.currentTheme,
  643. okText: '{{ i18n "sure" }}',
  644. cancelText: '{{ i18n "cancel" }}',
  645. onOk: () => resolve(),
  646. });
  647. });
  648. this.loading(true);
  649. const msg = await HttpUtil.post("/panel/setting/restartPanel");
  650. this.loading(false);
  651. if (msg.success) {
  652. this.loading(true);
  653. await PromiseUtil.sleep(5000);
  654. var { webCertFile, webKeyFile, webDomain: host, webPort: port, webBasePath: base } = this.allSetting;
  655. if (host == this.oldAllSetting.webDomain) host = null;
  656. if (port == this.oldAllSetting.webPort) port = null;
  657. const isTLS = webCertFile !== "" || webKeyFile !== "";
  658. const url = buildURL({ host, port, isTLS, base, path: "panel/settings" });
  659. window.location.replace(url);
  660. }
  661. },
  662. async fetchUserSecret() {
  663. this.loading(true);
  664. const userMessage = await HttpUtil.post("/panel/setting/getUserSecret", this.user);
  665. if (userMessage.success) {
  666. this.user = userMessage.obj;
  667. }
  668. this.loading(false);
  669. },
  670. async updateSecret() {
  671. this.loading(true);
  672. const msg = await HttpUtil.post("/panel/setting/updateUserSecret", this.user);
  673. if (msg && msg.obj) {
  674. this.user = msg.obj;
  675. }
  676. this.loading(false);
  677. await this.updateAllSetting();
  678. },
  679. generateRandomString(length) {
  680. var chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
  681. let randomString = "";
  682. for (let i = 0; i < length; i++) {
  683. randomString += chars[Math.floor(Math.random() * chars.length)];
  684. }
  685. return randomString;
  686. },
  687. async getNewSecret() {
  688. if (!this.changeSecret) {
  689. this.changeSecret = true;
  690. this.user.loginSecret = '';
  691. const newSecret = this.generateRandomString(64);
  692. await PromiseUtil.sleep(1000);
  693. this.user.loginSecret = newSecret;
  694. this.changeSecret = false;
  695. }
  696. },
  697. async toggleToken(value) {
  698. if (value) {
  699. await this.getNewSecret();
  700. } else {
  701. this.user.loginSecret = "";
  702. }
  703. },
  704. addNoise() {
  705. const newNoise = { type: "rand", packet: "10-20", delay: "10-16" };
  706. this.noisesArray = [...this.noisesArray, newNoise];
  707. },
  708. removeNoise(index) {
  709. const newNoises = [...this.noisesArray];
  710. newNoises.splice(index, 1);
  711. this.noisesArray = newNoises;
  712. },
  713. updateNoiseType(index, value) {
  714. const updatedNoises = [...this.noisesArray];
  715. updatedNoises[index] = { ...updatedNoises[index], type: value };
  716. this.noisesArray = updatedNoises;
  717. },
  718. updateNoisePacket(index, value) {
  719. const updatedNoises = [...this.noisesArray];
  720. updatedNoises[index] = { ...updatedNoises[index], packet: value };
  721. this.noisesArray = updatedNoises;
  722. },
  723. updateNoiseDelay(index, value) {
  724. const updatedNoises = [...this.noisesArray];
  725. updatedNoises[index] = { ...updatedNoises[index], delay: value };
  726. this.noisesArray = updatedNoises;
  727. },
  728. },
  729. computed: {
  730. fragment: {
  731. get: function () { return this.allSetting?.subJsonFragment != ""; },
  732. set: function (v) {
  733. this.allSetting.subJsonFragment = v ? JSON.stringify(this.defaultFragment) : "";
  734. }
  735. },
  736. fragmentPackets: {
  737. get: function () { return this.fragment ? JSON.parse(this.allSetting.subJsonFragment).settings.fragment.packets : ""; },
  738. set: function (v) {
  739. if (v != "") {
  740. newFragment = JSON.parse(this.allSetting.subJsonFragment);
  741. newFragment.settings.fragment.packets = v;
  742. this.allSetting.subJsonFragment = JSON.stringify(newFragment);
  743. }
  744. }
  745. },
  746. fragmentLength: {
  747. get: function () { return this.fragment ? JSON.parse(this.allSetting.subJsonFragment).settings.fragment.length : ""; },
  748. set: function (v) {
  749. if (v != "") {
  750. newFragment = JSON.parse(this.allSetting.subJsonFragment);
  751. newFragment.settings.fragment.length = v;
  752. this.allSetting.subJsonFragment = JSON.stringify(newFragment);
  753. }
  754. }
  755. },
  756. fragmentInterval: {
  757. get: function () { return this.fragment ? JSON.parse(this.allSetting.subJsonFragment).settings.fragment.interval : ""; },
  758. set: function (v) {
  759. if (v != "") {
  760. newFragment = JSON.parse(this.allSetting.subJsonFragment);
  761. newFragment.settings.fragment.interval = v;
  762. this.allSetting.subJsonFragment = JSON.stringify(newFragment);
  763. }
  764. }
  765. },
  766. noises: {
  767. get() {
  768. return this.allSetting?.subJsonNoises != "";
  769. },
  770. set(v) {
  771. if (v) {
  772. this.allSetting.subJsonNoises = JSON.stringify(this.defaultNoises);
  773. } else {
  774. this.allSetting.subJsonNoises = "";
  775. }
  776. }
  777. },
  778. noisesArray: {
  779. get() {
  780. return this.noises ? JSON.parse(this.allSetting.subJsonNoises).settings.noises : [];
  781. },
  782. set(value) {
  783. if (this.noises) {
  784. const newNoises = JSON.parse(this.allSetting.subJsonNoises);
  785. newNoises.settings.noises = value;
  786. this.allSetting.subJsonNoises = JSON.stringify(newNoises);
  787. }
  788. }
  789. },
  790. enableMux: {
  791. get: function () { return this.allSetting?.subJsonMux != ""; },
  792. set: function (v) {
  793. this.allSetting.subJsonMux = v ? JSON.stringify(this.defaultMux) : "";
  794. }
  795. },
  796. muxConcurrency: {
  797. get: function () { return this.enableMux ? JSON.parse(this.allSetting.subJsonMux).concurrency : -1; },
  798. set: function (v) {
  799. newMux = JSON.parse(this.allSetting.subJsonMux);
  800. newMux.concurrency = v;
  801. this.allSetting.subJsonMux = JSON.stringify(newMux);
  802. }
  803. },
  804. muxXudpConcurrency: {
  805. get: function () { return this.enableMux ? JSON.parse(this.allSetting.subJsonMux).xudpConcurrency : -1; },
  806. set: function (v) {
  807. newMux = JSON.parse(this.allSetting.subJsonMux);
  808. newMux.xudpConcurrency = v;
  809. this.allSetting.subJsonMux = JSON.stringify(newMux);
  810. }
  811. },
  812. muxXudpProxyUDP443: {
  813. get: function () { return this.enableMux ? JSON.parse(this.allSetting.subJsonMux).xudpProxyUDP443 : "reject"; },
  814. set: function (v) {
  815. newMux = JSON.parse(this.allSetting.subJsonMux);
  816. newMux.xudpProxyUDP443 = v;
  817. this.allSetting.subJsonMux = JSON.stringify(newMux);
  818. }
  819. },
  820. enableDirect: {
  821. get: function () { return this.allSetting?.subJsonRules != ""; },
  822. set: function (v) {
  823. this.allSetting.subJsonRules = v ? JSON.stringify(this.defaultRules) : "";
  824. }
  825. },
  826. directIPs: {
  827. get: function () {
  828. if (!this.enableDirect) return [];
  829. const rules = JSON.parse(this.allSetting.subJsonRules);
  830. if (!Array.isArray(rules)) return [];
  831. const ipRule = rules.find(r => r.ip);
  832. return ipRule?.ip ?? [];
  833. },
  834. set: function (v) {
  835. let rules = JSON.parse(this.allSetting.subJsonRules);
  836. if (!Array.isArray(rules)) return;
  837. if (v.length == 0) {
  838. rules = rules.filter(r => !r.ip);
  839. } else {
  840. let ruleIndex = rules.findIndex(r => r.ip);
  841. if (ruleIndex == -1) ruleIndex = rules.push(this.defaultRules[1]) - 1;
  842. rules[ruleIndex].ip = [];
  843. v.forEach(d => {
  844. rules[ruleIndex].ip.push(d);
  845. });
  846. }
  847. this.allSetting.subJsonRules = JSON.stringify(rules);
  848. }
  849. },
  850. directDomains: {
  851. get: function () {
  852. if (!this.enableDirect) return [];
  853. const rules = JSON.parse(this.allSetting.subJsonRules);
  854. if (!Array.isArray(rules)) return [];
  855. const domainRule = rules.find(r => r.domain);
  856. return domainRule?.domain ?? [];
  857. },
  858. set: function (v) {
  859. let rules = JSON.parse(this.allSetting.subJsonRules);
  860. if (!Array.isArray(rules)) return;
  861. if (v.length == 0) {
  862. rules = rules.filter(r => !r.domain);
  863. } else {
  864. let ruleIndex = rules.findIndex(r => r.domain);
  865. if (ruleIndex == -1) ruleIndex = rules.push(this.defaultRules[0]) - 1;
  866. rules[ruleIndex].domain = v;
  867. }
  868. this.allSetting.subJsonRules = JSON.stringify(rules);
  869. }
  870. },
  871. confAlerts: {
  872. get: function () {
  873. if (!this.allSetting) return [];
  874. var alerts = []
  875. if (window.location.protocol !== "https:") alerts.push('{{ i18n "secAlertSSL" }}');
  876. if (this.allSetting.webPort == 54321) alerts.push('{{ i18n "secAlertPanelPort" }}');
  877. panelPath = window.location.pathname.split('/').length < 4
  878. if (panelPath && this.allSetting.webBasePath == '/') alerts.push('{{ i18n "secAlertPanelURI" }}');
  879. if (this.allSetting.subEnable) {
  880. subPath = this.allSetting.subURI.length > 0 ? new URL(this.allSetting.subURI).pathname : this.allSetting.subPath;
  881. if (subPath == '/sub/') alerts.push('{{ i18n "secAlertSubURI" }}');
  882. subJsonPath = this.allSetting.subJsonURI.length > 0 ? new URL(this.allSetting.subJsonURI).pathname : this.allSetting.subJsonPath;
  883. if (subJsonPath == '/json/') alerts.push('{{ i18n "secAlertSubJsonURI" }}');
  884. }
  885. return alerts
  886. }
  887. }
  888. },
  889. async mounted() {
  890. await this.getAllSetting();
  891. while (true) {
  892. await PromiseUtil.sleep(1000);
  893. this.saveBtnDisable = this.oldAllSetting.equals(this.allSetting);
  894. }
  895. }
  896. });
  897. </script>
  898. </body>
  899. </html>