Crawler.cs 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  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. PddTransferUrlResponse root;
  68. try
  69. {
  70. root = body.Convert2Object<PddTransferUrlResponse>();
  71. if (root == null)
  72. {
  73. throw new InvalidOperationException("PDD transferUrl response deserialized to null.");
  74. }
  75. }
  76. catch (Exception ex)
  77. {
  78. await new LoggerLibrary("PddUnion", "transferUrl.DeserializeError")
  79. .Info(body)
  80. .Info(ex.Message, ex.StackTrace)
  81. .SaveAsync();
  82. throw new InvalidOperationException(body, ex);
  83. }
  84. string message = string.Empty;
  85. if (!root.success)
  86. {
  87. if ("30007".Equals(root.errorCode))
  88. {
  89. PddPoolCore.AccountRisk(_account);
  90. }
  91. message = $"{root.errorCode}:{root.errorMsg}";
  92. result.success = false;
  93. result.message = "转链失败";
  94. result.reason = message;
  95. _ = new LoggerLibrary("PddUnion", "transferUrl").Info(body).SaveAsync();
  96. return result;
  97. }
  98. if (string.IsNullOrEmpty(root.result?.multiGroupShortUrl))
  99. {
  100. result.success = false;
  101. result.message = "转链失败";
  102. result.reason = "无法转链";
  103. //_ = new LoggerLibrary("PddUnion", "transferUrl").Info(body).SaveAsync();
  104. return result;
  105. }
  106. if (!string.IsNullOrEmpty(root.result?.url))
  107. {
  108. result.itemId = root.result?.url.GetContentPart("goods_id=", "&");
  109. }
  110. result.success = true;
  111. result.message = "OK";
  112. result.commercial = true;
  113. result.link_type = LinkTypeEnum.goods;
  114. result.shortLinkurl = root.result?.multiGroupShortUrl;
  115. result.content = result.shortLinkurl;
  116. result.deeplink_url = GetDeeplink(result.shortLinkurl);
  117. return result;
  118. }
  119. public async Task<PddDataDTO> createPromotionUrl(PddDataDTO result, string sourceUrl, CancellationToken cancellationToken = default)
  120. {
  121. var ts = DateTime.Now.Convert2UnixTimestamp(true);
  122. string cookies = _account.cookies.Trim();
  123. string useragent = ProviderFakeUserAgent.RandomComputer;
  124. string url = "https://jinbao.pinduoduo.com/network/api/promotion/createPromotionUrl";
  125. //{"pid":"13848803_189356569","sourceUrl":"https://p.pinduoduo.com/1OAsct0r"}
  126. string goodsId = sourceUrl;
  127. var args = new
  128. {
  129. _account.pid,
  130. goodsId,
  131. generateOpenCoupon = true
  132. };
  133. /*
  134. {
  135. "mediaId": "9092702778",
  136. "pid": "13848803_189356569",
  137. "goodsId": "123",
  138. "generateOpenCoupon": true
  139. }
  140. */
  141. string data = args.Convert2Json();
  142. WebClientUtility client = new WebClientUtility();
  143. client.Proxy = _proxy;
  144. #if DEBUG
  145. client.Proxy = null;
  146. #endif
  147. client.SetContentType("application/json");
  148. client.AddHeaders("Referer", "https://jinbao.pinduoduo.com/promotion/url-promotion");
  149. client.AddHeaders("Origin", "https://jinbao.pinduoduo.com");
  150. client.UserAgent = useragent;
  151. client.AddHeaders("Cookie", cookies);
  152. client.Post(data);
  153. var response = await client.RequestAsync(url, "POST", cancellationToken);
  154. string body = response.Body();
  155. var root = body.Convert2Object<PddCreatePromotionUrlResponse>();
  156. string message = string.Empty;
  157. if (!root.success)
  158. {
  159. message = $"{root.errorCode}:{root.errorMsg}";
  160. result.success = false;
  161. result.message = "转链失败";
  162. result.reason = message;
  163. _ = new LoggerLibrary("PddUnion", "transferUrl").Info(body).SaveAsync();
  164. return result;
  165. }
  166. if (string.IsNullOrEmpty(root.result?.multiGroupShortUrl))
  167. {
  168. result.success = false;
  169. result.message = "转链失败";
  170. result.reason = "无法转链";
  171. //_ = new LoggerLibrary("PddUnion", "transferUrl").Info(body).SaveAsync();
  172. return result;
  173. }
  174. //goods_id=636365867069&pid=13848803_189356569&goods_sign=E9z2NkASdqlKuWDVwvfdqnADgCEqTQSt_JuMe2WC0G&zs_duo_id=25194414&cpsSign=CC_240807_13848803_189356569_fdbbdfa499058644becc9f8b3b7acaaf&_x_ddjb_act=
  175. if (!string.IsNullOrEmpty(root.result?.url))
  176. {
  177. result.itemId = root.result?.url.GetContentPart("goods_id=", "&");
  178. }
  179. result.success = true;
  180. result.message = "OK";
  181. result.commercial = true;
  182. result.link_type = LinkTypeEnum.goods;
  183. result.shortLinkurl = root.result?.multiGroupShortUrl;
  184. result.content = result.shortLinkurl;
  185. result.deeplink_url = GetDeeplink(result.shortLinkurl);
  186. return result;
  187. }
  188. }
  189. }