| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- using molilian.core;
- using dodohold.core;
- using Microsoft.AspNetCore.Mvc;
- using Org.BouncyCastle.Ocsp;
- using System.Text.Json;
- using System.Runtime.InteropServices;
- using System.Net;
- using System.Security.Cryptography;
- using Microsoft.AspNetCore.Authentication;
- using TencentCloud.Ecm.V20190719.Models;
- using COSXML.Network;
- using System.Linq;
- using static dodohold.core.ZTOExpress.CreateOrderArgs;
- using TencentCloud.Lighthouse.V20200324.Models;
- using TencentCloud.Ame.V20190916.Models;
- using TencentCloud.Omics.V20221128.Models;
- using System.Threading.Channels;
- namespace molilian.api.Controllers
- {
- [ApiController]
- [Route("api/[action]")]
- public class ApiController : ControllerBase
- {
- protected IHttpContextAccessor _accessor;
- TaokeOpenCore core;
- public ApiController(IHttpContextAccessor accessor)
- {
- _accessor = accessor;
- core = new TaokeOpenCore();
- }
- //[HttpGet]
- //public async Task<ActionResult> RequestAsync([FromQuery] string url, [FromQuery] int proxyId)
- //{
- // if (string.IsNullOrEmpty(url))
- // {
- // return BadRequest("URL cannot be empty");
- // }
- // var proxy = ProxyNodesCore.GetOne(proxyId);
- // if (proxy == null)
- // {
- // return Unauthorized("Invalid proxy configuration");
- // }
- // WebClientUtility cli = new()
- // {
- // Proxy = proxy
- // };
- // await cli.RequestAsync(url);
- // var content = cli.Body();
- // var contentType = cli.ResponseMessage.Content.Headers.ContentType?.MediaType ?? "text/plain";
- // return Content(content, contentType);
- //}
- [HttpGet]
- public async Task<ActionResult> RequestAsync([FromQuery] string url, [FromQuery] string proxy)
- {
- if (string.IsNullOrEmpty(url))
- {
- return BadRequest("URL cannot be empty");
- }
- WebProxy _proxy = ProxyManager.Parse(proxy);
- WebClientUtility cli = new();
- cli.Proxy = _proxy;
- cli.Timeout = TimeSpan.FromSeconds(10);
- await cli.RequestAsync(url);
- if (cli.Successed)
- {
- var content = cli.Body();
- var contentType = cli.ResponseMessage.Content.Headers.ContentType?.MediaType ?? "text/plain";
- return Content(content, contentType);
- }
- throw cli.ResponseException;
- }
- [HttpPost]
- public async Task<ActionResult> PromotionQuery([FromBody] JsonElement form, [FromQuery] string a = "", [FromQuery] int t = 0, [FromQuery] string sign = "")
- {
- var img = form.Read("img", string.Empty);
- var url = form.Read("url", string.Empty);
- var ip = form.Read("ip", string.Empty);
- var oaid = form.Read("oaid", string.Empty);
- var scene = form.Read("scene", string.Empty);
- var recommand = form.Read("recommand", true);
- var useCouponLinkFirst = form.Read("useCouponLinkFirst", true);
- var aid = form.Read("aid", 0);
- //验证签名
- if (string.IsNullOrEmpty(a) || string.IsNullOrEmpty(sign))
- {
- return new APIResult(new { success = false, message = "验证错误" }, APIResultCodeEnum.Unauthorized);
- }
- DateTime time1 = t.Convert2Datetime();
- if (time1 < DateTime.Now.AddMinutes(-10))
- {
- return new APIResult(new { success = false, message = "验证错误2" }, APIResultCodeEnum.Unauthorized);
- }
- var account = await ApiAccountCore.GetOneAsync(a);
- if (account == null)
- {
- return new APIResult(new { success = false, message = "验证错误3" }, APIResultCodeEnum.Unauthorized);
- }
- string app_sign = $"{account.api_secret}@{t}".MD5();
- if (sign != app_sign)
- {
- return new APIResult(new { success = false, message = "验证错误4" }, APIResultCodeEnum.Unauthorized);
- }
- if (!string.IsNullOrEmpty(url))
- {
- var bytes = new WebClientUtility().Request(url).ResponseBody;
- img = Convert.ToBase64String(bytes);
- }
- return await core.PromotionQueryAsync(img, oaid, ip, scene, recommand, false, aid, useCouponLinkFirst);
- }
- [HttpPost]
- public async Task<ActionResult> unsafePromotionQuery([FromBody] JsonElement form)
- {
- var img = form.Read("img", string.Empty);
- var url = form.Read("url", string.Empty);
- var tkl = form.Read("tkl", string.Empty);
- var itemid = form.Read("itemid", string.Empty);
- var ip = form.Read("ip", string.Empty);
- var oaid = form.Read("oaid", string.Empty);
- var scene = form.Read("scene", string.Empty);
- var recommand = form.Read("recommand", true);
- var debug = form.Read("debug", false);
- var useCouponLinkFirst = form.Read("useCouponLinkFirst", true);
- var aid = form.Read("aid", 0);
- int count = form.Read("count", 0);
- if (!string.IsNullOrEmpty(url))
- {
- var bytes = new WebClientUtility().Request(url).ResponseBody;
- img = Convert.ToBase64String(bytes);
- }
- if (string.IsNullOrEmpty(oaid))
- {
- Random rand = new Random();
- oaid = $"{rand.Next(100000, 999999)}-{rand.Next(100000, 999999)}-{rand.Next(100000, 999999)}";
- }
- if (count > 1)
- {
- for (int i = 0; i < count; i++)
- {
- _ = core.PromotionQueryAsync(img, oaid, ip, scene, recommand, debug, aid, useCouponLinkFirst);
- }
- return new APIResult(new { msg = "ok" });
- }
- // 从口令解析商品图 临时需求
- if (!string.IsNullOrEmpty(tkl))
- {
- string goods_url = AlimamaPlus.GetLink(tkl);
- (bool successed, string itemUrl) = AlimamaPlus.GetItemUrl(goods_url);
- if (successed && !string.IsNullOrEmpty(itemUrl))
- {
- itemid = AlimamaPlus.ExtractItemId(itemUrl);
- (APIResult target, PromotionQueryDTO data) = await core.PromotionQueryByItemIdAsync(itemid, oaid, ip, scene, recommand, debug, aid);
- if (data != null)
- {
- url = data.PromotionImg[0].pic;
- if (!string.IsNullOrEmpty(url))
- {
- var bytes = new WebClientUtility().Request(url).ResponseBody;
- img = Convert.ToBase64String(bytes);
- }
- }
- return await core.PromotionQueryAsync(img, oaid, ip, scene, recommand, debug, aid, useCouponLinkFirst);
- }
- if (!string.IsNullOrEmpty(itemid))
- {
- (APIResult result, PromotionQueryDTO data) = await core.PromotionQueryByItemIdAsync(itemid, oaid, ip, scene, recommand, debug, aid, useCouponLinkFirst);
- return result;
- }
- }
- return await core.PromotionQueryAsync(img, oaid, ip, scene, recommand, debug, aid, useCouponLinkFirst);
- }
- [HttpGet]
- public async Task<ActionResult> PromotionQuerySampleLogs([FromQuery] int n = 20)
- {
- int count = Math.Clamp(n, 1, 100);
- string logDir = Path.Combine(AppContext.BaseDirectory, "log", "promotion_query_samples");
- if (!Directory.Exists(logDir))
- {
- return new APIResult(new
- {
- success = true,
- count = 0,
- logs = Array.Empty<object>()
- });
- }
- var files = Directory.EnumerateFiles(logDir, "*.log", SearchOption.TopDirectoryOnly)
- .Where(file => !Path.GetFileName(file).StartsWith("write_error_", StringComparison.OrdinalIgnoreCase))
- .Select(file => new FileInfo(file))
- .OrderByDescending(file => file.LastWriteTime)
- .Take(count)
- .ToList();
- var logs = new List<object>();
- foreach (var file in files)
- {
- logs.Add(new
- {
- fileName = file.Name,
- writeTime = file.LastWriteTime.ToString("yyyy-MM-dd HH:mm:ss.fff"),
- content = await System.IO.File.ReadAllTextAsync(file.FullName)
- });
- }
- return new APIResult(new
- {
- success = true,
- count = logs.Count,
- logs
- });
- }
- }
- }
|