Crawler.cs 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. using dodohold.core;
  2. using Sayaka.Common;
  3. using System.Text.RegularExpressions;
  4. namespace molilian.core
  5. {
  6. public class PddTransferUrlResult
  7. {
  8. public string multiGroupShortUrl { get; set; } = string.Empty;
  9. public string multiGroupUrl { get; set; } = string.Empty;
  10. public string shortUrl { get; set; } = string.Empty;
  11. public string url { get; set; } = string.Empty;
  12. }
  13. public class PddTransferUrlResponse
  14. {
  15. public int errorCode { get; set; }
  16. public string errorMsg { get; set; } = string.Empty;
  17. public bool success { get; set; } = false;
  18. public PddTransferUrlResult result { get; set; } = new();
  19. }
  20. public class PddCreatePromotionUrlResult
  21. {
  22. public string multiGroupShortUrl { get; set; } = string.Empty;
  23. public string multiGroupUrl { get; set; } = string.Empty;
  24. public string shortUrl { get; set; } = string.Empty;
  25. public string url { get; set; } = string.Empty;
  26. }
  27. public class PddCreatePromotionUrlResponse
  28. {
  29. public int errorCode { get; set; }
  30. public string errorMsg { get; set; } = string.Empty;
  31. public bool success { get; set; } = false;
  32. public PddCreatePromotionUrlResult result { get; set; } = new();
  33. }
  34. public partial class PddUnionPlus
  35. {
  36. public async Task<PddDataDTO> transferUrl(PddDataDTO result, string sourceUrl, CancellationToken cancellationToken = default)
  37. {
  38. var ts = DateTime.Now.Convert2UnixTimestamp(true);
  39. string cookies = _account.cookies.Trim();
  40. #if DEBUG
  41. cookies = "_nano_fp=Xpm8nqXjl0djX5TYnC_i8vSD~GoSCs6EwSX~KQF3; api_uid=ZeIuHGnwfkePzgBjEGupAg==; jrpl=FYxQYhHDRjBKXQBaaFrEUyyNgiOx9FjB; njrpl=FYxQYhHDRjBKXQBaaFrEUyyNgiOx9FjB; dilx=u8i4bJTsT3tQaAKzP5jRQ; DDJB_PASS_ID=7752af5c1a8d94018b900b8c34d5a362; DDJB_LOGIN_SCENE=0";
  42. _account.pid = "25613623_309553545";
  43. #endif
  44. string useragent = ProviderFakeUserAgent.RandomComputer;
  45. string url = "https://jinbao.pinduoduo.com/network/api/promotion/transferUrl";
  46. //{"pid":"13848803_189356569","sourceUrl":"https://p.pinduoduo.com/1OAsct0r"}
  47. var args = new
  48. {
  49. _account.pid,
  50. sourceUrl = sourceUrl.UrlDecode(),
  51. };
  52. string data = args.Convert2Json();
  53. WebClientUtility client = new WebClientUtility();
  54. client.Proxy = _proxy;
  55. #if DEBUG
  56. client.Proxy = null;
  57. #endif
  58. client.SetContentType("application/json");
  59. client.AddHeaders("Referer", "https://jinbao.pinduoduo.com/promotion/url-promotion");
  60. client.AddHeaders("Origin", "https://jinbao.pinduoduo.com");
  61. client.UserAgent = useragent;
  62. client.AddHeaders("Cookie", cookies);
  63. client.Post(data);
  64. var response = await client.RequestAsync(url, "POST", cancellationToken);
  65. string body = response.Body();
  66. //{"success":false,"errorCode":43001,"errorMsg":"会话已过期","result":null}
  67. var root = body.Convert2Object<PddTransferUrlResponse>();
  68. string message = string.Empty;
  69. if (!root.success)
  70. {
  71. if ("30007".Equals(root.errorCode))
  72. {
  73. PddPoolCore.AccountRisk(_account);
  74. }
  75. message = $"{root.errorCode}:{root.errorMsg}";
  76. result.success = false;
  77. result.message = "转链失败";
  78. result.reason = message;
  79. _ = new LoggerLibrary("PddUnion", "transferUrl").Info(body).SaveAsync();
  80. return result;
  81. }
  82. if (string.IsNullOrEmpty(root.result?.multiGroupShortUrl))
  83. {
  84. result.success = false;
  85. result.message = "转链失败";
  86. result.reason = "无法转链";
  87. //_ = new LoggerLibrary("PddUnion", "transferUrl").Info(body).SaveAsync();
  88. return result;
  89. }
  90. if (!string.IsNullOrEmpty(root.result?.url))
  91. {
  92. result.itemId = root.result?.url.GetContentPart("goods_id=", "&");
  93. }
  94. result.success = true;
  95. result.message = "OK";
  96. result.commercial = true;
  97. result.link_type = LinkTypeEnum.goods;
  98. result.shortLinkurl = root.result?.multiGroupShortUrl;
  99. result.content = result.shortLinkurl;
  100. result.deeplink_url = GetDeeplink(result.shortLinkurl);
  101. return result;
  102. }
  103. public async Task<PddDataDTO> createPromotionUrl(PddDataDTO result, string sourceUrl, CancellationToken cancellationToken = default)
  104. {
  105. var ts = DateTime.Now.Convert2UnixTimestamp(true);
  106. string cookies = _account.cookies.Trim();
  107. string useragent = ProviderFakeUserAgent.RandomComputer;
  108. string url = "https://jinbao.pinduoduo.com/network/api/promotion/createPromotionUrl";
  109. //{"pid":"13848803_189356569","sourceUrl":"https://p.pinduoduo.com/1OAsct0r"}
  110. string goodsId = sourceUrl;
  111. var args = new
  112. {
  113. _account.pid,
  114. goodsId,
  115. generateOpenCoupon = true
  116. };
  117. /*
  118. {
  119. "mediaId": "9092702778",
  120. "pid": "13848803_189356569",
  121. "goodsId": "123",
  122. "generateOpenCoupon": true
  123. }
  124. */
  125. string data = args.Convert2Json();
  126. WebClientUtility client = new WebClientUtility();
  127. client.Proxy = _proxy;
  128. #if DEBUG
  129. client.Proxy = null;
  130. #endif
  131. client.SetContentType("application/json");
  132. client.AddHeaders("Referer", "https://jinbao.pinduoduo.com/promotion/url-promotion");
  133. client.AddHeaders("Origin", "https://jinbao.pinduoduo.com");
  134. client.UserAgent = useragent;
  135. client.AddHeaders("Cookie", cookies);
  136. client.Post(data);
  137. var response = await client.RequestAsync(url, "POST", cancellationToken);
  138. string body = response.Body();
  139. var root = body.Convert2Object<PddCreatePromotionUrlResponse>();
  140. string message = string.Empty;
  141. if (!root.success)
  142. {
  143. message = $"{root.errorCode}:{root.errorMsg}";
  144. result.success = false;
  145. result.message = "转链失败";
  146. result.reason = message;
  147. _ = new LoggerLibrary("PddUnion", "transferUrl").Info(body).SaveAsync();
  148. return result;
  149. }
  150. if (string.IsNullOrEmpty(root.result?.multiGroupShortUrl))
  151. {
  152. result.success = false;
  153. result.message = "转链失败";
  154. result.reason = "无法转链";
  155. //_ = new LoggerLibrary("PddUnion", "transferUrl").Info(body).SaveAsync();
  156. return result;
  157. }
  158. //goods_id=636365867069&pid=13848803_189356569&goods_sign=E9z2NkASdqlKuWDVwvfdqnADgCEqTQSt_JuMe2WC0G&zs_duo_id=25194414&cpsSign=CC_240807_13848803_189356569_fdbbdfa499058644becc9f8b3b7acaaf&_x_ddjb_act=
  159. if (!string.IsNullOrEmpty(root.result?.url))
  160. {
  161. result.itemId = root.result?.url.GetContentPart("goods_id=", "&");
  162. }
  163. result.success = true;
  164. result.message = "OK";
  165. result.commercial = true;
  166. result.link_type = LinkTypeEnum.goods;
  167. result.shortLinkurl = root.result?.multiGroupShortUrl;
  168. result.content = result.shortLinkurl;
  169. result.deeplink_url = GetDeeplink(result.shortLinkurl);
  170. return result;
  171. }
  172. }
  173. }