subscribe.lua 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631
  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.vmess_id = info.id
  173. result.alias = info.ps
  174. -- result.mux = 1
  175. -- result.concurrency = 8
  176. if info.net == 'ws' then
  177. result.ws_host = info.host
  178. result.ws_path = info.path
  179. end
  180. if info.net == 'h2' then
  181. result.h2_host = info.host
  182. result.h2_path = info.path
  183. end
  184. if info.net == 'tcp' then
  185. if info.type and info.type ~= "http" then
  186. info.type = "none"
  187. end
  188. result.tcp_guise = info.type
  189. result.http_host = info.host
  190. result.http_path = info.path
  191. end
  192. if info.net == 'kcp' then
  193. result.kcp_guise = info.type
  194. result.mtu = 1350
  195. result.tti = 50
  196. result.uplink_capacity = 5
  197. result.downlink_capacity = 20
  198. result.read_buffer_size = 2
  199. result.write_buffer_size = 2
  200. end
  201. if info.net == 'grpc' then
  202. if info.path then
  203. result.serviceName = info.path
  204. elseif info.serviceName then
  205. result.serviceName = info.serviceName
  206. end
  207. end
  208. if info.net == 'quic' then
  209. result.quic_guise = info.type
  210. result.quic_key = info.key
  211. result.quic_security = info.securty
  212. end
  213. if info.security then
  214. result.security = info.security
  215. end
  216. if info.tls == "tls" or info.tls == "1" then
  217. result.tls = "1"
  218. if info.sni and info.sni ~= "" then
  219. result.tls_host = info.sni
  220. elseif info.host then
  221. result.tls_host = info.host
  222. end
  223. result.insecure = 1
  224. else
  225. result.tls = "0"
  226. end
  227. -- https://www.v2fly.org/config/protocols/vmess.html#vmess-md5-认证信息-淘汰机制
  228. if info.aid and (tonumber(info.aid) > 0) then
  229. result.server = nil
  230. end
  231. elseif szType == "ss" then
  232. local idx_sp = 0
  233. local alias = ""
  234. if content:find("#") then
  235. idx_sp = content:find("#")
  236. alias = content:sub(idx_sp + 1, -1)
  237. end
  238. local info = content:sub(1, idx_sp - 1)
  239. local hostInfo = split(base64Decode(info), "@")
  240. local host = split(hostInfo[2], ":")
  241. local userinfo = base64Decode(hostInfo[1])
  242. local method = userinfo:sub(1, userinfo:find(":") - 1)
  243. local password = userinfo:sub(userinfo:find(":") + 1, #userinfo)
  244. result.alias = UrlDecode(alias)
  245. result.type = v2_ss
  246. result.v2ray_protocol = (v2_ss == "v2ray") and "shadowsocks" or nil
  247. result.encrypt_method_ss = method
  248. result.password = password
  249. result.server = host[1]
  250. if host[2]:find("/%?") then
  251. local query = split(host[2], "/%?")
  252. result.server_port = query[1]
  253. local params = {}
  254. for _, v in pairs(split(query[2], '&')) do
  255. local t = split(v, '=')
  256. params[t[1]] = t[2]
  257. end
  258. if params.plugin then
  259. local plugin_info = UrlDecode(params.plugin)
  260. local idx_pn = plugin_info:find(";")
  261. if idx_pn then
  262. result.plugin = plugin_info:sub(1, idx_pn - 1)
  263. result.plugin_opts = plugin_info:sub(idx_pn + 1, #plugin_info)
  264. else
  265. result.plugin = plugin_info
  266. end
  267. -- 部分机场下发的插件名为 simple-obfs,这里应该改为 obfs-local
  268. if result.plugin == "simple-obfs" then
  269. result.plugin = "obfs-local"
  270. end
  271. end
  272. else
  273. result.server_port = host[2]:gsub("/","")
  274. end
  275. if not checkTabValue(encrypt_methods_ss)[method] then
  276. -- 1202 年了还不支持 SS AEAD 的屑机场
  277. result.server = nil
  278. end
  279. elseif szType == "sip008" then
  280. result.type = v2_ss
  281. result.v2ray_protocol = (v2_ss == "v2ray") and "shadowsocks" or nil
  282. result.server = content.server
  283. result.server_port = content.server_port
  284. result.password = content.password
  285. result.encrypt_method_ss = content.method
  286. result.plugin = content.plugin
  287. result.plugin_opts = content.plugin_opts
  288. result.alias = content.remarks
  289. if not checkTabValue(encrypt_methods_ss)[content.method] then
  290. result.server = nil
  291. end
  292. elseif szType == "ssd" then
  293. result.type = v2_ss
  294. result.v2ray_protocol = (v2_ss == "v2ray") and "shadowsocks" or nil
  295. result.server = content.server
  296. result.server_port = content.port
  297. result.password = content.password
  298. result.encrypt_method_ss = content.method
  299. result.plugin_opts = content.plugin_options
  300. result.alias = "[" .. content.airport .. "] " .. content.remarks
  301. if content.plugin == "simple-obfs" then
  302. result.plugin = "obfs-local"
  303. else
  304. result.plugin = content.plugin
  305. end
  306. if not checkTabValue(encrypt_methods_ss)[content.encryption] then
  307. result.server = nil
  308. end
  309. elseif szType == "trojan" then
  310. local idx_sp = 0
  311. local alias = ""
  312. if content:find("#") then
  313. idx_sp = content:find("#")
  314. alias = content:sub(idx_sp + 1, -1)
  315. end
  316. local info = content:sub(1, idx_sp - 1)
  317. local hostInfo = split(info, "@")
  318. local host = split(hostInfo[2], ":")
  319. local userinfo = hostInfo[1]
  320. local password = userinfo
  321. result.alias = UrlDecode(alias)
  322. result.type = v2_tj
  323. result.v2ray_protocol = "trojan"
  324. result.server = host[1]
  325. -- 按照官方的建议 默认验证ssl证书
  326. result.insecure = "0"
  327. result.tls = "1"
  328. if host[2]:find("?") then
  329. local query = split(host[2], "?")
  330. result.server_port = query[1]
  331. local params = {}
  332. for _, v in pairs(split(query[2], '&')) do
  333. local t = split(v, '=')
  334. params[t[1]] = t[2]
  335. end
  336. if params.sni then
  337. -- 未指定peer(sni)默认使用remote addr
  338. result.tls_host = params.sni
  339. end
  340. else
  341. result.server_port = host[2]
  342. end
  343. result.password = password
  344. elseif szType == "vless" then
  345. local url = URL.parse("http://" .. content)
  346. local params = url.query
  347. result.alias = url.fragment and UrlDecode(url.fragment) or nil
  348. result.type = "v2ray"
  349. result.v2ray_protocol = "vless"
  350. result.server = url.host
  351. result.server_port = url.port
  352. result.vmess_id = url.user
  353. result.vless_encryption = params.encryption or "none"
  354. result.transport = params.type or "tcp"
  355. result.tls = (params.security == "tls" or params.security == "xtls") and "1" or "0"
  356. result.tls_host = params.sni
  357. result.tls_flow = (params.security == "tls" or params.security == "reality") and params.flow or nil
  358. result.fingerprint = params.fp
  359. result.reality = (params.security == "reality") and "1" or "0"
  360. result.reality_publickey = params.pbk and UrlDecode(params.pbk) or nil
  361. result.reality_shortid = params.sid
  362. result.reality_spiderx = params.spx and UrlDecode(params.spx) or nil
  363. if result.transport == "ws" then
  364. result.ws_host = (result.tls ~= "1") and (params.host and UrlDecode(params.host)) or nil
  365. result.ws_path = params.path and UrlDecode(params.path) or "/"
  366. -- make it compatible with bullshit, "h2" transport is non-existent at all
  367. elseif result.transport == "http" or result.transport == "h2" then
  368. result.transport = "h2"
  369. result.h2_host = params.host and UrlDecode(params.host) or nil
  370. result.h2_path = params.path and UrlDecode(params.path) or nil
  371. elseif result.transport == "kcp" then
  372. result.kcp_guise = params.headerType or "none"
  373. result.seed = params.seed
  374. result.mtu = 1350
  375. result.tti = 50
  376. result.uplink_capacity = 5
  377. result.downlink_capacity = 20
  378. result.read_buffer_size = 2
  379. result.write_buffer_size = 2
  380. elseif result.transport == "quic" then
  381. result.quic_guise = params.headerType or "none"
  382. result.quic_security = params.quicSecurity or "none"
  383. result.quic_key = params.key
  384. elseif result.transport == "grpc" then
  385. result.serviceName = params.serviceName
  386. result.grpc_mode = params.mode or "gun"
  387. elseif result.transport == "tcp" then
  388. result.tcp_guise = params.headerType or "none"
  389. if result.tcp_guise == "http" then
  390. result.tcp_host = params.host and UrlDecode(params.host) or nil
  391. result.tcp_path = params.path and UrlDecode(params.path) or nil
  392. end
  393. end
  394. end
  395. if not result.alias then
  396. if result.server and result.server_port then
  397. result.alias = result.server .. ':' .. result.server_port
  398. else
  399. result.alias = "NULL"
  400. end
  401. end
  402. -- alias 不参与 hashkey 计算
  403. local alias = result.alias
  404. result.alias = nil
  405. local switch_enable = result.switch_enable
  406. result.switch_enable = nil
  407. result.hashkey = md5(jsonStringify(result))
  408. result.alias = alias
  409. result.switch_enable = switch_enable
  410. return result
  411. end
  412. -- wget
  413. local function wget(url)
  414. 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 .. '"')
  415. return trim(stdout)
  416. end
  417. local function check_filer(result)
  418. do
  419. -- 过滤的关键词列表
  420. local filter_word = split(filter_words, "/")
  421. -- 保留的关键词列表
  422. local check_save = false
  423. if save_words ~= nil and save_words ~= "" and save_words ~= "NULL" then
  424. check_save = true
  425. end
  426. local save_word = split(save_words, "/")
  427. -- 检查结果
  428. local filter_result = false
  429. local save_result = true
  430. -- 检查是否存在过滤关键词
  431. for i, v in pairs(filter_word) do
  432. if tostring(result.alias):find(v, nil, true) then
  433. filter_result = true
  434. end
  435. end
  436. -- 检查是否打开了保留关键词检查,并且进行过滤
  437. if check_save == true then
  438. for i, v in pairs(save_word) do
  439. if tostring(result.alias):find(v, nil, true) then
  440. save_result = false
  441. end
  442. end
  443. else
  444. save_result = false
  445. end
  446. -- 不等时返回
  447. if filter_result == true or save_result == true then
  448. return true
  449. else
  450. return false
  451. end
  452. end
  453. end
  454. local execute = function()
  455. -- exec
  456. do
  457. if proxy == '0' then -- 不使用代理更新的话先暂停
  458. log('服务正在暂停')
  459. luci.sys.init.stop(name)
  460. end
  461. for k, url in ipairs(subscribe_url) do
  462. local raw = wget(url)
  463. if #raw > 0 then
  464. local nodes, szType
  465. local groupHash = md5(url)
  466. cache[groupHash] = {}
  467. tinsert(nodeResult, {})
  468. local index = #nodeResult
  469. -- SSD 似乎是这种格式 ssd:// 开头的
  470. if raw:find('ssd://') then
  471. szType = 'ssd'
  472. local nEnd = select(2, raw:find('ssd://'))
  473. nodes = base64Decode(raw:sub(nEnd + 1, #raw))
  474. nodes = jsonParse(nodes)
  475. local extra = {airport = nodes.airport, port = nodes.port, encryption = nodes.encryption, password = nodes.password}
  476. local servers = {}
  477. -- SS里面包着 干脆直接这样
  478. for _, server in ipairs(nodes.servers) do
  479. tinsert(servers, setmetatable(server, {__index = extra}))
  480. end
  481. nodes = servers
  482. -- SS SIP008 直接使用 Json 格式
  483. elseif jsonParse(raw) then
  484. nodes = jsonParse(raw).servers or jsonParse(raw)
  485. if nodes[1].server and nodes[1].method then
  486. szType = 'sip008'
  487. end
  488. else
  489. -- ssd 外的格式
  490. nodes = split(base64Decode(raw):gsub(" ", "_"), "\n")
  491. end
  492. for _, v in ipairs(nodes) do
  493. if v then
  494. local result
  495. if szType then
  496. result = processData(szType, v)
  497. elseif not szType then
  498. local node = trim(v)
  499. local dat = split(node, "://")
  500. if dat and dat[1] and dat[2] then
  501. local dat3 = ""
  502. if dat[3] then
  503. dat3 = "://" .. dat[3]
  504. end
  505. if dat[1] == 'ss' or dat[1] == 'trojan' then
  506. result = processData(dat[1], dat[2] .. dat3)
  507. else
  508. result = processData(dat[1], base64Decode(dat[2]))
  509. end
  510. end
  511. else
  512. log('跳过未知类型: ' .. szType)
  513. end
  514. -- log(result)
  515. if result then
  516. -- 中文做地址的 也没有人拿中文域名搞,就算中文域也有Puny Code SB 机场
  517. 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
  518. log('丢弃无效节点: ' .. result.type .. ' 节点, ' .. result.alias)
  519. else
  520. -- log('成功解析: ' .. result.type ..' 节点, ' .. result.alias)
  521. result.grouphashkey = groupHash
  522. tinsert(nodeResult[index], result)
  523. cache[groupHash][result.hashkey] = nodeResult[index][#nodeResult[index]]
  524. end
  525. end
  526. end
  527. end
  528. log('成功解析节点数量: ' .. #nodes)
  529. else
  530. log(url .. ': 获取内容为空')
  531. end
  532. end
  533. end
  534. -- diff
  535. do
  536. if next(nodeResult) == nil then
  537. log("更新失败,没有可用的节点信息")
  538. if proxy == '0' then
  539. luci.sys.init.start(name)
  540. log('订阅失败, 恢复服务')
  541. end
  542. return
  543. end
  544. local add, del = 0, 0
  545. ucic:foreach(name, uciType, function(old)
  546. if old.grouphashkey or old.hashkey then -- 没有 hash 的不参与删除
  547. if not nodeResult[old.grouphashkey] or not nodeResult[old.grouphashkey][old.hashkey] then
  548. ucic:delete(name, old['.name'])
  549. del = del + 1
  550. else
  551. local dat = nodeResult[old.grouphashkey][old.hashkey]
  552. ucic:tset(name, old['.name'], dat)
  553. -- 标记一下
  554. setmetatable(nodeResult[old.grouphashkey][old.hashkey], {__index = {_ignore = true}})
  555. end
  556. else
  557. if not old.alias then
  558. if old.server or old.server_port then
  559. old.alias = old.server .. ':' .. old.server_port
  560. log('忽略手动添加的节点: ' .. old.alias)
  561. else
  562. ucic:delete(name, old['.name'])
  563. end
  564. else
  565. log('忽略手动添加的节点: ' .. old.alias)
  566. end
  567. end
  568. end)
  569. for k, v in ipairs(nodeResult) do
  570. for kk, vv in ipairs(v) do
  571. if not vv._ignore then
  572. local section = ucic:add(name, uciType)
  573. ucic:tset(name, section, vv)
  574. ucic:set(name, section, "switch_enable", switch)
  575. add = add + 1
  576. end
  577. end
  578. end
  579. ucic:commit(name)
  580. -- 如果原有服务器节点已经不见了就尝试换为第一个节点
  581. local globalServer = ucic:get_first(name, 'global', 'global_server', '')
  582. if globalServer ~= "nil" then
  583. local firstServer = ucic:get_first(name, uciType)
  584. if firstServer then
  585. if not ucic:get(name, globalServer) then
  586. luci.sys.call("/etc/init.d/" .. name .. " stop > /dev/null 2>&1 &")
  587. ucic:commit(name)
  588. ucic:set(name, ucic:get_first(name, 'global'), 'global_server', ucic:get_first(name, uciType))
  589. ucic:commit(name)
  590. log('当前主服务器节点已被删除,正在自动更换为第一个节点。')
  591. luci.sys.call("/etc/init.d/" .. name .. " start > /dev/null 2>&1 &")
  592. else
  593. log('维持当前主服务器节点。')
  594. luci.sys.call("/etc/init.d/" .. name .. " restart > /dev/null 2>&1 &")
  595. end
  596. else
  597. log('没有服务器节点了,停止服务')
  598. luci.sys.call("/etc/init.d/" .. name .. " stop > /dev/null 2>&1 &")
  599. end
  600. end
  601. log('新增节点数量: ' .. add, '删除节点数量: ' .. del)
  602. log('订阅更新成功')
  603. end
  604. end
  605. if subscribe_url and #subscribe_url > 0 then
  606. xpcall(execute, function(e)
  607. log(e)
  608. log(debug.traceback())
  609. log('发生错误, 正在恢复服务')
  610. local firstServer = ucic:get_first(name, uciType)
  611. if firstServer then
  612. luci.sys.call("/etc/init.d/" .. name .. " restart > /dev/null 2>&1 &") -- 不加&的话日志会出现的更早
  613. log('重启服务成功')
  614. else
  615. luci.sys.call("/etc/init.d/" .. name .. " stop > /dev/null 2>&1 &") -- 不加&的话日志会出现的更早
  616. log('停止服务成功')
  617. end
  618. end)
  619. end