| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937 |
- using dodohold.core;
- using System.Text.RegularExpressions;
- using System.Diagnostics;
- using System.Text.Json;
- using TencentCloud.Fmu.V20191213.Models;
- using System;
- using MySqlX.XDevAPI;
- namespace molilian.core
- {
- public partial class AlimamaPlus
- {
- public void UnionParse2(string content, ref TkDataDTO result)
- {
- if ("veapi".Equals(_api) && _api_id > 0)
- {
- var account = VeapiPoolCore.Get(_api_id);
- if (account != null)
- {
- var core = new VeapiPlus(account.name, account.key, account.sessionKey);
- core.UnionParse(content, ref result);
- return;
- }
- }
- UnionParse(content, ref result);
- }
- public async Task<TkDataDTO> UnionParse2Async(string content, TkDataDTO result)
- {
- if ("veapi".Equals(_api) && _api_id > 0)
- {
- var account = VeapiPoolCore.Get(_api_id);
- if (account != null)
- {
- var core = new VeapiPlus(account.name, account.key, account.sessionKey);
- result = await core.UnionParseAsync(content, result);
- return result;
- }
- }
- result = await UnionParseAsync(content, result);
- return result;
- }
- /// <summary>
- /// 提取url里面的id参数
- /// </summary>
- /// <param name="url"></param>
- /// <returns></returns>
- static string? ExtractItemId(string url)
- {
- Match match = Regex.Match(url, @"(?:\?|&)id=(\d+)");
- if (match.Success)
- {
- return match.Groups[1].Value;
- }
- return null;
- }
- /// <summary>
- /// 是否淘宝链接
- /// </summary>
- /// <param name="url"></param>
- /// <returns></returns>
- private static (bool, string) IsTaobaoUrl(string url)
- {
- if (url.Contains("//a.m.taobao.com/i"))
- {
- //第一种提取方法
- string itemId = url.GetContentPart("//a.m.taobao.com/i", ".htm");
- if (!string.IsNullOrEmpty(itemId))
- {
- string resultUrl = $"https://item.taobao.com/item.htm?id={itemId}";
- return (true, resultUrl);
- }
- }
- if (url.Contains("//item.taobao.com/item.htm?") ||
- url.Contains("//h5.m.taobao.com/awp/core/detail.htm?") ||
- url.Contains("//new.m.taobao.com/detail.htm?") ||
- url.Contains("//outfliggys.m.taobao.com/app/trip/rx-travel-detail") ||
- url.Contains("//detail.m.tmall.com/item.htm?") ||
- url.Contains("//tmallx.tmall.com/app/tmallx-src/goods-detail") ||
- url.Contains("//detail.tmall.com/item.htm?") ||
- url.Contains("//detail.tmall.hk/hk/item.htm?"))
- {
- string? itemId = ExtractItemId(url);
- if (!string.IsNullOrEmpty(itemId))
- {
- string resultUrl = $"https://item.taobao.com/item.htm?id={itemId}";
- return (true, resultUrl);
- }
- }
- return (false, url);
- }
- /// <summary>
- /// 排除已知的淘客链接
- /// </summary>
- /// <param name="url"></param>
- /// <returns></returns>
- static bool IsAffLink(string url)
- {
- if (!url.StartsWith("https://") || !url.StartsWith("https://")) url = "https://" + url;
- Uri uri = new(url);
- if (uri.Host.Equals("s.click.taobao.com", StringComparison.OrdinalIgnoreCase) ||
- uri.Host.Equals("uland.taobao.com", StringComparison.OrdinalIgnoreCase))
- {
- return true;
- }
- //if (uri.Host.Equals("m.tb.cn", StringComparison.OrdinalIgnoreCase) &&
- // uri.AbsolutePath.StartsWith("/h.") &&
- // string.IsNullOrEmpty(uri.Query) && // No query parameters
- // !url.Contains("?tk=")) // No "tk" parameter
- //{
- // return true;
- //}
- return false;
- }
- /// <summary>
- /// 判断淘客的¥羊角符号
- /// </summary>
- /// <param name="content"></param>
- /// <returns></returns>
- static bool ContainsSpecialFormat(string content)
- {
- // 使用正则表达式匹配内容中是否含有特定格式的字符串
- //string pattern = @"¥[a-zA-Z0-9\s]+¥";
- string pattern = @"[$¥🗝₴€₤£₳✔《💰🔑🎵✔️💲🔐📲₡]+[a-zA-Z0-9\s]+[$¥🗝₴€₤£₳✔《💰🔑🎵✔️💲🔐📲₡]*";
- return Regex.IsMatch(content, pattern);
- }
- public TimeSpan GetRequestTimeout(int deduction = 0)
- {
- #if DEBUG
- //return TimeSpan.FromMilliseconds(10 * 1000);
- #endif
- if (_config.rt_max == 0) return TimeSpan.FromMilliseconds(1000);
- int timeout = _config.rt_max;
- if (deduction == 0) return TimeSpan.FromMilliseconds(timeout);
- timeout = timeout - deduction;
- if (timeout <= 200) return TimeSpan.FromMilliseconds(200);
- return TimeSpan.FromMilliseconds(timeout);
- }
- /// <summary>
- /// 从http获取跳转的url
- /// </summary>
- /// <param name="url"></param>
- /// <returns></returns>
- async Task<(bool, string)> GetDesiredUrlAsync(string url)
- {
- string result;
- try
- {
- Uri uri = new(url);
- if (!uri.Host.Equals("m.tb.cn", StringComparison.OrdinalIgnoreCase)) return (false, "不是淘宝短网址");
- string desiredUrlPattern = "var url = '(.*?)'";
- WebClientUtility client = new()
- {
- Proxy = _proxy,
- UserAgent = Sayaka.Common.ProviderFakeUserAgent.RandomComputer
- };
- #if DEBUG
- client.Proxy = null;
- #endif
- client.Timeout = GetRequestTimeout(0);
- var response = await client.RequestAsync(url);
- var responseBody = response.Body();
- result = responseBody;
- if (response.Successed)
- {
- if (response.ResponseMessage.IsSuccessStatusCode)
- {
- Match match = Regex.Match(responseBody, desiredUrlPattern);
- if (match.Success)
- {
- result = match.Groups[1].Value; // 返回匹配的 URL
- if (string.IsNullOrEmpty(result)) return (false, "没有匹配的URL");
- return (true, result);
- }
- }
- else
- {
- result = $"{response.ResponseMessage.StatusCode}\n{responseBody}";
- }
- }
- else
- {
- throw response.ResponseException;
- }
- }
- catch (Exception ex)
- {
- result = $"{ex.Message}\n{ex.StackTrace}";
- }
- return (false, result);
- }
- /// <summary>
- /// 从http获取跳转的url
- /// </summary>
- /// <param name="url"></param>
- /// <returns></returns>
- (bool, string) GetDesiredUrl(string url)
- {
- string result;
- try
- {
- Uri uri = new(url);
- if (!uri.Host.Equals("m.tb.cn", StringComparison.OrdinalIgnoreCase)) return (false, "不是淘宝短网址");
- string desiredUrlPattern = "var url = '(.*?)'";
- WebClientUtility client = new()
- {
- Proxy = _proxy,
- UserAgent = Sayaka.Common.ProviderFakeUserAgent.RandomComputer
- };
- #if DEBUG
- client.Proxy = null;
- #endif
- client.Timeout = GetRequestTimeout(0);
- var response = client.Request(url);
- var responseBody = response.Body();
- result = responseBody;
- if (response.Successed)
- {
- if (response.ResponseMessage.IsSuccessStatusCode)
- {
- Match match = Regex.Match(responseBody, desiredUrlPattern);
- if (match.Success)
- {
- result = match.Groups[1].Value; // 返回匹配的 URL
- if (string.IsNullOrEmpty(result)) return (false, "没有匹配的URL");
- return (true, result);
- }
- }
- else
- {
- result = $"{response.ResponseMessage.StatusCode}\n{responseBody}";
- }
- }
- else
- {
- throw response.ResponseException;
- }
- }
- catch (Exception ex)
- {
- result = $"{ex.Message}\n{ex.StackTrace}";
- }
- return (false, result);
- }
- private void InternalTextProcessing(string content, ref TkDataDTO result)
- {
- //(result.success, result.content, result.link_type, result.shortLinkurl) = InternalTextProcessing(content,ref result);
- bool success;
- string resultText;
- LinkTypeEnum link_type = LinkTypeEnum.unknown;
- string url = GetLink(content);
- if (!string.IsNullOrEmpty(url))
- {
- //排除已知的淘客链接
- if (IsAffLink(url))
- {
- result.success = false;
- result.content = "排除淘客链接";
- result.link_type = LinkTypeEnum.other_aff;
- result.shortLinkurl = url;
- return;
- //return (false, "排除淘客链接", LinkTypeEnum.other_aff, url);
- }
- //直接提取
- (success, resultText) = IsTaobaoUrl(url);
- if (success)
- {
- result.success = true;
- result.content = resultText;
- result.link_type = LinkTypeEnum.goods;
- result.shortLinkurl = resultText;
- return;
- //return (true, result, LinkTypeEnum.goods, result);
- }
- //从http获取跳转的url
- Stopwatch stopwatch = Stopwatch.StartNew();
- stopwatch.Start();
- (success, resultText) = GetDesiredUrl(url);
- stopwatch.Stop();
- // 获取执行时间
- result.elapsedTime2 = (int)stopwatch.ElapsedMilliseconds;
- if (success)
- {
- //排除已知的淘客链接
- if (IsAffLink(resultText))
- {
- result.success = false;
- result.content = "排除淘客链接";
- result.link_type = LinkTypeEnum.other_aff;
- result.shortLinkurl = url;
- return;
- //return (false, "排除淘客链接", LinkTypeEnum.other_aff, url);
- }
- (success, resultText) = IsTaobaoUrl(resultText);
- if (success)
- {
- result.success = true;
- result.content = resultText;
- result.link_type = LinkTypeEnum.goods;
- result.shortLinkurl = resultText;
- return;
- //return (true, resultText, LinkTypeEnum.goods, resultText);
- }
- link_type = GetLinkType(resultText);
- }
- else
- {
- link_type = GetLinkType(url);
- }
- result.success = false;
- result.content = resultText;
- result.link_type = link_type;
- result.shortLinkurl = url;
- return;
- //return (false, result, link_type, url);
- }
- //判断淘客的¥羊角符号
- if (ContainsSpecialFormat(content))
- {
- result.success = false;
- result.content = "排除淘口令";
- result.link_type = LinkTypeEnum.other_aff;
- result.shortLinkurl = null;
- return;
- //return (false, "排除淘口令", LinkTypeEnum.other_aff, null);
- }
- //todo 临时应急 0614
- //return (false, "纯口令 没链接", link_type, null);
- result.success = false;
- result.content = "纯口令 没链接";
- result.link_type = LinkTypeEnum.other_aff;
- result.shortLinkurl = null;
- }
- private async Task<TkDataDTO> InternalTextProcessingAsync(string content, TkDataDTO result)
- {
- //(result.success, result.content, result.link_type, result.shortLinkurl) = InternalTextProcessing(content,ref result);
- bool success;
- string resultText;
- LinkTypeEnum link_type = LinkTypeEnum.unknown;
- string url = GetLink(content);
- if (!string.IsNullOrEmpty(url))
- {
- //排除已知的淘客链接
- if (IsAffLink(url))
- {
- result.success = false;
- result.content = "排除淘客链接";
- result.link_type = LinkTypeEnum.other_aff;
- result.shortLinkurl = url;
- return result;
- //return (false, "排除淘客链接", LinkTypeEnum.other_aff, url);
- }
- //直接提取
- (success, resultText) = IsTaobaoUrl(url);
- if (success)
- {
- result.success = true;
- result.content = resultText;
- result.link_type = LinkTypeEnum.goods;
- result.shortLinkurl = resultText;
- return result;
- //return (true, result, LinkTypeEnum.goods, result);
- }
- //从http获取跳转的url
- Stopwatch stopwatch = Stopwatch.StartNew();
- stopwatch.Start();
- (success, resultText) = await GetDesiredUrlAsync(url);
- stopwatch.Stop();
- // 获取执行时间
- result.elapsedTime2 = (int)stopwatch.ElapsedMilliseconds;
- if (success)
- {
- //排除已知的淘客链接
- if (IsAffLink(resultText))
- {
- result.success = false;
- result.content = "排除淘客链接";
- result.link_type = LinkTypeEnum.other_aff;
- result.shortLinkurl = url;
- return result;
- //return (false, "排除淘客链接", LinkTypeEnum.other_aff, url);
- }
- (success, resultText) = IsTaobaoUrl(resultText);
- if (success)
- {
- result.success = true;
- result.content = resultText;
- result.link_type = LinkTypeEnum.goods;
- result.shortLinkurl = resultText;
- return result;
- //return (true, resultText, LinkTypeEnum.goods, resultText);
- }
- link_type = GetLinkType(resultText);
- }
- else
- {
- link_type = GetLinkType(url);
- }
- result.success = false;
- result.content = resultText;
- result.link_type = link_type;
- result.shortLinkurl = url;
- return result;
- //return (false, result, link_type, url);
- }
- //判断淘客的¥羊角符号
- if (ContainsSpecialFormat(content))
- {
- result.success = false;
- result.content = "排除淘口令";
- result.link_type = LinkTypeEnum.other_aff;
- result.shortLinkurl = null;
- return result;
- //return (false, "排除淘口令", LinkTypeEnum.other_aff, null);
- }
- //todo 临时应急 0614
- //return (false, "纯口令 没链接", link_type, null);
- result.success = false;
- result.content = "纯口令 没链接";
- result.link_type = LinkTypeEnum.other_aff;
- result.shortLinkurl = null;
- return result;
- }
- private (bool, string, LinkTypeEnum, string) InternalTextProcessing222(string content)
- {
- bool success;
- string result;
- LinkTypeEnum link_type = LinkTypeEnum.unknown;
- string url = GetLink(content);
- if (!string.IsNullOrEmpty(url))
- {
- //排除已知的淘客链接
- if (IsAffLink(url)) return (false, "排除淘客链接", LinkTypeEnum.other_aff, url);
- //直接提取
- (success, result) = IsTaobaoUrl(url);
- if (success) return (true, result, LinkTypeEnum.goods, result);
- //https://uland.taobao.com/coupon/edetail?af=4&e=%2B0aTAvEt16MoRnbUfHBdCarU9683KT3AsB67n92UtFJMmdsrkidbOWBzzpT26idJbwZX%2BHY%2B8QD9zJXNeOSc1euXSPKeLUBBWr02LqsxPV8Bf6pSMNy5GSw6iqMObXLLk3toOSlQXmUUcLJJYP0Uq5lvDADUDTeHRiuxU0i9W%2BtrC8Oh6piEfdwyUIuKQbeM8rUgQejRG616MoRnbUfHBdCarU9683KT3AsB67n92UtFv6uIFQszbmWWPZ8ka7%2BkV5xXydLt%2FcnuZ4%2BBFYnwwiUaCWC3TckcCwMW8xe3XqOGsb8uv9wbhxdkKJ0hxTrTkj7DNgliTXDluAYBRglsbQ%3D%3D&traceId=212cbaa417178512249145009e05a8&union_lens=lensId%3APUB%401717851219%402103c04a_0c89_18ff7e96612_9d39%40031w5YJSc7jl3U7gYjdvuCMM%40eyJmbG9vcklkIjo4NTAvEt16MoRnbUfHBdCarU9683JDaxNfPy83okP3kLScwCkGiuMcyC4PcynGV0YWlsX2h0bSIsInNyY0Zsb29ySWQiiOiiI4MDY3NCIsImNyZWF0aXZpdHlHcm91cElkIjowfQieie%3BtkScm%3AselectionPlaza_site_4358%3Bscm%3A1007.30148.329090.pub_search-item_c02df4bb-631f-4cc1-a9d5-abe802b8e134_&un=bfc196d23e155d289f2917200ca32a93&share_crt_v=1&un_site=0&ut_sk=1.utdid_null_1717851225204.TaoPassword-Outside.lianmeng-app&spm=a2159r.13376465.0.0&sp_tk=d2hLeFdDNHpKb3Y%3D&cpp=1&shareurl=true&short_name=h.gVx6mvI
- //从http获取跳转的url
- (success, result) = GetDesiredUrl(url);
- if (success)
- {
- //排除已知的淘客链接
- if (IsAffLink(result)) return (false, "排除淘客链接", LinkTypeEnum.other_aff, url);
- (success, result) = IsTaobaoUrl(result);
- if (success) return (true, result, LinkTypeEnum.goods, result);
- link_type = GetLinkType(result);
- }
- else
- {
- link_type = GetLinkType(url);
- }
- return (false, result, link_type, url);
- }
- //判断淘客的¥羊角符号
- if (ContainsSpecialFormat(content)) return (false, "排除淘口令", LinkTypeEnum.other_aff, null);
- //todo 临时应急 0614
- //return (false, "纯口令 没链接", link_type, null);
- return (false, "纯口令 没链接", LinkTypeEnum.other_aff, null);
- }
- private LinkTypeEnum GetLinkType(string url)
- {
- if (string.IsNullOrEmpty(url)) return LinkTypeEnum.unknown;
- if (url.StartsWith("https://huodong.m.taobao.com/act/talent/live.html")) return LinkTypeEnum.live;
- if (url.StartsWith("https://web.m.taobao.com/app/tnode/web/index")) return LinkTypeEnum.video;
- string pattern = @"^https://shop\d+\.m\.taobao\.com";
- if (Regex.IsMatch(url, pattern))
- {
- return LinkTypeEnum.profile;
- }
- return LinkTypeEnum.unknown;
- }
- private async Task<TkDataDTO> alimamaParseAsync(string content, TkDataDTO result)
- {
- string t = $"{DateTime.Now.Convert2UnixTimestamp(true)}";
- Random random = new();
- double randomNumber = random.NextDouble();
- string randomString = randomNumber.ToString()[2..];
- string cna = _cookies.GetContentPart("cna=", ";");
- string firstFiveCharacters = cna[..Math.Min(5, cna.Length)];
- var variableMap = new
- {
- url = content,
- union_lens = $"b_pvid:a219t._portal_v2_tool_links_page_home_index_htm_{t}_{randomString}_{firstFiveCharacters}",
- lensScene = "PUB",
- spmB = "_portal_v2_tool_links_page_home_index_htm"
- }.Convert2Json(true).UrlEncode();
- variableMap = variableMap.Replace(" ", "%20");
- string url = "https://pub.alimama.com/openapi/param2/1/gateway.unionpub/xt.entry.json?" +
- $"t={t}&_tb_token_={_tb_token}&floorId={_floorId}&refpid={_refpid}&variableMap={variableMap}";
- Stopwatch stopwatch = Stopwatch.StartNew();
- stopwatch.Start();
- var client = new WebClientUtility().SetContentType("application/json;charset=utf-8")
- .AddHeaders("X-Requested-With", "XMLHttpRequest")
- .AddHeaders("Cookie", _cookies);
- client.Proxy = _proxy;
- #if DEBUG
- client.Proxy = null;
- #endif
- if (!string.IsNullOrEmpty(_user_agent)) client.UserAgent = _user_agent;
- client.Timeout = GetRequestTimeout(result.elapsedTime2);
- //var response = client.Request(url);
- var response = await client.RequestAsync(url);
-
- stopwatch.Stop();
- result.elapsedTime3 = (int)stopwatch.ElapsedMilliseconds;
- var body = string.Empty;
- try
- {
- if (!response.Successed)
- {
- result.channel = TkChannelEnum.tb;
- result.accountId = _accountId;
- result.accountName = _accountName;
- result.link_type = LinkTypeEnum.unknown;
- result.success = false;
- result.message = "fail";
- if (response.ResponseException != null)
- {
- _ = new LoggerLibrary("api_error", "fail")
- .Info(response.ResponseException.Message, response.ResponseException.StackTrace)
- .SaveAsync();
- throw response.ResponseException;
- }
- return result;
- }
- body = response.Body();
- JsonElement root = body.Convert2JsonElement();
- bool success = root.Read<bool>("success", false);
- string message = root.Read("message", string.Empty);
- string info_message = root.PathRead("info.message", string.Empty);
- if (!string.IsNullOrEmpty(info_message)) message = info_message;
- string taoToken = root.PathRead("data.taoToken", string.Empty);
- string shortLinkurl = root.PathRead("data.shortLinkurl", string.Empty);
- string couponLinkTaoToken = root.PathRead("data.couponLinkTaoToken", string.Empty);
- string couponShortLinkUrl = root.PathRead("data.couponShortLinkUrl", string.Empty);
- decimal couponAmount = root.PathRead<decimal>("data.couponAmount", 0);
- string itemId = root.PathRead("data.itemId", string.Empty);
- string itemName = root.PathRead("data.itemName", string.Empty);
- decimal promotionPrice = root.PathRead<decimal>("data.promotionPrice", 0);
- string sellerNickName = root.PathRead("data.sellerNickName", string.Empty);
- string shopTitle = root.PathRead("data.shopTitle", string.Empty);
- string pic = root.PathRead("data.pic", string.Empty);
- string qrCodeUrl = root.PathRead("data.qrCodeUrl", string.Empty);
- if (response.ResponseMessage != null)
- {
- switch (response.ResponseMessage.StatusCode)
- {
- case System.Net.HttpStatusCode.OK:
- {
- if (couponAmount > 0 && !string.IsNullOrEmpty(couponLinkTaoToken) && !string.IsNullOrEmpty(couponShortLinkUrl))
- {
- taoToken = couponLinkTaoToken;
- shortLinkurl = couponShortLinkUrl;
- }
- string shortLink = GetLink(taoToken);
- content = ReplaceUrls(content, shortLink);
- }
- break;
- case System.Net.HttpStatusCode.Found:
- string location = response.ResponseMessage.Headers.Location.OriginalString;
- if (!string.IsNullOrEmpty(location) && location.Contains("www.alimama.com/member/login.htm"))
- {
- success = false;
- message = "nologin";
- }
- break;
- default:
- {
- success = false;
- message = "other";
- }
- break;
- }
- }
- if (!success)
- {
- shortLinkurl = GetLink(content);
- switch (message)
- {
- case "该链接不支持转化,请更换链接尝试":
- case "网络错误":
- break;
- default:
- var _headers = response.ResponseMessage.Headers;
- var headers = "";
- foreach (var h in _headers)
- {
- foreach (var Value in h.Value)
- {
- headers += $"{h.Key}: {Value}\n";
- }
- }
- _ = new LoggerLibrary("api_error", "fail")
- .Info(message, content)
- .Info(headers, body)
- .SaveAsync();
- break;
- }
- }
- string deeplink_url = GetDeeplink(shortLinkurl);
- result.channel = TkChannelEnum.tb;
- result.accountId = _accountId;
- result.accountName = _accountName;
- result.link_type = success ? LinkTypeEnum.goods : result.link_type;
- result.success = success;
- result.message = message;
- result.content = content;
- result.couponAmount = couponAmount;
- result.taoToken = taoToken;
- result.shortLinkurl = shortLinkurl;
- result.deeplink_url = deeplink_url;
- result.itemId = itemId;
- result.itemName = itemName;
- result.promotionPrice = promotionPrice;
- result.sellerNickName = sellerNickName;
- result.shopTitle = shopTitle;
- result.pic = pic;
- result.qrCodeUrl = qrCodeUrl;
- }
- catch
- {
- if (response.ResponseMessage?.StatusCode == System.Net.HttpStatusCode.OK)
- {
- if (body.Contains("<p>抱歉!页面无法访问……</p>"))
- {
- throw new APIException("抱歉!页面无法访问……");
- }
- }
- throw;
- }
- return result;
- }
- private TkDataDTO alimamaParse(string content, TkDataDTO result)
- {
- string t = $"{DateTime.Now.Convert2UnixTimestamp(true)}";
- Random random = new();
- double randomNumber = random.NextDouble();
- string randomString = randomNumber.ToString()[2..];
- string cna = _cookies.GetContentPart("cna=", ";");
- string firstFiveCharacters = cna[..Math.Min(5, cna.Length)];
- var variableMap = new
- {
- url = content,
- union_lens = $"b_pvid:a219t._portal_v2_tool_links_page_home_index_htm_{t}_{randomString}_{firstFiveCharacters}",
- lensScene = "PUB",
- spmB = "_portal_v2_tool_links_page_home_index_htm"
- }.Convert2Json(true).UrlEncode();
- variableMap = variableMap.Replace(" ", "%20");
- string url = "https://pub.alimama.com/openapi/param2/1/gateway.unionpub/xt.entry.json?" +
- $"t={t}&_tb_token_={_tb_token}&floorId={_floorId}&refpid={_refpid}&variableMap={variableMap}";
- Stopwatch stopwatch = Stopwatch.StartNew();
- stopwatch.Start();
- var client = new WebClientUtility().SetContentType("application/json;charset=utf-8")
- .AddHeaders("X-Requested-With", "XMLHttpRequest")
- .AddHeaders("Cookie", _cookies);
- client.Proxy = _proxy;
- if (!string.IsNullOrEmpty(_user_agent)) client.UserAgent = _user_agent;
- #if DEBUG
- client.Proxy = null;
- url = "https://47.246.177.226/openapi/param2/1/gateway.unionpub/xt.entry.json?" +
- $"t={t}&_tb_token_={_tb_token}&floorId={_floorId}&refpid={_refpid}&variableMap={variableMap}";
- client.Headers["Host"] = "pub.alimama.com";
- #endif
- client.Timeout = GetRequestTimeout(result.elapsedTime2);
- //var response = client.Request(url);
- var response = client.Request(url);
- stopwatch.Stop();
- result.elapsedTime3 = (int)stopwatch.ElapsedMilliseconds;
- var body = string.Empty;
- try
- {
- if (!response.Successed)
- {
- result.channel = TkChannelEnum.tb;
- result.accountId = _accountId;
- result.accountName = _accountName;
- result.link_type = LinkTypeEnum.unknown;
- result.success = false;
- result.message = "fail";
- if (response.ResponseException != null)
- {
- _ = new LoggerLibrary("api_error", "fail")
- .Info(response.ResponseException.Message, response.ResponseException.StackTrace)
- .SaveAsync();
- throw response.ResponseException;
- }
- return result;
- }
- body = response.Body();
- //{"code":601,"info":{"ok":false,"message":"nologin"}}
- JsonElement root = body.Convert2JsonElement();
- bool success = root.Read<bool>("success", false);
- string message = root.Read("message", string.Empty);
- string info_message = root.PathRead("info.message", string.Empty);
- if (!string.IsNullOrEmpty(info_message)) message = info_message;
- string taoToken = root.PathRead("data.taoToken", string.Empty);
- string shortLinkurl = root.PathRead("data.shortLinkurl", string.Empty);
- string couponLinkTaoToken = root.PathRead("data.couponLinkTaoToken", string.Empty);
- string couponShortLinkUrl = root.PathRead("data.couponShortLinkUrl", string.Empty);
- decimal couponAmount = root.PathRead<decimal>("data.couponAmount", 0);
- string couponEffectiveEndTime = root.PathRead("data.couponEffectiveEndTime", string.Empty);
- string couponEffectiveStartTime = root.PathRead("data.couponEffectiveStartTime", string.Empty);
- string itemId = root.PathRead("data.itemId", string.Empty);
- string itemName = root.PathRead("data.itemName", string.Empty);
- decimal promotionPrice = root.PathRead<decimal>("data.promotionPrice", 0);
- string sellerNickName = root.PathRead("data.sellerNickName", string.Empty);
- string shopTitle = root.PathRead("data.shopTitle", string.Empty);
- string pic = root.PathRead("data.pic", string.Empty);
- string qrCodeUrl = root.PathRead("data.qrCodeUrl", string.Empty);
- if (response.ResponseMessage != null)
- {
- switch (response.ResponseMessage.StatusCode)
- {
- case System.Net.HttpStatusCode.OK:
- {
- if (couponAmount > 0 && !string.IsNullOrEmpty(couponLinkTaoToken) && !string.IsNullOrEmpty(couponShortLinkUrl))
- {
- taoToken = couponLinkTaoToken;
- shortLinkurl = couponShortLinkUrl;
- }
- string shortLink = GetLink(taoToken);
- content = ReplaceUrls(content, shortLink);
- }
- break;
- case System.Net.HttpStatusCode.Found:
- string location = response.ResponseMessage.Headers.Location.OriginalString;
- if (!string.IsNullOrEmpty(location) && location.Contains("www.alimama.com/member/login.htm"))
- {
- success = false;
- message = "nologin";
- }
- break;
- default:
- {
- success = false;
- message = "other";
- }
- break;
- }
- }
- if (!success)
- {
- shortLinkurl = GetLink(content);
- switch (message)
- {
- case "该链接不支持转化,请更换链接尝试":
- case "网络错误":
- break;
- default:
- var _headers = response.ResponseMessage.Headers;
- var headers = "";
- foreach (var h in _headers)
- {
- foreach (var Value in h.Value)
- {
- headers += $"{h.Key}: {Value}\n";
- }
- }
- _ = new LoggerLibrary("api_error", "fail")
- .Info(message, content)
- .Info(headers, body)
- .SaveAsync();
- break;
- }
- }
- if (success)
- {
- if (string.IsNullOrEmpty(itemName))
- {
- itemName = GetTitle(taoToken);
- }
- }
- else
- {
- itemName = GetTitle(content);
- }
- string deeplink_url = GetDeeplink(shortLinkurl);
- result.channel = TkChannelEnum.tb;
- result.accountId = _accountId;
- result.accountName = _accountName;
- if (success)
- {
- switch (result.link_type)
- {
- case LinkTypeEnum.profile:
- case LinkTypeEnum.goods:
- break;
- default:
- result.link_type = LinkTypeEnum.goods;
- break;
- }
- }
- result.success = success;
- result.message = message;
- result.content = content;
- result.couponAmount = couponAmount;
- result.couponEffectiveEndTime = couponEffectiveEndTime;
- result.couponEffectiveStartTime = couponEffectiveStartTime;
- result.taoToken = taoToken;
- result.shortLinkurl = shortLinkurl;
- result.deeplink_url = deeplink_url;
- result.itemId = itemId;
- result.itemName = itemName;
- result.promotionPrice = promotionPrice;
- result.sellerNickName = sellerNickName;
- result.shopTitle = shopTitle;
- result.pic = pic;
- result.qrCodeUrl = qrCodeUrl;
- }
- catch
- {
- if (response.ResponseMessage?.StatusCode == System.Net.HttpStatusCode.OK)
- {
- if (body.Contains("<p>抱歉!页面无法访问……</p>"))
- {
- throw new APIException("抱歉!页面无法访问……");
- }
- }
- throw;
- }
- return result;
- }
- }
- }
|