subscribe.lua 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648
  1. #!/usr/bin/lua
  2. ------------------------------------------------
  3. -- This file is part of the luci-app-ssr-plus subscribe.lua
  4. -- @author William Chan <[email protected]>
  5. ------------------------------------------------
  6. require "luci.model.uci"
  7. require "nixio"
  8. require "luci.util"
  9. require "luci.sys"
  10. require "luci.jsonc"
  11. require "luci.model.ipkg"
  12. -- these global functions are accessed all the time by the event handler
  13. -- so caching them is worth the effort
  14. local tinsert = table.insert
  15. local ssub, slen, schar, sbyte, sformat, sgsub = string.sub, string.len, string.char, string.byte, string.format, string.gsub
  16. local jsonParse, jsonStringify = luci.jsonc.parse, luci.jsonc.stringify
  17. local b64decode = nixio.bin.b64decode
  18. local URL = require "url"
  19. local cache = {}
  20. local nodeResult = setmetatable({}, {__index = cache}) -- update result
  21. local name = 'shadowsocksr'
  22. local uciType = 'servers'
  23. local ucic = luci.model.uci.cursor()
  24. local proxy = ucic:get_first(name, 'server_subscribe', 'proxy', '0')
  25. local switch = ucic:get_first(name, 'server_subscribe', 'switch', '1')
  26. local subscribe_url = ucic:get_first(name, 'server_subscribe', 'subscribe_url', {})
  27. local filter_words = ucic:get_first(name, 'server_subscribe', 'filter_words', '过期时间/剩余流量')
  28. local save_words = ucic:get_first(name, 'server_subscribe', 'save_words', '')
  29. local v2_ss = luci.sys.exec('type -t -p ss-redir sslocal') ~= "" and "ss" or "v2ray"
  30. local v2_tj = luci.sys.exec('type -t -p trojan') ~= "" and "trojan" or "v2ray"
  31. local log = function(...)
  32. print(os.date("%Y-%m-%d %H:%M:%S ") .. table.concat({...}, " "))
  33. end
  34. local encrypt_methods_ss = {
  35. -- plain
  36. "none",
  37. "plain",
  38. -- aead
  39. "aes-128-gcm",
  40. "aes-192-gcm",
  41. "aes-256-gcm",
  42. "chacha20-ietf-poly1305",
  43. "xchacha20-ietf-poly1305",
  44. -- aead 2022
  45. "2022-blake3-aes-128-gcm",
  46. "2022-blake3-aes-256-gcm",
  47. "2022-blake3-chacha20-poly1305"
  48. --[[ stream
  49. "table",
  50. "rc4",
  51. "rc4-md5",
  52. "aes-128-cfb",
  53. "aes-192-cfb",
  54. "aes-256-cfb",
  55. "aes-128-ctr",
  56. "aes-192-ctr",
  57. "aes-256-ctr",
  58. "bf-cfb",
  59. "camellia-128-cfb",
  60. "camellia-192-cfb",
  61. "camellia-256-cfb",
  62. "salsa20",
  63. "chacha20",
  64. "chacha20-ietf" ]]
  65. }
  66. -- 分割字符串
  67. local function split(full, sep)
  68. full = full:gsub("%z", "") -- 这里不是很清楚 有时候结尾带个\0
  69. local off, result = 1, {}
  70. while true do
  71. local nStart, nEnd = full:find(sep, off)
  72. if not nEnd then
  73. local res = ssub(full, off, slen(full))
  74. if #res > 0 then -- 过滤掉 \0
  75. tinsert(result, res)
  76. end
  77. break
  78. else
  79. tinsert(result, ssub(full, off, nStart - 1))
  80. off = nEnd + 1
  81. end
  82. end
  83. return result
  84. end
  85. -- urlencode
  86. local function get_urlencode(c)
  87. return sformat("%%%02X", sbyte(c))
  88. end
  89. local function urlEncode(szText)
  90. local str = szText:gsub("([^0-9a-zA-Z ])", get_urlencode)
  91. str = str:gsub(" ", "+")
  92. return str
  93. end
  94. local function get_urldecode(h)
  95. return schar(tonumber(h, 16))
  96. end
  97. local function UrlDecode(szText)
  98. return szText:gsub("+", " "):gsub("%%(%x%x)", get_urldecode)
  99. end
  100. -- trim
  101. local function trim(text)
  102. if not text or text == "" then
  103. return ""
  104. end
  105. return (sgsub(text, "^%s*(.-)%s*$", "%1"))
  106. end
  107. -- md5
  108. local function md5(content)
  109. local stdout = luci.sys.exec('echo \"' .. urlEncode(content) .. '\" | md5sum | cut -d \" \" -f1')
  110. -- assert(nixio.errno() == 0)
  111. return trim(stdout)
  112. end
  113. -- base64
  114. local function base64Decode(text)
  115. local raw = text
  116. if not text then
  117. return ''
  118. end
  119. text = text:gsub("%z", "")
  120. text = text:gsub("_", "/")
  121. text = text:gsub("-", "+")
  122. local mod4 = #text % 4
  123. text = text .. string.sub('====', mod4 + 1)
  124. local result = b64decode(text)
  125. if result then
  126. return result:gsub("%z", "")
  127. else
  128. return raw
  129. end
  130. end
  131. -- 检查数组(table)中是否存在某个字符值
  132. -- https://www.04007.cn/article/135.html
  133. local function checkTabValue(tab)
  134. local revtab = {}
  135. for k,v in pairs(tab) do
  136. revtab[v] = true
  137. end
  138. return revtab
  139. end
  140. -- 处理数据
  141. local function processData(szType, content)
  142. local result = {type = szType, local_port = 1234, kcp_param = '--nocomp'}
  143. if szType == 'ssr' then
  144. local dat = split(content, "/%?")
  145. local hostInfo = split(dat[1], ':')
  146. result.type = 'ssr'
  147. result.server = hostInfo[1]
  148. result.server_port = hostInfo[2]
  149. result.protocol = hostInfo[3]
  150. result.encrypt_method = hostInfo[4]
  151. result.obfs = hostInfo[5]
  152. result.password = base64Decode(hostInfo[6])
  153. local params = {}
  154. for _, v in pairs(split(dat[2], '&')) do
  155. local t = split(v, '=')
  156. params[t[1]] = t[2]
  157. end
  158. result.obfs_param = base64Decode(params.obfsparam)
  159. result.protocol_param = base64Decode(params.protoparam)
  160. local group = base64Decode(params.group)
  161. if group then
  162. result.alias = "[" .. group .. "] "
  163. end
  164. result.alias = result.alias .. base64Decode(params.remarks)
  165. elseif szType == 'vmess' then
  166. local info = jsonParse(content)
  167. result.type = 'v2ray'
  168. result.v2ray_protocol = 'vmess'
  169. result.server = info.add
  170. result.server_port = info.port
  171. result.transport = info.net
  172. result.alter_id = info.aid
  173. result.vmess_id = info.id
  174. result.alias = info.ps
  175. -- result.mux = 1
  176. -- result.concurrency = 8
  177. if info.net == 'ws' then
  178. result.ws_host = info.host
  179. result.ws_path = info.path
  180. end
  181. if info.net == 'httpupgrade' then
  182. result.httpupgrade_host = info.host
  183. result.httpupgrade_path = info.path
  184. end
  185. if info.net == 'splithttp' then
  186. result.splithttp_host = info.host
  187. result.splithttp_path = info.path
  188. end
  189. if info.net == 'h2' then
  190. result.h2_host = info.host
  191. result.h2_path = info.path
  192. end
  193. if info.net == 'tcp' then
  194. if info.type and info.type ~= "http" then
  195. info.type = "none"
  196. end
  197. result.tcp_guise = info.type
  198. result.http_host = info.host
  199. result.http_path = info.path
  200. end
  201. if info.net == 'kcp' then
  202. result.kcp_guise = info.type
  203. result.mtu = 1350
  204. result.tti = 50
  205. result.uplink_capacity = 5
  206. result.downlink_capacity = 20
  207. result.read_buffer_size = 2
  208. result.write_buffer_size = 2
  209. end
  210. if info.net == 'grpc' then
  211. if info.path then
  212. result.serviceName = info.path
  213. elseif info.serviceName then
  214. result.serviceName = info.serviceName
  215. end
  216. end
  217. if info.net == 'quic' then
  218. result.quic_guise = info.type
  219. result.quic_key = info.key
  220. result.quic_security = info.securty
  221. end
  222. if info.security then
  223. result.security = info.security
  224. end
  225. if info.tls == "tls" or info.tls == "1" then
  226. result.tls = "1"
  227. if info.sni and info.sni ~= "" then
  228. result.tls_host = info.sni
  229. elseif info.host then
  230. result.tls_host = info.host
  231. end
  232. result.insecure = 1
  233. else
  234. result.tls = "0"
  235. end
  236. elseif szType == "ss" then
  237. local idx_sp = 0
  238. local alias = ""
  239. if content:find("#") then
  240. idx_sp = content:find("#")
  241. alias = content:sub(idx_sp + 1, -1)
  242. end
  243. local info = content:sub(1, idx_sp - 1)
  244. local hostInfo = split(base64Decode(info), "@")
  245. local host = split(hostInfo[2], ":")
  246. local userinfo = base64Decode(hostInfo[1])
  247. local method = userinfo:sub(1, userinfo:find(":") - 1)
  248. local password = userinfo:sub(userinfo:find(":") + 1, #userinfo)
  249. result.alias = UrlDecode(alias)
  250. result.type = v2_ss
  251. result.v2ray_protocol = (v2_ss == "v2ray") and "shadowsocks" or nil
  252. result.encrypt_method_ss = method
  253. result.password = password
  254. result.server = host[1]
  255. if host[2]:find("/%?") then
  256. local query = split(host[2], "/%?")
  257. result.server_port = query[1]
  258. local params = {}
  259. for _, v in pairs(split(query[2], '&')) do
  260. local t = split(v, '=')
  261. params[t[1]] = t[2]
  262. end
  263. if params.plugin then
  264. local plugin_info = UrlDecode(params.plugin)
  265. local idx_pn = plugin_info:find(";")
  266. if idx_pn then
  267. result.plugin = plugin_info:sub(1, idx_pn - 1)
  268. result.plugin_opts = plugin_info:sub(idx_pn + 1, #plugin_info)
  269. else
  270. result.plugin = plugin_info
  271. end
  272. -- 部分机场下发的插件名为 simple-obfs,这里应该改为 obfs-local
  273. if result.plugin == "simple-obfs" then
  274. result.plugin = "obfs-local"
  275. end
  276. end
  277. else
  278. result.server_port = host[2]:gsub("/","")
  279. end
  280. if not checkTabValue(encrypt_methods_ss)[method] then
  281. -- 1202 年了还不支持 SS AEAD 的屑机场
  282. result.server = nil
  283. end
  284. elseif szType == "sip008" then
  285. result.type = v2_ss
  286. result.v2ray_protocol = (v2_ss == "v2ray") and "shadowsocks" or nil
  287. result.server = content.server
  288. result.server_port = content.server_port
  289. result.password = content.password
  290. result.encrypt_method_ss = content.method
  291. result.plugin = content.plugin
  292. result.plugin_opts = content.plugin_opts
  293. result.alias = content.remarks
  294. if not checkTabValue(encrypt_methods_ss)[content.method] then
  295. result.server = nil
  296. end
  297. elseif szType == "ssd" then
  298. result.type = v2_ss
  299. result.v2ray_protocol = (v2_ss == "v2ray") and "shadowsocks" or nil
  300. result.server = content.server
  301. result.server_port = content.port
  302. result.password = content.password
  303. result.encrypt_method_ss = content.method
  304. result.plugin_opts = content.plugin_options
  305. result.alias = "[" .. content.airport .. "] " .. content.remarks
  306. if content.plugin == "simple-obfs" then
  307. result.plugin = "obfs-local"
  308. else
  309. result.plugin = content.plugin
  310. end
  311. if not checkTabValue(encrypt_methods_ss)[content.encryption] then
  312. result.server = nil
  313. end
  314. elseif szType == "trojan" then
  315. local idx_sp = 0
  316. local alias = ""
  317. if content:find("#") then
  318. idx_sp = content:find("#")
  319. alias = content:sub(idx_sp + 1, -1)
  320. end
  321. local info = content:sub(1, idx_sp - 1)
  322. local hostInfo = split(info, "@")
  323. local host = split(hostInfo[2], ":")
  324. local userinfo = hostInfo[1]
  325. local password = userinfo
  326. result.alias = UrlDecode(alias)
  327. result.type = v2_tj
  328. result.v2ray_protocol = "trojan"
  329. result.server = host[1]
  330. -- 按照官方的建议 默认验证ssl证书
  331. result.insecure = "0"
  332. result.tls = "1"
  333. if host[2]:find("?") then
  334. local query = split(host[2], "?")
  335. result.server_port = query[1]
  336. local params = {}
  337. for _, v in pairs(split(query[2], '&')) do
  338. local t = split(v, '=')
  339. params[t[1]] = t[2]
  340. end
  341. if params.sni then
  342. -- 未指定peer(sni)默认使用remote addr
  343. result.tls_host = params.sni
  344. end
  345. else
  346. result.server_port = host[2]
  347. end
  348. result.password = password
  349. elseif szType == "vless" then
  350. local url = URL.parse("http://" .. content)
  351. local params = url.query
  352. result.alias = url.fragment and UrlDecode(url.fragment) or nil
  353. result.type = "v2ray"
  354. result.v2ray_protocol = "vless"
  355. result.server = url.host
  356. result.server_port = url.port
  357. result.vmess_id = url.user
  358. result.vless_encryption = params.encryption or "none"
  359. result.transport = params.type or "tcp"
  360. result.tls = (params.security == "tls" or params.security == "xtls") and "1" or "0"
  361. result.tls_host = params.sni
  362. result.tls_flow = (params.security == "tls" or params.security == "reality") and params.flow or nil
  363. result.fingerprint = params.fp
  364. result.reality = (params.security == "reality") and "1" or "0"
  365. result.reality_publickey = params.pbk and UrlDecode(params.pbk) or nil
  366. result.reality_shortid = params.sid
  367. result.reality_spiderx = params.spx and UrlDecode(params.spx) or nil
  368. if result.transport == "ws" then
  369. result.ws_host = (result.tls ~= "1") and (params.host and UrlDecode(params.host)) or nil
  370. result.ws_path = params.path and UrlDecode(params.path) or "/"
  371. elseif result.transport == "httpupgrade" then
  372. result.httpupgrade_host = (result.tls ~= "1") and (params.host and UrlDecode(params.host)) or nil
  373. result.httpupgrade_path = params.path and UrlDecode(params.path) or "/"
  374. elseif result.transport == "splithttp" then
  375. result.splithttp_host = (result.tls ~= "1") and (params.host and UrlDecode(params.host)) or nil
  376. result.splithttp_path = params.path and UrlDecode(params.path) or "/"
  377. -- make it compatible with bullshit, "h2" transport is non-existent at all
  378. elseif result.transport == "http" or result.transport == "h2" then
  379. result.transport = "h2"
  380. result.h2_host = params.host and UrlDecode(params.host) or nil
  381. result.h2_path = params.path and UrlDecode(params.path) or nil
  382. elseif result.transport == "kcp" then
  383. result.kcp_guise = params.headerType or "none"
  384. result.seed = params.seed
  385. result.mtu = 1350
  386. result.tti = 50
  387. result.uplink_capacity = 5
  388. result.downlink_capacity = 20
  389. result.read_buffer_size = 2
  390. result.write_buffer_size = 2
  391. elseif result.transport == "quic" then
  392. result.quic_guise = params.headerType or "none"
  393. result.quic_security = params.quicSecurity or "none"
  394. result.quic_key = params.key
  395. elseif result.transport == "grpc" then
  396. result.serviceName = params.serviceName
  397. result.grpc_mode = params.mode or "gun"
  398. elseif result.transport == "tcp" then
  399. result.tcp_guise = params.headerType or "none"
  400. if result.tcp_guise == "http" then
  401. result.tcp_host = params.host and UrlDecode(params.host) or nil
  402. result.tcp_path = params.path and UrlDecode(params.path) or nil
  403. end
  404. elseif result.transport == "raw" then
  405. result.raw_guise = params.headerType or "none"
  406. if result.raw_guise == "http" then
  407. result.tcp_host = params.host and UrlDecode(params.host) or nil
  408. result.tcp_path = params.path and UrlDecode(params.path) or nil
  409. end
  410. end
  411. end
  412. if not result.alias then
  413. if result.server and result.server_port then
  414. result.alias = result.server .. ':' .. result.server_port
  415. else
  416. result.alias = "NULL"
  417. end
  418. end
  419. -- alias 不参与 hashkey 计算
  420. local alias = result.alias
  421. result.alias = nil
  422. local switch_enable = result.switch_enable
  423. result.switch_enable = nil
  424. result.hashkey = md5(jsonStringify(result))
  425. result.alias = alias
  426. result.switch_enable = switch_enable
  427. return result
  428. end
  429. -- wget
  430. local function wget(url)
  431. local stdout = luci.sys.exec('wget -q --user-agent="Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.157 Safari/537.36" --no-check-certificate -O- "' .. url .. '"')
  432. return trim(stdout)
  433. end
  434. local function check_filer(result)
  435. do
  436. -- 过滤的关键词列表
  437. local filter_word = split(filter_words, "/")
  438. -- 保留的关键词列表
  439. local check_save = false
  440. if save_words ~= nil and save_words ~= "" and save_words ~= "NULL" then
  441. check_save = true
  442. end
  443. local save_word = split(save_words, "/")
  444. -- 检查结果
  445. local filter_result = false
  446. local save_result = true
  447. -- 检查是否存在过滤关键词
  448. for i, v in pairs(filter_word) do
  449. if tostring(result.alias):find(v, nil, true) then
  450. filter_result = true
  451. end
  452. end
  453. -- 检查是否打开了保留关键词检查,并且进行过滤
  454. if check_save == true then
  455. for i, v in pairs(save_word) do
  456. if tostring(result.alias):find(v, nil, true) then
  457. save_result = false
  458. end
  459. end
  460. else
  461. save_result = false
  462. end
  463. -- 不等时返回
  464. if filter_result == true or save_result == true then
  465. return true
  466. else
  467. return false
  468. end
  469. end
  470. end
  471. local execute = function()
  472. -- exec
  473. do
  474. if proxy == '0' then -- 不使用代理更新的话先暂停
  475. log('服务正在暂停')
  476. luci.sys.init.stop(name)
  477. end
  478. for k, url in ipairs(subscribe_url) do
  479. local raw = wget(url)
  480. if #raw > 0 then
  481. local nodes, szType
  482. local groupHash = md5(url)
  483. cache[groupHash] = {}
  484. tinsert(nodeResult, {})
  485. local index = #nodeResult
  486. -- SSD 似乎是这种格式 ssd:// 开头的
  487. if raw:find('ssd://') then
  488. szType = 'ssd'
  489. local nEnd = select(2, raw:find('ssd://'))
  490. nodes = base64Decode(raw:sub(nEnd + 1, #raw))
  491. nodes = jsonParse(nodes)
  492. local extra = {airport = nodes.airport, port = nodes.port, encryption = nodes.encryption, password = nodes.password}
  493. local servers = {}
  494. -- SS里面包着 干脆直接这样
  495. for _, server in ipairs(nodes.servers) do
  496. tinsert(servers, setmetatable(server, {__index = extra}))
  497. end
  498. nodes = servers
  499. -- SS SIP008 直接使用 Json 格式
  500. elseif jsonParse(raw) then
  501. nodes = jsonParse(raw).servers or jsonParse(raw)
  502. if nodes[1].server and nodes[1].method then
  503. szType = 'sip008'
  504. end
  505. else
  506. -- ssd 外的格式
  507. nodes = split(base64Decode(raw):gsub(" ", "_"), "\n")
  508. end
  509. for _, v in ipairs(nodes) do
  510. if v then
  511. local result
  512. if szType then
  513. result = processData(szType, v)
  514. elseif not szType then
  515. local node = trim(v)
  516. local dat = split(node, "://")
  517. if dat and dat[1] and dat[2] then
  518. local dat3 = ""
  519. if dat[3] then
  520. dat3 = "://" .. dat[3]
  521. end
  522. if dat[1] == 'ss' or dat[1] == 'trojan' then
  523. result = processData(dat[1], dat[2] .. dat3)
  524. else
  525. result = processData(dat[1], base64Decode(dat[2]))
  526. end
  527. end
  528. else
  529. log('跳过未知类型: ' .. szType)
  530. end
  531. -- log(result)
  532. if result then
  533. -- 中文做地址的 也没有人拿中文域名搞,就算中文域也有Puny Code SB 机场
  534. if not result.server or not result.server_port or result.alias == "NULL" or check_filer(result) or result.server:match("[^0-9a-zA-Z%-_%.%s]") or cache[groupHash][result.hashkey] then
  535. log('丢弃无效节点: ' .. result.type .. ' 节点, ' .. result.alias)
  536. else
  537. -- log('成功解析: ' .. result.type ..' 节点, ' .. result.alias)
  538. result.grouphashkey = groupHash
  539. tinsert(nodeResult[index], result)
  540. cache[groupHash][result.hashkey] = nodeResult[index][#nodeResult[index]]
  541. end
  542. end
  543. end
  544. end
  545. log('成功解析节点数量: ' .. #nodes)
  546. else
  547. log(url .. ': 获取内容为空')
  548. end
  549. end
  550. end
  551. -- diff
  552. do
  553. if next(nodeResult) == nil then
  554. log("更新失败,没有可用的节点信息")
  555. if proxy == '0' then
  556. luci.sys.init.start(name)
  557. log('订阅失败, 恢复服务')
  558. end
  559. return
  560. end
  561. local add, del = 0, 0
  562. ucic:foreach(name, uciType, function(old)
  563. if old.grouphashkey or old.hashkey then -- 没有 hash 的不参与删除
  564. if not nodeResult[old.grouphashkey] or not nodeResult[old.grouphashkey][old.hashkey] then
  565. ucic:delete(name, old['.name'])
  566. del = del + 1
  567. else
  568. local dat = nodeResult[old.grouphashkey][old.hashkey]
  569. ucic:tset(name, old['.name'], dat)
  570. -- 标记一下
  571. setmetatable(nodeResult[old.grouphashkey][old.hashkey], {__index = {_ignore = true}})
  572. end
  573. else
  574. if not old.alias then
  575. if old.server or old.server_port then
  576. old.alias = old.server .. ':' .. old.server_port
  577. log('忽略手动添加的节点: ' .. old.alias)
  578. else
  579. ucic:delete(name, old['.name'])
  580. end
  581. else
  582. log('忽略手动添加的节点: ' .. old.alias)
  583. end
  584. end
  585. end)
  586. for k, v in ipairs(nodeResult) do
  587. for kk, vv in ipairs(v) do
  588. if not vv._ignore then
  589. local section = ucic:add(name, uciType)
  590. ucic:tset(name, section, vv)
  591. ucic:set(name, section, "switch_enable", switch)
  592. add = add + 1
  593. end
  594. end
  595. end
  596. ucic:commit(name)
  597. -- 如果原有服务器节点已经不见了就尝试换为第一个节点
  598. local globalServer = ucic:get_first(name, 'global', 'global_server', '')
  599. if globalServer ~= "nil" then
  600. local firstServer = ucic:get_first(name, uciType)
  601. if firstServer then
  602. if not ucic:get(name, globalServer) then
  603. luci.sys.call("/etc/init.d/" .. name .. " stop > /dev/null 2>&1 &")
  604. ucic:commit(name)
  605. ucic:set(name, ucic:get_first(name, 'global'), 'global_server', ucic:get_first(name, uciType))
  606. ucic:commit(name)
  607. log('当前主服务器节点已被删除,正在自动更换为第一个节点。')
  608. luci.sys.call("/etc/init.d/" .. name .. " start > /dev/null 2>&1 &")
  609. else
  610. log('维持当前主服务器节点。')
  611. luci.sys.call("/etc/init.d/" .. name .. " restart > /dev/null 2>&1 &")
  612. end
  613. else
  614. log('没有服务器节点了,停止服务')
  615. luci.sys.call("/etc/init.d/" .. name .. " stop > /dev/null 2>&1 &")
  616. end
  617. end
  618. log('新增节点数量: ' .. add, '删除节点数量: ' .. del)
  619. log('订阅更新成功')
  620. end
  621. end
  622. if subscribe_url and #subscribe_url > 0 then
  623. xpcall(execute, function(e)
  624. log(e)
  625. log(debug.traceback())
  626. log('发生错误, 正在恢复服务')
  627. local firstServer = ucic:get_first(name, uciType)
  628. if firstServer then
  629. luci.sys.call("/etc/init.d/" .. name .. " restart > /dev/null 2>&1 &") -- 不加&的话日志会出现的更早
  630. log('重启服务成功')
  631. else
  632. luci.sys.call("/etc/init.d/" .. name .. " stop > /dev/null 2>&1 &") -- 不加&的话日志会出现的更早
  633. log('停止服务成功')
  634. end
  635. end)
  636. end