subscribe.lua 19 KB

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