123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451 |
- using Azure.Storage.Blobs.Models;
- using Microsoft.Extensions.Configuration;
- using Newtonsoft.Json.Linq;
- using StackExchange.Redis;
- using System;
- using System.Collections.Concurrent;
- using System.Collections.Generic;
- using System.IdentityModel.Tokens.Jwt;
- using System.Linq;
- using System.Net.Http;
- using System.Net.Http.Json;
- using System.Text;
- using System.Text.Json;
- using System.Text.RegularExpressions;
- using System.Threading.Tasks;
- using TEAMModelOS.SDK.DI;
- using TEAMModelOS.SDK.Extension;
- using TEAMModelOS.SDK.Models.Dtos;
- using static TEAMModelOS.SDK.CoreAPIHttpService;
- namespace TEAMModelOS.SDK.Models.Service
- {
- public static class SystemService
- {
- #region
- static string cn_wb = @"
- IES晚间报告:<br>{tmdname}您好,以下是您的今日个人IES教学汇总报告,截至{sendTime}时,您已发布{examCount}次评测任务,{homeworkCount}次作业任务,并使用HiTeach教师端开设了{lessonCount}节课堂教学活动。
- <br> 以下是报告的具体详细信息。
- <br> {cn_examTitle}<br>{cn_examList}
- <br> {cn_lessonTitle}<br>{cn_lessonList}
- <br> {cn_groupTitle}<br>{cn_groupList}
- <br> 如有布置作业任务,将于次日8点通过早报方式发送。
- ";
- static string cn_examList = " 【{examName}】已经有{submitCount}位学生提交,仍有{unsubmitCount}位学生未提交。<br>";
- static string cn_lessonList = " 【{lessonName}】课例应出席人数{memberCount},实际出席人数{attendCount},出席率{attendRate}%。<br>";
- static string cn_groupListJoin = " 【{grouplistName}】已有总人数{memberCount}位,有{joinCount}位加入。<br>";
- static string cn_groupListLeave = " 【{grouplistName}】已有总人数{memberCount}位,有{joinCount}位离开。<br>";
- static string cn_zb = @"
- IES早间报告:<br>{tmdname}您好,以下是您发布过的作业任务汇总报告。
- <br> 以下是报告的具体详细信息。
- <br> {cn_homeworkTitle}<br>{cn_homeworkList}
- ";
- static string cn_homeworkList = "【{homeworkName}】已经有{submitCount}位学生提交,仍有{unsubmitCount}位学生未提交。<br>";
- static string cn_homeworkTitle = "作业任务提交详情:";
- static string cn_examTitle = "评测任务提交详情:";
- static string cn_lessonTitle = "课堂教学出席详情:";
- static string cn_groupTitle = "个人课程名单变化详情:";
- #endregion
- #region
- static string tw_wb = @"
- IES晚間報告:<br>{tmdname}您好,以下是您的今日個人IES教學總結報告,截至{sendTime},您已發布{examCount}次測驗任務,{homeworkCount}次作業任務,並使用HiTeach上傳了{lessonCount}節課堂教學活動。
- <br> 以下是詳細資訊。
- <br> {tw_examTitle}<br>{tw_examList}
- <br> {tw_lessonTitle}<br>{tw_lessonList}
- <br> {tw_groupTitle}<br>{tw_groupList}
- <br> 如有佈署作業任務,將於隔天早上8點透過晨間報告方式發送。
- ";
- static string tw_examList = " 【{examName}】已經有{submitCount}位學生繳交,仍有{unsubmitCount}位學生未繳交。<br>";
- static string tw_lessonList = " 【{lessonName}】課堂應出席人數{memberCount},實際出席人數{attendCount},出席率{attendRate}%。<br>";
- static string tw_groupListJoin = " 【{grouplistName}】已有總人數{memberCount}位,有{joinCount}位加入。<br>";
- static string tw_groupListLeave = " 【{grouplistName}】已有總人數{memberCount}位,有{joinCount}位離開。<br>";
- static string tw_zb = @"
- IES晨間報告:<br>{tmdname}您好,以下是您曾經發佈過的作業任務總結報告。
- <br> 以下是具體詳細資訊。
- <br> {tw_homeworkTitle}<br>{tw_homeworkList}
- ";
- static string tw_homeworkList = "【{homeworkName}】已經有{submitCount}位學生繳交,仍有{unsubmitCount}位學生未繳交。<br>";
- static string tw_homeworkTitle = "作業任務繳交詳情:";
- static string tw_examTitle = "測驗任務完成詳情:";
- static string tw_lessonTitle = "課堂教學出席詳情:";
- static string tw_groupTitle = "個人課程名單變動詳情:";
- #endregion
- #region
- static string en_wb = @"
- IES Evening Report:<br>Hello {tmdname}, here is your personal IES teaching summary report for today. As of {sendTime}, you have published {examCount} test tasks, {homeworkCount} homework tasks, and uploaded {lessonCount} HiTeach lesson activity records.
- <br> The following are the specific details.
- <br> {en_examTitle}<br>{en_examList}
- <br> {en_lessonTitle}<br>{en_lessonList}
- <br> {en_groupTitle}<br>{en_groupList}
- <br> If there are homework tasks assigned, they will be sent through the morning report at 8 am the next day.
- ";
- static string en_examList = " [ {examName} ] has {submitCount} students submitted, and there are still {unsubmitCount} students who have not submitted.<br>";
- static string en_lessonList = " [ {lessonName} ] lesson should have {memberCount} attendees, actual attendees {attendCount}, attendance rate {attendRate}%.<br>";
- static string en_groupListJoin = " [ {grouplistName} ] has a total of {memberCount}, {joinCount} joined.<br>";
- static string en_groupListLeave = " [ {grouplistName} ] has a total of {memberCount}, {joinCount} left.<br>";
- static string en_zb = @"
- IES Morning Report:
- <br> Hello {tmdname}, here is the summary report of the homework tasks you have posted.
- <br> {en_homeworkTitle}<br>{en_homeworkList}
- ";
- static string en_homeworkList = "[ {homeworkName} ] has {submitCount} students submitted, and there are still {unsubmitCount} students who have not submitted.<br>";
- static string en_homeworkTitle = "Homework Submission Details:";
- static string en_examTitle = "Test task submission details:";
- static string en_lessonTitle = "Lesson attendance details:";
- static string en_groupTitle = "Personal course list change details:";
- #endregion
- /// <summary>
- ///
- /// </summary>
- /// <param name="_azureRedis"></param>
- /// <param name="_azureCosmos"></param>
- /// <param name="coreAPIHttpService"></param>
- /// <param name="dingDing"></param>
- /// <param name="_httpClient"></param>
- /// <param name="_snowflakeId"></param>
- /// <param name="notifyUrl"></param>
- /// <param name="_mailFactory"></param>
- /// <param name="am"></param>
- /// <param name="pm"></param>
- /// <returns></returns>
- public static async Task<List<CodeValue> > AccumulateDaily(IConfiguration _configuration,AzureRedisFactory _azureRedis,AzureCosmosFactory _azureCosmos,
- CoreAPIHttpService coreAPIHttpService, DingDing dingDing,HttpClient _httpClient, SnowflakeId _snowflakeId,string notifyUrl, int am=0 ,int pm=0)
- {
- DateTimeOffset now = DateTimeOffset.Now;
- string day = now.ToString("yyyyMMdd");
- string homeworkYesterday = now.AddDays(-1).ToString("yyyyMMdd");
- HashSet<string> keys = new HashSet<string>();
- //当天评测发布的。
- //当天的个人评测提交数
- Dictionary<string, double?> exam_submit = new();
- SortedSetEntry[] exam_goingScores = _azureRedis.GetRedisClient(8).SortedSetRangeByScoreWithScores($"Accumulate:Daily:teacher:exam-going:{day}");
- // Dictionary<string, double?> exam_going = new();
- if (exam_goingScores != null)
- {
- foreach (var score in exam_goingScores)
- {
- double val = score.Score;
- string key = score.Element.ToString();
- // exam_going.Add(key, val);
- exam_submit.Add(key, val);
- keys.Add(key);
- }
- }
- ///需要再次获取 没有任何人提交的作业和评测任务。
- SortedSetEntry[] exam_submitScores = _azureRedis.GetRedisClient(8).SortedSetRangeByScoreWithScores($"Accumulate:Daily:private:exam-submit:{day}");
- if (exam_submitScores != null)
- {
- foreach (var score in exam_submitScores)
- {
- double val = score.Score;
- string key = score.Element.ToString();
- exam_submit.TryAdd(key, val);
- keys.Add(key);
- }
- }
- //今天发布的作业
- SortedSetEntry[] homework_goingScores_today = _azureRedis.GetRedisClient(8).SortedSetRangeByScoreWithScores($"Accumulate:Daily:teacher:homework-going:{day}");
- Dictionary<string, double?> homework_submit_today = new();
- //Dictionary<string, double?> homework_going = new();
- if (homework_goingScores_today != null)
- {
- foreach (var score in homework_goingScores_today)
- {
- double val = score.Score;
- string key = score.Element.ToString();
- //homework_going.Add(key, val);
- homework_submit_today.TryAdd(key, val);
- }
- }
- //昨天发布的作业
- SortedSetEntry[] homework_goingScores = _azureRedis.GetRedisClient(8).SortedSetRangeByScoreWithScores($"Accumulate:Daily:teacher:homework-going:{homeworkYesterday}");
- Dictionary<string, double?> homework_submit = new();
- //Dictionary<string, double?> homework_going = new();
- if (homework_goingScores != null)
- {
- foreach (var score in homework_goingScores)
- {
- double val = score.Score;
- string key = score.Element.ToString();
- //homework_going.Add(key, val);
- homework_submit.TryAdd(key, val);
- keys.Add(key);
-
- }
- }
- //昨天的个人作业提交数
- SortedSetEntry[] homework_submitScores = _azureRedis.GetRedisClient(8).SortedSetRangeByScoreWithScores($"Accumulate:Daily:teacher:homework-submit:{homeworkYesterday}");
-
- if (homework_submitScores != null)
- {
- foreach (var score in homework_submitScores)
- {
- double val = score.Score;
- string key = score.Element.ToString();
- homework_submit.TryAdd(key, val);
- keys.Add(key);
- }
- }
- //当天的个人名单加入人数
- Dictionary<string, double?> grouplist = new();
- SortedSetEntry[] grouplistScores = _azureRedis.GetRedisClient(8).SortedSetRangeByScoreWithScores($"Accumulate:Daily:teacher:grouplist:{day}");
- if (grouplistScores != null)
- {
- foreach (var score in grouplistScores)
- {
- double val = score.Score;
- string key = score.Element.ToString();
- grouplist.TryAdd(key, val);
- keys.Add(key);
- }
- }
- //当天教师的开课数量Accumulate:Daily:teacher:lesson-create:20240527
- Dictionary<string, double?> lessoncreate = new();
- SortedSetEntry[] llessoncreateScores = _azureRedis.GetRedisClient(8).SortedSetRangeByScoreWithScores($"Accumulate:Daily:teacher:lesson-create:{day}");
- if (llessoncreateScores != null)
- {
- foreach (var score in llessoncreateScores)
- {
- double val = score.Score;
- string key = score.Element.ToString();
- lessoncreate.TryAdd(key, val);
- keys.Add(key);
- }
- }
- List<string> ids = new List<string>();
- keys.ToList().ForEach(x => {
- ids.Add(x.Split("::")[0]);
- });
- List<CoreUser> coreUsers = new List<CoreUser>();
- List<Teacher> teachers= new List<Teacher>();
- if (ids.IsNotEmpty())
- {
- string sql = $"select value c from c where c.id in ({string.Join(",", ids.Select(x => $"'{x}'"))})";
- var result = await _azureCosmos.GetCosmosClient().GetContainer(Constant.TEAMModelOS, Constant.Teacher).GetList<Teacher>(sql, "Base");
- if (result.list.IsNotEmpty())
- {
- teachers.AddRange(result.list);
- }
- var content = new StringContent(ids.Distinct().ToJsonString(), Encoding.UTF8, "application/json");
- try
- {
- string json = await coreAPIHttpService.GetUserInfos(content);
- if (!string.IsNullOrWhiteSpace(json))
- {
-
- coreUsers = json.ToObject<List<CoreUser>>();
- }
- }
- catch (Exception ex)
- {
- await dingDing.SendBotMsg($"{coreAPIHttpService.options.location}用户转换失败:{coreAPIHttpService.options.coreUrl}", GroupNames.醍摩豆服務運維群組);
- }
- }
- List<CodeValue> notifys = new List<CodeValue>();
- foreach (var teacher in teachers)
- {
- if (!(teacher.id.Equals("1595321354")|| teacher.id.Equals("1535418750") || teacher.id.Equals("1528783259")))
- {
- continue;
- }
- StringBuilder notify = new StringBuilder();
- #if DEBUG
- int sendTime_pm = now.Hour;
- int sendTime_am = now.Hour;
- #else
- int sendTime_pm = 20;
- int sendTime_am =8;
- #endif
- if (am>0) {
- sendTime_am = am;
- }
- if (pm>0)
- {
- sendTime_pm = pm;
- }
- string lang = teacher.lang;
- var tzt = now.GetGMTTime((int)teacher.timezone);
- if (string.IsNullOrWhiteSpace(teacher.lang))
- {
- if (coreAPIHttpService.options.location.Contains("China", StringComparison.OrdinalIgnoreCase))
- {
- lang= "zh-cn";
- }
- if (coreAPIHttpService.options.location.Contains("Global",StringComparison.OrdinalIgnoreCase))
- {
- lang= "en-us";
- }
- }
- int examCount = 0,homeworkCount=0,lessonCount=0;
- StringBuilder examSB= new StringBuilder();
- foreach (var exam in exam_submit)
- {
-
- string[] ks = exam.Key.Split("::");
- string tid = ks[0];
- string examId = ks[1];
- string examName = ks[3];
- if (tid.Equals(teacher.id)) {
- if (tzt.Hour==sendTime_pm)
- {
- string sql = $"select c.status from c where c.examId='{examId}' and c.pk='ExamClassResult'";
- var result = await _azureCosmos.GetCosmosClient().GetContainer(Constant.TEAMModelOS, Constant.Common).GetList<ExamClassResult>(sql, $"ExamClassResult-{tid}");
- if (result.list.IsNotEmpty()) {
- var unsubmit = result.list.SelectMany(x => x.status).Where(x => x==1);
- var submit = result.list.SelectMany(x => x.status).Where(x => x==0);
- examCount++;
- switch (lang)
- {
- case "zh-cn":
- examSB.Append(cn_examList.Replace("{examName}", examName).Replace("{submitCount}", $"{submit.Count()}").Replace("{unsubmitCount}", $"{unsubmit.Count()}"));
- break;
- case "zh-tw":
- examSB.Append(tw_examList.Replace("{examName}", examName).Replace("{submitCount}", $"{submit.Count()}").Replace("{unsubmitCount}", $"{unsubmit.Count()}"));
- break;
- case "en-us":
- examSB.Append(en_examList.Replace("{examName}", examName).Replace("{submitCount}", $"{submit.Count()}").Replace("{unsubmitCount}", $"{unsubmit.Count()}"));
- break;
- }
-
- }
- }
- }
- }
- StringBuilder homeworkSB = new StringBuilder();
- foreach (var homeworksm in homework_submit_today)
- {
- string[] ks = homeworksm.Key.Split("::");
- string tid = ks[0];
- string homeworkId = ks[1];
- string homeworkName = ks[3];
- if (tid.Equals(teacher.id))
- {
- if (tzt.Hour==sendTime_pm)
- {
- homeworkCount++;
- }
- }
- }
- foreach (var homeworksm in homework_submit)
- {
-
- string[] ks = homeworksm.Key.Split("::");
- string tid = ks[0];
- string homeworkId = ks[1];
- string homeworkName = ks[3];
- if (tid.Equals(teacher.id))
- {
- if (tzt.Hour==sendTime_am)
- {
- Azure .Response response = await _azureCosmos.GetCosmosClient().GetContainer(Constant.TEAMModelOS, Constant.Common).ReadItemStreamAsync(homeworkId, new PartitionKey($"Homework-{tid}"));
- if (response.Status==200) {
- Homework homework= JsonDocument.Parse(response.Content).RootElement.ToObject<Homework>();
- List<string > classes= new List<string>();
- classes.AddRange(homework.stuLists);
- classes.AddRange(homework.classes);
- List<HomeworkUser> homeworkUsers= await HomeworkService.AnswerRecordAll(_azureCosmos.GetCosmosClient(), coreAPIHttpService, dingDing, homework, tid, "Student", classes, "student");
- // homeworkCount++;
- switch (lang)
- {
- case "zh-cn":
- homeworkSB.Append(cn_homeworkList.Replace("{homeworkName}", homework.name).Replace("{submitCount}", $"{homeworkUsers.Where(x => x.submit).Count()}").Replace("{unsubmitCount}", $"{homeworkUsers.Where(x => !x.submit).Count()}"));
- break;
- case "zh-tw":
- homeworkSB.Append(tw_homeworkList.Replace("{homeworkName}", homework.name).Replace("{submitCount}", $"{homeworkUsers.Where(x => x.submit).Count()}").Replace("{unsubmitCount}", $"{homeworkUsers.Where(x => !x.submit).Count()}"));
- break;
- case "en-us":
- homeworkSB.Append(en_homeworkList.Replace("{homeworkName}", homework.name).Replace("{submitCount}", $"{homeworkUsers.Where(x => x.submit).Count()}").Replace("{unsubmitCount}", $"{homeworkUsers.Where(x => !x.submit).Count()}"));
- break;
- }
- }
- }
- }
- }
- StringBuilder lessonSB = new StringBuilder();
- foreach (var lesson in lessoncreate)
- {
- string[] ks = lesson.Key.Split("::");
- string tid = ks[0];
- if (tid.Equals(teacher.id))
- {
- if (tzt.Hour==sendTime_pm)
- {
- long stime = now.AddHours(-20).ToUnixTimeMilliseconds();
- string sql = $"select value c from c where c.tmdid='{teacher.id}' and c.pk='LessonRecord' and c.startTime> {stime} ";
- List<LessonRecord>lessons = new List<LessonRecord>();
- var schoolResult= await _azureCosmos.GetCosmosClient().GetContainer(Constant.TEAMModelOS, Constant.School).GetList<LessonRecord>(sql);
- var teahcerResult = await _azureCosmos.GetCosmosClient().GetContainer(Constant.TEAMModelOS, Constant.Teacher).GetList<LessonRecord>(sql, "LessonRecord");
- lessons.AddRange(schoolResult.list);
- lessons.AddRange(teahcerResult.list);
- foreach(var lessonRecord in lessons)
- {
- lessonCount++;
- switch (lang)
- {
- case "zh-cn":
- lessonSB.Append(cn_lessonList.Replace("{lessonName}", lessonRecord.name).Replace("{memberCount}", $"{lessonRecord.clientCount}").Replace("{attendCount}", $"{lessonRecord.attendCount}")).Replace("{attendRate}", $"{lessonRecord.attendRate}");
- break;
- case "zh-tw":
- lessonSB.Append(tw_lessonList.Replace("{lessonName}", lessonRecord.name).Replace("{memberCount}", $"{lessonRecord.clientCount}").Replace("{attendCount}", $"{lessonRecord.attendCount}")).Replace("{attendRate}", $"{lessonRecord.attendRate}");
- break;
- case "en-us":
- lessonSB.Append(en_lessonList.Replace("{lessonName}", lessonRecord.name).Replace("{memberCount}", $"{lessonRecord.clientCount}").Replace("{attendCount}", $"{lessonRecord.attendCount}")).Replace("{attendRate}", $"{lessonRecord.attendRate}");
- break;
- }
- }
- }
- }
- }
- StringBuilder grouplistSB = new StringBuilder();
- List<string> grouplistIds=new List<string>();
- foreach (var group in grouplist)
- {
- string[] ks = group.Key.Split("::");
- grouplistIds.Add(ks[1]);
- }
- List<GroupListDto> groupListDtos= await GroupListService.GetGroupListByListids(_azureCosmos.GetCosmosClient(), dingDing, grouplistIds, null);
- foreach (var group in grouplist)
- {
- string[] ks = group.Key.Split("::");
- string tid = ks[0];
- string grouplistId = ks[1];
- string grouplistName = ks[3];
- var gpdto= groupListDtos.Find(x => x.id.Equals(grouplistId));
- if (gpdto!= null)
- {
- if (tid.Equals(teacher.id))
- {
- if (tzt.Hour==sendTime_pm)
- {
- switch (lang)
- {
- case "zh-cn":
- if (group.Value>=0)
- {
- grouplistSB.Append(cn_groupListJoin.Replace("{grouplistName}", grouplistName).Replace("{memberCount}", $"{gpdto.tcount+gpdto.scount}").Replace("{joinCount}", $"{group.Value}"));
- }
- else
- {
- grouplistSB.Append(cn_groupListLeave.Replace("{grouplistName}", grouplistName).Replace("{memberCount}", $"{gpdto.tcount+gpdto.scount}").Replace("{joinCount}", $"{group.Value}"));
- }
- break;
- case "zh-tw":
- if (group.Value>=0)
- {
- grouplistSB.Append(tw_groupListJoin.Replace("{grouplistName}", grouplistName).Replace("{memberCount}", $"{gpdto.tcount+gpdto.scount}").Replace("{joinCount}", $"{group.Value}"));
- }
- else
- {
- grouplistSB.Append(tw_groupListLeave.Replace("{grouplistName}", grouplistName).Replace("{memberCount}", $"{gpdto.tcount+gpdto.scount}").Replace("{joinCount}", $"{group.Value}"));
- }
- break;
- case "en-us":
- if (group.Value>=0)
- {
- grouplistSB.Append(en_groupListJoin.Replace("{grouplistName}", grouplistName).Replace("{memberCount}", $"{gpdto.tcount+gpdto.scount}").Replace("{joinCount}", $"{group.Value}"));
- }
- else
- {
- grouplistSB.Append(en_groupListLeave.Replace("{grouplistName}", grouplistName).Replace("{memberCount}", $"{gpdto.tcount+gpdto.scount}").Replace("{joinCount}", $"{group.Value}"));
- }
- break;
- }
- }
- }
- }
- }
- if (tzt.Hour==sendTime_pm && (examCount>0 || lessonCount>0 || homeworkCount>0 || (grouplist.Count>0 && !string.IsNullOrWhiteSpace(grouplistSB.ToString()))))
- {
- string template=string.Empty;
- string title=string.Empty;
- switch (lang)
- {
- case "zh-cn":
- title="IES晚间报告";
- template=cn_wb.Replace("{tmdname}", teacher.name).Replace("{sendTime}", $"{now.ToString("yyyy-MM-dd")} {sendTime_pm}")
- .Replace("{examCount}", $"{examCount}").Replace("{homeworkCount}", $"{homeworkCount}").Replace("{lessonCount}", $"{lessonCount}")
- .Replace("{cn_examList}", examSB.ToString()).Replace("{cn_lessonList}", lessonSB.ToString()).Replace("{cn_groupList}", grouplistSB.ToString());
- if (examCount>0)
- {
- template= template.Replace("{cn_examTitle}", cn_examTitle);
- }
- else {
- template= template.Replace("{cn_examTitle}", "");
- }
- if (homeworkCount>0)
- {
- template= template.Replace("{cn_homeworkTitle}", cn_homeworkTitle);
- }
- else
- {
- template= template.Replace("{cn_homeworkTitle}", "");
- }
- if (lessonCount>0)
- {
- template= template.Replace("{cn_lessonTitle}", cn_lessonTitle);
- }
- else
- {
- template= template.Replace("{cn_lessonTitle}", "");
- }
- if (grouplist.Count>0 && !string.IsNullOrWhiteSpace(grouplistSB.ToString()))
- {
- template=template.Replace("{cn_groupTitle}", cn_groupTitle);
- }
- else
- {
- template= template.Replace("{cn_groupTitle}", "");
- }
- break;
- case "zh-tw":
- title="IES晚間報告";
- template=tw_wb.Replace("{tmdname}", teacher.name).Replace("{sendTime}", $"{now.ToString("yyyy-MM-dd")} {sendTime_pm}")
- .Replace("{examCount}", $"{examCount}").Replace("{homeworkCount}", $"{homeworkCount}").Replace("{lessonCount}", $"{lessonCount}")
- .Replace("{tw_examList}", examSB.ToString()).Replace("{tw_lessonList}", lessonSB.ToString()).Replace("{tw_groupList}", grouplistSB.ToString());
- if (examCount>0)
- {
- template= template.Replace("{tw_examTitle}", tw_examTitle);
- }
- else
- {
- template= template.Replace("{tw_examTitle}", "");
- }
- if (homeworkCount>0)
- {
- template= template.Replace("{tw_homeworkTitle}", tw_homeworkTitle);
- }
- else
- {
- template= template.Replace("{tw_homeworkTitle}", "");
- }
- if (lessonCount>0)
- {
- template= template.Replace("{tw_lessonTitle}", tw_lessonTitle);
- }
- else
- {
- template= template.Replace("{tw_lessonTitle}", "");
- }
- if (grouplist.Count>0)
- {
- template=template.Replace("{tw_groupTitle}", tw_groupTitle);
- }
- else
- {
- template= template.Replace("{tw_groupTitle}", "");
- }
- break;
- case "en-us":
- title ="IES Evening Report";
- template=en_wb.Replace("{tmdname}", teacher.name).Replace("{sendTime}", $"{now.ToString("yyyy-MM-dd")} {sendTime_pm}")
- .Replace("{examCount}", $"{examCount}").Replace("{homeworkCount}", $"{homeworkCount}").Replace("{lessonCount}", $"{lessonCount}")
- .Replace("{en_examList}", examSB.ToString()).Replace("{en_lessonList}", lessonSB.ToString()).Replace("{en_groupList}", grouplistSB.ToString());
- if (examCount>0)
- {
- template= template.Replace("{en_examTitle}", en_examTitle);
- }
- else
- {
- template= template.Replace("{en_examTitle}", "");
- }
- if (homeworkCount>0)
- {
- template= template.Replace("{en_homeworkTitle}", en_homeworkTitle);
- }
- else
- {
- template= template.Replace("{en_homeworkTitle}", "");
- }
- if (lessonCount>0)
- {
- template= template.Replace("{en_lessonTitle}", en_lessonTitle);
- }
- else
- {
- template= template.Replace("{en_lessonTitle}", "");
- }
- if (grouplist.Count>0)
- {
- template=template.Replace("{en_groupTitle}", en_groupTitle);
- }
- else
- {
- template= template.Replace("{en_groupTitle}", "");
- }
- break;
- }
- template= template.Replace("\r\n", "");
- string eventId = $"Evening_Report-{_snowflakeId.NextId()}";
- NotifyData notifyData = new NotifyData
- {
- hubName = "hita5",
- sender = "IES",
- tags = new List<string>() { $"{teacher.id}_{Constant.NotifyType_IES5_Course}" },
- title = title,
- eventId =eventId,
- eventName =title,
- data = "{\"value\":{}}",
- body=template,
- };
- HttpResponseMessage responseMessage = await _httpClient.PostAsJsonAsync($"{notifyUrl}/service/PushNotify", notifyData);
- var coreUser = coreUsers.Find(x => x.id.Equals(teacher.id) && !string.IsNullOrWhiteSpace(x.mail));
- if (coreUser!=null)
- {
- // var token = _mailFactory.GetSmtpClient().SendEmail(_azureCosmos, dingDing, eventId, title, template, coreUser.mail, teacher.id, teacher.name, sender: "TEAMModel");
- //var tid = lang.Equals("zh-cn") ? "d-136eddbd974046f1a721c8f4e210b9bf" : lang.Equals("zh-tw") ? "d-136eddbd974046f1a721c8f4e210b9bf" : "d-95ac2d657d1b4d9dbb7b79defc17f714";
- var tid = string.Empty;
- if (coreAPIHttpService.options.location.Contains("China"))
- {
- tid=lang.Equals("zh-cn") ? "IES5GeneralTemplateSC" : lang.Equals("zh-tw") ? "IES5GeneralTemplateTC" : "IES5GeneralTemplateEN";
- }
- else
- {
- tid=lang.Equals("zh-cn") ? "d-270b4ec690f541a9a4045d7a4032bc3b" : lang.Equals("zh-tw") ? "d-136eddbd974046f1a721c8f4e210b9bf" : "d-95ac2d657d1b4d9dbb7b79defc17f714";
- }
- await coreAPIHttpService.SendMail(new Dictionary<string, object> { { "to", coreUser.mail }, { "tid", tid }, { "vars", new { title = title, notificationcontent = template } } }, coreAPIHttpService.options.location, _configuration);
- }
- notify.Append(template);
- }
- if (tzt.Hour==sendTime_am && !string.IsNullOrWhiteSpace(homeworkSB.ToString()))
- {
- string template = string.Empty;
- string title = string.Empty;
- switch (lang)
- {
- case "zh-cn":
- title ="IES早间报告";
- template= cn_zb.Replace("{tmdname}", teacher.name).Replace("{sendTime}", $"{now.ToString("yyyy-MM-dd")} {sendTime_am}")
- .Replace("{cn_homeworkList}", homeworkSB.ToString());
- template=template.Replace("{cn_homeworkTitle}", cn_homeworkTitle);
- break;
- case "zh-tw":
- title ="IES晨間報告";
- template= tw_zb.Replace("{tmdname}", teacher.name).Replace("{sendTime}", $"{now.ToString("yyyy-MM-dd")} {sendTime_am}")
- .Replace("{tw_homeworkList}", homeworkSB.ToString());
- template=template.Replace("{tw_homeworkTitle}", tw_homeworkTitle);
- break;
- case "en-us":
- title ="IES Morning Report";
- template=en_zb.Replace("{tmdname}", teacher.name).Replace("{sendTime}", $"{now.ToString("yyyy-MM-dd")} {sendTime_am}")
- .Replace("{en_homeworkList}", homeworkSB.ToString());
- template=template.Replace("{en_homeworkTitle}", en_homeworkTitle);
- break;
- }
- template= template.Replace("\r\n", "");
- string eventId = $"Morning_Report-{_snowflakeId.NextId()}";
- NotifyData notifyData = new NotifyData
- {
- hubName = "hita5",
- sender = "IES",
- tags = new List<string>() { $"{teacher.id}_{Constant.NotifyType_IES5_Course}" },
- title = title,
- eventId = eventId,
- eventName =title,
- data = "{\"value\":{}}",
- body=template,
- };
- HttpResponseMessage responseMessage = await _httpClient.PostAsJsonAsync($"{notifyUrl}/service/PushNotify", notifyData);
- var coreUser = coreUsers.Find(x => x.id.Equals(teacher.id) && !string.IsNullOrWhiteSpace(x.mail));
- if (coreUser!=null)
- {
- // var token = _mailFactory.GetSmtpClient().SendEmail(_azureCosmos, dingDing, eventId, title, template, coreUser.mail, teacher.id, teacher.name,sender:"TEAMModel");
- var tid = string.Empty ;
- if (coreAPIHttpService.options.location.Contains("China"))
- {
- tid=lang.Equals("zh-cn") ? "IES5GeneralTemplateSC" : lang.Equals("zh-tw") ? "IES5GeneralTemplateTC" : "IES5GeneralTemplateEN";
- }
- else {
- tid=lang.Equals("zh-cn")? "d-270b4ec690f541a9a4045d7a4032bc3b" : lang.Equals("zh-tw") ? "d-136eddbd974046f1a721c8f4e210b9bf" : "d-95ac2d657d1b4d9dbb7b79defc17f714";
- }
- await coreAPIHttpService.SendMail(new Dictionary<string, object> { { "to", coreUser.mail }, { "tid", tid }, { "vars", new { title = title, notificationcontent = template } } }, coreAPIHttpService.options.location, _configuration);
- }
- notify.Append(template);
- }
- notifys.Add(new CodeValue { code=teacher.id, value= notify.ToString() });
-
- }
- return notifys;
- }
- public static async Task RecordAccumulateData(AzureRedisFactory azureRedis, DingDing dingDing, Accumulate accumulate)
- {
- if (!string.IsNullOrWhiteSpace(accumulate.key) && !string.IsNullOrWhiteSpace(accumulate.target) &&
- !string.IsNullOrWhiteSpace(accumulate.id) && !string.IsNullOrWhiteSpace(accumulate.name) &&
- !string.IsNullOrWhiteSpace(accumulate.scope) && !string.IsNullOrWhiteSpace(accumulate.client))
- {
- await RecordAccumulateData(azureRedis, accumulate.key, accumulate.target, accumulate.id, accumulate.name, accumulate.scope, accumulate.client, accumulate.count);
- }
- else
- {
- await dingDing.SendBotMsg($"IES累计数据变更统计参数异常,{accumulate.ToJsonString()}", GroupNames.成都开发測試群組);
- }
- }
- /// <summary>
- /// 记录累计数据
- /// </summary>
- public static async Task RecordAccumulateData(AzureRedisFactory azureRedis, string key, string target, string id, string name, string scope, string client, int count)
- {
- if (!string.IsNullOrWhiteSpace(key) && !string.IsNullOrWhiteSpace(target) &&
- !string.IsNullOrWhiteSpace(id) && !string.IsNullOrWhiteSpace(name) &&
- !string.IsNullOrWhiteSpace(scope)&& !string.IsNullOrWhiteSpace(client))
- {
- //处理UTC时差
- var nowTime = DateTimeOffset.UtcNow.GetGMTTime();
- int difference = (DayOfWeek.Sunday - nowTime.DayOfWeek + 7) % 7; //1-7的结果0-6
- var day = nowTime.ToString("yyyyMMdd");
- string redisKey = $"Accumulate:Daily:{scope}:{key}:{day}";
- string member = $"{target}::{id}::{client}::{name}";
- await azureRedis.GetRedisClient(8).SortedSetIncrementAsync(redisKey, member, count);
- await azureRedis.GetRedisClient(8).KeyExpireAsync(redisKey, new TimeSpan((difference+1)*24, 10, 0));
- //if (key.Equals("lesson") || key.StartsWith("login_"))
- //{
- // redisKey = $"Accumulate:Daily:ies:{key}:{day}";
- // if (scope.Equals("school"))
- // {
- // member = $"ies::{id}::{name}";
- // }
- // else {
- // member = $"ies::ies::{name}";
- // }
- // await azureRedis.GetRedisClient(8).SortedSetIncrementAsync(redisKey, member, 1);
- //}
- }
- }
- static double GetUserDuration(List<long> times )
- {
- if (times.IsNotEmpty())
- {
- if (times.Count>=2)
- {
- double totalDuration = 0;
- // DateTime lastTime = DateTimeOffset.FromUnixTimeMilliseconds((long)jsonData[0]["time"]).UtcDateTime;
- long ltime = times[0];
- for (int i = 1; i < times.Count; i++)
- {
- long ctime = times[i];
- //DateTime currentTime = DateTimeOffset.FromUnixTimeMilliseconds((long)jsonData[i]["time"]).UtcDateTime;
- long timeDifference = ctime - ltime;
- ///如果一小时内连续操作,则按真实时间累计
- if (timeDifference < 3600000)
- {
- totalDuration += timeDifference;
- }
- else
- { ///如果一小时内没有连续操作,则按象征性加10秒,以确保数据有效性。 如果因为一小时没有操作,则表示没有新的接口再次请求,当即就已经退出系统。否则后续仍然会有接口进入,并且带有时间戳
- totalDuration += 10000;
- }
- ltime = ctime;
- }
- return totalDuration;
- }
- else { return 10000; }
- }
- else {
- return 0;
- }
- }
- public static List<SchoolStick> CountSchoolStickiness(IEnumerable<IGrouping<string,ApiVisit>> schoolApiVisits, IEnumerable<ApiVisit> apiVisits)
- {
- List<SchoolStick> schoolStickiness = new List<SchoolStick>();
- foreach (var chinaSchoolKey in schoolApiVisits)
- {
- SchoolStick stickiness = new SchoolStick()
- {
- id = chinaSchoolKey.Key
-
- };
- var teachers = chinaSchoolKey.ToList().Where(x => !string.IsNullOrWhiteSpace(x.userId) && !string.IsNullOrWhiteSpace(x.scope) && x.scope.Equals("teacher")).GroupBy(x => x.userId);
- double hitaTime = 0, hiteachTime = 0, ies5TchTime = 0, otherTchTime = 0, ies5StuTime = 0, otherStuTime = 0;
- int hitaTch= 0, hiteachTch = 0, ies5Tch = 0, otherTch = 0, ies5Stu = 0, otherStu = 0;
- double hitaCount = 0, hiteachCount = 0, ies5TchCount = 0, otherTchCount = 0, ies5StuCount = 0, otherStuCount = 0;
- double lessonCount= chinaSchoolKey.ToList().Where(x => x.path.Contains("hiteach/create-lesson")).Count() ;
- int teacherCount= teachers.Count() ;
- foreach (var user in teachers)
- {
- TchStick tchStick = new TchStick()
- {
- id = user.Key,
- school= chinaSchoolKey.Key
- };
- //HiTA
- var teacherHitaVisit = apiVisits.Where(x => !string.IsNullOrWhiteSpace(x.userId) && x.userId.Equals(user.Key) && x.client.Equals("hita"));
- var teacherHitaVisitCount = teacherHitaVisit.Count();
- if (teacherHitaVisitCount>0)
- { hitaTch+=1; }
- var teacherHitaVisitTime = GetUserDuration(teacherHitaVisit.OrderBy(x => x.time).Select(x => x.time).ToList());
- hitaCount+=teacherHitaVisitCount;
- hitaTime+=teacherHitaVisitTime;
- tchStick.hita.count.value=teacherHitaVisitCount;
- tchStick.hita.duration.value=teacherHitaVisitTime;
- //Other
- var teacherOtherVisit = user.Where(x => !x.client.Equals("hita")&&!x.client.Equals("hiteach")&&!x.client.Equals("ies5"));
- var teacherOtherVisitCount= teacherOtherVisit.Count();
- var teacherOtherVisitTime= GetUserDuration(teacherOtherVisit.OrderBy(x => x.time).Select(x => x.time).ToList());
- if (teacherOtherVisitCount>0)
- { otherTch+=1; }
- otherTchCount+=teacherOtherVisitCount;
- otherTchTime+=teacherOtherVisitTime;
- tchStick.otherTch.count.value=teacherOtherVisitCount;
- tchStick.otherTch.duration.value=teacherOtherVisitTime;
- //HiTeach
- //教师访问hiteach 不带学校信息的
- var teacherHiteachVisit = apiVisits.Where(x => !string.IsNullOrWhiteSpace(x.userId) && x.userId.Equals(user.Key) && x.client.Equals("hiteach") && string.IsNullOrWhiteSpace(x.school));
- //教师访问hiteach 包含学校信息的
- var teacherHiteachSchoolVisit = user.Where(x => x.client.Equals("hiteach"));
- //教师所有的Hiteach访问
- List<ApiVisit> teacherHiteachAllVisit = new List<ApiVisit>();
- teacherHiteachAllVisit.AddRange(teacherHiteachVisit);
- teacherHiteachAllVisit.AddRange(teacherHiteachSchoolVisit);
- var teacherHiteachAllVisitCount = teacherHiteachAllVisit.Count();
- if (teacherHiteachAllVisitCount>0)
- { hiteachTch+=1; }
- var teacherHiteachAllVisitTime = GetUserDuration(teacherHiteachAllVisit.OrderBy(x => x.time).Select(x => x.time).ToList());
- hiteachCount+=teacherHiteachAllVisitCount;
- hiteachTime+=teacherHiteachAllVisitTime;
- tchStick.hiteach.count.value=teacherHiteachAllVisitCount;
- tchStick.hiteach.duration.value=teacherHiteachAllVisitTime;
- //IES5
- var teacherIes5Visit = user.Where(x => x.client.Equals("ies5"));
- var teacherIes5VisitCount= teacherIes5Visit.Count();
- if (teacherIes5VisitCount>0)
- { ies5Tch+=1; }
- var teacherIes5VisitTime = GetUserDuration(teacherIes5Visit.OrderBy(x => x.time).Select(x => x.time).ToList());
- ies5TchCount+=teacherIes5VisitCount;
- ies5TchTime+=teacherIes5VisitTime;
- tchStick.ies5Tch.count.value=teacherIes5VisitCount;
- tchStick.ies5Tch.duration.value=teacherIes5VisitTime;
- double lessonCountTch = chinaSchoolKey.ToList().Where(x => x.path.Contains("hiteach/create-lesson") && x.userId.Equals(user.Key)).Count();
- tchStick.lesson.value=lessonCountTch;
- tchStick.tmd.count.value=tchStick.hita.count.value+tchStick.hiteach.count.value+tchStick.ies5Tch.count.value+tchStick.otherTch.count.value;
- tchStick.tmd.duration.value=tchStick.hita.duration.value+tchStick.hiteach.duration.value+tchStick.ies5Tch.duration.value+tchStick.otherTch.duration.value;
- tchStick.hita.userCount=1;
- tchStick.hiteach.userCount=1;
- tchStick.ies5Tch.userCount=1;
- tchStick.otherTch.userCount=1;
- tchStick.tmd.userCount=1;
- if (tchStick.hita.count.value>0 && tchStick.hita.duration.value>0)
- {
- tchStick.hita.stick.value= (tchStick.hita.duration.value/1000/tchStick.hita.count.value);
- }
- if (tchStick.ies5Tch.count.value>0 && tchStick.ies5Tch.duration.value>0)
- {
- tchStick.ies5Tch.stick.value= (tchStick.ies5Tch.duration.value/1000/tchStick.ies5Tch.count.value);
- }
- if (tchStick.otherTch.count.value>0 && tchStick.otherTch.duration.value>0)
- {
- tchStick.otherTch.stick.value= (tchStick.otherTch.duration.value/1000/tchStick.otherTch.count.value);
- }
- if (tchStick.hiteach.count.value>0 && tchStick.hiteach.duration.value>0)
- {
- tchStick.hiteach.stick.value= (tchStick.hiteach.duration.value/1000/tchStick.hiteach.count.value)+tchStick.lesson.value;
- }
- if (tchStick.tmd.count.value>0 && tchStick.tmd.duration.value>0)
- {
- tchStick.tmd.stick.value= (tchStick.tmd.duration.value/1000/tchStick.tmd.count.value)+ tchStick.lesson.value;
- }
- stickiness.tchSticks.Add(tchStick);
- }
- var student = chinaSchoolKey.ToList().Where(x => !string.IsNullOrWhiteSpace(x.userId) && !string.IsNullOrWhiteSpace(x.scope) && (x.scope.Equals("student")||x.scope.Equals("tmduser"))).GroupBy(x => x.userId);
- var studentCount = student.Count();
- foreach (var user in student)
- {
- StuStick stuStick = new StuStick
- {
- id=user.Key,
- school=chinaSchoolKey.Key
- };
- var studentOtherVisit = user.Where(x => !x.client.Equals("ies5"));
- var studentOtherVisitCount = studentOtherVisit.Count();
- if (studentOtherVisitCount>0)
- { otherStu+=1; }
- double studentOtherVisitTime = GetUserDuration(studentOtherVisit.OrderBy(x => x.time).Select(x => x.time).ToList()) ;
- var studentIes5Visit = user.Where(x => x.client.Equals("ies5"));
- var studentIes5VisitCount = studentIes5Visit.Count();
- if (studentIes5VisitCount>0)
- { ies5Stu+=1; }
- double studentIes5VisitTime = GetUserDuration(studentIes5Visit.OrderBy(x => x.time).Select(x => x.time).ToList());
- ies5StuCount+=studentIes5VisitCount;
- ies5StuTime+=studentIes5VisitTime;
- otherStuCount+=studentOtherVisitCount;
- otherStuTime+=studentOtherVisitTime;
- stuStick.ies5Stu.count.value=studentIes5VisitCount;
- stuStick.ies5Stu.duration.value=studentIes5VisitTime;
- stuStick.otherStu.count.value=studentOtherVisitCount;
- stuStick.otherStu.duration.value=studentOtherVisitTime;
- stuStick.tmd.count.value= stuStick.ies5Stu.count.value+stuStick.otherStu.count.value;
- stuStick.tmd.duration.value= stuStick.ies5Stu.duration.value+stuStick.otherStu.duration.value;
- stuStick.ies5Stu.userCount=1;
- stuStick.otherStu.userCount=1;
- stuStick.tmd.userCount=1;
- if (stuStick.ies5Stu.count.value>0 && stuStick.ies5Stu.duration.value>0)
- {
- stuStick.ies5Stu.stick.value= (stuStick.ies5Stu.duration.value/1000/stuStick.ies5Stu.count.value);
- }
-
- if (stuStick.otherStu.count.value>0 && stuStick.otherStu.duration.value>0)
- {
- stuStick.otherStu.stick.value=(stuStick.otherStu.duration.value/1000/stuStick.otherStu.count.value);
- }
- if (stuStick.tmd.count.value>0 && stuStick.tmd.duration.value>0)
- {
- stuStick.tmd.stick.value=(stuStick.tmd.duration.value/1000/stuStick.tmd.count.value);
- }
- stickiness.stuSticks.Add(stuStick);
- }
- stickiness.hita.duration.value=hitaTime;
- stickiness.hiteach.duration.value=hiteachTime;
- stickiness.otherTch.duration.value=otherTchTime;
- stickiness.ies5Tch.duration.value=ies5TchTime;
- stickiness.tmd.duration.value=hitaTime+hiteachTime+otherTchTime+ies5TchTime+otherStuTime+ies5StuTime;
- stickiness.hita.userCount=hitaTch;
- stickiness.hiteach.userCount=hiteachTch;
- stickiness.ies5Tch.userCount=ies5Tch;
- stickiness.otherTch.userCount=otherTch;
- stickiness.ies5Stu.userCount=ies5Stu;
- stickiness.otherStu.userCount=otherStu;
- stickiness.hita.count.value=hitaCount;
- stickiness.hiteach.count.value=hiteachCount;
- stickiness.ies5Tch.count.value=ies5TchCount;
- stickiness.otherTch.count.value=otherTchCount;
- stickiness.ies5Stu.count.value=ies5StuCount;
- stickiness.otherStu.count.value=otherStuCount;
- stickiness.tmd.count.value=hitaCount+hiteachCount+ies5TchCount+otherTchCount+ies5StuCount+otherStuCount;
- stickiness.lesson.value=lessonCount;
- stickiness.tmd.userCount=teacherCount+studentCount;
- if(stickiness.hita.count.value>0 && stickiness.hita.duration.value>0)
- {
- stickiness.hita.stick.value=(stickiness.hita.userCount* stickiness.hita.count.value)/(stickiness.hita.duration.value/1000/stickiness.hita.count.value);
- }
- if (stickiness.ies5Stu.count.value>0 && stickiness.ies5Stu.duration.value>0)
- {
- stickiness.ies5Stu.stick.value=(stickiness.ies5Stu.userCount* stickiness.ies5Stu.count.value)/(stickiness.ies5Stu.duration.value/1000/stickiness.ies5Stu.count.value);
- }
- if (stickiness.ies5Tch.count.value>0 && stickiness.ies5Tch.duration.value>0)
- {
- stickiness.ies5Tch.stick.value=(stickiness.ies5Tch.userCount* stickiness.ies5Tch.count.value)/(stickiness.ies5Tch.duration.value/1000/stickiness.ies5Tch.count.value);
- }
- if (stickiness.otherStu.count.value>0 && stickiness.otherStu.duration.value>0)
- {
- stickiness.otherStu.stick.value=(stickiness.otherStu.userCount* stickiness.otherStu.count.value)/(stickiness.otherStu.duration.value/1000/stickiness.otherStu.count.value);
- }
- if (stickiness.otherTch.count.value>0 && stickiness.otherTch.duration.value>0)
- {
- stickiness.otherTch.stick.value=(stickiness.otherTch.userCount* stickiness.otherTch.count.value)/(stickiness.otherTch.duration.value/1000/stickiness.otherTch.count.value);
- }
- if (stickiness.hiteach.count.value>0 && stickiness.hiteach.duration.value>0)
- {
- stickiness.hiteach.stick.value=(stickiness.hiteach.userCount* stickiness.hiteach.count.value)/(stickiness.hiteach.duration.value/1000/stickiness.hiteach.count.value)+stickiness.lesson.value;
- }
- if (stickiness.tmd.count.value>0 && stickiness.tmd.duration.value>0)
- {
- stickiness.tmd.stick.value=(stickiness.tmd.userCount* stickiness.tmd.count.value)/(stickiness.tmd.duration.value/1000/stickiness.tmd.count.value)+ stickiness.lesson.value;
- }
- stickiness.tchSticks= OrderByTchStick(stickiness.tchSticks);
- stickiness.stuSticks= OrderByStuStick(stickiness.stuSticks);
- schoolStickiness.Add(stickiness);
- }
-
- return OrderBySchoolStick(schoolStickiness);
- }
- private static List<StuStick> OrderByStuStick(List<StuStick> stuStickiness)
- {
- // 假设visit已经填充了数据
- #region
- var rank_tmd_count = stuStickiness.Select(x => x.tmd.count.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_ies5Stu_count = stuStickiness.Select(x => x.ies5Stu.count.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_otherStu_count = stuStickiness.Select(x => x.otherStu.count.value).Distinct().OrderByDescending(v => v).ToList();
- #endregion
- #region
- var rank_tmd_duration = stuStickiness.Select(x => x.tmd.duration.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_ies5Stu_duration = stuStickiness.Select(x => x.ies5Stu.duration.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_otherStu_duration = stuStickiness.Select(x => x.otherStu.duration.value).Distinct().OrderByDescending(v => v).ToList();
- #endregion
- #region
- var rank_tmd_stick = stuStickiness.Select(x => x.tmd.stick.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_ies5Stu_stick = stuStickiness.Select(x => x.ies5Stu.stick.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_otherStu_stick = stuStickiness.Select(x => x.otherStu.stick.value).Distinct().OrderByDescending(v => v).ToList();
- #endregion
- stuStickiness.ForEach(x =>
- {
- #region
- if (x.tmd.count.value>0)
- {
- int index_tmd_count = rank_tmd_count.FindIndex(i => i==x.tmd.count.value);
- if (index_tmd_count!=-1)
- {
- x.tmd.count.rank = index_tmd_count + 1;
- }
- }
- if (x.ies5Stu.count.value>0)
- {
- int index_ies5Stu_count = rank_ies5Stu_count.FindIndex(i => i==x.ies5Stu.count.value);
- if (index_ies5Stu_count!=-1)
- {
- x.ies5Stu.count.rank = index_ies5Stu_count + 1;
- }
- }
- if (x.otherStu.count.value>0)
- {
- int index_otherStu_count = rank_otherStu_count.FindIndex(i => i==x.otherStu.count.value);
- if (index_otherStu_count!=-1)
- {
- x.otherStu.count.rank = index_otherStu_count + 1;
- }
- }
- #endregion
- #region
- if (x.tmd.duration.value> 0) {
- int index_tmd_duration = rank_tmd_duration.FindIndex(i => i==x.tmd.duration.value);
- if (index_tmd_duration!=-1)
- {
- x.tmd.duration.rank = index_tmd_duration + 1;
- }
- }
- if (x.ies5Stu.duration.value>0) {
- int index_ies5Stu_duration = rank_ies5Stu_duration.FindIndex(i => i==x.ies5Stu.duration.value);
- if (index_ies5Stu_duration!=-1)
- {
- x.ies5Stu.duration.rank = index_ies5Stu_duration + 1;
- }
- }
- if (x.otherStu.duration.value>0) {
- int index_otherStu_duration = rank_otherStu_duration.FindIndex(i => i==x.otherStu.duration.value);
- if (index_otherStu_duration!=-1)
- {
- x.otherStu.duration.rank = index_otherStu_duration + 1;
- }
- }
- #endregion
- #region
- if (x.tmd.stick.value>0)
- {
- int index_tmd_stick = rank_tmd_stick.FindIndex(i => i==x.tmd.stick.value);
- if (index_tmd_stick!=-1)
- {
- x.tmd.stick.rank = index_tmd_stick + 1;
- }
- }
- if (x.ies5Stu.stick.value>0)
- {
- int index_ies5Stu_stick = rank_ies5Stu_stick.FindIndex(i => i==x.ies5Stu.stick.value);
- if (index_ies5Stu_stick!=-1)
- {
- x.ies5Stu.stick.rank = index_ies5Stu_stick + 1;
- }
- }
- if (x.otherStu.stick.value>0)
- {
- int index_otherStu_stick = rank_otherStu_stick.FindIndex(i => i==x.otherStu.stick.value);
- if (index_otherStu_stick!=-1)
- {
- x.otherStu.stick.rank = index_otherStu_stick + 1;
- }
- }
- #endregion
- });
- return stuStickiness;
- }
- private static List<TchStick> OrderByTchStick(List<TchStick> tchStickiness)
- {
- // 假设visit已经填充了数据
- #region
- var rank_tmd_count = tchStickiness.Select(x => x.tmd.count.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_hita_count = tchStickiness.Select(x => x.hita.count.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_hiteach_count = tchStickiness.Select(x => x.hiteach.count.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_ies5Tch_count = tchStickiness.Select(x => x.ies5Tch.count.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_otherTch_count = tchStickiness.Select(x => x.otherTch.count.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_lesson_count = tchStickiness.Select(x => x.lesson.value).Distinct().OrderByDescending(v => v).ToList();
- #endregion
- #region
- var rank_tmd_duration = tchStickiness.Select(x => x.tmd.duration.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_hita_duration = tchStickiness.Select(x => x.hita.duration.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_hiteach_duration = tchStickiness.Select(x => x.hiteach.duration.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_ies5Tch_duration = tchStickiness.Select(x => x.ies5Tch.duration.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_otherTch_duration = tchStickiness.Select(x => x.otherTch.duration.value).Distinct().OrderByDescending(v => v).ToList();
- #endregion
- #region
- var rank_tmd_stick = tchStickiness.Select(x => x.tmd.stick.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_hita_stick = tchStickiness.Select(x => x.hita.stick.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_hiteach_stick = tchStickiness.Select(x => x.hiteach.stick.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_ies5Tch_stick = tchStickiness.Select(x => x.ies5Tch.stick.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_otherTch_stick = tchStickiness.Select(x => x.otherTch.stick.value).Distinct().OrderByDescending(v => v).ToList();
- #endregion
- tchStickiness.ForEach(x => {
- #region
- int index_tmd_count = rank_tmd_count.FindIndex(i => i==x.tmd.count.value);
- if (index_tmd_count!=-1)
- {
- x.tmd.count.rank = index_tmd_count + 1;
- }
- int index_hita_count = rank_hita_count.FindIndex(i => i==x.hita.count.value);
- if (index_hita_count!=-1)
- {
- x.hita.count.rank = index_hita_count + 1;
- }
- int index_hiteach_count = rank_hiteach_count.FindIndex(i => i==x.hiteach.count.value);
- if (index_hiteach_count!=-1)
- {
- x.hiteach.count.rank = index_hiteach_count + 1;
- }
- int index_ies5Tch_count = rank_ies5Tch_count.FindIndex(i => i==x.ies5Tch.count.value);
- if (index_ies5Tch_count!=-1)
- {
- x.ies5Tch.count.rank = index_ies5Tch_count + 1;
- }
- int index_otherTch_count = rank_otherTch_count.FindIndex(i => i==x.otherTch.count.value);
- if (index_otherTch_count!=-1)
- {
- x.otherTch.count.rank = index_otherTch_count + 1;
- }
- int index_lesson_count = rank_lesson_count.FindIndex(i => i==x.lesson.value);
- if (index_lesson_count!=-1)
- {
- x.lesson.rank = index_lesson_count + 1;
- }
- #endregion
- #region
- int index_tmd_duration = rank_tmd_duration.FindIndex(i => i==x.tmd.duration.value);
- if (index_tmd_duration!=-1)
- {
- x.tmd.duration.rank = index_tmd_duration + 1;
- }
- int index_hita_duration = rank_hita_duration.FindIndex(i => i==x.hita.duration.value);
- if (index_hita_duration!=-1)
- {
- x.hita.duration.rank = index_hita_duration + 1;
- }
- int index_hiteach_duration = rank_hiteach_duration.FindIndex(i => i==x.hiteach.duration.value);
- if (index_hiteach_duration!=-1)
- {
- x.hiteach.duration.rank = index_hiteach_duration + 1;
- }
- int index_ies5Tch_duration = rank_ies5Tch_duration.FindIndex(i => i==x.ies5Tch.duration.value);
- if (index_ies5Tch_duration!=-1)
- {
- x.ies5Tch.duration.rank = index_ies5Tch_duration + 1;
- }
- int index_otherTch_duration = rank_otherTch_duration.FindIndex(i => i==x.otherTch.duration.value);
- if (index_otherTch_duration!=-1)
- {
- x.otherTch.duration.rank = index_otherTch_duration + 1;
- }
-
- #endregion
- #region
- int index_tmd_stick = rank_tmd_stick.FindIndex(i => i==x.tmd.stick.value);
- if (index_tmd_stick!=-1)
- {
- x.tmd.stick.rank = index_tmd_stick + 1;
- }
- int index_hita_stick = rank_hita_stick.FindIndex(i => i==x.hita.stick.value);
- if (index_hita_stick!=-1)
- {
- x.hita.stick.rank = index_hita_stick + 1;
- }
- int index_hiteach_stick = rank_hiteach_stick.FindIndex(i => i==x.hiteach.stick.value);
- if (index_hiteach_stick!=-1)
- {
- x.hiteach.stick.rank = index_hiteach_stick + 1;
- }
- int index_ies5Tch_stick = rank_ies5Tch_stick.FindIndex(i => i==x.ies5Tch.stick.value);
- if (index_ies5Tch_stick!=-1)
- {
- x.ies5Tch.stick.rank = index_ies5Tch_stick + 1;
- }
- int index_otherTch_stick = rank_otherTch_stick.FindIndex(i => i==x.otherTch.stick.value);
- if (index_otherTch_stick!=-1)
- {
- x.otherTch.stick.rank = index_otherTch_stick + 1;
- }
-
- #endregion
- });
- return tchStickiness;
- }
- private static List<SchoolStick> OrderBySchoolStick(List<SchoolStick> schoolStickiness)
- {
- // 假设visit已经填充了数据
- #region
- var rank_tmd_count = schoolStickiness.Select(x => x.tmd.count.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_hita_count = schoolStickiness.Select(x => x.hita.count.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_hiteach_count = schoolStickiness.Select(x => x.hiteach.count.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_ies5Tch_count = schoolStickiness.Select(x => x.ies5Tch.count.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_otherTch_count = schoolStickiness.Select(x => x.otherTch.count.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_ies5Stu_count = schoolStickiness.Select(x => x.ies5Stu.count.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_otherStu_count = schoolStickiness.Select(x => x.otherStu.count.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_lesson_count = schoolStickiness.Select(x => x.lesson.value).Distinct().OrderByDescending(v => v).ToList();
- #endregion
- #region
- var rank_tmd_duration = schoolStickiness.Select(x => x.tmd.duration.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_hita_duration = schoolStickiness.Select(x => x.hita.duration.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_hiteach_duration = schoolStickiness.Select(x => x.hiteach.duration.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_ies5Tch_duration = schoolStickiness.Select(x => x.ies5Tch.duration.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_otherTch_duration = schoolStickiness.Select(x => x.otherTch.duration.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_ies5Stu_duration = schoolStickiness.Select(x => x.ies5Stu.duration.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_otherStu_duration = schoolStickiness.Select(x => x.otherStu.duration.value).Distinct().OrderByDescending(v => v).ToList();
- #endregion
- #region
- var rank_tmd_stick = schoolStickiness.Select(x => x.tmd.stick.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_hita_stick = schoolStickiness.Select(x => x.hita.stick.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_hiteach_stick = schoolStickiness.Select(x => x.hiteach.stick.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_ies5Tch_stick = schoolStickiness.Select(x => x.ies5Tch.stick.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_otherTch_stick = schoolStickiness.Select(x => x.otherTch.stick.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_ies5Stu_stick = schoolStickiness.Select(x => x.ies5Stu.stick.value).Distinct().OrderByDescending(v => v).ToList();
- var rank_otherStu_stick = schoolStickiness.Select(x => x.otherStu.stick.value).Distinct().OrderByDescending(v => v).ToList();
- #endregion
- schoolStickiness.ForEach(x => {
- #region
- if (x.tmd.count.value>0)
- {
- int index_tmd_count = rank_tmd_count.FindIndex(i => i==x.tmd.count.value);
- if (index_tmd_count!=-1)
- {
- x.tmd.count.rank = index_tmd_count + 1;
- }
- }
- if (x.hita.count.value>0)
- {
- int index_hita_count = rank_hita_count.FindIndex(i => i==x.hita.count.value);
- if (index_hita_count!=-1)
- {
- x.hita.count.rank = index_hita_count + 1;
- }
- }
-
- if (x.hiteach.count.value>0)
- {
- int index_hiteach_count = rank_hiteach_count.FindIndex(i => i==x.hiteach.count.value);
- if (index_hiteach_count!=-1)
- {
- x.hiteach.count.rank = index_hiteach_count + 1;
- }
- }
- if (x.ies5Tch.count.value>0)
- {
- int index_ies5Tch_count = rank_ies5Tch_count.FindIndex(i => i==x.ies5Tch.count.value);
- if (index_ies5Tch_count!=-1)
- {
- x.ies5Tch.count.rank = index_ies5Tch_count + 1;
- }
- }
- if (x.otherTch.count.value>0)
- {
- int index_otherTch_count = rank_otherTch_count.FindIndex(i => i==x.otherTch.count.value);
- if (index_otherTch_count!=-1)
- {
- x.otherTch.count.rank = index_otherTch_count + 1;
- }
- }
- if (x.ies5Stu.count.value>0)
- {
- int index_ies5Stu_count = rank_ies5Stu_count.FindIndex(i => i==x.ies5Stu.count.value);
- if (index_ies5Stu_count!=-1)
- {
- x.ies5Stu.count.rank = index_ies5Stu_count + 1;
- }
- }
- if (x.otherStu.count.value>0)
- {
- int index_otherStu_count = rank_otherStu_count.FindIndex(i => i==x.otherStu.count.value);
- if (index_otherStu_count!=-1)
- {
- x.otherStu.count.rank = index_otherStu_count + 1;
- }
- }
- if (x.lesson.value>0)
- {
- int index_lesson_count = rank_lesson_count.FindIndex(i => i==x.lesson.value);
- if (index_lesson_count!=-1)
- {
- x.lesson.rank = index_lesson_count + 1;
- }
- }
- #endregion
- #region
- if (x.tmd.duration.value>0)
- {
- int index_tmd_duration = rank_tmd_duration.FindIndex(i => i==x.tmd.duration.value);
- if (index_tmd_duration!=-1)
- {
- x.tmd.duration.rank = index_tmd_duration + 1;
- }
- }
-
- if (x.hita.duration.value>0)
- {
- int index_hita_duration = rank_hita_duration.FindIndex(i => i==x.hita.duration.value);
- if (index_hita_duration!=-1)
- {
- x.hita.duration.rank = index_hita_duration + 1;
- }
- }
- if (x.hiteach.duration.value>0)
- {
- int index_hiteach_duration = rank_hiteach_duration.FindIndex(i => i==x.hiteach.duration.value);
- if (index_hiteach_duration!=-1)
- {
- x.hiteach.duration.rank = index_hiteach_duration + 1;
- }
- }
-
- if (x.ies5Tch.duration.value>0) {
- int index_ies5Tch_duration = rank_ies5Tch_duration.FindIndex(i => i==x.ies5Tch.duration.value);
- if (index_ies5Tch_duration!=-1)
- {
- x.ies5Tch.duration.rank = index_ies5Tch_duration + 1;
- }
- }
-
- if (x.otherTch.duration.value>0)
- {
- int index_otherTch_duration = rank_otherTch_duration.FindIndex(i => i==x.otherTch.duration.value);
- if (index_otherTch_duration!=-1)
- {
- x.otherTch.duration.rank = index_otherTch_duration + 1;
- }
- }
-
- if (x.ies5Stu.duration.value>0)
- {
- int index_ies5Stu_duration = rank_ies5Stu_duration.FindIndex(i => i==x.ies5Stu.duration.value);
- if (index_ies5Stu_duration!=-1)
- {
- x.ies5Stu.duration.rank = index_ies5Stu_duration + 1;
- }
- }
-
- if (x.otherStu.duration.value>0)
- {
- int index_otherStu_duration = rank_otherStu_duration.FindIndex(i => i==x.otherStu.duration.value);
- if (index_otherStu_duration!=-1)
- {
- x.otherStu.duration.rank = index_otherStu_duration + 1;
- }
- }
-
- #endregion
- #region
- if (x.tmd.stick.value>0)
- {
- int index_tmd_stick = rank_tmd_stick.FindIndex(i => i==x.tmd.stick.value);
- if (index_tmd_stick!=-1)
- {
- x.tmd.stick.rank = index_tmd_stick + 1;
- }
- }
-
- if (x.hita.stick.value>0)
- {
- int index_hita_stick = rank_hita_stick.FindIndex(i => i==x.hita.stick.value);
- if (index_hita_stick!=-1)
- {
- x.hita.stick.rank = index_hita_stick + 1;
- }
- }
-
- if (x.hiteach.stick.value>0)
- {
- int index_hiteach_stick = rank_hiteach_stick.FindIndex(i => i==x.hiteach.stick.value);
- if (index_hiteach_stick!=-1)
- {
- x.hiteach.stick.rank = index_hiteach_stick + 1;
- }
- }
-
- if (x.ies5Tch.stick.value>0)
- {
- int index_ies5Tch_stick = rank_ies5Tch_stick.FindIndex(i => i==x.ies5Tch.stick.value);
- if (index_ies5Tch_stick!=-1)
- {
- x.ies5Tch.stick.rank = index_ies5Tch_stick + 1;
- }
- }
-
- if (x.otherTch.stick.value>0)
- {
- int index_otherTch_stick = rank_otherTch_stick.FindIndex(i => i==x.otherTch.stick.value);
- if (index_otherTch_stick!=-1)
- {
- x.otherTch.stick.rank = index_otherTch_stick + 1;
- }
- }
-
- if (x.ies5Stu.stick.value>0)
- {
- int index_ies5Stu_stick = rank_ies5Stu_stick.FindIndex(i => i==x.ies5Stu.stick.value);
- if (index_ies5Stu_stick!=-1)
- {
- x.ies5Stu.stick.rank = index_ies5Stu_stick + 1;
- }
- }
-
- if (x.otherStu.stick.value>0)
- {
- int index_otherStu_stick = rank_otherStu_stick.FindIndex(i => i==x.otherStu.stick.value);
- if (index_otherStu_stick!=-1)
- {
- x.otherStu.stick.rank = index_otherStu_stick + 1;
- }
- }
-
- #endregion
- });
- return schoolStickiness;
- }
- /// <summary>
- /// 结算访问日志
- /// </summary>
- public static async Task<(List<SchoolStick> chinaSchoolStickiness, List<SchoolStick> globalSchoolStickiness)> VisitSettle(List<string> times ,AzureStorageFactory _azureStorage,AzureRedisFactory _azureRedis, Region2LongitudeLatitudeTranslator _longitudeLatitudeTranslator, IPSearcher _ipSearcher) {
- List<SchoolStick> chinaSchoolStickiness = new List<SchoolStick>();
- List<SchoolStick> globalSchoolStickiness = new List<SchoolStick>();
- foreach (var timeDate in times)
- {
- List<ApiVisit> apiVisits = new List<ApiVisit>();
- if (DateTimeOffset.TryParse(timeDate, out DateTimeOffset date))
- {
-
- BlobDownloadResult result = await _azureStorage.GetBlobContainerClient("0-service-log").GetBlobClient($"http-log/{date:yyyy}/{date:MM}/{date:dd}/index.log").DownloadContentAsync();
- var content = result.Content.ToString();
- content= content.Substring(0, content.Length-2);
- if (content.EndsWith("}"))
- {
- content=$"[{content}]";
- }
- else
- {
- content=$"[{content}}}]";
- }
- apiVisits.AddRange(content.ToObject<List<ApiVisit>>());
- var dateNow = DateTimeOffset.Now.GetGMTTime(8);
- if ($"{dateNow:yyyy-MM-dd}".Equals($"{date:yyyy-MM-dd}"))
- { //当前小时一致的
- BlobDownloadResult resultHour = await _azureStorage.GetBlobContainerClient("0-service-log").GetBlobClient($"http-log/{date:yyyy}/{date:MM}/{date:dd}/{date:HH}.log").DownloadContentAsync();
- var contentHour = resultHour.Content.ToString();
- contentHour= contentHour.Substring(0, contentHour.Length-2);
- if (contentHour.EndsWith("}"))
- {
- contentHour=$"[{contentHour}]";
- }
- else
- {
- contentHour=$"[{contentHour}}}]";
- }
- var httpLog = contentHour.ToObject<List<HttpLog>>();
- (ConcurrentBag<ApiVisit> visits, ConcurrentBag<(string uuid, HttpLog httpLog, List<string> tmdid, List<string> school)> uuidInfo) = await SystemService.ConvertHttpLog(httpLog, _azureRedis, _ipSearcher, _longitudeLatitudeTranslator, dateNow, false);
- apiVisits.AddRange(visits);
- }
- }
- //大陆学校
- var chinaApiVisits = apiVisits.Where(x => x.hostName.Equals("大陆站"));
- var chinaSchoolVisits = apiVisits.Where(x => !string.IsNullOrWhiteSpace(x.school) && x.hostName.Equals("大陆站")).GroupBy(x => x.school);
- List<SchoolStick> chinaStickiness = CountSchoolStickiness(chinaSchoolVisits, chinaApiVisits);
- chinaSchoolStickiness.AddRange(chinaStickiness);
- //国际学校
- var globalApiVisits = apiVisits.Where(x => x.hostName.Equals("国际站"));
- var globalSchoolVisits = apiVisits.Where(x => !string.IsNullOrWhiteSpace(x.school) && x.hostName.Equals("国际站")).GroupBy(x => x.school);
- List<SchoolStick> globalStickiness = CountSchoolStickiness(globalSchoolVisits, globalApiVisits);
- globalSchoolStickiness.AddRange(globalStickiness);
- }
- return (chinaSchoolStickiness, globalSchoolStickiness);
- }
- public static async Task<(ConcurrentBag<ApiVisit> visits, ConcurrentBag<(string uuid, HttpLog httpLog, List<string> tmdid, List<string> school)> uuidInfo)>
- ConvertHttpLog(List<HttpLog> logs, AzureRedisFactory _azureRedis, IPSearcher _ipSearcher, Region2LongitudeLatitudeTranslator _longitudeLatitudeTranslator, DateTimeOffset gmt8Time, bool test = false)
- {
- ConcurrentBag<ApiVisit> visits = new ConcurrentBag<ApiVisit>();
- ConcurrentBag<(string uuid, HttpLog httpLog, List<string> tmdid, List<string> school)> uuidInfo = new ConcurrentBag<(string uuid, HttpLog httpLog, List<string> tmdid, List<string> school)>();
- object lockObj = new object();
- await Parallel.ForEachAsync(logs, async (log, _) =>
- {
- if (!log.path.Contains("."))
- {
- string uuid = Guid.NewGuid().ToString();
- List<string> schoolMatch = new List<string>();
- List<string> useridMatch = new List<string>();
- var vist = new ApiVisit()
- {
- id=uuid,
- ip=log.ip,
- tid=log.tid,
- time= log.time,
- userId= log.id,
- school= log.school,
- tname= log.name,
- path = log.path,
- client=log.p.Equals("os", StringComparison.OrdinalIgnoreCase) ? "ies5" : log.p,
- scope=log.scope,
- host= log.host,
- hostName=log.hostName,
- l=log.l,
- year = $"{gmt8Time:yyyy}",
- month = $"{gmt8Time:MM}",
- day = $"{gmt8Time:dd}",
- hour =$"{gmt8Time:HH}"
- };
- if (test)
- {
- var time = DateTimeOffset.FromUnixTimeMilliseconds(log.time);
- //本地调试时间
- if (vist.ip.Equals("0.0.0.1"))
- {
- time= time.AddHours(8);
- }
- vist.year = $"{time:yyyy}";
- vist.month = $"{time:MM}";
- vist.day = $"{time:dd}";
- vist.hour =$"{time:HH}";
- }
- if (string.IsNullOrWhiteSpace(vist.userId))
- {
- //var jsonPathContext = new JsonPathContext();
- //jsonPathContext.ValueSystem= new JsonTextValueSystem();
- string path = "$..['id_token','idToken','idtoken','tmdid','id','teacherId','teacher','tid','tId','userid','userId','code','studentId','student','studentid']";
- if (!log.param.ValueKind.Equals(JsonValueKind.Null)) {
- JObject jsonObject = JObject.Parse(log.param.GetRawText());
- //var nodes_path = jsonPathContext.SelectNodes(log.param, path);
- var nodes_path = jsonObject.SelectTokens(path);
- foreach (var node in nodes_path)
- {
- // 只获取是字符串的
- if (node.Type.Equals(JTokenType.String))
- {
- switch (true)
- {
- case bool when node.Path.Contains("id_token")||node.Path.Contains("idToken")||node.Path.Contains("idtoken"):
- {
- try
- {
- var jwt = new JwtSecurityToken($"{node}");
- string id = jwt.Payload.Sub;
- var name = jwt.Claims.FirstOrDefault(claim => claim.Type.Equals("name"))?.Value;
- if (!string.IsNullOrWhiteSpace(id) && long.TryParse(id, out long _id))
- {
- vist.userId=id;
- vist.scope="teacher";
- vist.tname=name;
- useridMatch.Add(id);
- }
- }
- catch (Exception ex) { }
- break;
- }
- case bool when node.Path.Contains("tmdid")||node.Path.Contains("id")||node.Path.Contains("teacherId")
- ||node.Path.Contains("teacher")||node.Path.Contains("tid")||node.Path.Contains("tId")||node.Path.Contains("userid")
- ||node.Path.Contains("userId"):
- {
- if (!string.IsNullOrWhiteSpace($"{node}") && long.TryParse($"{node}", out long _id))
- {
- vist.userId=$"{node}";
- vist.scope="teacher";
- useridMatch.Add($"{node}");
- }
- break;
- }
- case bool when node.Path.Contains("studentId")||node.Path.Contains("student")||node.Path.Contains("studentid"):
- {
- if (!string.IsNullOrWhiteSpace($"{node}") && long.TryParse($"{node}", out long _id))
- {
- vist.userId=$"{node}";
- vist.scope="student";
- useridMatch.Add($"{node}");
- }
- break;
- }
- case bool when node.Path.Contains("code"):
- {
- if (!string.IsNullOrWhiteSpace($"{node}"))
- {
- if (long.TryParse($"{node}", out long _id))
- {
- vist.userId=$"{node}";
- useridMatch.Add($"{node}");
- }
- else
- {
- string[] codes = $"{node}".Split("-");
- foreach (var _code in codes)
- {
- if (long.TryParse(_code, out long _codeid))
- {
- vist.userId=$"{node}";
- useridMatch.Add($"{_code}");
- break;
- }
- }
- }
- }
- break;
- }
- }
- }
- }
- if (log.path.Contains("process-notify", StringComparison.OrdinalIgnoreCase))
- {
- string s = log.param.ToJsonString().Replace("\\", "");
- Regex regextmdid = new Regex("\"tmdid\":\"(\\d+)\"");
- Match matchtmdid = regextmdid.Match(s);
- if (matchtmdid.Success)
- {
- var t = matchtmdid.Groups[1].Value;
- if (!string.IsNullOrWhiteSpace(t))
- {
- vist.userId=t;
- vist.scope="teacher";
- useridMatch.Add(t);
- }
- }
- Regex regexname = new Regex("\"tmdname\":\"(.+?)\"");
- Match matchname = regexname.Match(s);
- if (matchname.Success)
- {
- var t = matchname.Groups[1].Value;
- if (!string.IsNullOrWhiteSpace(t))
- {
- vist.tname=t;
- }
- }
- }
- }
- }
- else
- {
- if (string.IsNullOrWhiteSpace($"{vist.scope}"))
- {
- vist.scope="teacher";
- uuidInfo.Add((uuid, log, new List<string>() { vist.userId }, new List<string>()));
- }
- }
- if (string.IsNullOrWhiteSpace(vist.school) || vist.school.Equals("true") || vist.school.Equals("false"))
- {
- vist.school="";
- string path = "$..['school','id','schoolId','schoolid','schoolCode','school_code','schoolcode','code']";
- if (!log.param.ValueKind.Equals(JsonValueKind.Null)) {
- JObject jsonObject = JObject.Parse(log.param.GetRawText());
- var nodes_path = jsonObject.SelectTokens(path);
- foreach (var node in nodes_path)
- {
- // 只获取是字符串的
- if (node.Type.Equals(JTokenType.String))
- {
- switch (true)
- {
- case bool when node.Path.Contains("school")||node.Path.Contains("id")||node.Path.Contains("schoolId")
- ||node.Path.Contains("schoolid")||node.Path.Contains("schoolCode")||node.Path.Contains("school_code")||node.Path.Contains("schoolcode"):
- {
- if (!$"{node}".Contains("-")&& $"{node}".Length<=8 && $"{node}".Length>=1)
- {
- vist.school=$"{node}";
- schoolMatch.Add($"{node}");
- }
- break;
- }
- case bool when node.Path.Contains("code"):
- {
- if (!$"{node}".Contains("-")&& $"{node}".Length<=8&& $"{node}".Length>=1)
- {
- vist.school=$"{node}";
- schoolMatch.Add($"{node}");
- }
- else
- {
- string[] codes = $"{node}".Split("-");
- foreach (var _code in codes)
- {
- if ($"{_code}".Length<=8 && $"{_code}".Length>=1)
- {
- vist.school=$"{_code}";
- schoolMatch.Add($"{_code}");
- break;
- }
- }
- }
- break;
- }
- }
- }
- }
- if (log.path.Contains("process-notify", StringComparison.OrdinalIgnoreCase))
- {
- string s = log.param.ToJsonString().Replace("\\", "");
- Regex regexname = new Regex("\"schoolId\":\"(.+?)\"");
- Match matchname = regexname.Match(s);
- if (matchname.Success)
- {
- var t = matchname.Groups[1].Value;
- if (!string.IsNullOrWhiteSpace(t))
- {
- vist.school=t;
- }
- }
- }
- }
- }
- //处理 client
- {
- if (!string.IsNullOrWhiteSpace(log.client))
- {
- if (log.client.Equals("IES", StringComparison.OrdinalIgnoreCase))
- {
- vist.client="ies5";
- }
- if (log.client.Equals("AClassONE", StringComparison.OrdinalIgnoreCase))
- {
- vist.client="aclassone";
- }
- if (log.client.Equals("BB", StringComparison.OrdinalIgnoreCase))
- {
- vist.client="habb";
- }
- if (log.client.Equals("HiTool", StringComparison.OrdinalIgnoreCase) ||log.client.Equals("HiTools", StringComparison.OrdinalIgnoreCase))
- {
- vist.client="hiscan";
- }
- if (log.client.Equals("HiTA", StringComparison.OrdinalIgnoreCase))
- {
- vist.client="hita";
- vist.scope="teacher";
- }
- if (log.client.Equals("HiTeachCC", StringComparison.OrdinalIgnoreCase))
- {
- vist.client="hiteachcc";
- }
- if (log.client.Equals("HiTeach", StringComparison.OrdinalIgnoreCase))
- {
- vist.scope="teacher";
- vist.client="hiteach";
- }
- if (log.client.Equals("Open", StringComparison.OrdinalIgnoreCase))
- {
- vist.client="open";
- }
- }
- }
- //补全站点
- {
- if (
- (log.host.Equals("wwww.teammodel.net")||log.host.Equals("ies5-rc.teammodel.net")))
- {
- vist.hostName="国际站";
- vist.host="www.teammodel.net";
- vist.client="ies5";
- vist.l="Global";
- }
- else if (
- log.host.Equals("teammodelos-yx.chinacloudsites.cn")||log.host.Equals("teammodelos.chinacloudsites.cn")
- ||log.host.Equals("yx.teammodel.cn")||log.host.Equals("teammodelos-rc.chinacloudsites.cn")||log.host.Equals("rc.teammodel.cn")|| log.host.Equals("www.teammodel.cn"))
- {
- vist.hostName="大陆站";
- vist.host="www.teammodel.cn";
- vist.client="ies5"; vist.l="China";
- }
- else if ((log.host.Contains("localhost") && log.p.Equals("os"))|| log.host.Equals("teammodelos-test.chinacloudsites.cn") ||log.host.Equals("test.teammodel.cn"))
- {
- vist.hostName="测试站";
- vist.host="test.teammodel.cn";
- vist.client="ies5";
- vist.l="China";
- }
- else if (
- (log.host.Equals("scyx.teammodel.cn") ||log.host.Equals("jinniu.teammodel.cn")))
- {
- vist.hostName="研修2.0";
- vist.host="scyx.teammodel.cn";
- vist.client="ability"; vist.l="China";
- }
- else if (
- log.host.Equals("open.teammodel.cn")||log.host.Equals("open-test.teammodel.cn") ||log.host.Equals("zhiyin-test.teammodel.cn"))
- {
- vist.hostName="开放平台";
- vist.host="open.teammodel.cn";
- vist.client="open";
- vist.l="China";
- }
- else if ((log.host.Equals("bi-rc.teammodel.net") || log.host.Equals("bi.teammodel.net")))
- {
- vist.hostName="国际站";
- vist.host="bi.teammodel.net";
- vist.client="bi";
- vist.scope="admin";
- vist.l="Global";
- }
- else if (log.host.Equals("teammodelbi.chinacloudsites.cn") ||log.host.Equals("bi.teammodel.cn"))
- {
- vist.hostName="大陆站";
- vist.host="bi.teammodel.cn";
- vist.client="bi";
- vist.scope="admin";
- vist.l="China";
- }
- else if (log.host.Equals("bitest.teammodel.cn")||log.host.Equals("teammodelbi-test.chinacloudsites.cn")||(log.host.Contains("localhost") && (log.p.Equals("bi"))))
- {
- vist.hostName="测试站";
- vist.host="testbi.teammodel.cn";
- vist.client="bi";
- vist.scope="admin";
- vist.l="China";
- }
- else if (
- log.host.Equals("teamcontest.chinacloudsites.cn")||log.host.Equals("contest.chinacloudsites.cn")||log.host.Equals("contest-test.chinacloudsites.cn"))
- {
- vist.hostName="大陆站";
- vist.host="contest.teammodel.cn";
- vist.client="contest"; vist.l="China";
- }
- else if (
- log.host.Equals("hiteachcc.chinacloudsites.cn"))
- {
- vist.hostName="正式站";
- vist.host="hiteachcc.teammodel.cn";
- vist.client="hiteachcc";
- vist.l="China";
- }
- else if (log.host.Equals("appraisal.chinacloudsites.cn"))
- {
- vist.hostName="大陆站";
- vist.host="appraisal.teammodel.cn";
- vist.client="appraisal";
- vist.l="China";
- }
- else if ((log.host.Contains("localhost") && log.p.Equals("appraisal"))||log.host.Equals("appraisal-test.teammodel.cn") ||log.host.Equals("appraisal-test.chinacloudsites.cn"))
- {
- vist.hostName="测试站";
- vist.host="appraisal-test.teammodel.cn";
- vist.client="appraisal";
- vist.l="China";
- }
- else
- {
- if (!string.IsNullOrWhiteSpace(log.p))
- {
- vist.client=log.p.Equals("os", StringComparison.OrdinalIgnoreCase) ? "ies5" : log.p;
- }
- else
- {
- vist.client="other";
- }
- if (log.host.EndsWith(".cn"))
- {
- vist.hostName="大陆站";
- vist.l="China";
- }
- else if (log.host.EndsWith(".net"))
- {
- vist.hostName="国际站";
- vist.l="Global";
- }
- else
- {
- vist.hostName="其他";
- vist.l="其他";
- }
- }
- }
- //补全产品端
- {
- //研修2.0
- if (log.path.Contains("research") || log.path.Contains("study") || log.path.Contains("standard-file"))
- {
- vist.client="ability";
- }
- if (log.path.Contains("teacher"))
- {
- vist.scope="teacher";
- }
- if (log.path.Contains("tmduser"))
- {
- vist.scope=Constant.ScopeTmdUser;
- }
- if (log.path.Contains("student/login"))
- {
- vist.scope=Constant.ScopeStudent;
- }
- if (log.path.StartsWith("/activity"))
- {
- vist.client="contest";
- }
- //小程序
- if (log.path.Contains("aclassone"))
- {
- vist.client="aclassone";
- }
- // /// <summary>
- /// ExamInfo qamode 書面問答類型 0:書面問答 1:紙本測驗 2:艺术评测
- /// </summary>
- //艺术评测
- if (log.path.Contains("art") ||log.path.Contains("aclassone/find-children-activity") ||log.path.Contains("aclassone/find-teacher-activity") ||log.path.Contains("aclassone/find-summary-activity") ||log.path.Contains("aclassone/upload-all") ||log.path.Contains("aclassone/delete"))
- {
- vist.client="art";
- }
- if (log.path.Contains("common/exam/upsert-record"))
- {
- JObject jobject = JObject.Parse(log.param.GetRawText());
- var jtokens = jobject.SelectTokens("$..artId");
- if (jtokens!=null && jtokens.Count()>0)
- {
- vist.client="art";
- vist.scope=Constant.ScopeStudent;
- }
- }
- if (log.path.Contains("habb"))
- {
- vist.client="habb";
- }
- //阅卷客户端
- if (log.path.Contains("hiscan"))
- {
- vist.client="hiscan";
- }
- if (log.path.Contains("hita"))
- {
- vist.client="hita";
- }
- if (log.path.Contains("hiteachcc"))
- {
- vist.client="hiteachcc";
- }
- if (log.path.Contains("sokrate"))
- {
- vist.client="sokrate";
- }
- if (log.path.Contains("sokrate") || log.path.Contains("score"))
- {
- vist.client="sokrate";
- }
- if (log.path.Contains("hiteach"))
- {
- vist.client="hiteach";
- }
- ///IES开放平台
- if (log.path.Contains("business") || log.path.Contains("biz") || log.path.Contains("openapi-config") || log.path.Contains("open-api"))
- {
- vist.client="open";
- }
- //从token的role 能否获取 开放平台
- //单点登录及第三方接口
- if (log.path.Contains("lepei") || log.path.Contains("sc/") || log.path.Contains("/sso") || log.path.Contains("sc-init")|| log.path.Contains("moofen") || log.path.Contains("data-push") || log.path.Contains("xkw")|| log.path.Contains("tianbo")
- || log.path.Contains("oauth/check-bind")|| log.path.Contains("dingding") || log.path.Contains("wechat")
- )
- {
- vist.client="sso-third";
- }
- }
- //处理IP转地区
- var region = await _ipSearcher.SearchIpAsync(vist.ip);
- if (string.IsNullOrWhiteSpace(region))
- {
- region="未知IP·未知IP·未知IP";
- }
- if (!string.IsNullOrWhiteSpace(region))
- {
- region= region.Replace("省·", "·").Replace("市·", "·").Replace("特别行政区·", "·").Replace("藏族羌族自治州·", "·");
- var regions = region.Split("·");
- if (regions.Length==4)
- {
- vist.area= regions[0];
- vist.province = regions[1];
- vist.city = regions[2];
- }
- if (regions.Length==3)
- {
- vist.area= regions[0];
- vist.province = regions[1];
- }
- if (regions.Length==2)
- {
- vist.area= regions[0];
- vist.province = regions[1];
- }
- if (regions.Length==1)
- {
- vist.area= regions[0];
- }
- }
- //处理地区转经纬度
- {
- IEnumerable<JToken> tokens = default;
- if (!string.IsNullOrWhiteSpace(vist.city) && !string.IsNullOrWhiteSpace(vist.province) && !string.IsNullOrWhiteSpace(vist.area))
- {
- tokens= _longitudeLatitudeTranslator.regionJson.SelectTokens($"$..[?(@.province=~ /.*{vist.province}/i && @.city=~ /.*{vist.city}/i)]");
- if (!(tokens.Any() && tokens.Count()>0))
- {
- tokens= _longitudeLatitudeTranslator.regionJson.SelectTokens($"$..[?(@.province=~ /.*{vist.city}/i && @.city=~ /.*{vist.province}/i)]");
- if (!(tokens.Any() && tokens.Count()>0))
- {
- tokens= _longitudeLatitudeTranslator.regionJson.SelectTokens($"$..[?(@.province=~ /.*{vist.city}/i || @.city=~ /.*{vist.city}/i)]");
- }
- if (!(tokens.Any() && tokens.Count()>0))
- {
- tokens= _longitudeLatitudeTranslator.regionJson.SelectTokens($"$..[?(@.province=~ /.*{vist.province}/i||@.city=~ /.*{vist.province}/i)]");
- }
- }
- }
- else if (string.IsNullOrWhiteSpace(vist.city) && !string.IsNullOrWhiteSpace(vist.province) && !string.IsNullOrWhiteSpace(vist.area))
- {
- if (vist.area.Equals("中国"))
- {
- tokens= _longitudeLatitudeTranslator.regionJson.SelectTokens($"$..[?(@.province=~ /.*{vist.province}/i)]");
- if (!(tokens.Any() && tokens.Count()>0))
- {
- tokens= _longitudeLatitudeTranslator.regionJson.SelectTokens($"$..[?(@.city=~ /.*{vist.province}/i)]");
- }
- }
- else
- {
- tokens= _longitudeLatitudeTranslator.regionJson.SelectTokens($"$..[?(@.city=~ /.*{vist.province}/i || @.province=~ /.*{vist.province}/i)]");
- }
- }
- else if (!string.IsNullOrWhiteSpace(vist.city) && string.IsNullOrWhiteSpace(vist.province)&& !string.IsNullOrWhiteSpace(vist.area))
- {
- if (vist.area.Equals("中国"))
- {
- tokens= _longitudeLatitudeTranslator.regionJson.SelectTokens($"$..[?(@.province=~ /.*{vist.city}/i)]");
- if (!(tokens.Any() && tokens.Count()>0))
- {
- tokens= _longitudeLatitudeTranslator.regionJson.SelectTokens($"$..[?(@.city=~ /.*{vist.province}/i)]");
- }
- }
- else
- {
- tokens= _longitudeLatitudeTranslator.regionJson.SelectTokens($"$..[?(@.city=~ /.*{vist.city}/i || @.city=~ /.*{vist.province}/i)]");
- }
- }
- else if (string.IsNullOrWhiteSpace(vist.city) && string.IsNullOrWhiteSpace(vist.province)&& !string.IsNullOrWhiteSpace(vist.area))
- {
- tokens= _longitudeLatitudeTranslator.regionJson.SelectTokens($"$..[?(@.country=~ /.*{vist.area}/i && @.m=='1')]");
- }
- if (tokens!=null && tokens.Any())
- {
- List<RegionLngLat> regionLngLats = new List<RegionLngLat>();
- foreach (JToken token in tokens)
- {
- regionLngLats.Add(token.ToString().ToObject<RegionLngLat>());
- }
- var points = regionLngLats.FindAll(x => string.IsNullOrWhiteSpace(x.area));
- if (!points.IsNotEmpty())
- {
- points= regionLngLats.FindAll(x => !string.IsNullOrWhiteSpace(x.m) && x.m.Equals("1"));
- }
- if (string.IsNullOrWhiteSpace(vist.city))
- {
- vist.city=points?.FirstOrDefault()?.city;
- if (!string.IsNullOrWhiteSpace(vist.city) && vist.city.EndsWith("市"))
- {
- vist.city=vist.city.Replace("市", "");
- }
- }
- vist.lat=points?.FirstOrDefault()?.lat;
- vist.lng=points?.FirstOrDefault()?.lng;
- }
- else
- {
- if (vist.area.Equals("内网IP"))
- {
- if (vist.host.Contains(".cn") || vist.host.Contains("localhost"))
- {
- vist.lat="30.655821878416408";
- vist.lng="104.08153351042463";
- vist.area="中国";
- vist.province="四川";
- vist.city="成都";
- }
- else
- {
- vist.lat="25.044332";
- vist.lng="121.509062";
- vist.area="中国";
- vist.province="台湾";
- vist.city="台湾";
- }
- }
- else
- {
- vist.lat="30.655821878416408";
- vist.lng="104.08153351042463";
- vist.area="中国";
- vist.province="四川";
- vist.city="成都";
- }
- }
- }
- uuidInfo.Add((uuid, log, useridMatch, schoolMatch));
- visits.Add(vist);
- }
- }
- );
- List<(string tmd, bool exists, string scope)> tmdexists = new List<(string tmd, bool exists, string scope)>();
- List<(string sch, bool exists)> schexists = new List<(string sch, bool exists)>();
- var tmds = uuidInfo.SelectMany(x => x.tmdid).ToHashSet();
- if (tmds.Any())
- {
- foreach (var tmd in tmds)
- {
- var exists = await _azureRedis.GetRedisClient(8).KeyExistsAsync($"Blob:Catalog:{tmd}");
- if (exists)
- {
- tmdexists.Add((tmd, exists, "teacher"));
- }
- else
- {
- exists = await _azureRedis.GetRedisClient(8).KeyExistsAsync($"Login:School:hbcn:student:{tmd}");
- tmdexists.Add((tmd, exists, "student"));
- }
- }
- }
- var schs = uuidInfo.SelectMany(x => x.school).ToHashSet();
- if (schs.Any())
- {
- foreach (var sch in schs)
- {
- var exists = await _azureRedis.GetRedisClient(8).KeyExistsAsync($"Blob:Catalog:{sch}");
- schexists.Add((sch, exists));
- }
- }
- foreach (var item in uuidInfo)
- {
- foreach (var tmd in item.tmdid)
- {
- var tmdext = tmdexists.Find(x => x.tmd.Equals(tmd));
- if (tmdext.tmd!= null && tmdext.exists)
- {
- var vist = visits.Where(x => x.id.Equals(item.uuid));
- foreach (var vi in vist)
- {
- vi.userId=tmd;
- if (string.IsNullOrWhiteSpace(vi.scope))
- {
- vi.scope=tmdext.scope;
- }
- }
- break;
- }
- }
- foreach (var sch in item.school)
- {
- var schext = schexists.Find(x => x.sch.Equals(sch));
- if (schext.sch!= null && schext.exists)
- {
- var vist = visits.Where(x => x.id.Equals(item.uuid));
- foreach (var vi in vist)
- {
- vi.school=sch;
- }
- break;
- }
- }
- }
- return (visits, uuidInfo);
- }
- public class ApiVisit
- {
- public string id { get; set; }
- public string path { get; set; }
- /// <summary>
- /// 细分
- /// ies5 ,hiteach,hita,cc,bi,contest,open,aclassone,sokrates,ability,art
- /// 产品端
- /// </summary>
- public string client { get; set; }
- /// <summary>
- /// 具体功能
- /// </summary>
- // public string func { get; set; }
- public string userId { get; set; }
- public string scope { get; set; }
- public string tname { get; set; }
- public string school { get; set; }
- public string ip { get; set; }
- //public string region { get; set; }
- public string area { get; set; }
- public string province { get; set; }
- public string city { get; set; } = "";
- public long time { get; set; }
- /// <summary>
- ///
- /// </summary>
- public string host { get; set; }
- public string hostName { get; set; } = "其他";
- /// <summary>
- /// tokenid
- /// </summary>
- public string tid { get; set; }
- public string year { get; set; }
- public string month { get; set; }
- public string day { get; set; }
- public string hour { get; set; }
- //public RegionLngLat point { get; set; }
- public string lat { get; set; }
- public string lng { get; set; }
- public string l { get; set; }
- }
- public class HttpLog
- {
- public string ip { get; set; }
- public long time { get; set; }
- public string host { get; set; }
- public string hostName = "其他";
- public string tid { get; set; }
- public string path { get; set; }
- public string client { get; set; }
- public JsonElement param { get; set; }
- public string id { get; set; }
- public string name { get; set; }
- public string school { get; set; }
- public string p { get; set; }
- // public string ua { get; set; }
- // public string referer { get; set; }
- public string scope { get; set; }
- public string year { get; set; }
- public string month { get; set; }
- public string day { get; set; }
- public string hour { get; set; }
- public string l { get; set; }
- }
- public record RegionLngLat
- {
- public string country { get; set; }
- public string province { get; set; }
- public string city { get; set; }
- public string lat { get; set; }
- public string lng { get; set; }
- public string area { get; set; }
- public string m { get; set; } = "0";
- }
- public class CountData
- {
- public string pk { get; set; } = "";
- public string sk { get; set; } = "";
- public string sp { get; set; } = "";
- public int count { get; set; }
- }
- public class SchoolStick
- {
-
- /// <summary>
- /// 名字
- /// </summary>
- public string name { get; set; }
- public string picture { get; set; }
- /// <summary>
- /// 编码
- /// </summary>
- public string id { get; set; }
- public string last { get; set; }
- #region tmd
- public ClientStick tmd { get; set; } = new ClientStick();
- #endregion
- #region hiteach
- public ClientStick hiteach { get; set; } = new ClientStick();
- public Indicator lesson { get; set; } = new Indicator();
- #endregion
- #region hita
- public ClientStick hita { get; set; } = new ClientStick();
- #endregion
- #region ies5Teacher
- public ClientStick ies5Tch { get; set; } = new ClientStick();
- #endregion
- #region otherTeacher
- public ClientStick otherTch { get; set; } = new ClientStick();
- #endregion
- #region ies5Student
- public ClientStick ies5Stu { get; set; } = new ClientStick();
- #endregion
- #region otherStudent
- public ClientStick otherStu { get; set; } = new ClientStick();
- #endregion
- public List<TchStick> tchSticks { get; set; } = new List<TchStick>();
- public List<StuStick> stuSticks { get; set; } = new List<StuStick>();
- }
- public class TchStick {
- public string school { get; set; }
- /// <summary>
- /// 名字
- /// </summary>
- public string name { get; set; }
- public string picture { get; set; }
- /// <summary>
- /// 编码
- /// </summary>
- public string id { get; set; }
- public string last { get; set; }
- #region tmd
- public ClientStick tmd { get; set; } = new ClientStick();
- #endregion
- #region hiteach
- public ClientStick hiteach { get; set; } = new ClientStick();
- public Indicator lesson { get; set; } = new Indicator();
- #endregion
- #region hita
- public ClientStick hita { get; set; } = new ClientStick();
- #endregion
- #region ies5Teacher
- public ClientStick ies5Tch { get; set; } = new ClientStick();
- #endregion
- #region otherTeacher
- public ClientStick otherTch { get; set; } = new ClientStick();
- #endregion
- }
- public class StuStick
- {
- public string school { get; set; }
- /// <summary>
- /// 名字
- /// </summary>
- public string name { get; set; }
- public string picture { get; set; }
- /// <summary>
- /// 编码
- /// </summary>
- public string id { get; set; }
- public string last { get; set; }
- #region tmd
- public ClientStick tmd { get; set; } = new ClientStick();
- #endregion
- #region ies5Student
- public ClientStick ies5Stu { get; set; } = new ClientStick();
- #endregion
- #region otherStudent
- public ClientStick otherStu { get; set; } = new ClientStick();
- #endregion
- }
- public class ClientStick
- {
- public int userCount { get; set; }
-
- public Indicator stick { get; set; } = new Indicator();
- public Indicator duration { get; set; } = new Indicator();
- public Indicator count { get; set; } = new Indicator();
- }
- public class Indicator
- {
- /// <summary>
- /// 值
- /// </summary>
- public double value { get; set; } = 0;
- /// <summary>
- /// 值的增减浮动
- /// </summary>
- public double range { get; set; } = 0;
- /// <summary>
- /// 排名
- /// </summary>
- public double rank { get; set; } = 0;
- /// <summary>
- /// 排名的上升下降
- /// </summary>
- public double updown { get; set; } = 0;
- }
- }
- }
|