subscribe.lua 25 KB

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