using BBWY.Common.Models; using BBWY.Server.Model; using BBWY.Server.Model.Db; using BBWY.Server.Model.Dto; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; using Yitter.IdGenerator; namespace BBWY.Server.Business.Sync { public class JDPopularizeReportFormCampaignLevelSyncBusiness : BaseSyncBusiness, IDenpendency { public JDPopularizeReportFormCampaignLevelSyncBusiness(NLogManager nLogManager, IFreeSql fsql, IIdGenerator idGenerator, TaskSchedulerManager taskSchedulerManager, IEnumerable platformSDKBusinessList, VenderBusiness venderBusiness) : base( nLogManager, fsql, idGenerator, taskSchedulerManager, platformSDKBusinessList, venderBusiness) { } private void DeleteOldData(IList shops, DateTime startDate, DateTime endDate) { var shopIds = shops.Select(s => Convert.ToInt64(s.ShopId)).ToList(); fsql.Delete().Where(s => shopIds.Contains(s.ShopId.Value) && s.Date >= startDate && s.Date <= endDate).ExecuteAffrows(); } public void SyncAllShopPopularizeReportFormCampaignLevel() { var shopList = venderBusiness.GetShopList(shopId: null, Enums.Platform.京东); var date = DateTime.Now.Date.AddDays(-1); DeleteOldData(shopList, date, date); foreach (var shop in shopList) { Task.Factory.StartNew(() => SyncShopPopularizeReportFormCampaignLevelByDate(shop, date, date, 2), System.Threading.CancellationToken.None, TaskCreationOptions.LongRunning, taskSchedulerManager.JDPopularizeTaskScheduler); Task.Factory.StartNew(() => SyncShopPopularizeReportFormCampaignLevelByDate(shop, date, date, 134217728), System.Threading.CancellationToken.None, TaskCreationOptions.LongRunning, taskSchedulerManager.JDPopularizeTaskScheduler); } } public void SyncShopPopularizeReportFormCampaignLevelByDate(long? shopId, DateTime startDate, DateTime endDate) { startDate = startDate.Date; endDate = endDate.Date; var shopList = venderBusiness.GetShopList(shopId, Enums.Platform.京东); DeleteOldData(shopList, startDate, endDate); foreach (var shop in shopList) { Task.Factory.StartNew(() => SyncShopPopularizeReportFormCampaignLevelByDate(shop, startDate, endDate, 2), System.Threading.CancellationToken.None, TaskCreationOptions.LongRunning, taskSchedulerManager.JDPopularizeTaskScheduler); Task.Factory.StartNew(() => SyncShopPopularizeReportFormCampaignLevelByDate(shop, startDate, endDate, 134217728), System.Threading.CancellationToken.None, TaskCreationOptions.LongRunning, taskSchedulerManager.JDPopularizeTaskScheduler); } } private void SyncShopPopularizeReportFormCampaignLevelByDate(ShopResponse shop, DateTime startDate, DateTime endDate, int businessType) { var pageIndex = 1; while (true) { SyncShopPopularizeReportFormCampaignLevel(shop, startDate, endDate, pageIndex, businessType, out int count); if (count < 100) break; pageIndex++; Thread.Sleep(2000); } } private void SyncShopPopularizeReportFormCampaignLevel(ShopResponse shop, DateTime startDate, DateTime endDate, int pageIndex, int businessType, out int currentCount) { currentCount = 0; try { var response = GetPlatformSDKBusiness(Enums.Platform.京东).GetJDSopularizeReportFormByCampaignLevel(new SyncJDPopularizeReportFormRequest() { AppKey = shop.AppKey, AppSecret = shop.AppSecret, AppToken = shop.AppToken, EndDate = endDate, StartDate = startDate, Platform = shop.PlatformId, PageIndex = pageIndex, Business = businessType }); //var relayAPIHost = GetPlatformRelayAPIHost(shop.PlatformId); //var httpResult = restApiService.SendRequest(relayAPIHost, "Api/PlatformSDK/GetJDSopularizeReportFormByCampaignLevel", new SyncJDPopularizeReportFormRequest() //{ // AppKey = shop.AppKey, // AppSecret = shop.AppSecret, // AppToken = shop.AppToken, // EndDate = endDate, // StartDate = startDate, // Platform = shop.PlatformId, // PageIndex = pageIndex, // Business = businessType //}, GetYunDingRequestHeader(), HttpMethod.Post); nLogManager.GetLogger($"计划维度-{shop.ShopName}-{(businessType == 2 ? "快车" : "京速推")}").Info(JsonConvert.SerializeObject(response)); //if (httpResult.StatusCode != System.Net.HttpStatusCode.OK) // throw new Exception($"获取JD推广报表-计划维度失败 {httpResult.Content}"); //var presponse = JsonConvert.DeserializeObject>(httpResult.Content); //if (!presponse.Success) // throw new Exception($"获取JD推广报表-计划维度失败 {presponse.Msg}"); SyncShopPopularizeReportFormCampaignLevel(long.Parse(shop.ShopId), response, businessType); currentCount = response?.Count() ?? 0; } catch (Exception ex) { var data = JsonConvert.SerializeObject(new { shop, startDate, endDate, pageIndex }); nLogManager.GetLogger($"计划维度-{shop.ShopName}-{(businessType == 2 ? "快车" : "京速推")}").Error(ex, $"SyncShopPopularizeReportFormCampaignLevel Data:{data}"); } } private void SyncShopPopularizeReportFormCampaignLevel(long shopId, JArray jArray, int businessType) { if (jArray == null || !jArray.HasValues) return; var insertList = new List(); foreach (var j in jArray) { insertList.Add(new JDPopularizeCampaign() { Id = idGenerator.NewLong(), BusinessType = businessType, ShopId = shopId, CreateTime = DateTime.Now, CampaignId = j.Value("campaignId"), CampaignName = j.Value("campaignName"), Date = DateTime.ParseExact(j.Value("date"), "yyyyMMdd", System.Globalization.CultureInfo.CurrentCulture), Cost = j.Value("cost"), Clicks = j.Value("clicks") ?? 0, Impressions = j.Value("impressions") ?? 0, TotalCartCnt = j.Value("totalCartCnt") ?? 0, TotalOrderCnt = j.Value("totalOrderCnt") ?? 0 }); } if (insertList.Count > 0) fsql.Insert(insertList).ExecuteAffrows(); } } }