using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc.Controllers; using Microsoft.AspNetCore.Mvc.Filters; using System; using System.Collections.Generic; using System.Linq; using System.Text; using dodohold.core; using Spire.Pdf.Exporting.XPS.Schema; using System.Xml.Linq; using System.Net; using TencentCloud.Mrs.V20200910.Models; namespace molilian.core { public partial class TkPoolCore { public enum TkAction { all, parse, coupon, promotionQuery } private static string _end_point; static TkPoolCore() { _end_point = Environment.GetEnvironmentVariable("EndPoint"); } private static readonly object _lockObj = new(); private static IEnumerable _cached; public static TkPoolDTO? GetOne(TkAction action) { var list = List(); if (!list.Any()) return null; return list.Where(e => FilterNodes(e, action)).OrderBy(l => Guid.NewGuid()).FirstOrDefault(); } public static TkPoolDTO? GetOne(int id) { var list = List(); if (!list.Any()) return null; return list.Where(e => e.id == id).FirstOrDefault(); } private static bool FilterNodes(TkPoolDTO item, TkAction action) { if (!string.IsNullOrEmpty(item.suspended_endpoint) && item.suspended_endpoint.Contains($"{_end_point}|")) return false; if (!string.IsNullOrEmpty(_end_point) && !string.IsNullOrEmpty(item.end_point)) { if (item.end_point != _end_point) return false; } // 使用初始化参数创建工作时间表 if (!new WorkSchedule(item.time_range).IsWorkHour()) return false; if (item.daily_calls_limit > 0) { int daily_num = RiskControlCore.GetCalls(TkChannelEnum.tb, item.id, DateTime.Now.ToString("yyyyMMdd")); if (daily_num >= item.daily_calls_limit) return false; } if (item.hourly_calls_limit > 0) { int hourly_num = RiskControlCore.GetCalls(TkChannelEnum.tb, item.id, DateTime.Now.ToString("yyyyMMddHH")); if (hourly_num >= item.hourly_calls_limit) return false; } switch (action) { case TkAction.parse: if (!item.enable_parse) return false; break; case TkAction.promotionQuery: if (!item.enable_promotionQuery) return false; break; case TkAction.coupon: if (!item.enable_coupon) return false; break; } if (item.daily_income_limit == 0) return true; decimal income_amt = RiskControlCore.GetIncomeAmt(TkChannelEnum.tb, $"{item.id}"); return income_amt < item.daily_income_limit; } public static IEnumerable List(bool force = false) { if (!force && _cached != null) return _cached; string cache_key = $"cache:tk_pool"; var list = RedisHelper.Get>(cache_key); if (force || list == null) { lock (_lockObj) { list = new DBContext.Table("tk_pool") .Where("status=@status", new { status = 1 }) .Select(); list = new DBContext.Table("tk_pool") .Where("status=@status", new { status = 1 }) .Select(); if (list == null) return default; foreach (var item in list) { RiskControlCore.SetCalls(TkChannelEnum.tb, item.id, DateTime.Now.ToString("yyyyMMddHH"), item.current_hourly_calls); RiskControlCore.SetCalls(TkChannelEnum.tb, item.id, DateTime.Now.ToString("yyyyMMdd"), item.current_daily_calls); } RedisHelper.Set(cache_key, list, 30 * 86400); } } _cached = list; return list; } public static void Refresh() { _ = List(true); } public static void UpdateDrawBalance(string name, decimal amout) { new DBContext.Table("tk_pool") .Add("draw_balance", amout) .Where("name=@name", new { name }) .Update(); _ = List(true); } public static void Suspend(string endpoint, int accountId, string name, string content) { string cache_key = $"cache:tk_pool:{accountId}:suspend"; long count = RedisHelper.IncrBy(cache_key); RedisHelper.Expire(cache_key, 10); if (count > 1) return; var update = new DBContext.Table("tk_pool").Add("suspended_endpoint:", $"CONCAT(suspended_endpoint, '{endpoint},')"); if (accountId > 0) { update.Where("id=@accountId", new { accountId }).Update(); } else { update.Where("name=@name", new { name }).Update(); } _ = List(true); NotifyCore.Notify(new NifyMessage { message = $"【淘客{accountId}:{name}】{endpoint} 暂停", priority = NifyMessagePriority.high, tags = ["red_circle"] }); NotifyCore.AnPushNotify("暂停", $"【淘客{accountId}:{name}】{endpoint} 暂停"); EndPointCore.NotifyReload(true); } public static void Disabled(int accountId, string name, string content) { #if DEBUG #else #endif string cache_key = $"cache:tk_pool:{accountId}:disabled"; long count = RedisHelper.IncrBy(cache_key); RedisHelper.Expire(cache_key, 10); if (count > 1) return; var update = new DBContext.Table("tk_pool").Add("status", 0); if (accountId > 0) { update.Where("id=@accountId", new { accountId }).Update(); } else { update.Where("name=@name", new { name }).Update(); } _ = List(true); NotifyCore.Notify(new NifyMessage { message = $"【淘客{accountId}:{name}】cookie 掉线\n\n{content}", priority = NifyMessagePriority.high, tags = ["red_circle"] }); NotifyCore.AnPushNotify("掉线", $"【淘客{accountId}:{name}】cookie 掉线"); EndPointCore.NotifyReload(true); } public static int UpdateCookies(string cookies, string user_agent) { if (string.IsNullOrEmpty(cookies)) return 0; cookies += ";"; string dnk = cookies.GetContentPart("dnk=", ";"); string company = dnk; int accountId = 0; string tb_token = cookies.GetContentPart("_tb_token_=", ";"); if (string.IsNullOrEmpty(dnk) || string.IsNullOrEmpty(tb_token)) return 0; var exist = new DBContext.Table("tk_pool").Fields("id, name, company, refpid, status").Get("name=@dnk", new { dnk }); if (exist != null) { int status = exist.status; string refpid = exist.refpid; company = exist.company; accountId = exist.id; if (!string.IsNullOrEmpty(refpid)) status = 1; new DBContext.Table("tk_pool") .Add("name", dnk) .Add("tb_token", tb_token) .Add("cookies", cookies) .Add("user_agent", user_agent) .Add("status", status) .Add("suspended_endpoint", string.Empty) .Add("last_time", DateTime.Now) .Add("login_time", DateTime.Now) .Where("id=@id", new { exist.id }) .Update(); if (status == 1) _ = List(true); } else { accountId = new DBContext.Table("tk_pool") .Add("name", dnk) .Add("description", "由cookies上报创建此记录") .Add("tb_token", tb_token) .Add("refpid", string.Empty) .Add("cookies", cookies) .Add("user_agent", user_agent) .Add("create_time", DateTime.Now) .Add("last_time", DateTime.Now) .Add("login_time", DateTime.Now) .Add("status", 0) .Create(); } NotifyCore.Notify(new NifyMessage { message = $"【淘客{accountId}:{company}】cookie 上线", tags = ["green_circle"] }); EndPointCore.NotifyReload(true); //NotifyCore.AnPushNotify("上线", $"【淘宝联盟:{dnk}】cookie 上报更新"); return accountId; } internal static void AccountExhausted() { string cache_key = $"cache:tk_pool:account:exhausted"; long count = RedisHelper.IncrBy(cache_key); if (count > 1) return; RedisHelper.Expire(cache_key, 3600); NotifyCore.Notify(new NifyMessage { message = $"【淘客】没有匹配账号", priority = NifyMessagePriority.high, tags = ["red_circle"] }); NotifyCore.AnPushNotify("没账号", $"【淘客】没有匹配账号"); } } }