| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- 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;
- namespace molilian.api.Controllers
- {
- [ApiController]
- [Route("api/[action]")]
- public class SimilarController : ControllerBase
- {
- protected IHttpContextAccessor _accessor;
- public SimilarController(IHttpContextAccessor accessor)
- {
- _accessor = accessor;
- }
- [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);
- //验证签名
- 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 TaokeOpenCore.PromotionQueryAsync(img, oaid, ip);
- }
- [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);
- #if DEBUG
- ip = "127.0.0.1";
- oaid = "test-oaid";
- #endif
- if (!string.IsNullOrEmpty(url))
- {
- var bytes = new WebClientUtility().Request(url).ResponseBody;
- img = Convert.ToBase64String(bytes);
- }
- return await TaokeOpenCore.PromotionQueryAsync(img, oaid, ip);
- }
-
- }
- }
|