Crawler.cs 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  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 = "DDJB_PASS_ID=bedd7aa97aff1edfe392ad8d2c8f1dc5; DDJB_LOGIN_SCENE=0";
  42. #endif
  43. string useragent = ProviderFakeUserAgent.RandomComputer;
  44. string url = "https://jinbao.pinduoduo.com/network/api/promotion/transferUrl";
  45. //{"pid":"13848803_189356569","sourceUrl":"https://p.pinduoduo.com/1OAsct0r"}
  46. var args = new
  47. {
  48. _account.pid,
  49. sourceUrl = sourceUrl.UrlDecode(),
  50. };
  51. string data = args.Convert2Json();
  52. WebClientUtility client = new WebClientUtility();
  53. client.Proxy = _proxy;
  54. #if DEBUG
  55. client.Proxy = null;
  56. #endif
  57. client.SetContentType("application/json");
  58. client.AddHeaders("Referer", "https://jinbao.pinduoduo.com/promotion/url-promotion");
  59. client.AddHeaders("Origin", "https://jinbao.pinduoduo.com");
  60. client.UserAgent = useragent;
  61. client.AddHeaders("Cookie", cookies);
  62. client.Post(data);
  63. var response = await client.RequestAsync(url, "POST", cancellationToken);
  64. string body = response.Body();
  65. //{"success":false,"errorCode":43001,"errorMsg":"会话已过期","result":null}
  66. var root = body.Convert2Object<PddTransferUrlResponse>();
  67. string message = string.Empty;
  68. if (!root.success)
  69. {
  70. message = $"{root.errorCode}:{root.errorMsg}";
  71. result.success = false;
  72. result.message = "转链失败";
  73. result.reason = message;
  74. _ = new LoggerLibrary("PddUnion", "transferUrl").Info(body).SaveAsync();
  75. return result;
  76. }
  77. if (string.IsNullOrEmpty(root.result?.multiGroupShortUrl))
  78. {
  79. result.success = false;
  80. result.message = "转链失败";
  81. result.reason = "无法转链";
  82. //_ = new LoggerLibrary("PddUnion", "transferUrl").Info(body).SaveAsync();
  83. return result;
  84. }
  85. if (!string.IsNullOrEmpty(root.result?.url))
  86. {
  87. result.itemId = root.result?.url.GetContentPart("goods_id=", "&");
  88. }
  89. result.success = true;
  90. result.message = "OK";
  91. result.link_type = LinkTypeEnum.goods;
  92. result.shortLinkurl = root.result?.multiGroupShortUrl;
  93. result.content = result.shortLinkurl;
  94. result.deeplink_url = GetDeeplink(result.shortLinkurl);
  95. return result;
  96. }
  97. public async Task<PddDataDTO> createPromotionUrl(PddDataDTO result, string sourceUrl, CancellationToken cancellationToken = default)
  98. {
  99. var ts = DateTime.Now.Convert2UnixTimestamp(true);
  100. string cookies = _account.cookies.Trim();
  101. string useragent = ProviderFakeUserAgent.RandomComputer;
  102. string url = "https://jinbao.pinduoduo.com/network/api/promotion/createPromotionUrl";
  103. //{"pid":"13848803_189356569","sourceUrl":"https://p.pinduoduo.com/1OAsct0r"}
  104. string goodsId = sourceUrl;
  105. var args = new
  106. {
  107. _account.pid,
  108. goodsId,
  109. generateOpenCoupon = true
  110. };
  111. /*
  112. {
  113. "mediaId": "9092702778",
  114. "pid": "13848803_189356569",
  115. "goodsId": "123",
  116. "generateOpenCoupon": true
  117. }
  118. */
  119. string data = args.Convert2Json();
  120. WebClientUtility client = new WebClientUtility();
  121. client.Proxy = _proxy;
  122. #if DEBUG
  123. client.Proxy = null;
  124. #endif
  125. client.SetContentType("application/json");
  126. client.AddHeaders("Referer", "https://jinbao.pinduoduo.com/promotion/url-promotion");
  127. client.AddHeaders("Origin", "https://jinbao.pinduoduo.com");
  128. client.UserAgent = useragent;
  129. client.AddHeaders("Cookie", cookies);
  130. client.Post(data);
  131. var response = await client.RequestAsync(url, "POST", cancellationToken);
  132. string body = response.Body();
  133. var root = body.Convert2Object<PddCreatePromotionUrlResponse>();
  134. string message = string.Empty;
  135. if (!root.success)
  136. {
  137. message = $"{root.errorCode}:{root.errorMsg}";
  138. result.success = false;
  139. result.message = "转链失败";
  140. result.reason = message;
  141. _ = new LoggerLibrary("PddUnion", "transferUrl").Info(body).SaveAsync();
  142. return result;
  143. }
  144. if (string.IsNullOrEmpty(root.result?.multiGroupShortUrl))
  145. {
  146. result.success = false;
  147. result.message = "转链失败";
  148. result.reason = "无法转链";
  149. //_ = new LoggerLibrary("PddUnion", "transferUrl").Info(body).SaveAsync();
  150. return result;
  151. }
  152. //goods_id=636365867069&pid=13848803_189356569&goods_sign=E9z2NkASdqlKuWDVwvfdqnADgCEqTQSt_JuMe2WC0G&zs_duo_id=25194414&cpsSign=CC_240807_13848803_189356569_fdbbdfa499058644becc9f8b3b7acaaf&_x_ddjb_act=
  153. if (!string.IsNullOrEmpty(root.result?.url))
  154. {
  155. result.itemId = root.result?.url.GetContentPart("goods_id=", "&");
  156. }
  157. result.success = true;
  158. result.message = "OK";
  159. result.link_type = LinkTypeEnum.goods;
  160. result.shortLinkurl = root.result?.multiGroupShortUrl;
  161. result.content = result.shortLinkurl;
  162. result.deeplink_url = GetDeeplink(result.shortLinkurl);
  163. return result;
  164. }
  165. }
  166. }