| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- 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 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 = ApiAccountCore.GetOne(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);
- }
- [HttpPost]
- public async Task<ActionResult> unsafePromotionQuery([FromBody] JsonElement form)
- {
- 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 debug = form.Read("debug", false);
- 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);
- }
- return new APIResult(new { msg = "ok" });
- }
- return await core.PromotionQueryAsync(img, oaid, ip, scene, recommand, debug, aid);
- }
- }
- }
|