parse_2.cs 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600
  1. using dodohold.core;
  2. using System.Text.RegularExpressions;
  3. using System.Diagnostics;
  4. using System.Text.Json;
  5. using TencentCloud.Fmu.V20191213.Models;
  6. using System;
  7. using MySqlX.XDevAPI;
  8. using static dodohold.core.ZTOExpress.CreateOrderArgs;
  9. using System.Threading;
  10. using TencentCloud.Tcm.V20210413.Models;
  11. using COSXML.Network;
  12. using System.Net;
  13. using TencentCloud.Cdb.V20170320.Models;
  14. using System.Security.Cryptography;
  15. namespace molilian.core
  16. {
  17. public partial class AlimamaPlus
  18. {
  19. public static async Task<TkDataDTO> testTaskAsync(TkDataDTO result, CancellationToken token)
  20. {
  21. string url = "https://www.taobao.com";
  22. try
  23. {
  24. WebClientUtility client = new WebClientUtility();
  25. Thread.Sleep(5000);
  26. //await Task.Delay(5000, token); // 使用Task.Delay代替Thread.Sleep
  27. client.Timeout = TimeSpan.FromMilliseconds(3000);
  28. var response = await client.RequestAsync(url);
  29. var body = response.Body();
  30. }
  31. catch
  32. {
  33. result.success = false;
  34. result.message = "Error";
  35. }
  36. return result;
  37. }
  38. /// <summary>
  39. /// 提取url里面的id参数
  40. /// </summary>
  41. /// <param name="url"></param>
  42. /// <returns></returns>
  43. public static string? ExtractItemId(string url)
  44. {
  45. Match match = Regex.Match(url, @"(?:\?|&)id=(\d+)");
  46. if (match.Success)
  47. {
  48. return match.Groups[1].Value;
  49. }
  50. return null;
  51. }
  52. /// <summary>
  53. /// 是否淘宝链接,如果是商品链接就格式化成https://item.taobao.com/item.htm?id=****
  54. /// </summary>
  55. /// <param name="url"></param>
  56. /// <returns></returns>
  57. public static (bool, string) IsTaobaoUrl(string url)
  58. {
  59. if (url.Contains("//a.m.taobao.com/i") ||
  60. url.Contains("//internal.tt.detail.taobao.com/i"))
  61. {
  62. //第一种提取方法
  63. string itemId = url.GetContentPart(".com/i", ".htm");
  64. if (!string.IsNullOrEmpty(itemId) && long.TryParse(itemId, out long _))
  65. {
  66. string resultUrl = $"https://item.taobao.com/item.htm?id={itemId}";
  67. return (true, resultUrl);
  68. }
  69. }
  70. //https://pages-g.m.taobao.com/wow/z/app/detail-next/item/index?x-ssr=true&id=753169018016
  71. if (url.Contains("//item.taobao.com/item.htm?") ||
  72. url.Contains("//pages-g.m.taobao.com/wow/z/app/detail-next/item/index?") ||
  73. url.Contains("//main.m.taobao.com/detail/index.html?") ||
  74. url.Contains("//main.m.taobao.com/security-h5-detail/home?") ||
  75. url.Contains("//h5.m.taobao.com/awp/core/detail.htm?") ||
  76. url.Contains("//new.m.taobao.com/detail.htm?") ||
  77. url.Contains("//outfliggys.m.taobao.com/app/trip/rx-travel-detail") ||
  78. url.Contains("//detail.m.tmall.com/item.htm?") ||
  79. url.Contains("//tmallx.tmall.com/app/tmallx-src/goods-detail") ||
  80. url.Contains("//detail.tmall.com/item.htm?") ||
  81. url.Contains("//internal.tt.detail.taobao.com/item.htm?") ||
  82. url.Contains("//internal.tt.detail.taobao.com/") ||
  83. url.Contains("//detail.tmall.hk/hk/item.htm?"))
  84. {
  85. string? itemId = ExtractItemId(url);
  86. if (!string.IsNullOrEmpty(itemId))
  87. {
  88. string resultUrl = $"https://item.taobao.com/item.htm?id={itemId}";
  89. return (true, resultUrl);
  90. }
  91. }
  92. return (false, url);
  93. }
  94. /// <summary>
  95. /// 排除已知的淘客链接
  96. /// </summary>
  97. /// <param name="url"></param>
  98. /// <returns></returns>
  99. public static bool IsAffLink(string url)
  100. {
  101. if (!url.StartsWith("https://") || !url.StartsWith("https://")) url = "https://" + url;
  102. Uri uri = new(url);
  103. if (uri.Host.Equals("s.click.taobao.com", StringComparison.OrdinalIgnoreCase) ||
  104. uri.Host.Equals("uland.taobao.com", StringComparison.OrdinalIgnoreCase))
  105. {
  106. return true;
  107. }
  108. return false;
  109. }
  110. public static bool IsShortLink(string url)
  111. {
  112. if (!url.StartsWith("https://") || !url.StartsWith("https://")) url = "https://" + url;
  113. Uri uri = new(url);
  114. if (uri.Host.Equals("e.tb.cn", StringComparison.OrdinalIgnoreCase) ||
  115. uri.Host.Equals("m.tb.cn", StringComparison.OrdinalIgnoreCase) ||
  116. uri.Host.Equals("u.tb.cn", StringComparison.OrdinalIgnoreCase) ||
  117. uri.Host.Equals("s.tb.cn", StringComparison.OrdinalIgnoreCase))
  118. {
  119. return true;
  120. }
  121. return false;
  122. }
  123. /// <summary>
  124. /// 判断淘客的¥羊角符号
  125. /// </summary>
  126. /// <param name="content"></param>
  127. /// <returns></returns>
  128. static bool ContainsSpecialFormat(string content)
  129. {
  130. // 使用正则表达式匹配内容中是否含有特定格式的字符串
  131. //string pattern = @"¥[a-zA-Z0-9\s]+¥";
  132. string pattern = @"[$¥🗝₴€₤£₳✔《💰🔑🎵✔️💲🔐📲₡]+[a-zA-Z0-9\s]+[$¥🗝₴€₤£₳✔《💰🔑🎵✔️💲🔐📲₡]*";
  133. return Regex.IsMatch(content, pattern);
  134. }
  135. public TimeSpan GetRequestTimeout()
  136. {
  137. int min = (int)(_config.rt_max * 0.5);
  138. if (_config.rt_max == 0) return TimeSpan.FromMilliseconds(1000);
  139. int timeout = _config.rt_max;
  140. timeout -= min;
  141. return TimeSpan.FromMilliseconds(timeout);
  142. }
  143. public TimeSpan GetRequestTimeout2(int deduction = 0)
  144. {
  145. int min = (int)(_config.rt_max * 0.5);
  146. if (_config.rt_max == 0) return TimeSpan.FromMilliseconds(1000);
  147. int timeout = _config.rt_max;
  148. timeout -= deduction;
  149. if (timeout <= min) return TimeSpan.FromMilliseconds(min);
  150. return TimeSpan.FromMilliseconds(timeout);
  151. }
  152. /// <summary>
  153. /// 从http获取跳转的url
  154. /// </summary>
  155. /// <param name="url"></param>
  156. /// <returns></returns>
  157. public async Task<(bool, string)> GetDesiredUrlAsync(WebProxy proxy, string url, CancellationToken cancellationToken = default)
  158. {
  159. string result;
  160. try
  161. {
  162. if (!IsShortLink(url)) return (false, "不是淘宝短网址");
  163. if (!_account.enable_deep_url) return (true, url);
  164. string desiredUrlPattern = "var url = '(.*?)'";
  165. WebClientUtility client = new()
  166. {
  167. Proxy = proxy,
  168. UserAgent = Sayaka.Common.ProviderFakeUserAgent.RandomComputer
  169. };
  170. if (url.Contains("u.tb.cn"))
  171. {
  172. client.AllowAutoRedirect = false;
  173. }
  174. url = url.Replace("http://u.tb.cn", "https://u.tb.cn");
  175. #if DEBUG
  176. client.Proxy = null;
  177. var response = await client.RequestAsync(url, "GET");
  178. #else
  179. client.Timeout = GetRequestTimeout();
  180. var response = await client.RequestAsync(url, "GET", cancellationToken);
  181. #endif
  182. if (response.ResponseMessage.StatusCode == HttpStatusCode.Found &&
  183. !string.IsNullOrEmpty(response.ResponseMessage?.Headers?.Location?.OriginalString))
  184. {
  185. string redirectUrl = response.ResponseMessage?.Headers?.Location?.OriginalString;
  186. return (true, redirectUrl);
  187. }
  188. var responseBody = response.Body();
  189. result = responseBody;
  190. if (response.Successed)
  191. {
  192. if (response.ResponseMessage.IsSuccessStatusCode)
  193. {
  194. Match match = Regex.Match(responseBody, desiredUrlPattern);
  195. if (match.Success)
  196. {
  197. result = match.Groups[1].Value; // 返回匹配的 URL
  198. if (string.IsNullOrEmpty(result)) return (false, "没有匹配的URL");
  199. if (result.StartsWith("//"))
  200. result = "https:" + result;
  201. return (true, result);
  202. }
  203. }
  204. else
  205. {
  206. result = $"{response.ResponseMessage.StatusCode}\n{responseBody}";
  207. }
  208. }
  209. else
  210. {
  211. throw response.ResponseException;
  212. }
  213. }
  214. catch (Exception ex)
  215. {
  216. _ = new LoggerLibrary("api_error", "desiredUrl_error").Info(ex.Message, ex.StackTrace).SaveAsync();
  217. result = "网络异常";
  218. }
  219. return (false, result);
  220. }
  221. /// <summary>
  222. /// 从http获取跳转的url
  223. /// </summary>
  224. /// <param name="url"></param>
  225. /// <returns></returns>
  226. (bool, string) GetDesiredUrl(string url)
  227. {
  228. string result;
  229. try
  230. {
  231. if (!IsShortLink(url)) return (false, "不是淘宝短网址");
  232. string desiredUrlPattern = "var url = '(.*?)'";
  233. WebClientUtility client = new()
  234. {
  235. Proxy = ProxyNodesCore.RandomOne(_account.nodeName),
  236. UserAgent = Sayaka.Common.ProviderFakeUserAgent.RandomComputer
  237. };
  238. #if DEBUG
  239. client.Proxy = null;
  240. #endif
  241. client.Timeout = GetRequestTimeout();
  242. var response = client.Request(url);
  243. var responseBody = response.Body();
  244. result = responseBody;
  245. if (response.Successed)
  246. {
  247. if (response.ResponseMessage.IsSuccessStatusCode)
  248. {
  249. Match match = Regex.Match(responseBody, desiredUrlPattern);
  250. if (match.Success)
  251. {
  252. result = match.Groups[1].Value; // 返回匹配的 URL
  253. if (string.IsNullOrEmpty(result)) return (false, "没有匹配的URL");
  254. return (true, result);
  255. }
  256. }
  257. else
  258. {
  259. result = $"{response.ResponseMessage.StatusCode}\n{responseBody}";
  260. }
  261. }
  262. else
  263. {
  264. throw response.ResponseException;
  265. }
  266. }
  267. catch (Exception ex)
  268. {
  269. result = $"{ex.Message}\n{ex.StackTrace}";
  270. }
  271. return (false, result);
  272. }
  273. private void InternalTextProcessing(string content, ref TkDataDTO result)
  274. {
  275. //(result.success, result.content, result.link_type, result.shortLinkurl) = InternalTextProcessing(content,ref result);
  276. bool success;
  277. string resultText;
  278. LinkTypeEnum link_type = LinkTypeEnum.unknown;
  279. string url = GetLink(content);
  280. if (!string.IsNullOrEmpty(url))
  281. {
  282. //排除已知的淘客链接
  283. if (IsAffLink(url))
  284. {
  285. result.success = false;
  286. result.content = "排除淘客链接";
  287. result.link_type = LinkTypeEnum.other_aff;
  288. result.shortLinkurl = url;
  289. return;
  290. //return (false, "排除淘客链接", LinkTypeEnum.other_aff, url);
  291. }
  292. //直接提取
  293. (success, resultText) = IsTaobaoUrl(url);
  294. if (success)
  295. {
  296. result.success = true;
  297. result.content = resultText;
  298. result.link_type = LinkTypeEnum.goods;
  299. result.shortLinkurl = resultText;
  300. return;
  301. //return (true, result, LinkTypeEnum.goods, result);
  302. }
  303. //从http获取跳转的url
  304. Stopwatch stopwatch = Stopwatch.StartNew();
  305. stopwatch.Start();
  306. (success, resultText) = GetDesiredUrl(url);
  307. stopwatch.Stop();
  308. // 获取执行时间
  309. result.elapsedTime2 = (int)stopwatch.ElapsedMilliseconds;
  310. if (success)
  311. {
  312. //排除已知的淘客链接
  313. if (IsAffLink(resultText))
  314. {
  315. result.success = false;
  316. result.content = "排除淘客链接";
  317. result.link_type = LinkTypeEnum.other_aff;
  318. result.shortLinkurl = url;
  319. return;
  320. //return (false, "排除淘客链接", LinkTypeEnum.other_aff, url);
  321. }
  322. (success, resultText) = IsTaobaoUrl(resultText);
  323. if (success)
  324. {
  325. result.success = true;
  326. result.content = resultText;
  327. result.link_type = LinkTypeEnum.goods;
  328. result.shortLinkurl = resultText;
  329. return;
  330. //return (true, resultText, LinkTypeEnum.goods, resultText);
  331. }
  332. link_type = GetLinkType(resultText);
  333. }
  334. else
  335. {
  336. link_type = GetLinkType(url);
  337. }
  338. result.success = false;
  339. result.content = resultText;
  340. result.link_type = link_type;
  341. result.shortLinkurl = url;
  342. return;
  343. //return (false, result, link_type, url);
  344. }
  345. //判断淘客的¥羊角符号
  346. if (ContainsSpecialFormat(content))
  347. {
  348. result.success = false;
  349. result.content = "排除淘口令";
  350. result.link_type = LinkTypeEnum.other_aff;
  351. result.shortLinkurl = null;
  352. return;
  353. //return (false, "排除淘口令", LinkTypeEnum.other_aff, null);
  354. }
  355. //todo 临时应急 0614
  356. //return (false, "纯口令 没链接", link_type, null);
  357. result.success = false;
  358. result.content = "纯口令 没链接";
  359. result.link_type = LinkTypeEnum.other_aff;
  360. result.shortLinkurl = null;
  361. }
  362. public async Task<TkDataDTO> InternalTextProcessingAsync(string content, TkDataDTO result,
  363. CancellationToken cancellationToken = default,
  364. Dictionary<string, long> swData = null)
  365. {
  366. bool success;
  367. string resultText;
  368. result.link_type = LinkTypeEnum.unknown;
  369. //============================== 放弃转链-其他推广链接 ==============================
  370. string url = GetLink(content);
  371. result.shortLinkurl = url;
  372. if (!string.IsNullOrEmpty(url))
  373. {
  374. bool is_aff = IsAffLink(url);
  375. if (is_aff)
  376. {
  377. result.success = false;
  378. result.message = "放弃转链";
  379. result.reason = "其他推广链接";
  380. result.subCode = TkSubCodeEnum.OtherPromo;
  381. result.link_type = LinkTypeEnum.other_aff;
  382. //result.shortLinkurl = url;
  383. return result;
  384. }
  385. (success, resultText) = IsTaobaoUrl(url);
  386. if (success)
  387. {
  388. result.success = true;
  389. result.content = resultText;
  390. result.link_type = LinkTypeEnum.goods;
  391. //result.shortLinkurl = resultText;
  392. return result;
  393. }
  394. Stopwatch sw = Stopwatch.StartNew();
  395. var proxy = ProxyNodesCore.RandomOne(_account.nodeName);
  396. if (_proxy != null && proxy != null && _proxy.Address != proxy.Address)
  397. {
  398. result.proxy_node = proxy?.Address?.Authority;
  399. }
  400. (success, resultText) = await GetDesiredUrlAsync(proxy, url, cancellationToken);
  401. sw.Stop();
  402. // 获取执行时间
  403. result.elapsedTime2 = (int)sw.ElapsedMilliseconds;
  404. swData?.Add("\tGetDesiredUrlAsync", sw.ElapsedMilliseconds);
  405. //============================== 放弃转链-请求超时 ==============================
  406. #if DEBUG
  407. #else
  408. if (result.elapsedTime2 >= _config.rt_max || (!success && resultText.Contains("was canceled")))
  409. {
  410. result.success = false;
  411. result.message = "放弃转链";
  412. result.reason = "请求超时";
  413. result.subCode = TkSubCodeEnum.Other;
  414. return result;
  415. }
  416. #endif
  417. if (success)
  418. {
  419. string desiredUrl = resultText;
  420. //============================== 放弃转链-其他推广链接 ==============================
  421. bool is_aff2 = IsAffLink(desiredUrl);
  422. if (is_aff2)
  423. {
  424. result.success = false;
  425. result.message = "放弃转链";
  426. result.reason = "其他推广链接";
  427. result.subCode = TkSubCodeEnum.OtherPromo;
  428. result.link_type = LinkTypeEnum.other_aff;
  429. //result.shortLinkurl = url;
  430. return result;
  431. }
  432. (success, desiredUrl) = IsTaobaoUrl(desiredUrl);
  433. if (success)
  434. {
  435. result.success = true;
  436. result.content = desiredUrl;
  437. result.link_type = LinkTypeEnum.goods;
  438. //result.shortLinkurl = desiredUrl;
  439. return result;
  440. }
  441. result.link_type = GetLinkType(desiredUrl);
  442. }
  443. else
  444. {
  445. result.link_type = GetLinkType(url);
  446. if ("网络错误".Equals(resultText))
  447. {
  448. result.link_type = LinkTypeEnum.unknown;
  449. result.content = resultText;
  450. result.reason = resultText;
  451. }
  452. }
  453. if (result.content.Contains("霸下通用 web 页面-验证码"))
  454. {
  455. result.subCode = TkSubCodeEnum.Captcha;
  456. result.reason = "霸下验证码";
  457. }
  458. else
  459. {
  460. switch (result.link_type)
  461. {
  462. case LinkTypeEnum.profile:
  463. case LinkTypeEnum.live:
  464. case LinkTypeEnum.video:
  465. case LinkTypeEnum.note:
  466. case LinkTypeEnum.goods:
  467. case LinkTypeEnum.baseDomain:
  468. result.reason = string.Empty;
  469. result.content = content;
  470. break;
  471. default:
  472. result.reason = "非标准链接";
  473. result.subCode = TkSubCodeEnum.NonStdLink;
  474. break;
  475. }
  476. //if (result.link_type == LinkTypeEnum.baseDomain)
  477. //{
  478. // result.content = content;
  479. //}
  480. //else
  481. //{
  482. // result.reason = "非标准链接";
  483. // result.subCode = TkSubCodeEnum.NonStdLink;
  484. //}
  485. }
  486. result.success = false;
  487. result.message = "放弃转链";
  488. result.content = resultText;
  489. result.shortLinkurl = url;
  490. return result;
  491. //return (false, result, link_type, url);
  492. }
  493. //判断淘客的¥羊角符号
  494. bool is_aff3 = ContainsSpecialFormat(content);
  495. if (is_aff3)
  496. {
  497. result.success = false;
  498. result.message = "放弃转链";
  499. result.reason = "排除淘口令";
  500. result.subCode = TkSubCodeEnum.OtherPromo;
  501. result.link_type = LinkTypeEnum.other_aff;
  502. result.shortLinkurl = null;
  503. return result;
  504. //return (false, "排除淘口令", LinkTypeEnum.other_aff, null);
  505. }
  506. //todo 临时应急 0614
  507. //return (false, "纯口令 没链接", link_type, null);
  508. result.success = false;
  509. result.message = "放弃转链";
  510. result.reason = "纯口令 没链接";
  511. result.subCode = TkSubCodeEnum.OtherPromo;
  512. result.link_type = LinkTypeEnum.other_aff;
  513. result.shortLinkurl = null;
  514. return result;
  515. }
  516. private LinkTypeEnum GetLinkType(string url)
  517. {
  518. if (string.IsNullOrEmpty(url)) return LinkTypeEnum.unknown;
  519. if (IsShortLink(url)) return LinkTypeEnum.baseDomain;
  520. if (url.StartsWith("https://huodong.m.taobao.com/act/talent/live.html")) return LinkTypeEnum.live;
  521. if (url.StartsWith("https://web.m.taobao.com/app/tnode/web/index")) return LinkTypeEnum.video;
  522. if (url.StartsWith("https://shop.m.taobao.com/shop/shopIndex.htm")) return LinkTypeEnum.profile;
  523. string pattern = @"^https://shop\d+(\.m)*\.taobao\.com";
  524. if (Regex.IsMatch(url, pattern))
  525. {
  526. return LinkTypeEnum.profile;
  527. }
  528. //https://shop.m.taobao.com/shop/shopIndex.htm?
  529. return LinkTypeEnum.unknown;
  530. }
  531. }
  532. }