ActiveTaskTopic.cs 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Text.Json;
  5. using System.Threading.Tasks;
  6. using Azure.Cosmos;
  7. using Azure.Messaging.ServiceBus;
  8. using Microsoft.Extensions.Logging;
  9. using StackExchange.Redis;
  10. using TEAMModelOS.SDK.DI;
  11. using TEAMModelOS.SDK.Extension;
  12. using TEAMModelOS.SDK;
  13. using TEAMModelOS.SDK.Models;
  14. using TEAMModelOS.SDK.Models.Cosmos;
  15. using TEAMModelOS.SDK.Models.Cosmos.Common;
  16. using System.Linq;
  17. using TEAMModelOS.SDK.Models.Service;
  18. using TEAMModelOS.SDK.Models.Cosmos.BI;
  19. using TEAMModelOS.Models;
  20. using Microsoft.Extensions.Options;
  21. using Microsoft.Extensions.Configuration;
  22. using HTEXLib.COMM.Helpers;
  23. using Microsoft.Azure.Functions.Worker;
  24. using TEAMModelOS.SDK.Services;
  25. using Azure.Storage.Blobs.Models;
  26. using System.IO;
  27. using Azure;
  28. using static TEAMModelOS.SDK.Models.Service.LessonService;
  29. using DinkToPdf.Contracts;
  30. using TEAMModelOS.SDK.Helper.Common.DateTimeHelper;
  31. using static TEAMModelOS.SDK.StatisticsService;
  32. using DocumentFormat.OpenXml.Office2010.Excel;
  33. using DocumentFormat.OpenXml.Wordprocessing;
  34. using System.Xml.Linq;
  35. using Azure.Storage.Sas;
  36. using DocumentFormat.OpenXml.Drawing;
  37. using static TEAMModelOS.FunctionV4.HttpTrigger.IESHttpTrigger;
  38. using System.Net.Http;
  39. using System.Web;
  40. using System.Net;
  41. using System.Net.Http.Json;
  42. using System.Threading;
  43. using System.Collections.Concurrent;
  44. using Microsoft.Azure.Amqp.Framing;
  45. using System.Security.Policy;
  46. using TEAMModelOS.SDK.Models.Service.BI;
  47. namespace TEAMModelOS.FunctionV4.ServiceBus
  48. {
  49. public class ActiveTaskTopic
  50. {
  51. private readonly int psize = 20;
  52. private readonly AzureCosmosFactory _azureCosmos;
  53. private readonly DingDing _dingDing;
  54. private readonly AzureStorageFactory _azureStorage;
  55. private readonly AzureRedisFactory _azureRedis;
  56. private readonly AzureServiceBusFactory _serviceBus;
  57. private readonly Option _option;
  58. private readonly CoreAPIHttpService _coreAPIHttpService;
  59. private readonly IConfiguration _configuration;
  60. private readonly IConverter _converter;
  61. private readonly SnowflakeId _snowflakeId;
  62. public ActiveTaskTopic(SnowflakeId snowflakeId, IConverter converter, CoreAPIHttpService coreAPIHttpService,
  63. AzureCosmosFactory azureCosmos, DingDing dingDing, AzureStorageFactory azureStorage, AzureRedisFactory azureRedis,
  64. AzureServiceBusFactory serviceBus, IOptionsSnapshot<Option> option,
  65. IConfiguration configuration)
  66. {
  67. _azureCosmos = azureCosmos;
  68. _dingDing = dingDing;
  69. _azureStorage = azureStorage;
  70. _azureRedis = azureRedis;
  71. _serviceBus = serviceBus;
  72. _option = option?.Value;
  73. _configuration = configuration;
  74. _coreAPIHttpService = coreAPIHttpService;
  75. _converter = converter;
  76. _snowflakeId = snowflakeId;
  77. }
  78. [Function("Exam")]
  79. public async Task ExamFunc([ServiceBusTrigger("%Azure:ServiceBus:ActiveTask%", "exam", Connection = "Azure:ServiceBus:ConnectionString")] string msg)
  80. {
  81. try
  82. {
  83. var json = JsonDocument.Parse(msg);
  84. json.RootElement.TryGetProperty("id", out JsonElement id);
  85. json.RootElement.TryGetProperty("progress", out JsonElement progress);
  86. json.RootElement.TryGetProperty("code", out JsonElement code);
  87. //Dictionary<string, object> keyValuePairs = mySbMsg.ToObject<Dictionary<string, object>>();
  88. var client = _azureCosmos.GetCosmosClient();
  89. ExamInfo exam = await client.GetContainer(Constant.TEAMModelOS, "Common").ReadItemAsync<ExamInfo>(id.ToString(), new PartitionKey($"{code}"));
  90. exam.progress = progress.ToString();
  91. await client.GetContainer(Constant.TEAMModelOS, "Common").ReplaceItemAsync(exam, id.ToString(), new PartitionKey($"{code}"));
  92. }
  93. catch (CosmosException e)
  94. {
  95. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-ServiceBus,ExamBus()-CosmosDB异常{e.Message}\n{e.StackTrace}\n{e.Status}\n{msg}", GroupNames.醍摩豆服務運維群組);
  96. }
  97. catch (Exception ex)
  98. {
  99. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-ServiceBus,ExamBus()\n{ex.Message}\n{ex.StackTrace}\n\n{msg}", GroupNames.醍摩豆服務運維群組);
  100. }
  101. }
  102. [Function("Vote")]
  103. public async Task VoteFunc([ServiceBusTrigger("%Azure:ServiceBus:ActiveTask%", "vote", Connection = "Azure:ServiceBus:ConnectionString")] string msg)
  104. {
  105. try
  106. {
  107. var jsonMsg = JsonDocument.Parse(msg);
  108. jsonMsg.RootElement.TryGetProperty("id", out JsonElement id);
  109. jsonMsg.RootElement.TryGetProperty("progress", out JsonElement progress);
  110. jsonMsg.RootElement.TryGetProperty("code", out JsonElement code);
  111. var client = _azureCosmos.GetCosmosClient();
  112. Vote vote = await client.GetContainer(Constant.TEAMModelOS, "Common").ReadItemAsync<Vote>(id.ToString(), new PartitionKey($"{code}"));
  113. vote.progress = progress.ToString();
  114. await client.GetContainer(Constant.TEAMModelOS, "Common").ReplaceItemAsync(vote, id.ToString(), new PartitionKey($"{code}"));
  115. }
  116. catch (CosmosException e)
  117. {
  118. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-ServiceBus,VoteBus()-CosmosDB异常{e.Message}\n{e.StackTrace}\n{e.Status}\n{msg}", GroupNames.醍摩豆服務運維群組);
  119. }
  120. catch (Exception ex)
  121. {
  122. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-ServiceBus,VoteBus()\n{ex.Message}\n{ex.StackTrace}\n\n{msg}", GroupNames.醍摩豆服務運維群組);
  123. }
  124. }
  125. [Function("Correct")]
  126. public async Task CorrectFunc([ServiceBusTrigger("%Azure:ServiceBus:ActiveTask%", "correct", Connection = "Azure:ServiceBus:ConnectionString")] string msg)
  127. {
  128. try
  129. {
  130. var jsonMsg = JsonDocument.Parse(msg);
  131. jsonMsg.RootElement.TryGetProperty("id", out JsonElement id);
  132. jsonMsg.RootElement.TryGetProperty("progress", out JsonElement progress);
  133. jsonMsg.RootElement.TryGetProperty("code", out JsonElement code);
  134. var client = _azureCosmos.GetCosmosClient();
  135. Correct correct = await client.GetContainer(Constant.TEAMModelOS, "Common").ReadItemAsync<Correct>(id.ToString(), new PartitionKey($"{code}"));
  136. correct.progress = progress.ToString();
  137. await client.GetContainer(Constant.TEAMModelOS, "Common").ReplaceItemAsync(correct, id.ToString(), new PartitionKey($"{code}"));
  138. }
  139. catch (CosmosException e)
  140. {
  141. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-ServiceBus,Correct()-CosmosDB异常{e.Message}\n{e.StackTrace}\n{e.Status}\n{msg}", GroupNames.醍摩豆服務運維群組);
  142. }
  143. catch (Exception ex)
  144. {
  145. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-ServiceBus,Correct()\n{ex.Message}\n{ex.StackTrace}\n\n{msg}", GroupNames.醍摩豆服務運維群組);
  146. }
  147. }
  148. [Function("Survey")]
  149. public async Task SurveyFunc([ServiceBusTrigger("%Azure:ServiceBus:ActiveTask%", "survey", Connection = "Azure:ServiceBus:ConnectionString")] string msg)
  150. {
  151. try
  152. {
  153. var jsonMsg = JsonDocument.Parse(msg);
  154. jsonMsg.RootElement.TryGetProperty("id", out JsonElement id);
  155. jsonMsg.RootElement.TryGetProperty("progress", out JsonElement progress);
  156. jsonMsg.RootElement.TryGetProperty("code", out JsonElement code);
  157. //Dictionary<string, object> keyValuePairs = mySbMsg.ToObject<Dictionary<string, object>>();
  158. var client = _azureCosmos.GetCosmosClient();
  159. Survey survey = await client.GetContainer(Constant.TEAMModelOS, "Common").ReadItemAsync<Survey>(id.ToString(), new PartitionKey($"{code}"));
  160. survey.progress = progress.ToString();
  161. await client.GetContainer(Constant.TEAMModelOS, "Common").ReplaceItemAsync(survey, id.ToString(), new PartitionKey($"{code}"));
  162. }
  163. catch (CosmosException e)
  164. {
  165. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-ServiceBus,SurveyBus()-CosmosDB异常{e.Message}\n{e.StackTrace}\n{e.Status}\n{msg}", GroupNames.醍摩豆服務運維群組);
  166. }
  167. catch (Exception ex)
  168. {
  169. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-ServiceBus,SurveyBus()\n{ex.Message}\n{ex.StackTrace}\n\n{msg}", GroupNames.醍摩豆服務運維群組);
  170. }
  171. }
  172. [Function("Homework")]
  173. public async Task HomeworkFunc([ServiceBusTrigger("%Azure:ServiceBus:ActiveTask%", "homework", Connection = "Azure:ServiceBus:ConnectionString")] string msg)
  174. {
  175. try
  176. {
  177. var jsonMsg = JsonDocument.Parse(msg);
  178. jsonMsg.RootElement.TryGetProperty("id", out JsonElement id);
  179. jsonMsg.RootElement.TryGetProperty("progress", out JsonElement progress);
  180. jsonMsg.RootElement.TryGetProperty("code", out JsonElement code);
  181. var client = _azureCosmos.GetCosmosClient();
  182. Homework homework = await client.GetContainer(Constant.TEAMModelOS, "Common").ReadItemAsync<Homework>(id.ToString(), new PartitionKey($"{code}"));
  183. homework.progress = progress.ToString();
  184. await client.GetContainer(Constant.TEAMModelOS, "Common").ReplaceItemAsync(homework, id.ToString(), new PartitionKey($"{code}"));
  185. }
  186. catch (CosmosException e)
  187. {
  188. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-ServiceBus,Homework()-CosmosDB异常{e.Message}\n{e.StackTrace}\n{e.Status}\n{msg}", GroupNames.醍摩豆服務運維群組);
  189. }
  190. catch (Exception ex)
  191. {
  192. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-ServiceBus,Homework()\n{ex.Message}\n{ex.StackTrace}\n\n{msg}", GroupNames.醍摩豆服務運維群組);
  193. }
  194. }
  195. [Function("Study")]
  196. public async Task StudyFunc([ServiceBusTrigger("%Azure:ServiceBus:ActiveTask%", "study", Connection = "Azure:ServiceBus:ConnectionString")] string msg)
  197. {
  198. string activityId = string.Empty;
  199. try
  200. {
  201. var jsonMsg = JsonDocument.Parse(msg);
  202. jsonMsg.RootElement.TryGetProperty("id", out JsonElement id);
  203. jsonMsg.RootElement.TryGetProperty("progress", out JsonElement progress);
  204. jsonMsg.RootElement.TryGetProperty("code", out JsonElement code);
  205. var client = _azureCosmos.GetCosmosClient();
  206. Study study = await client.GetContainer(Constant.TEAMModelOS, "Common").ReadItemAsync<Study>(id.ToString(), new PartitionKey($"{code}"));
  207. study.progress = progress.ToString();
  208. activityId = id.ToString();
  209. await client.GetContainer(Constant.TEAMModelOS, "Common").ReplaceItemAsync(study, id.ToString(), new PartitionKey($"{code}"));
  210. }
  211. catch (CosmosException e)
  212. {
  213. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-ServiceBus,Study()-CosmosDB异常{e.Message}\n{e.StackTrace}\n{e.Status}\n{msg}", GroupNames.醍摩豆服務運維群組);
  214. }
  215. catch (Exception ex)
  216. {
  217. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-ServiceBus,Study()\n{ex.Message}\n{ex.StackTrace}\n\n{msg}", GroupNames.醍摩豆服務運維群組);
  218. }
  219. }
  220. [Function("Art")]
  221. public async Task ArtFunc([ServiceBusTrigger("%Azure:ServiceBus:ActiveTask%", "art", Connection = "Azure:ServiceBus:ConnectionString")] string msg)
  222. {
  223. string activityId = string.Empty;
  224. try
  225. {
  226. var jsonMsg = JsonDocument.Parse(msg);
  227. jsonMsg.RootElement.TryGetProperty("id", out JsonElement id);
  228. jsonMsg.RootElement.TryGetProperty("progress", out JsonElement progress);
  229. jsonMsg.RootElement.TryGetProperty("code", out JsonElement code);
  230. var client = _azureCosmos.GetCosmosClient();
  231. ArtEvaluation art = await client.GetContainer(Constant.TEAMModelOS, "Common").ReadItemAsync<ArtEvaluation>(id.ToString(), new PartitionKey($"{code}"));
  232. art.progress = progress.ToString();
  233. activityId = id.ToString();
  234. await client.GetContainer(Constant.TEAMModelOS, "Common").ReplaceItemAsync(art, id.ToString(), new PartitionKey($"{code}"));
  235. }
  236. catch (CosmosException e)
  237. {
  238. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-ServiceBus,Art()-CosmosDB异常{e.Message}\n{e.StackTrace}\n{e.Status}\n{msg}", GroupNames.醍摩豆服務運維群組);
  239. }
  240. catch (Exception ex)
  241. {
  242. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-ServiceBus,Art()\n{ex.Message}\n{ex.StackTrace}\n\n{msg}", GroupNames.醍摩豆服務運維群組);
  243. }
  244. }
  245. [Function("ExamLite")]
  246. public async Task ExamLiteFunc([ServiceBusTrigger("%Azure:ServiceBus:ActiveTask%", "examlite", Connection = "Azure:ServiceBus:ConnectionString")] string msg)
  247. {
  248. try
  249. {
  250. var jsonMsg = JsonDocument.Parse(msg);
  251. jsonMsg.RootElement.TryGetProperty("id", out JsonElement id);
  252. jsonMsg.RootElement.TryGetProperty("progress", out JsonElement progress);
  253. jsonMsg.RootElement.TryGetProperty("code", out JsonElement code);
  254. var client = _azureCosmos.GetCosmosClient();
  255. ExamLite lite = await client.GetContainer(Constant.TEAMModelOS, "Common").ReadItemAsync<ExamLite>(id.ToString(), new PartitionKey($"{code}"));
  256. lite.progress = progress.ToString();
  257. await client.GetContainer(Constant.TEAMModelOS, "Common").ReplaceItemAsync(lite, id.ToString(), new PartitionKey($"{code}"));
  258. }
  259. catch (CosmosException e)
  260. {
  261. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-ServiceBus,ExamLite()-CosmosDB异常{e.Message}\n{e.StackTrace}\n{e.Status}\n{msg}", GroupNames.醍摩豆服務運維群組);
  262. }
  263. catch (Exception ex)
  264. {
  265. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-ServiceBus,ExamLite()\n{ex.Message}\n{ex.StackTrace}\n\n{msg}", GroupNames.醍摩豆服務運維群組);
  266. }
  267. }
  268. /// <param name="msg"></param>
  269. /// <returns></returns>
  270. [Function("TeacherTrainChange")]
  271. public async Task TeacherTrainChangeFunc([ServiceBusTrigger("%Azure:ServiceBus:ActiveTask%", "teacher-train-change", Connection = "Azure:ServiceBus:ConnectionString")] string msg)
  272. {
  273. var client = _azureCosmos.GetCosmosClient();
  274. var data = msg.ToObject<TeacherTrainChangeMsg>();
  275. List<TeacherTrain> trains = new List<TeacherTrain>();
  276. //redis锁
  277. bool lockKey = await _azureRedis.GetRedisClient(8).KeyExistsAsync($"Train:Statistics:Lock:{data.areaId}");
  278. if (!lockKey)
  279. {
  280. await _azureRedis.GetRedisClient(8).SetAddAsync($"Train:Statistics:Lock:{data.areaId}", new RedisValue(data.areaId));
  281. DateTime minutes = DateTime.UtcNow.AddMinutes(15); //15分钟
  282. await _azureRedis.GetRedisClient(8).KeyExpireAsync($"Train:Statistics:Lock:{data.areaId}", minutes);
  283. Area area = await client.GetContainer(Constant.TEAMModelOS, "Normal").ReadItemAsync<Area>($"{data.areaId}", new PartitionKey("Base-Area"));
  284. AreaSetting setting = null;
  285. if (area != null)
  286. {
  287. try
  288. {
  289. setting = await client.GetContainer(Constant.TEAMModelOS, "Normal").ReadItemAsync<AreaSetting>(area.id, new PartitionKey("AreaSetting"));
  290. }
  291. catch (CosmosException)
  292. {
  293. setting = null;
  294. }
  295. }
  296. if (setting == null)
  297. {
  298. setting = new AreaSetting
  299. {
  300. allTime = 50,
  301. classTime = 5,
  302. submitTime = 15,
  303. onlineTime = 20,
  304. offlineTime = 10,
  305. lessonMinutes = 45,
  306. };
  307. }
  308. foreach (var school in data.schools)
  309. {
  310. List<Study> studies = new List<Study>();
  311. await foreach (var item in client.GetContainer("TEAMModelOS", "Common")
  312. .GetItemQueryIterator<Study>(queryText: $"select value(c) from c where c.owner<>'area' ", requestOptions: new QueryRequestOptions() { PartitionKey = new PartitionKey($"Study-{school.school}") }))
  313. {
  314. studies.Add(item);
  315. }
  316. if (school.teachers.Any())
  317. {
  318. string trainSql = $"select value(c) from c where c.id in ({string.Join(",", school.teachers.Select(x => $"'{x}'"))}) ";
  319. await foreach (var item in client.GetContainer("TEAMModelOS", Constant.Teacher)
  320. .GetItemQueryIterator<TeacherTrain>(queryText: trainSql, requestOptions: new QueryRequestOptions() { PartitionKey = new PartitionKey($"TeacherTrain-{school.school}") }))
  321. {
  322. trains.Add(item);
  323. }
  324. }
  325. await StatisticsService.GetStatisticsTeacher(trains, setting, area, client, studies);
  326. }
  327. area.updateTime = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds();
  328. await client.GetContainer(Constant.TEAMModelOS, "Normal").ReplaceItemAsync<Area>(area, $"{data.areaId}", new PartitionKey("Base-Area"));
  329. }
  330. }
  331. /// <param name="msg"></param>
  332. /// <returns></returns>
  333. //[Function("TeacherTrainChange")]
  334. public async Task TeacherTrainChangeFuncBak([ServiceBusTrigger("%Azure:ServiceBus:ActiveTask%", "teacher-train-change", Connection = "Azure:ServiceBus:ConnectionString")] string msg)
  335. {
  336. try
  337. {
  338. TeacherTrainChange change = msg.ToObject<TeacherTrainChange>();
  339. if (change.update == null || change.update.Count <= 0 || change.tmdids.IsEmpty())
  340. {
  341. return;
  342. }
  343. var client = _azureCosmos.GetCosmosClient();
  344. string insql = $"where c.id in ({string.Join(",", change.tmdids.Select(x => $"'{x}'"))})";
  345. string selsql = $"select value(c) from c {insql} ";
  346. List<TeacherTrain> teacherTrains = new List<TeacherTrain>();
  347. await foreach (var item in client.GetContainer(Constant.TEAMModelOS, "Teacher").GetItemQueryIterator<TeacherTrain>(queryText: selsql,
  348. requestOptions: new QueryRequestOptions() { PartitionKey = new PartitionKey($"TeacherTrain-{change.school}") }))
  349. {
  350. teacherTrains.Add(item);
  351. }
  352. if (change.statistics != 1)
  353. {
  354. List<Task<ItemResponse<TeacherTrain>>> task = new List<Task<ItemResponse<TeacherTrain>>>();
  355. teacherTrains.ForEach(x =>
  356. {
  357. x.update.UnionWith(change.update);
  358. task.Add(client.GetContainer(Constant.TEAMModelOS, "Teacher").ReplaceItemAsync<TeacherTrain>(x, x.id, new PartitionKey($"TeacherTrain-{change.school}")));
  359. });
  360. await task.TaskPage(5);
  361. var unchange = change.tmdids.Except(teacherTrains.Select(x => x.id));
  362. if (unchange != null)
  363. {
  364. task.Clear();
  365. unchange.ToList().ForEach(x =>
  366. {
  367. TeacherTrain teacherTrain = new TeacherTrain
  368. {
  369. pk = "TeacherTrain",
  370. id = x,
  371. code = $"TeacherTrain-{change.school}",
  372. tmdid = x,
  373. school = change.school,
  374. update = new HashSet<string> { StatisticsService.TeacherAbility,
  375. StatisticsService.TeacherClass, StatisticsService.OfflineRecord }
  376. };
  377. teacherTrain.update.UnionWith(change.update);
  378. task.Add(client.GetContainer(Constant.TEAMModelOS, "Teacher").UpsertItemAsync<TeacherTrain>(teacherTrain, new PartitionKey($"TeacherTrain-{change.school}")));
  379. });
  380. await task.TaskPage(1);
  381. }
  382. }
  383. else
  384. {
  385. Area area = null;
  386. string sql = $"select value(c) from c where c.standard='{change.standard}'";
  387. await foreach (var item in client.GetContainer(Constant.TEAMModelOS, "Normal").GetItemQueryIterator<Area>(queryText: sql,
  388. requestOptions: new QueryRequestOptions() { PartitionKey = new PartitionKey($"Base-Area") }))
  389. {
  390. area = item;
  391. }
  392. AreaSetting setting = null;
  393. if (area != null)
  394. {
  395. try
  396. {
  397. setting = await client.GetContainer(Constant.TEAMModelOS, "School").ReadItemAsync<AreaSetting>(change.school, new PartitionKey("AreaSetting"));
  398. }
  399. catch (CosmosException)
  400. {
  401. try
  402. {
  403. setting = await client.GetContainer(Constant.TEAMModelOS, "Normal").ReadItemAsync<AreaSetting>(area.id, new PartitionKey("AreaSetting"));
  404. }
  405. catch (CosmosException)
  406. {
  407. setting = null;
  408. }
  409. }
  410. }
  411. if (setting == null)
  412. {
  413. setting = new AreaSetting
  414. {
  415. allTime = 50,
  416. classTime = 5,
  417. submitTime = 15,
  418. onlineTime = 20,
  419. offlineTime = 10,
  420. lessonMinutes = 45,
  421. };
  422. }
  423. List<Task<TeacherTrain>> task = new List<Task<TeacherTrain>>();
  424. teacherTrains.ForEach(x =>
  425. {
  426. x.update.UnionWith(change.update);
  427. task.Add(StatisticsService.StatisticsTeacher(x, setting, area, client, null));
  428. });
  429. await task.TaskPage(1);
  430. var unchange = change.tmdids.Except(teacherTrains.Select(x => x.id));
  431. if (unchange != null)
  432. {
  433. task.Clear();
  434. unchange.ToList().ForEach(x =>
  435. {
  436. task.Add(StatisticsService.StatisticsTeacher(new TeacherTrain
  437. {
  438. pk = "TeacherTrain",
  439. id = x,
  440. code = $"TeacherTrain-{change.school}",
  441. tmdid = x,
  442. school = change.school,
  443. update = new HashSet<string> { StatisticsService.TeacherAbility,
  444. StatisticsService.TeacherClass, StatisticsService.OfflineRecord }
  445. }, setting, area, client, null));
  446. });
  447. await task.TaskPage(1);
  448. }
  449. }
  450. }
  451. catch (CosmosException ex)
  452. {
  453. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-研修数据变更,重新统计-TeacherTrainChange\n{msg}\n{ex.Message}\n{ex.StackTrace}\nCosmosException{ex.Status}", GroupNames.醍摩豆服務運維群組);
  454. }
  455. catch (Exception ex)
  456. {
  457. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-研修数据变更,重新统计-TeacherTrainChange\n{msg}\n{ex.Message}\n{ex.StackTrace}\n", GroupNames.醍摩豆服務運維群組);
  458. }
  459. }
  460. /// <summary>
  461. /// 完善课程变更,StuListChange, originCode是学校编码 则表示名单是学校自定义名单,如果是tmdid则表示醍摩豆的私有名单,scope=school,private。
  462. /// </summary>
  463. /// <data msg>
  464. /// CourseChange
  465. ///// </data>
  466. /// <param name="msg"></param>
  467. /// <returns></returns>
  468. [Function("GroupChange")]
  469. public async Task GroupChangeFunc([ServiceBusTrigger("%Azure:ServiceBus:ActiveTask%", "group-change", Connection = "Azure:ServiceBus:ConnectionString")] string msg)
  470. {
  471. var client = _azureCosmos.GetCosmosClient();
  472. try
  473. {
  474. //await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-名单成员变更-GroupChange\n{msg}", GroupNames.醍摩豆服務運維群組);
  475. var jsonMsg = JsonDocument.Parse(msg);
  476. GroupChange groupChange = msg.ToObject<GroupChange>();
  477. //名单变动修改学生课程关联信息
  478. //await StuListService.FixStuCourse(client, stuListChange);
  479. //Vote投票 Survey问卷 Exam评测 Learn学习活动 Homework作业活动
  480. //名单变动修改学生问卷关联信息
  481. await ActivityService.FixActivity(client, _dingDing, groupChange, "Survey");
  482. //名单变动修改学生投票关联信息
  483. await ActivityService.FixActivity(client, _dingDing, groupChange, "Vote");
  484. //名单变动修改学生评测关联信息
  485. await ActivityService.FixActivity(client, _dingDing, groupChange, "Exam");
  486. //名单变动修改学生研修关联信息
  487. await ActivityService.FixActivity(client, _dingDing, groupChange, "Study");
  488. //名单变动修改学生简易评测关联信息
  489. await ActivityService.FixActivity(client, _dingDing, groupChange, "ExamLite");
  490. //名单变动修改学生作业活动信息
  491. await ActivityService.FixActivity(client, _dingDing, groupChange, "Homework");
  492. //名单变动修改学生艺术评价活动信息
  493. await ActivityService.FixActivity(client, _dingDing, groupChange, "Art");
  494. //TODO学习活动
  495. //await FixActivity(client, stuListChange, "Learn");
  496. if (groupChange.type.Equals("class") || groupChange.type.Equals("student"))
  497. {
  498. if (groupChange.stujoin.Count > 0)
  499. await BIStats.SetTypeAddStats(client, groupChange.school, "Student", groupChange.stujoin.Count);//BI统计增/减量
  500. if (groupChange.stuleave.Count > 0)
  501. await BIStats.SetTypeAddStats(client, groupChange.school, "Student", -groupChange.stuleave.Count);//BI统计增/减量
  502. }
  503. if (groupChange.type == null || !groupChange.type.Equals("research") || !groupChange.type.Equals("yxtrain") || !groupChange.type.Equals("activity"))
  504. {
  505. //课程名单变动修改学生课程关联信息
  506. await ActivityService.FixStuCourse(client, _dingDing, groupChange);
  507. //名单变动修改课例关联信息
  508. //await ActivityService.FixLessonRecord(client, _dingDing, groupChange);
  509. }
  510. }
  511. catch (Exception ex)
  512. {
  513. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-GroupChange-GroupChange\n{ex.Message}\n{ex.StackTrace}\n\n{msg}", GroupNames.醍摩豆服務運維群組);
  514. }
  515. }
  516. //接收死信消息
  517. [Function("ItemCondDel")]
  518. public async Task ItemCondDelFunc([ServiceBusTrigger("%Azure:ServiceBus:ItemCondQueue%/$DeadLetterQueue", Connection = "Azure:ServiceBus:ConnectionString")] string message)
  519. {
  520. await _dingDing.SendBotMsg($"{message}", GroupNames.成都开发測試群組);
  521. }
  522. [Function("ItemCond")]
  523. public async Task ItemCondFunc([ServiceBusTrigger("%Azure:ServiceBus:ItemCondQueue%", Connection = "Azure:ServiceBus:ConnectionString")] string msg)
  524. {
  525. try
  526. {
  527. var client = _azureCosmos.GetCosmosClient();
  528. var jsonMsg = JsonDocument.Parse(msg);
  529. List<ItemCondDto> itemCondDtos = msg.ToObject<List<ItemCondDto>>();
  530. foreach (var itemCondDto in itemCondDtos)
  531. {
  532. if (itemCondDto.scope.Equals("school"))
  533. {
  534. ItemCond itemCond = null;
  535. List<ItemInfo> items = new List<ItemInfo>();
  536. var queryslt = $"SELECT c.gradeIds,c.subjectId,c.periodId,c.type,c.level,c.field ,c.scope FROM c where c.periodId='{itemCondDto.filed}' and c.pid= null ";
  537. await foreach (var item in client.GetContainer(Constant.TEAMModelOS, "School").GetItemQueryIterator<ItemInfo>(queryText: queryslt, requestOptions: new QueryRequestOptions() { PartitionKey = new PartitionKey($"Item-{itemCondDto.key}") }))
  538. {
  539. items.Add(item);
  540. }
  541. itemCond = new ItemCond()
  542. {
  543. id = $"{itemCondDto.filed}",
  544. code = $"ItemCond-{itemCondDto.key}",
  545. pk = "ItemCond",
  546. ttl = -1,
  547. count = items.Count,
  548. grades = new List<GradeCount>(),
  549. subjects = new List<SubjectItemCount>()
  550. };
  551. items.ForEach(z =>
  552. {
  553. if (!string.IsNullOrEmpty(z.type))
  554. {
  555. ItemService.CountItemCond(z, null, itemCond);
  556. }
  557. });
  558. await _azureRedis.GetRedisClient(8).HashSetAsync($"ItemCond:{itemCondDto.key}", $"{itemCondDto.filed}", itemCond.ToJsonString());
  559. }
  560. else
  561. {
  562. ItemCond itemCond = null;
  563. List<ItemInfo> items = new List<ItemInfo>();
  564. var queryslt = $"SELECT c.gradeIds,c.subjectId,c.periodId,c.type,c.level,c.field ,c.scope FROM c where c.pid= null ";
  565. await foreach (var item in client.GetContainer(Constant.TEAMModelOS, "Teacher").GetItemQueryIterator<ItemInfo>(queryText: queryslt, requestOptions: new QueryRequestOptions() { PartitionKey = new PartitionKey($"Item-{itemCondDto.filed}") }))
  566. {
  567. items.Add(item);
  568. }
  569. itemCond = new ItemCond() { id = $"{itemCondDto.filed}", code = $"ItemCond", pk = "ItemCond", ttl = -1, count = items.Count };
  570. items.ForEach(z =>
  571. {
  572. if (!string.IsNullOrEmpty(z.type))
  573. {
  574. ItemService.CountItemCond(z, null, itemCond);
  575. }
  576. });
  577. await _azureRedis.GetRedisClient(8).HashSetAsync($"ItemCond:ItemCond", $"{itemCondDto.filed}", itemCond.ToJsonString());
  578. }
  579. }
  580. }
  581. catch (CosmosException ex)
  582. {
  583. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-ServiceBus,ItemCond()\n{ex.Message}\n{ex.StackTrace}\n\n{msg}", GroupNames.醍摩豆服務運維群組);
  584. }
  585. catch (Exception ex)
  586. {
  587. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-ServiceBus,ItemCond()\n{ex.Message}\n{ex.StackTrace}\n\n{msg}", GroupNames.醍摩豆服務運維群組);
  588. }
  589. }
  590. [Function("GenPdf")]
  591. public async Task GenPdfFunc([ServiceBusTrigger("%Azure:ServiceBus:GenPdfQueue%", Connection = "Azure:ServiceBus:ConnectionString",IsBatched =false)] string msg )
  592. {
  593. //https://github.com/aafgani/AzFuncWithServiceBus/blob/a0da42f59b5fc45655b73b85bae932e84520db70/ServiceBusTriggerFunction/host.json
  594. // messageHandlerOptions 设置
  595. JsonElement element = msg.ToObject<JsonElement>();
  596. // https://dotblogs.com.tw/yc421206/2013/04/25/102300 // C# 原子操作。Interlocked
  597. // ConcurrentQueue http://t.zoukankan.com/hohoa-p-12622459.html
  598. switch (true)
  599. {
  600. case bool when element.TryGetProperty("bizType", out JsonElement _bizType) && $"{_bizType}".Equals("OfflineRecord"):
  601. //处理教师线下研修报告的生成。
  602. //await GenOfflineRecordPdf(element, msg);
  603. break;
  604. case bool when element.TryGetProperty("bizType", out JsonElement _bizType) && $"{_bizType}".Equals("ArtStudentPdf"):
  605. await GenArtStudentPdf(element, msg);
  606. break;
  607. }
  608. }
  609. private async Task GenArtStudentPdf(JsonElement json , string msg) {
  610. try
  611. {
  612. json.TryGetProperty("studentIds", out JsonElement _studentIds);
  613. json.TryGetProperty("artId", out JsonElement _artId);
  614. json.TryGetProperty("schoolCode", out JsonElement _schoolId);
  615. json.TryGetProperty("headLang", out JsonElement headLang);
  616. List<string> studentIds= _studentIds.ToObject<List<string>>();
  617. string _schoolCode=$"{_schoolId}";
  618. (List<ArtStudentPdf> studentPdfs, List<StudentArtResult> artResults) = await ArtService.GenStuArtPDF(studentIds,$"{_artId}", $"{_schoolId}", $"{headLang}", _azureCosmos, _coreAPIHttpService, _dingDing);
  619. foreach (var artResult in artResults)
  620. {
  621. if (artResult.pdf == null || string.IsNullOrWhiteSpace(artResult.pdf.blob) || string.IsNullOrWhiteSpace(artResult.pdf.url))
  622. {
  623. artResult.pdf = new Attachment
  624. {
  625. // name = $"{artResult.studentId}.pdf",
  626. extension = "pdf",
  627. type = "doc",
  628. cnt = artResult.school,
  629. prime = false,//此处的作用是判断是否已经生成OK.
  630. };
  631. }
  632. else {
  633. artResult.pdf.prime = false;//此处的作用是判断是否已经生成OK.
  634. }
  635. await _azureRedis.GetRedisClient(8).HashSetAsync($"ArtPDF:{_artId}", artResult.studentId, artResult.ToJsonString());
  636. }
  637. //2个小时。
  638. await _azureRedis.GetRedisClient(8).KeyExpireAsync($"ArtPDF:{_artId}",new TimeSpan(2,0,0));
  639. List<Task<string>> uploads = new List<Task<string>>();
  640. studentPdfs.ForEach(x => {
  641. x.blob = $"art/{x.artId}/report/{x.studentId}.json";
  642. uploads.Add(_azureStorage.GetBlobContainerClient($"{_schoolCode}").UploadFileByContainer(x.ToJsonString(), "art", $"{x.artId}/report/{x.studentId}.json", true));
  643. });
  644. var uploadJsonUrls = await Task.WhenAll(uploads);
  645. var list = uploadJsonUrls.ToList();
  646. List<string> urls = new List<string>();
  647. (string uri, string sas) = _azureStorage.GetBlobContainerSAS($"{_schoolCode}", Azure.Storage.Sas.BlobContainerSasPermissions.Read);
  648. studentPdfs.ForEach(x => {
  649. string atrUrl = "https://teammodelos.blob.core.chinacloudapi.cn/0-public/art-report-template/report.html";
  650. var s = _azureStorage.GetBlobSAS($"{_schoolCode}", x.blob, BlobSasPermissions.Read);
  651. s = $"{HttpUtility.UrlEncode($"{s}", Encoding.UTF8)}";
  652. string url = $"{atrUrl}?url={s}&pdfpath={x.artId}/report/{x.studentId}";
  653. urls.Add(url);
  654. });
  655. string env = "release";
  656. if (Environment.GetEnvironmentVariable("Option:Location").Contains("Test", StringComparison.CurrentCultureIgnoreCase) ||
  657. Environment.GetEnvironmentVariable("Option:Location").Contains("Dep", StringComparison.CurrentCultureIgnoreCase))
  658. {
  659. env = "develop";
  660. }
  661. if (urls.Count <= psize)
  662. {
  663. var screenshot = new ScreenshotDto
  664. {
  665. msgId=Guid.NewGuid().ToString(),
  666. width = 1080,
  667. height = 1920,
  668. urls = urls,
  669. fileNameKey = "pdfpath",
  670. cnt = $"{_schoolCode}",
  671. root = "art",
  672. pagesize = 5,
  673. env = env
  674. };
  675. var message = new ServiceBusMessage(screenshot.ToJsonString());
  676. await _serviceBus.GetServiceBusClient().SendMessageAsync("screenpdf", message);
  677. }
  678. else {
  679. int pages = (urls.Count + psize) / psize;
  680. for (int i = 0; i < pages; i++)
  681. {
  682. var lists = urls.Skip((i) * psize).Take(psize).ToList();
  683. var screenshot = new ScreenshotDto
  684. {
  685. msgId = Guid.NewGuid().ToString(),
  686. width = 1080,
  687. height = 1920,
  688. urls = lists,
  689. fileNameKey = "pdfpath",
  690. cnt = $"{_schoolCode}",
  691. root = "art",
  692. pagesize = 5,
  693. env = env
  694. };
  695. var message= new ServiceBusMessage(screenshot.ToJsonString());
  696. await _serviceBus.GetServiceBusClient().SendMessageAsync("screenpdf", message);
  697. }
  698. }
  699. }
  700. catch (Exception ex)
  701. {
  702. await _dingDing.SendBotMsg($"{ex.Message}{ex.StackTrace}", GroupNames.成都开发測試群組);
  703. }
  704. }
  705. private async Task GenOfflineRecordPdf(JsonElement element,string msg) {
  706. try
  707. {
  708. var client = _azureCosmos.GetCosmosClient();
  709. /* var jsonMsg = JsonDocument.Parse(msg);
  710. jsonMsg.RootElement.TryGetProperty("id", out JsonElement id);
  711. //jsonMsg.RootElement.TryGetProperty("code", out JsonElement code);*/
  712. element.TryGetProperty("id", out JsonElement ids);
  713. List<string> tIds = ids.ToObject<List<string>>();
  714. element.TryGetProperty("school", out JsonElement _code);
  715. string code = "";
  716. element.TryGetProperty("Key", out JsonElement key);
  717. if (string.IsNullOrWhiteSpace($"{_code}"))
  718. {
  719. code = $"{key}";
  720. }
  721. else
  722. {
  723. code = $"{_code}";
  724. }
  725. if (string.IsNullOrWhiteSpace(code))
  726. {
  727. await _dingDing.SendBotMsg($"校本研修生成PDF时,学校id为空\n{msg}", GroupNames.成都开发測試群組);
  728. return;
  729. }
  730. string sname = string.Empty;
  731. string areaId = string.Empty;
  732. School school = await client.GetContainer(Constant.TEAMModelOS, "School").ReadItemAsync<School>($"{code}", new PartitionKey("Base"));
  733. sname = school.name;
  734. areaId = school.areaId;
  735. //var scquery = $"SELECT c.name,c.areaId from c where c.id = '{code}'";
  736. //await foreach (var item in client.GetContainer(Constant.TEAMModelOS, "School").GetItemQueryStreamIterator(queryText: scquery, requestOptions: new QueryRequestOptions() { PartitionKey = new PartitionKey($"Base") }))
  737. //{
  738. // using var json = await JsonDocument.ParseAsync(item.ContentStream);
  739. // if (json.RootElement.TryGetProperty("_count", out JsonElement count) && count.GetUInt16() > 0)
  740. // {
  741. // var accounts = json.RootElement.GetProperty("Documents").EnumerateArray();
  742. // while (accounts.MoveNext())
  743. // {
  744. // JsonElement account = accounts.Current;
  745. // sname = account.GetProperty("name").ToString();
  746. // areaId = account.GetProperty("areaId").ToString();
  747. // }
  748. // }
  749. //}
  750. if (string.IsNullOrWhiteSpace(areaId))
  751. {
  752. await _dingDing.SendBotMsg($"校本研修生成PDF时,区级id为空\n{msg}", GroupNames.成都开发測試群組);
  753. return;
  754. }
  755. if (!tIds.Any())
  756. {
  757. return;
  758. }
  759. var blobclient = _azureStorage.GetBlobContainerClient($"teammodelos");
  760. //查询当前学校所有的校本研修活动
  761. List<Study> studies = new();
  762. var query = $"select value(c) FROM c join b in c.teacIds where b in ({string.Join(",", tIds.Select(o => $"'{o}'"))}) and (c.status<>404 or IS_DEFINED(c.status) = false)";
  763. await foreach (var item in client.GetContainer(Constant.TEAMModelOS, "Common").GetItemQueryIterator<Study>(queryText: query, requestOptions: new QueryRequestOptions() { PartitionKey = new PartitionKey($"Study-{code}") }))
  764. {
  765. studies.Add(item);
  766. }
  767. //List<string> tcs = new();
  768. //foreach (var item in studies)
  769. //{
  770. // foreach (var td in item.tchLists)
  771. // {
  772. // if (!tcs.Contains(td))
  773. // {
  774. // tcs.Add(td);
  775. // }
  776. // }
  777. //}
  778. HashSet<string> tcs = studies.SelectMany(x => x.tchLists).Where(y => !string.IsNullOrWhiteSpace(y)).ToHashSet();
  779. (List<RMember> tchList, List<RGroupList> classInfos) = await GroupListService.GetMemberByListids(_coreAPIHttpService, client, _dingDing, tcs.ToList(), code, null);
  780. foreach (string id in tIds)
  781. {
  782. StringBuilder stringBuilder = new StringBuilder();
  783. string cname = string.Empty;
  784. string gname = string.Empty;
  785. if (tchList.Exists(c => c.id == id))
  786. {
  787. gname = tchList.Where(c => c.id == id).FirstOrDefault().groupName;
  788. cname = tchList.Where(c => c.id == id).FirstOrDefault().name;
  789. }
  790. List<string> details = new();
  791. foreach (Study study in studies)
  792. {
  793. if (!study.teacIds.Contains(id))
  794. {
  795. continue;
  796. }
  797. var sresponse = await client.GetContainer("TEAMModelOS", "Teacher").ReadItemStreamAsync(study.id, new PartitionKey($"StudyRecord-{id}"));
  798. if (sresponse.Status == 200)
  799. {
  800. var json = await JsonDocument.ParseAsync(sresponse.ContentStream);
  801. StudyRecord record = json.ToObject<StudyRecord>();
  802. if (record.status == 1)
  803. {
  804. var start = DateTimeHelper.FromUnixTimestamp(study.startTime).ToString("yyyy/MM/dd");
  805. var end = DateTimeHelper.FromUnixTimestamp(study.endTime).ToString("yyyy/MM/dd");
  806. string tname = string.Empty;
  807. List<string> setName = new();
  808. foreach (string setting in study.settings)
  809. {
  810. if (setting.Equals("sign"))
  811. {
  812. setName.Add("扫码签到");
  813. }
  814. else if (setting.Equals("hw"))
  815. {
  816. setName.Add("作业提交");
  817. }
  818. else if (setting.Equals("survey"))
  819. {
  820. setName.Add("问卷反馈");
  821. }
  822. else if (setting.Equals("exam"))
  823. {
  824. setName.Add("评测活动");
  825. }
  826. }
  827. switch (study.type)
  828. {
  829. case 1:
  830. tname = "信息化教学案例展示与分享";
  831. break;
  832. case 2:
  833. tname = "专家专题培训";
  834. break;
  835. case 3:
  836. tname = "同课同构";
  837. break;
  838. case 4:
  839. tname = "同课异构";
  840. break;
  841. case 5:
  842. tname = "校本2.0培训";
  843. break;
  844. case 6:
  845. tname = "自定义活动";
  846. break;
  847. };
  848. stringBuilder.Append($@"<tr>
  849. <td> {study.topic} </td>
  850. <td> {tname} </td >
  851. <td> {study.hour} </td >
  852. <td> {study.hour} </td >
  853. <td> {start} 到 {end} </td>
  854. <td>{study.desc}</td>
  855. <td> {string.Join("、", setName.Select(x => $"{x}\n"))} </td>
  856. <td> 已完成 </td >
  857. </tr> ");
  858. }
  859. else
  860. {
  861. continue;
  862. }
  863. }
  864. else
  865. {
  866. continue;
  867. }
  868. }
  869. string url = await StudyService.GenPdf(id, areaId, cname, sname, gname, stringBuilder.ToString(), _converter, _azureStorage, _dingDing);
  870. Azure.Response teacherTrainRes = await client.GetContainer(Constant.TEAMModelOS, Constant.Teacher).ReadItemStreamAsync(id, new PartitionKey($"TeacherTrain-{code}"));
  871. if (teacherTrainRes.Status == 200)
  872. {
  873. TeacherTrain teacherTrain = JsonDocument.Parse(teacherTrainRes.Content).RootElement.Deserialize<TeacherTrain>();
  874. try
  875. {
  876. BlobDownloadInfo blobDownload = await blobclient.GetBlobClient(url).DownloadAsync(range: new HttpRange(0, 4 * 1048576), rangeGetContentHash: true);
  877. if (blobDownload.Details.ContentHash != null)
  878. {
  879. string hash = Md5Hash.GetbyteToString(blobDownload.Details.ContentHash);
  880. teacherTrain.offlineReport = new Attachment
  881. {
  882. hash = hash,
  883. url = url,
  884. blob = $"{blobclient.Uri}/{url}",
  885. extension = "pdf",
  886. name = $"{teacherTrain.nickname}-校本研修汇总报告.pdf",
  887. type = "doc",
  888. size = blobDownload.ContentLength
  889. };
  890. await client.GetContainer(Constant.TEAMModelOS, Constant.Teacher).ReplaceItemAsync<TeacherTrain>(teacherTrain, id, new PartitionKey($"TeacherTrain-{code}"));
  891. }
  892. }
  893. catch
  894. {
  895. }
  896. }
  897. }
  898. /*var query = $"select c.id,c.name,c.type,c.hour,c.startTime,c.endTime,c.presenter,c.topic from c where (c.status<>404 or IS_DEFINED(c.status) = false and array_contains(c.teacIds, '{id}') )";
  899. await foreach (var item in client.GetContainer("TEAMModelOS", "Common").GetItemQueryIterator<Study>(queryText: query, requestOptions: new QueryRequestOptions() {PartitionKey = new PartitionKey($"Study-{code}") }))
  900. {
  901. studies.Add(item);
  902. }*/
  903. //(List<StuActivity> datas, string continuationToken) = await ActivityStudentService.FindActivity(element, null, null, _azureCosmos, _azureRedis);
  904. // string blob = await StudyService.GenPdf(cname,sname,gname,"", _converter);
  905. }
  906. catch (CosmosException ex)
  907. {
  908. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-ServiceBus,GenPdfFunc()\n{ex.Message}\n{ex.StackTrace}\n\n{msg}", GroupNames.醍摩豆服務運維群組);
  909. }
  910. catch (Exception ex)
  911. {
  912. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-ServiceBus,GenPdfFunc()\n{ex.Message}\n{ex.StackTrace}\n\n{msg}", GroupNames.醍摩豆服務運維群組);
  913. }
  914. }
  915. //更新學校產品一覽表
  916. //處理內容:取得所有序號購買紀錄,服務週期、硬體購買紀錄後,更新ProductSum
  917. [Function("Product")]
  918. public async Task ProductFunc([ServiceBusTrigger("%Azure:ServiceBus:ActiveTask%", "product", Connection = "Azure:ServiceBus:ConnectionString")] string msg, ILogger log)
  919. {
  920. try
  921. {
  922. var jsonMsg = JsonDocument.Parse(msg);
  923. jsonMsg.RootElement.TryGetProperty("method", out JsonElement method);
  924. jsonMsg.RootElement.TryGetProperty("schoolId", out JsonElement schoolId);
  925. jsonMsg.RootElement.TryGetProperty("prodCode", out JsonElement prodCode);
  926. jsonMsg.RootElement.TryGetProperty("prodId", out JsonElement prodId);
  927. var client = _azureCosmos.GetCosmosClient();
  928. string strQuery = string.Empty;
  929. //取得所有學校產品
  930. ////序號
  931. List<SchoolProductSumData> serialsProductSumOrg = new List<SchoolProductSumData>();
  932. strQuery = $"SELECT * FROM c WHERE c.dataType = 'serial'";
  933. await foreach (var item in client.GetContainer(Constant.TEAMModelOS, "School").GetItemQueryStreamIterator(queryText: strQuery, requestOptions: new QueryRequestOptions() { PartitionKey = new Azure.Cosmos.PartitionKey($"Product-{schoolId}") }))
  934. {
  935. using var json = await JsonDocument.ParseAsync(item.ContentStream);
  936. if (json.RootElement.TryGetProperty("_count", out JsonElement count) && count.GetUInt16() > 0)
  937. {
  938. foreach (var obj in json.RootElement.GetProperty("Documents").EnumerateArray())
  939. {
  940. SchoolProductSerial serialInfo = obj.ToObject<SchoolProductSerial>();
  941. SchoolProductSumData serialProd = serialsProductSumOrg.Where(sp => sp.prodCode == serialInfo.prodCode).FirstOrDefault();
  942. if (serialProd == null)
  943. {
  944. SchoolProductSumData serialProdAdd = new SchoolProductSumData();
  945. serialProdAdd.prodCode = serialInfo.prodCode;
  946. serialProdAdd.ids.Add(serialInfo.id);
  947. serialProdAdd.avaliable = serialProdAdd.ids.Count;
  948. serialsProductSumOrg.Add(serialProdAdd);
  949. }
  950. else
  951. {
  952. if (!serialProd.ids.Contains(serialInfo.id))
  953. {
  954. serialProd.ids.Add(serialInfo.id);
  955. }
  956. serialProd.avaliable = serialProd.ids.Count;
  957. }
  958. }
  959. }
  960. }
  961. ////服務
  962. List<SchoolProductSumDataService> servicesProductSumOrg = new List<SchoolProductSumDataService>();
  963. //////取得學校產品 授權週期:授權中 條件: startDate <= now <= endDate
  964. long timestampToday = DateTimeOffset.UtcNow.ToUnixTimeSeconds();
  965. string strQueryM = $"SELECT * FROM c WHERE c.dataType = 'servicePeriod' AND c.startDate <= {timestampToday} AND {timestampToday} <= c.endDate AND c.ttl < 0";
  966. await foreach (var item in client.GetContainer(Constant.TEAMModelOS, "School").GetItemQueryStreamIterator(queryText: strQueryM, requestOptions: new QueryRequestOptions() { PartitionKey = new PartitionKey($"Product-{schoolId}") }))
  967. {
  968. using var json = await JsonDocument.ParseAsync(item.ContentStream);
  969. if (json.RootElement.TryGetProperty("_count", out JsonElement count) && count.GetUInt16() > 0)
  970. {
  971. foreach (var obj in json.RootElement.GetProperty("Documents").EnumerateArray())
  972. {
  973. SchoolProductServicePeriod servicePeriodInfo = obj.ToObject<SchoolProductServicePeriod>();
  974. SchoolProductSumDataService serviceProd = servicesProductSumOrg.Where(sp => sp.prodCode == servicePeriodInfo.prodCode).FirstOrDefault();
  975. if (serviceProd == null)
  976. {
  977. SchoolProductSumDataService serviceProdAdd = new SchoolProductSumDataService();
  978. serviceProdAdd.prodCode = servicePeriodInfo.prodCode;
  979. serviceProdAdd.avaliable = 0;
  980. serviceProdAdd.ids.Add(servicePeriodInfo.id);
  981. serviceProdAdd.avaliable += servicePeriodInfo.number;
  982. serviceProdAdd.startDate = servicePeriodInfo.startDate;
  983. serviceProdAdd.endDate = servicePeriodInfo.endDate;
  984. servicesProductSumOrg.Add(serviceProdAdd);
  985. }
  986. else
  987. {
  988. serviceProd.ids = new List<string>();
  989. serviceProd.ids.Add(servicePeriodInfo.id);
  990. serviceProd.startDate = servicePeriodInfo.startDate;
  991. serviceProd.endDate = servicePeriodInfo.endDate;
  992. }
  993. }
  994. }
  995. }
  996. ////服務產品特別對應項
  997. School school = await client.GetContainer(Constant.TEAMModelOS, "School").ReadItemAsync<School>($"{schoolId}", new PartitionKey("Base")); //學校基本資料取得
  998. bool updSchool = false; //是否變更學校基本資料
  999. int chgSchSizeCnt = 0; //變更學校空間的次數 若為0表示現時間點沒有任何空間可使用 => 回復學校空間為初始值
  1000. int schoolDefaultSize = 1; //學校空間初始值:1
  1001. if (!string.IsNullOrWhiteSpace(school.id))
  1002. {
  1003. if (servicesProductSumOrg.Count > 0)
  1004. {
  1005. foreach (SchoolProductSumDataService servicesProductSumOrgRow in servicesProductSumOrg)
  1006. {
  1007. //更新學校空間
  1008. if (servicesProductSumOrgRow.prodCode.Equals("IPALJ6NY"))
  1009. {
  1010. school.size = (servicesProductSumOrgRow.avaliable < 1) ? 1 : servicesProductSumOrgRow.avaliable;
  1011. await client.GetContainer(Constant.TEAMModelOS, "School").ReplaceItemAsync<School>(school, $"{schoolId}", new PartitionKey("Base"));
  1012. updSchool = true;
  1013. chgSchSizeCnt++;
  1014. }
  1015. }
  1016. }
  1017. if (chgSchSizeCnt.Equals(0) && !school.size.Equals(schoolDefaultSize))
  1018. {
  1019. school.size = schoolDefaultSize;
  1020. //updSchool = true; //關於學校空間初始式樣未定,目前暫定:若需要Reset空間,則先維持原空間數不更動
  1021. updSchool = false;
  1022. }
  1023. }
  1024. //變更學校基本資料
  1025. if (updSchool)
  1026. {
  1027. await client.GetContainer(Constant.TEAMModelOS, "School").ReplaceItemAsync<School>(school, $"{schoolId}", new PartitionKey("Base"));
  1028. }
  1029. ////硬體
  1030. List<SchoolProductSumDataHard> hardsProductSumOrg = new List<SchoolProductSumDataHard>();
  1031. strQuery = $"SELECT * FROM c WHERE c.dataType = 'hard'";
  1032. await foreach (var item in client.GetContainer(Constant.TEAMModelOS, "School").GetItemQueryStreamIterator(queryText: strQuery, requestOptions: new QueryRequestOptions() { PartitionKey = new Azure.Cosmos.PartitionKey($"Product-{schoolId}") }))
  1033. {
  1034. using var json = await JsonDocument.ParseAsync(item.ContentStream);
  1035. if (json.RootElement.TryGetProperty("_count", out JsonElement count) && count.GetUInt16() > 0)
  1036. {
  1037. foreach (var obj in json.RootElement.GetProperty("Documents").EnumerateArray())
  1038. {
  1039. SchoolProductHard hardInfo = obj.ToObject<SchoolProductHard>();
  1040. SchoolProductSumData hardProd = hardsProductSumOrg.Where(sp => sp.prodCode == hardInfo.prodCode).FirstOrDefault();
  1041. if (hardProd == null)
  1042. {
  1043. SchoolProductSumDataHard hardProdAdd = new SchoolProductSumDataHard();
  1044. hardProdAdd.prodCode = hardInfo.prodCode;
  1045. hardProdAdd.model = hardInfo.model;
  1046. hardProdAdd.ids.Add(hardInfo.id);
  1047. hardProdAdd.avaliable = hardProdAdd.ids.Count;
  1048. hardsProductSumOrg.Add(hardProdAdd);
  1049. }
  1050. else
  1051. {
  1052. if (!hardProd.ids.Contains(hardInfo.id))
  1053. {
  1054. hardProd.ids.Add(hardInfo.id);
  1055. }
  1056. hardProd.avaliable = hardProd.ids.Count;
  1057. }
  1058. }
  1059. }
  1060. }
  1061. //更新學校產品一覽表
  1062. SchoolProductSum prodSum = await client.GetContainer(Constant.TEAMModelOS, "School").ReadItemAsync<SchoolProductSum>(schoolId.ToString(), new PartitionKey($"ProductSum"));
  1063. prodSum.serial = serialsProductSumOrg;
  1064. prodSum.service = servicesProductSumOrg;
  1065. prodSum.hard = hardsProductSumOrg;
  1066. await client.GetContainer(Constant.TEAMModelOS, "School").ReplaceItemAsync<SchoolProductSum>(prodSum, prodSum.id, new PartitionKey($"{prodSum.code}"));
  1067. }
  1068. catch (CosmosException ex)
  1069. {
  1070. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-ServiceBus,Product()\n{ex.Message}\n{ex.StackTrace}\n\n{msg}", GroupNames.醍摩豆服務運維群組);
  1071. }
  1072. catch (Exception ex)
  1073. {
  1074. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-ServiceBus,Product()\n{ex.Message}\n{ex.StackTrace}\n\n{msg}", GroupNames.醍摩豆服務運維群組);
  1075. }
  1076. }
  1077. /// <summary>
  1078. /// 批量复制文件
  1079. /// </summary>
  1080. /// <param name="msg"></param>
  1081. /// <returns></returns>
  1082. [Function("CopyStandardFile")]
  1083. public async Task BatchCopyBlobFunc([ServiceBusTrigger("%Azure:ServiceBus:ActiveTask%", "copy-standard-file", Connection = "Azure:ServiceBus:ConnectionString")] string msg)
  1084. {
  1085. try
  1086. {
  1087. //await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-Blob复制文件-CopyStandardFile\n{msg}", GroupNames.醍摩豆服務運維群組);
  1088. var jsonMsg = JsonDocument.Parse(msg);
  1089. BatchCopyFile bIBatchCopyFile = msg.ToObject<BatchCopyFile>();
  1090. //批量复制文件
  1091. var result = await BatchCopyFileService.CopyFile(_dingDing, _azureStorage, bIBatchCopyFile);
  1092. if (result == 200)
  1093. {
  1094. }
  1095. }
  1096. catch (Exception ex)
  1097. {
  1098. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-Blob复制文件-CopyStandardFile\n{ex.Message}\n{ex.StackTrace}\n\n{msg}", GroupNames.醍摩豆服務運維群組);
  1099. }
  1100. }
  1101. /// <summary>
  1102. /// 更新开课数据事件
  1103. /// </summary>
  1104. /// <param name="msg"></param>
  1105. /// <returns></returns>
  1106. [Function("LessonRecordEvent")]
  1107. public async Task LessonRecordFunc([ServiceBusTrigger("%Azure:ServiceBus:ActiveTask%", "lesson-record-event", Connection = "Azure:ServiceBus:ConnectionString")] string msg)
  1108. {
  1109. JsonElement data = msg.ToObject<JsonElement>();
  1110. string scope = "";
  1111. string tmdid = "";
  1112. string lessonId;
  1113. string school;
  1114. string tbname;
  1115. string code;
  1116. string blobname;
  1117. List<LessonUpdate> updates = new List<LessonUpdate>();
  1118. //更新课堂记录
  1119. if (data.TryGetProperty("lesson_id", out JsonElement _lessonId) && !string.IsNullOrEmpty($"{_lessonId}"))
  1120. {
  1121. if (!data.TryGetProperty("tmdid", out JsonElement _tmdid)) return;
  1122. if (!data.TryGetProperty("scope", out JsonElement _scope)) return;
  1123. if (!data.TryGetProperty("grant_types", out JsonElement _grant_types)) return;
  1124. data.TryGetProperty("school", out JsonElement _school);
  1125. school = $"{_school}";
  1126. scope = $"{_scope}";
  1127. tmdid = $"{_tmdid}";
  1128. lessonId = $"{_lessonId}";
  1129. updates = _grant_types.ToObject<List<LessonUpdate>>();
  1130. }//创建课堂记录
  1131. else if (data.TryGetProperty("id", out JsonElement _id) && !string.IsNullOrEmpty($"{_id}")
  1132. && data.TryGetProperty("tmdid", out JsonElement _tmdid) && !string.IsNullOrEmpty($"{_tmdid}")
  1133. && data.TryGetProperty("scope", out JsonElement _scope) && !string.IsNullOrEmpty($"{_scope}"))
  1134. {
  1135. data.TryGetProperty("school", out JsonElement _school);
  1136. school = $"{_school}";
  1137. scope = $"{_scope}";
  1138. tmdid = $"{_tmdid}";
  1139. lessonId = $"{_id}";
  1140. updates.Add(new LessonUpdate { grant_type = "create" });
  1141. }//删除课堂记录
  1142. else if (data.TryGetProperty("delete_id", out JsonElement _delete_id) && !string.IsNullOrEmpty($"{_delete_id}")
  1143. && data.TryGetProperty("tmdid", out JsonElement _dtmdid) && !string.IsNullOrEmpty($"{_dtmdid}")
  1144. && data.TryGetProperty("scope", out JsonElement _dscope) && !string.IsNullOrEmpty($"{_dscope}")
  1145. && data.TryGetProperty("opt", out JsonElement _opt) && !string.IsNullOrEmpty($"{_opt}"))
  1146. {
  1147. data.TryGetProperty("school", out JsonElement _dschool);
  1148. school = $"{_dschool}";
  1149. if ($"{_opt}".Equals("delete"))
  1150. {
  1151. scope = $"{_dscope}";
  1152. tmdid = $"{_dtmdid}";
  1153. lessonId = $"{_delete_id}";
  1154. updates.Add(new LessonUpdate { grant_type = "delete" });
  1155. }
  1156. else { return; }
  1157. }
  1158. else
  1159. {
  1160. return;
  1161. }
  1162. var client = _azureCosmos.GetCosmosClient();
  1163. if ($"{scope}".Equals("school") && !string.IsNullOrEmpty($"{school}"))
  1164. {
  1165. blobname = $"{school}";
  1166. code = $"LessonRecord-{school}";
  1167. tbname = "School";
  1168. }
  1169. else if ($"{scope}".Equals("private"))
  1170. {
  1171. blobname = $"{tmdid}";
  1172. code = $"LessonRecord";
  1173. tbname = "Teacher";
  1174. }
  1175. else
  1176. {
  1177. return;
  1178. }
  1179. LessonDis lessonDis = new LessonDis();
  1180. List<LessonUpdate> msgs = new List<LessonUpdate>();
  1181. try
  1182. {
  1183. LessonRecord oldlessonRecord = null;
  1184. LessonRecord lessonRecord = null;
  1185. Azure.Response response = await client.GetContainer(Constant.TEAMModelOS, tbname).ReadItemStreamAsync(lessonId, new PartitionKey(code));
  1186. if (response.Status == 200)
  1187. {
  1188. var doc = JsonDocument.Parse(response.ContentStream);
  1189. lessonRecord = doc.RootElement.ToObject<LessonRecord>();
  1190. oldlessonRecord = doc.RootElement.ToObject<LessonRecord>();
  1191. }
  1192. else
  1193. {
  1194. lessonRecord = null;
  1195. }
  1196. bool isReplace = true;
  1197. if (updates.IsNotEmpty())
  1198. {
  1199. Teacher teacher = await client.GetContainer(Constant.TEAMModelOS, Constant.Teacher).ReadItemAsync<Teacher>(tmdid, new PartitionKey("Base"));
  1200. foreach (LessonUpdate update in updates)
  1201. {
  1202. switch (update.grant_type)
  1203. {
  1204. //更新课堂时长
  1205. case "up-duration":
  1206. double.TryParse($"{update.data}", out double duration);
  1207. lessonRecord.duration = duration;
  1208. msgs.Add(update);
  1209. try
  1210. {
  1211. BlobDownloadResult Recording = await _azureStorage.GetBlobContainerClient(blobname).GetBlobClient($"records/{_lessonId}/Record/.Recording.json").DownloadContentAsync();
  1212. var RecordingJson = JsonDocument.Parse(new MemoryStream(Encoding.UTF8.GetBytes(Recording.Content.ToString()))).RootElement;
  1213. if (RecordingJson.TryGetProperty("duration", out JsonElement _duration) && _duration.ValueKind.Equals(JsonValueKind.Number))
  1214. {
  1215. var durationFile = double.Parse($"{_duration}");
  1216. if (duration < durationFile)
  1217. {
  1218. lessonRecord.duration = durationFile;
  1219. }
  1220. }
  1221. if (RecordingJson.TryGetProperty("streamUrl", out JsonElement _streamUrl) && !string.IsNullOrWhiteSpace($"{_streamUrl}"))
  1222. {
  1223. lessonRecord.hasVideo = 1;
  1224. }
  1225. }
  1226. catch (Exception ex)
  1227. {
  1228. // await _dingDing.SendBotMsg($"{_option.Location}/LessonRecordEvent/课堂记录更新课堂时长出错records/{_lessonId}/Record/.Recording.json\n{ex.Message}\n{ex.StackTrace}{msg}", GroupNames.醍摩豆服務運維群組);
  1229. }
  1230. isReplace = true;
  1231. break;
  1232. //更新T分
  1233. case "up-tScore":
  1234. var tScore = int.Parse($"{update.data}");
  1235. lessonRecord.tScore = tScore;
  1236. msgs.Add(update);
  1237. break;
  1238. //更新课P分
  1239. case "up-pScore":
  1240. var pScore = int.Parse($"{update.data}");
  1241. lessonRecord.pScore = pScore;
  1242. msgs.Add(update);
  1243. break;
  1244. //更新 学生人数
  1245. case "up-mCount":
  1246. var mCount = int.Parse($"{update.data}");
  1247. lessonRecord.mCount = mCount;
  1248. msgs.Add(update);
  1249. break;
  1250. //更新 议课次数
  1251. case "up-techCount":
  1252. var techCount = int.Parse($"{update.data}");
  1253. lessonRecord.mCount = techCount;
  1254. msgs.Add(update);
  1255. break;
  1256. //更新 基础统计信息
  1257. case "up-base":
  1258. //如果有更新 则去读取/{_lessonId}/IES/base.json
  1259. try {
  1260. BlobDownloadResult timelineblobDownload = await _azureStorage.GetBlobContainerClient(blobname).GetBlobClient($"/records/{_lessonId}/IES/TimeLine.json").DownloadContentAsync();
  1261. TimeLineData timeLineData = timelineblobDownload.Content.ToObjectFromJson<TimeLineData>();
  1262. lessonRecord.hitaClientCmpCount = timeLineData.events.Where(z => !string.IsNullOrWhiteSpace(z.WrkCmpSrcType) && z.WrkCmpSrcType.Equals("HitaClientCmp")).Count();
  1263. //lessonRecord.collateTaskCount = lessonRecord.hitaClientCmpCount;
  1264. } catch {
  1265. }
  1266. try
  1267. {
  1268. // await _dingDing.SendBotMsg($"{_option.Location},课堂id:{_lessonId} 收到更新", GroupNames.醍摩豆服務運維群組);
  1269. BlobDownloadResult baseblobDownload = await _azureStorage.GetBlobContainerClient(blobname).GetBlobClient($"/records/{_lessonId}/IES/base.json").DownloadContentAsync();
  1270. //attendState
  1271. string basejson = baseblobDownload.Content.ToString().Replace("\"Uncall\"", "0").Replace("Uncall","0");
  1272. LessonBase lessonBase = null;
  1273. try {
  1274. lessonBase = basejson.ToObject<LessonBase>();
  1275. } catch (Exception ex ){
  1276. await _dingDing.SendBotMsg($"base.json转换异常,{ex.Message}{ex.StackTrace}{basejson}", GroupNames.成都开发測試群組);
  1277. //lessonBase = baseblobDownload.Content.ToObjectFromJson<LessonBase>();
  1278. }
  1279. //await _dingDing.SendBotMsg($"课例记录文件base.json:{lessonBase.ToJsonString()}", GroupNames.成都开发測試群組);
  1280. if (lessonBase != null && lessonBase.summary != null)
  1281. {
  1282. //lessonRecord.name = lessonBase.summary.activityName;
  1283. lessonRecord.attendCount = lessonBase.summary.attendCount;
  1284. lessonRecord.clientCount = lessonBase.summary.clientCount;
  1285. lessonRecord.attendRate = lessonBase.summary.attendRate;
  1286. lessonRecord.groupCount = lessonBase.summary.groupCount;
  1287. lessonRecord.collateTaskCount = lessonBase.summary.collateTaskCount;
  1288. lessonRecord.hitaClientCmpCount = lessonBase.summary.collateTaskCount+ lessonRecord.hitaClientCmpCount;
  1289. lessonRecord.collateCount = lessonBase.summary.collateCount;
  1290. lessonRecord.pushCount = lessonBase.summary.pushCount;
  1291. lessonRecord.totalPoint = lessonBase.summary.totalPoint;
  1292. lessonRecord.examQuizCount = lessonBase.summary.examQuizCount;
  1293. lessonRecord.interactionCount = lessonBase.summary.interactionCount;
  1294. lessonRecord.examPointRate = lessonBase.summary.examPointRate;
  1295. lessonRecord.clientInteractionCount = lessonBase.summary.clientInteractionCount;
  1296. lessonRecord.clientInteractionAverge = lessonBase.summary.clientInteractionAverge;
  1297. lessonRecord.examCount = lessonBase.summary.examCount;
  1298. lessonRecord.totalInteractPoint = lessonBase.summary.totalInteractPoint;
  1299. lessonRecord.learningCategory = lessonBase.summary.learningCategory;
  1300. if (lessonRecord.learningCategory == null)
  1301. {
  1302. lessonRecord.learningCategory = new LearningCategory();
  1303. }
  1304. if (lessonRecord.hitaClientCmpCount > 0) {
  1305. lessonRecord.learningCategory.cooperation = 1;
  1306. }
  1307. if (!string.IsNullOrWhiteSpace(lessonRecord.school))
  1308. {
  1309. lessonBase.student.ForEach(x =>
  1310. {
  1311. if (string.IsNullOrWhiteSpace(x.school))
  1312. {
  1313. x.school = lessonRecord.school;
  1314. }
  1315. });
  1316. }
  1317. //计算TP灯
  1318. {
  1319. int T = -1;
  1320. int P = -1;
  1321. if (lessonRecord.clientInteractionAverge <= 0)
  1322. {
  1323. T = 0;
  1324. }
  1325. else if (lessonRecord.clientInteractionAverge >= 1 && lessonRecord.clientInteractionAverge <= 2)
  1326. {
  1327. T = 1;
  1328. }
  1329. else
  1330. {
  1331. T = 2;
  1332. }
  1333. //if (lessonRecord.examCount > 0)
  1334. //{
  1335. // //有评测次数大于0则P是直接绿灯
  1336. // P = 2;
  1337. //}
  1338. //else {
  1339. //}
  1340. int a = lessonRecord.hitaClientCmpCount;
  1341. int b = lessonRecord.pushCount;
  1342. int c = lessonRecord.examCount;
  1343. switch (true)
  1344. {
  1345. case bool when T == 0:
  1346. P = 0;
  1347. break;
  1348. case bool when T == 1 || T == 2:
  1349. if (a == 0 && b == 0 && c == 0)
  1350. {
  1351. P = 0;
  1352. }
  1353. else if ((a > 0 && b > 0) || (a > 0 && c > 0) || (b > 0 && c > 0))
  1354. {
  1355. P = 2;
  1356. }
  1357. else
  1358. {
  1359. P = 1;
  1360. }
  1361. break;
  1362. }
  1363. lessonRecord.tLevel = T;
  1364. lessonRecord.pLevel = P;
  1365. }
  1366. //LessonStudentRecord lessonStudentRecord = new LessonStudentRecord
  1367. //{
  1368. // clientSummaryList = lessonBase.report.clientSummaryList,
  1369. // students = lessonBase.student,
  1370. // name = lessonRecord.name,
  1371. // school = lessonRecord.school,
  1372. // id = lessonRecord.id,
  1373. // scope = lessonRecord.scope,
  1374. // tmdid = lessonRecord.tmdid,
  1375. // code = "LessonStudentRecord",
  1376. // pk = "LessonStudentRecord",
  1377. // courseId =lessonRecord.courseId,
  1378. // groupIds= lessonRecord.groupIds,
  1379. // periodId = lessonRecord.periodId,
  1380. // subjectId = lessonRecord.subjectId,
  1381. //};
  1382. //await _azureCosmos.GetCosmosClient().GetContainer(Constant.TEAMModelOS,Constant.Student).UpsertItemAsync<LessonStudentRecord>(lessonStudentRecord, new PartitionKey("LessonStudentRecord"));
  1383. }
  1384. //有上传 base.josn.
  1385. lessonRecord.upload = 1;
  1386. // await _dingDing.SendBotMsg($"{_option.Location},课堂id:{_lessonId} 更新完成", GroupNames.醍摩豆服務運維群組);
  1387. LessonService.DoAutoDeleteSchoolLessonRecord(lessonRecord, scope, client, school, tmdid, teacher, _serviceBus, _azureStorage, _configuration,_coreAPIHttpService,_dingDing, _azureRedis);
  1388. long? size = await _azureStorage.GetBlobContainerClient(blobname).GetBlobsSize($"records/{_lessonId}");
  1389. Bloblog bloblog = new Bloblog
  1390. {
  1391. id = lessonRecord.id,
  1392. code = $"Bloblog-{blobname}",
  1393. name = lessonRecord.name,
  1394. pk = "Bloblog",
  1395. time = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds(),
  1396. type = "records",
  1397. url = $"records/{_lessonId}",
  1398. subjectId = string.IsNullOrWhiteSpace(lessonRecord.subjectId) ? new List<string>() : new List<string> { lessonRecord.subjectId },
  1399. periodId = string.IsNullOrWhiteSpace(lessonRecord.periodId) ? new List<string>() : new List<string> { lessonRecord.periodId },
  1400. size = size.HasValue ? size.Value : 0,
  1401. };
  1402. await client.GetContainer(Constant.TEAMModelOS, tbname).UpsertItemAsync(bloblog);
  1403. //await _dingDing.SendBotMsg($"{_option.Location},课堂id:{_lessonId} blob刷新完成!", GroupNames.醍摩豆服務運維群組);
  1404. await BlobService.RefreshBlobRoot(new BlobRefreshMessage { progress = "update", root = "records", name = $"{blobname}" }, _serviceBus, _configuration,_azureRedis);
  1405. msgs.Add(update);
  1406. DoLessonStudentRecord(_dingDing, _snowflakeId, lessonRecord, scope, client, school, tmdid, teacher, _serviceBus, _azureStorage, _configuration, lessonBase);
  1407. }
  1408. catch (Exception ex)
  1409. {
  1410. if (!ex.Message.Contains("exist")) {
  1411. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}课程读取base.json,{_lessonId}\n{ex.Message}\n{ex.StackTrace}\n\n{lessonRecord.ToJsonString()}", GroupNames.醍摩豆服務運維群組);
  1412. }
  1413. }
  1414. await BIStats.SetTypeAddStats(client, lessonRecord.school, "Less", 0, 1, lessonRecord.clientInteractionCount);//BI统计增/减量
  1415. break;
  1416. //更新 时间线
  1417. case "up-TimeLine":
  1418. //BlobDownloadResult TimeLineblobDownload = await _azureStorage.GetBlobContainerClient(blobname).GetBlobClient($"/{_lessonId}/IES/TimeLine.json").DownloadContentAsync();
  1419. //var timeline = TimeLineblobDownload.Content.ToObjectFromJson<List<LessonTimeLine>>();
  1420. msgs.Add(update);
  1421. break;
  1422. //更新 课堂总览信息
  1423. case "up-ActivityInfo":
  1424. //BlobDownloadResult ActivityInfoblobDownload = await _azureStorage.GetBlobContainerClient(blobname).GetBlobClient($"/{_lessonId}/IES/ActivityInfo.json").DownloadContentAsync();
  1425. //var activityInfos = ActivityInfoblobDownload.Content.ToObjectFromJson<List<LessonActivityInfo>>();
  1426. msgs.Add(update);
  1427. break;
  1428. case "up-baseinfo":///更新基础信息,名称科目,年级,分类等,不能删除 ,由update-lesson-baseinfo 触发。
  1429. isReplace = true;
  1430. msgs.Add(update);
  1431. break;
  1432. case "up-expire"://消除过期时间,消除后需要取消已经排程的通知订阅
  1433. try
  1434. {
  1435. var table = _azureStorage.GetCloudTableClient().GetTableReference("ChangeRecord");
  1436. List<ChangeRecord> records = await table.FindListByDict<ChangeRecord>(new Dictionary<string, object>() { { "RowKey", lessonRecord.id } });
  1437. foreach (var record in records)
  1438. {
  1439. try
  1440. {
  1441. await table.DeleteSingle<ChangeRecord>(record.PartitionKey, record.RowKey);
  1442. await _serviceBus.GetServiceBusClient().CancelMessageAsync(Environment.GetEnvironmentVariable("Azure:ServiceBus:ActiveTask"), record.sequenceNumber);
  1443. }
  1444. catch (Exception)
  1445. {
  1446. continue;
  1447. }
  1448. }
  1449. }
  1450. catch (Exception)
  1451. {
  1452. break;
  1453. }
  1454. isReplace = true;
  1455. msgs.Add(update);
  1456. break;
  1457. case "delete":
  1458. try
  1459. {
  1460. if (lessonRecord.expire > 0)
  1461. {
  1462. var table = _azureStorage.GetCloudTableClient().GetTableReference("ChangeRecord");
  1463. List<ChangeRecord> records = await table.FindListByDict<ChangeRecord>(new Dictionary<string, object>() { { "RowKey", lessonRecord.id } });
  1464. foreach (var record in records)
  1465. {
  1466. try
  1467. {
  1468. await table.DeleteSingle<ChangeRecord>(record.PartitionKey, record.RowKey);
  1469. await _serviceBus.GetServiceBusClient().CancelMessageAsync(Environment.GetEnvironmentVariable("Azure:ServiceBus:ActiveTask"), record.sequenceNumber);
  1470. }
  1471. catch (Exception)
  1472. {
  1473. continue;
  1474. }
  1475. }
  1476. }
  1477. await _azureStorage.GetBlobServiceClient().DeleteBlobs(_dingDing, blobname, new List<string> { $"records/{_lessonId}" });
  1478. await client.GetContainer(Constant.TEAMModelOS, tbname).DeleteItemStreamAsync(lessonRecord.id, new PartitionKey($"Bloblog-{blobname}"));
  1479. await BlobService.RefreshBlobRoot(new BlobRefreshMessage { progress = "update", root = "records", name = $"{blobname}" }, _serviceBus, _configuration, _azureRedis);
  1480. msgs.Add(update);
  1481. }
  1482. catch (CosmosException)
  1483. {
  1484. msgs.Add(update);
  1485. }
  1486. lessonRecord = null;
  1487. isReplace = false;
  1488. break;
  1489. case "create":
  1490. oldlessonRecord = null;
  1491. //处理课堂选用的课程信息
  1492. lessonRecord.show = teacher.lessonShow;
  1493. lessonRecord.upload = 0;
  1494. if (!string.IsNullOrEmpty(lessonRecord.courseId))
  1495. {
  1496. Course course = null;
  1497. try
  1498. {
  1499. var cresponse = await client.GetContainer(Constant.TEAMModelOS, "School").ReadItemStreamAsync(lessonRecord.courseId, new PartitionKey($"Course-{lessonRecord.school}"));
  1500. if (cresponse.Status == 200)
  1501. {
  1502. using var cJson = await JsonDocument.ParseAsync(cresponse.ContentStream);
  1503. course = cJson.ToObject<Course>();
  1504. }
  1505. else
  1506. {
  1507. var sresponse = await client.GetContainer(Constant.TEAMModelOS, "Teacher").ReadItemStreamAsync(lessonRecord.courseId, new PartitionKey($"Course-{lessonRecord.tmdid}"));
  1508. if (sresponse.Status == 200)
  1509. {
  1510. using var cJson = await JsonDocument.ParseAsync(sresponse.ContentStream);
  1511. course = cJson.ToObject<Course>();
  1512. }
  1513. else
  1514. {
  1515. course = null;
  1516. }
  1517. }
  1518. }
  1519. catch (Exception ex)
  1520. {
  1521. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-查询课程-CosmosDB异常{ex.Message}\n{ex.StackTrace}\n", GroupNames.醍摩豆服務運維群組);
  1522. }
  1523. /*catch (CosmosException ex) when (ex.Status != 404)
  1524. {
  1525. try
  1526. {
  1527. course = await client.GetContainer(Constant.TEAMModelOS, "Teacher").ReadItemAsync<Course>(lessonRecord.courseId, new PartitionKey($"Course-{lessonRecord.tmdid}"));
  1528. }
  1529. catch (CosmosException e) when (e.Status != 404)
  1530. {
  1531. course = null;
  1532. }
  1533. }*/
  1534. if (course != null)
  1535. {
  1536. lessonRecord.periodId = course.period?.id;
  1537. lessonRecord.subjectId = course.subject?.id;
  1538. }
  1539. }
  1540. //处理课堂选用的名单
  1541. if (lessonRecord.groupIds.IsNotEmpty())
  1542. {
  1543. List<GroupListDto> groups = await GroupListService.GetGroupListByListids(client, _dingDing, lessonRecord.groupIds, lessonRecord.school);
  1544. if ( !string.IsNullOrWhiteSpace(lessonRecord.school) && !string.IsNullOrWhiteSpace(lessonRecord.periodId)) {
  1545. HashSet<string> grades = new HashSet<string>();
  1546. School schoolObj = await client.GetContainer(Constant.TEAMModelOS, "School").ReadItemAsync<School>(lessonRecord.school, new PartitionKey("Base"));
  1547. HashSet<int> gd = groups.SelectMany(z => z.grades).ToHashSet();
  1548. groups.ForEach(y => {
  1549. if (y.type.Equals("teach")|| y.type.Equals("class")) {
  1550. gd.Add(y.year);
  1551. }
  1552. });
  1553. var gpdata = SchoolService.GetGrades(schoolObj, lessonRecord.periodId, gd);
  1554. lessonRecord.grade = gpdata.grades.ToList();
  1555. }
  1556. }
  1557. //个人课例保存规则
  1558. try
  1559. {
  1560. if (scope.Equals("private"))
  1561. {
  1562. int lessonLimit = teacher.lessonLimit;
  1563. //获取已经使用的空间大小
  1564. long blobsize = 0;
  1565. var value = _azureRedis.GetRedisClient(8).HashGet($"Blob:Record", tmdid);
  1566. if (value != default && !value.IsNullOrEmpty)
  1567. {
  1568. JsonElement record = value.ToString().ToObject<JsonElement>();
  1569. if (record.TryGetInt64(out blobsize))
  1570. {
  1571. }
  1572. }
  1573. int blobTotal = teacher.size;
  1574. blobTotal = teacher.size;
  1575. //累加学校分配的空间
  1576. foreach (var schoolInfo in teacher.schools)
  1577. {
  1578. SchoolTeacher st = await client.GetContainer(Constant.TEAMModelOS, "School").ReadItemAsync<SchoolTeacher>(lessonRecord.tmdid, new PartitionKey($"Teacher-{schoolInfo.schoolId}"));
  1579. blobTotal += st.size;
  1580. }
  1581. //剩余空间大于2G
  1582. if (blobTotal * 1073741824 - blobsize > 2147483648)
  1583. {
  1584. //大于2G 不限制
  1585. lessonLimit = -1;
  1586. }
  1587. if (lessonLimit != -1)
  1588. {
  1589. HashSet<string> ids = new HashSet<string>();
  1590. //未定义的 以及过期时间小于等于0 的 课例
  1591. string private_count_sql = $"select value(c.id) from c where ( c.expire<=0 or IS_DEFINED(c.expire) = false ) and c.tmdid='{tmdid}' ";
  1592. await foreach (var item in client.GetContainer(Constant.TEAMModelOS, Constant.Teacher).GetItemQueryIterator<string>(
  1593. queryText: private_count_sql, requestOptions: new QueryRequestOptions { PartitionKey = new PartitionKey(code) }))
  1594. {
  1595. ids.Add(item);
  1596. }
  1597. // 220601 收藏不限條數,但空間不足時,僅保留最後一次上傳的課例 ()
  1598. //包含收藏的本人的个人课例
  1599. //string favorite_count_sql = $"select value(c.id) from c where c.type='LessonRecord' and c.owner='{tmdid}' and c.scope='private' ";
  1600. //await foreach (var item in client.GetContainer(Constant.TEAMModelOS, Constant.Teacher).GetItemQueryIterator<string>(
  1601. // queryText: favorite_count_sql, requestOptions: new QueryRequestOptions { PartitionKey = new PartitionKey($"Favorite-{tmdid}") }))
  1602. //{
  1603. // ids.Add(item);
  1604. //}
  1605. //教师个人预设的,可以通过设置的方式增加
  1606. int limit = teacher.lessonLimit;
  1607. if (teacher.lessonLimit == 0)
  1608. {
  1609. //未设置的的采用系统设置的默认值50
  1610. limit = Constant.private_lesson_limit;
  1611. }
  1612. if (ids.Count >= limit)
  1613. {
  1614. LessonRecord lessonRecordExpire = null;
  1615. //获取一条最新的 且没有被收藏,且没有被标记为过期的记录,且不是当前触发的id 。
  1616. //220712 讨论,将desc去掉,获取最旧的那一笔数据。删除最旧的
  1617. string sql = $"SELECT top 1 value(c) FROM c where ( c.expire<=0 or IS_DEFINED(c.expire) = false ) and c.tmdid='{tmdid}' " +
  1618. $"and c.favorite<=0 and c.id<>'{lessonRecord.id}' and c.status<>404 order by c.startTime ";
  1619. await foreach (var item in client.GetContainer(Constant.TEAMModelOS, Constant.Teacher).GetItemQueryIterator<LessonRecord>(
  1620. queryText: sql, requestOptions: new QueryRequestOptions { PartitionKey = new PartitionKey($"{code}") }))
  1621. {
  1622. lessonRecordExpire = item; break;
  1623. }
  1624. if (lessonRecordExpire != null)
  1625. {
  1626. // 1-时间戳,7-时间戳
  1627. Dictionary<int, ExpireTag> result = new Dictionary<int, ExpireTag>();
  1628. //暂定7天
  1629. var now = DateTimeOffset.UtcNow;
  1630. //剩余3天的通知
  1631. //var day3= now.AddDays(Constant.private_lesson_expire - 3).ToUnixTimeMilliseconds();
  1632. //result.Add(3, day3);
  1633. //剩余1天的通知
  1634. var day1 = now.AddDays(Constant.private_lesson_expire - (Constant.private_lesson_expire - 1)).ToUnixTimeMilliseconds();
  1635. result.Add(1, new ExpireTag { expire = day1, tag = "notification" });
  1636. //到期通知
  1637. //不到五点上传的课例,七天之后直接删除。
  1638. int addSecond = 0;
  1639. if (now.Hour > 5)
  1640. {
  1641. // 到凌晨00点还差 (24 - now.Hour) *60 * 60 分钟,再加天数;
  1642. addSecond = Constant.private_lesson_expire * 86400 + (24 - now.Hour) * 3600;
  1643. //再加 00到05小时内的 随机秒数
  1644. Random rand = new Random();
  1645. int randInt = rand.Next(0, 18000);
  1646. addSecond += randInt;
  1647. }
  1648. else
  1649. {
  1650. addSecond = Constant.private_lesson_expire * 24 * 60 * 60;
  1651. }
  1652. lessonRecordExpire.expire = now.AddSeconds(addSecond).ToUnixTimeMilliseconds();
  1653. //result.Add(Constant.private_lesson_expire, lessonRecordExpire.expire);
  1654. result.Add(Constant.private_lesson_expire, new ExpireTag { expire = lessonRecordExpire.expire, tag = "delete" });
  1655. string biz = "expire";
  1656. string expireTime= DateTimeOffset.FromUnixTimeMilliseconds(lessonRecordExpire.expire).ToString("yyyy-MM-dd HH:mm:ss");
  1657. _coreAPIHttpService.PushNotify(new List<IdNameCode> { new IdNameCode { id = teacher.id, name = teacher.name, code = teacher.lang } }, "expire-private_lessonRecord", Constant.NotifyType_IES5_Course,
  1658. new Dictionary<string, object> { { "tmdname", teacher.name }, { "tmdid", teacher.name }, { "expireTime", expireTime }, { "lessonId", lessonRecordExpire.id }, { "lessonName", lessonRecordExpire. name } }, $"{Environment.GetEnvironmentVariable("Option:Location")}", _configuration, _dingDing, "");
  1659. var table = _azureStorage.GetCloudTableClient().GetTableReference("ChangeRecord");
  1660. List<ChangeRecord> records = await table.FindListByDict<ChangeRecord>(new Dictionary<string, object>() { { "RowKey", lessonRecordExpire.id } });
  1661. if (records.Count <= 0)
  1662. {
  1663. foreach (var item in result)
  1664. {
  1665. string PartitionKey = string.Format("{0}{1}{2}", lessonRecordExpire.code, "-", $"expire-{item.Key}");
  1666. //课堂的id ,
  1667. //课堂的通知时间类型progress, 默认就会发送一条,到期前一天发送一条,最后已到期发送一条。
  1668. var message = new ServiceBusMessage(new
  1669. {
  1670. id = lessonRecordExpire.id,
  1671. progress = item.Key,
  1672. code = lessonRecordExpire.code,
  1673. scope = lessonRecordExpire.scope,
  1674. school = lessonRecordExpire.school,
  1675. opt = "delete",
  1676. expire = lessonRecordExpire.expire,
  1677. tmdid = tmdid,
  1678. tmdname = teacher.name,
  1679. name = lessonRecordExpire.name,
  1680. startTime = lessonRecordExpire.startTime,
  1681. tag = item.Value.tag
  1682. }.ToJsonString());
  1683. message.ApplicationProperties.Add("name", "LessonRecordExpire");
  1684. long start = await _serviceBus.GetServiceBusClient().SendScheduleMessageAsync(Environment.GetEnvironmentVariable("Azure:ServiceBus:ActiveTask"), message, DateTimeOffset.FromUnixTimeMilliseconds(item.Value.expire));
  1685. ChangeRecord changeRecord = new ChangeRecord
  1686. {
  1687. RowKey = lessonRecordExpire.id,
  1688. PartitionKey = PartitionKey,
  1689. sequenceNumber = start,
  1690. msgId = message.MessageId
  1691. };
  1692. await table.Save<ChangeRecord>(changeRecord);
  1693. }
  1694. }
  1695. await client.GetContainer(Constant.TEAMModelOS, Constant.Teacher).ReplaceItemAsync(lessonRecordExpire, lessonRecordExpire.id, new PartitionKey(lessonRecordExpire.code));
  1696. }
  1697. }
  1698. }
  1699. else
  1700. {
  1701. //=-1 则表示不限制上传数量
  1702. }
  1703. }
  1704. }
  1705. catch (Exception e)
  1706. {
  1707. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-处理课堂记录的-CosmosDB异常{e.Message}\n{e.StackTrace}\n\n{lessonRecord.ToJsonString()}", GroupNames.醍摩豆服務運維群組);
  1708. }
  1709. msgs.Add(update);
  1710. await BIStats.SetTypeAddStats(client, lessonRecord.school, "Less", 1, 0);//BI统计增/减量
  1711. break;
  1712. default:
  1713. break;
  1714. }
  1715. }
  1716. //如果被删除则不能再被更新
  1717. if (isReplace)
  1718. {
  1719. await _azureCosmos.GetCosmosClient().GetContainer(Constant.TEAMModelOS, tbname).ReplaceItemAsync<LessonRecord>(lessonRecord, lessonId, new PartitionKey(code));
  1720. }
  1721. //计算课堂更新前后的差值
  1722. lessonDis = LessonService.DisLessonCount(oldlessonRecord, lessonRecord, lessonDis);
  1723. await LessonService.FixLessonCount(client, _dingDing, lessonRecord, oldlessonRecord, lessonDis);
  1724. }
  1725. }
  1726. catch (CosmosException e)
  1727. {
  1728. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-更新课堂记录出错-CosmosDB异常{e.Message}\n{e.StackTrace}\n", GroupNames.醍摩豆服務運維群組);
  1729. }
  1730. catch (Exception ex)
  1731. {
  1732. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-更新课堂记录出错\n{ex.Message}\n{ex.StackTrace}\n\n{data}\n{code}\n{updates}\n", GroupNames.醍摩豆服務運維群組);
  1733. }
  1734. }
  1735. [Function("LessonRecordExpire")]
  1736. public async Task LessonRecordExpireFunc([ServiceBusTrigger("%Azure:ServiceBus:ActiveTask%", "lesson-record-expire", Connection = "Azure:ServiceBus:ConnectionString")] string msg)
  1737. {
  1738. try
  1739. {
  1740. var jsonMsg = JsonDocument.Parse(msg).RootElement;
  1741. jsonMsg.TryGetProperty("id", out JsonElement id);
  1742. jsonMsg.TryGetProperty("progress", out JsonElement progress);
  1743. jsonMsg.TryGetProperty("code", out JsonElement _code);
  1744. jsonMsg.TryGetProperty("tmdid", out JsonElement tmdid);
  1745. jsonMsg.TryGetProperty("tmdname", out JsonElement tmdname);
  1746. jsonMsg.TryGetProperty("name", out JsonElement name);
  1747. jsonMsg.TryGetProperty("startTime", out JsonElement startTime);
  1748. jsonMsg.TryGetProperty("expire", out JsonElement expire);
  1749. jsonMsg.TryGetProperty("scope", out JsonElement scope);
  1750. jsonMsg.TryGetProperty("school", out JsonElement _school);
  1751. jsonMsg.TryGetProperty("tag", out JsonElement _tag);
  1752. var client = _azureCosmos.GetCosmosClient();
  1753. //处理到期删除
  1754. if (_tag.ValueKind.Equals(JsonValueKind.String) && $"{_tag}".Equals("delete"))
  1755. {
  1756. string lessonId = $"{id}";
  1757. string tbname;
  1758. string school = $"{_school}";
  1759. string code = "";
  1760. if ($"{scope}".Equals("school") && !string.IsNullOrEmpty($"{school}"))
  1761. {
  1762. code = $"LessonRecord-{school}";
  1763. tbname = "School";
  1764. }
  1765. else if ($"{scope}".Equals("private"))
  1766. {
  1767. code = $"LessonRecord";
  1768. tbname = "Teacher";
  1769. }
  1770. else
  1771. {
  1772. return;
  1773. }
  1774. Azure.Response response = await client.GetContainer(Constant.TEAMModelOS, tbname).ReadItemStreamAsync(lessonId, new PartitionKey(code));
  1775. if (response.Status == 200)
  1776. {
  1777. LessonRecord lessonRecord;
  1778. var doc = JsonDocument.Parse(response.ContentStream);
  1779. lessonRecord = doc.RootElement.ToObject<LessonRecord>();
  1780. lessonRecord.status = 404;
  1781. await client.GetContainer(Constant.TEAMModelOS, tbname).ReplaceItemAsync(lessonRecord, lessonRecord.id, new PartitionKey(lessonRecord.code));
  1782. var ActiveTask = _configuration.GetValue<string>("Azure:ServiceBus:ActiveTask");
  1783. var messageChange = new ServiceBusMessage(new { delete_id = lessonId, tmdid = tmdid, scope = scope, opt = "delete", school = school }.ToJsonString());
  1784. messageChange.ApplicationProperties.Add("name", "LessonRecordEvent");
  1785. await _serviceBus.GetServiceBusClient().SendMessageAsync(ActiveTask, messageChange);
  1786. await _dingDing.SendBotMsg($"课例:【{lessonRecord.name}】\n课例ID:【{lessonRecord.id}】\n因时间到期,即将被自动删除,到期时间:" +
  1787. $"{lessonRecord.expire}\n{lessonRecord.ToJsonString()}", GroupNames.成都开发測試群組);
  1788. }
  1789. }
  1790. string biz = "expire";
  1791. Teacher targetTeacher = await client.GetContainer(Constant.TEAMModelOS, Constant.Teacher).ReadItemAsync<Teacher>($"{tmdid}", new PartitionKey($"Base"));
  1792. string expireTime = DateTimeOffset.FromUnixTimeMilliseconds(long.Parse($"{expire}")).ToString("yyyy-MM-dd HH:mm:ss");
  1793. _coreAPIHttpService.PushNotify(new List<IdNameCode> { new IdNameCode { id = targetTeacher.id, name = targetTeacher.name, code = targetTeacher.lang } }, "expire-private_lessonRecord", Constant.NotifyType_IES5_Course,
  1794. new Dictionary<string, object> { { "tmdname", tmdname }, { "tmdid",tmdid}, { "lessonId", id }, { "expireTime", expireTime }, { "lessonName",name } }, $"{Environment.GetEnvironmentVariable("Option:Location")}", _configuration, _dingDing, "");
  1795. }
  1796. catch (Exception ex)
  1797. {
  1798. await _dingDing.SendBotMsg($"{Environment.GetEnvironmentVariable("Option:Location")}-ServiceBus,LessonRecordExpire()\n{ex.Message}\n{ex.StackTrace}\n\n{msg}", GroupNames.醍摩豆服務運維群組);
  1799. }
  1800. }
  1801. /// <summary>
  1802. /// 完善课程变更
  1803. /// </summary>
  1804. /// <data msg>
  1805. /// CourseChange
  1806. ///// </data>
  1807. /// <param name="msg"></param>
  1808. /// <returns></returns>
  1809. [Function("Course")]
  1810. public async Task CourseFunc([ServiceBusTrigger("%Azure:ServiceBus:ActiveTask%", "course", Connection = "Azure:ServiceBus:ConnectionString")] string msg)
  1811. {
  1812. var client = _azureCosmos.GetCosmosClient();
  1813. try
  1814. {
  1815. //await _dingDing.SendBotMsg($"ServiceBus,CourseChange:{msg}", GroupNames.醍摩豆服務運維群組);
  1816. var jsonMsg = JsonDocument.Parse(msg);
  1817. CourseChange courseChange = msg.ToObject<CourseChange>();
  1818. if (courseChange == null)
  1819. {
  1820. return;
  1821. }
  1822. foreach (var cls in courseChange.addClass)
  1823. {
  1824. (List<RMember> tchList, List<RGroupList> classLists) = await GroupListService.GetMemberByListids(_coreAPIHttpService, client, _dingDing, new List<string> { cls }, courseChange.school);
  1825. var addStudentsCls = tchList.FindAll(x => x.type == 2);
  1826. var addTmdidsCls = tchList.FindAll(x => x.type == 1);
  1827. foreach (var stu in addStudentsCls)
  1828. {
  1829. try
  1830. {
  1831. ItemResponse<StuCourse> stuCourse = await client.GetContainer(Constant.TEAMModelOS, "Student").ReadItemAsync<StuCourse>(courseChange.id, new PartitionKey($"StuCourse-{courseChange.school}-{stu.id}"));
  1832. if (!stuCourse.Value.classId.Contains(cls))
  1833. {
  1834. stuCourse.Value.classId.Add(cls);
  1835. }
  1836. await client.GetContainer(Constant.TEAMModelOS, "Student").ReplaceItemAsync<StuCourse>(stuCourse, courseChange.id, new PartitionKey($"StuCourse-{courseChange.school}-{stu.id}"));
  1837. }
  1838. catch (CosmosException ex)
  1839. {
  1840. if (ex.Response.Status == 404)
  1841. {
  1842. var course = new StuCourse
  1843. {
  1844. id = courseChange.id,
  1845. scode = courseChange.code,
  1846. name = courseChange.name,
  1847. code = $"StuCourse-{courseChange.school}-{stu.id}",
  1848. scope = courseChange.scope,
  1849. school = courseChange.school,
  1850. creatorId = courseChange.creatorId,
  1851. classId = new List<string> { cls },
  1852. pk = "StuCourse",
  1853. createTime = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds()
  1854. };
  1855. await client.GetContainer(Constant.TEAMModelOS, "Student").CreateItemAsync(course, new PartitionKey(course.code));
  1856. }
  1857. else
  1858. {
  1859. await _dingDing.SendBotMsg($"OS,{Environment.GetEnvironmentVariable("Option:Location")},CourseServiceBus -CosmosDB异常\n{ex.Message}\n{ex.StackTrace}", GroupNames.醍摩豆服務運維群組);
  1860. }
  1861. }
  1862. }
  1863. foreach (var tmd in addTmdidsCls)
  1864. {
  1865. try
  1866. {
  1867. ItemResponse<StuCourse> stuCourse = await client.GetContainer(Constant.TEAMModelOS, "Student").ReadItemAsync<StuCourse>(courseChange.id, new PartitionKey($"StuCourse-{tmd.id}"));
  1868. if (!stuCourse.Value.classId.Contains(cls))
  1869. {
  1870. stuCourse.Value.classId.Add(cls);
  1871. }
  1872. await client.GetContainer(Constant.TEAMModelOS, "Student").ReplaceItemAsync<StuCourse>(stuCourse, courseChange.id, new PartitionKey($"StuCourse-{tmd.id}"));
  1873. }
  1874. catch (CosmosException ex)
  1875. {
  1876. if (ex.Response.Status == 404)
  1877. {
  1878. var course = new StuCourse
  1879. {
  1880. id = courseChange.id,
  1881. scode = courseChange.code,
  1882. name = courseChange.name,
  1883. code = $"StuCourse-{tmd.id}",
  1884. scope = courseChange.scope,
  1885. school = courseChange.school,
  1886. creatorId = courseChange.creatorId,
  1887. classId = new List<string> { cls },
  1888. pk = "StuCourse",
  1889. createTime = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds()
  1890. };
  1891. await client.GetContainer(Constant.TEAMModelOS, "Student").CreateItemAsync(course, new PartitionKey(course.code));
  1892. }
  1893. else
  1894. {
  1895. await _dingDing.SendBotMsg($"OS,{Environment.GetEnvironmentVariable("Option:Location")},CourseServiceBus -CosmosDB异常\n{ex.Message}\n{ex.StackTrace}", GroupNames.醍摩豆服務運維群組);
  1896. }
  1897. }
  1898. }
  1899. }
  1900. foreach (var list in courseChange.addList)
  1901. {
  1902. (List<RMember> tchList, List<RGroupList> classLists) = await GroupListService.GetMemberByListids(_coreAPIHttpService, client, _dingDing, new List<string> { list }, courseChange.school);
  1903. var addStudentsCls = tchList.FindAll(x => x.type == 2);
  1904. var addTmdidsCls = tchList.FindAll(x => x.type == 1);
  1905. foreach (var stu in addStudentsCls)
  1906. {
  1907. try
  1908. {
  1909. ItemResponse<StuCourse> stuCourse = await client.GetContainer(Constant.TEAMModelOS, "Student").ReadItemAsync<StuCourse>(courseChange.id, new PartitionKey($"StuCourse-{stu.code}-{stu.id}"));
  1910. if (!stuCourse.Value.stulist.Contains(list))
  1911. {
  1912. stuCourse.Value.stulist.Add(list);
  1913. await client.GetContainer(Constant.TEAMModelOS, "Student").ReplaceItemAsync<StuCourse>(stuCourse, courseChange.id, new PartitionKey($"StuCourse-{stu.code}-{stu.id}"));
  1914. }
  1915. }
  1916. catch (CosmosException ex)
  1917. {
  1918. if (ex.Response.Status == 404)
  1919. {
  1920. var course = new StuCourse
  1921. {
  1922. id = courseChange.id,
  1923. scode = courseChange.code,
  1924. name = courseChange.name,
  1925. code = $"StuCourse-{courseChange.school}-{stu.id}",
  1926. scope = courseChange.scope,
  1927. school = courseChange.school,
  1928. creatorId = courseChange.creatorId,
  1929. stulist = new List<string> { list },
  1930. pk = "StuCourse",
  1931. createTime = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds()
  1932. };
  1933. await client.GetContainer(Constant.TEAMModelOS, "Student").CreateItemAsync(course, new PartitionKey(course.code));
  1934. }
  1935. else
  1936. {
  1937. await _dingDing.SendBotMsg($"OS,{Environment.GetEnvironmentVariable("Option:Location")},CourseServiceBus -CosmosDB异常\n{ex.Message}\n{ex.StackTrace}", GroupNames.醍摩豆服務運維群組);
  1938. }
  1939. }
  1940. }
  1941. foreach (var tmd in addTmdidsCls)
  1942. {
  1943. try
  1944. {
  1945. ItemResponse<StuCourse> stuCourse = await client.GetContainer(Constant.TEAMModelOS, "Student").ReadItemAsync<StuCourse>(courseChange.id, new PartitionKey($"StuCourse-{tmd.id}"));
  1946. if (!stuCourse.Value.stulist.Contains(list))
  1947. {
  1948. stuCourse.Value.stulist.Add(list);
  1949. await client.GetContainer(Constant.TEAMModelOS, "Student").ReplaceItemAsync<StuCourse>(stuCourse, courseChange.id, new PartitionKey($"StuCourse-{tmd.id}"));
  1950. }
  1951. }
  1952. catch (CosmosException ex)
  1953. {
  1954. if (ex.Response.Status == 404)
  1955. {
  1956. var course = new StuCourse
  1957. {
  1958. id = courseChange.id,
  1959. scode = courseChange.code,
  1960. name = courseChange.name,
  1961. code = $"StuCourse-{tmd.id}",
  1962. scope = courseChange.scope,
  1963. school = courseChange.school,
  1964. creatorId = courseChange.creatorId,
  1965. stulist = new List<string> { list },
  1966. pk = "StuCourse",
  1967. createTime = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds()
  1968. };
  1969. await client.GetContainer(Constant.TEAMModelOS, "Student").CreateItemAsync(course, new PartitionKey(course.code));
  1970. }
  1971. else
  1972. {
  1973. await _dingDing.SendBotMsg($"OS,{Environment.GetEnvironmentVariable("Option:Location")},CourseServiceBus -CosmosDB异常\n{ex.Message}\n{ex.StackTrace}", GroupNames.醍摩豆服務運維群組);
  1974. }
  1975. }
  1976. }
  1977. }
  1978. foreach (var delCls in courseChange.delClass)
  1979. {
  1980. (List<RMember> tchList, List<RGroupList> classLists) = await GroupListService.GetMemberByListids(_coreAPIHttpService, client, _dingDing, new List<string> { delCls }, courseChange.school);
  1981. var delStudentsCls = tchList.FindAll(x => x.type == 2);
  1982. var delTmdidsCls = tchList.FindAll(x => x.type == 1);
  1983. foreach (var stu in delStudentsCls)
  1984. {
  1985. try
  1986. {
  1987. ItemResponse<StuCourse> stuCourse = await client.GetContainer(Constant.TEAMModelOS, "Student").ReadItemAsync<StuCourse>(courseChange.id, new PartitionKey($"StuCourse-{courseChange.school}-{stu.id}"));
  1988. if (stuCourse.Value.classId.Contains(delCls))
  1989. {
  1990. stuCourse.Value.classId.Remove(delCls);
  1991. }
  1992. if (!stuCourse.Value.classId.IsNotEmpty() && !stuCourse.Value.stulist.IsNotEmpty())
  1993. {
  1994. //当两个列表都不存在时则直接删除
  1995. await client.GetContainer(Constant.TEAMModelOS, "Student").DeleteItemAsync<StuCourse>(courseChange.id, new PartitionKey($"StuCourse-{courseChange.school}-{stu.id}"));
  1996. }
  1997. else
  1998. {
  1999. await client.GetContainer(Constant.TEAMModelOS, "Student").ReplaceItemAsync<StuCourse>(stuCourse, courseChange.id, new PartitionKey($"StuCourse-{courseChange.school}-{stu.id}"));
  2000. }
  2001. }
  2002. catch (CosmosException ex)
  2003. {
  2004. //await _dingDing.SendBotMsg($"OS,{ Environment.GetEnvironmentVariable("Option:Location")},CourseServiceBus -CosmosDB异常\n{ex.Message}\n{ex.StackTrace}", GroupNames.醍摩豆服務運維群組);
  2005. }
  2006. }
  2007. foreach (var tmd in delTmdidsCls)
  2008. {
  2009. try
  2010. {
  2011. ItemResponse<StuCourse> stuCourse = await client.GetContainer(Constant.TEAMModelOS, "Student").ReadItemAsync<StuCourse>(courseChange.id, new PartitionKey($"StuCourse-{tmd.id}"));
  2012. if (stuCourse.Value.classId.Contains(delCls))
  2013. {
  2014. stuCourse.Value.classId.Remove(delCls);
  2015. }
  2016. if (!stuCourse.Value.classId.IsNotEmpty() && !stuCourse.Value.stulist.IsNotEmpty())
  2017. {
  2018. //当两个列表都不存在时则直接删除
  2019. await client.GetContainer(Constant.TEAMModelOS, "Student").DeleteItemAsync<StuCourse>(courseChange.id, new PartitionKey($"StuCourse-{tmd.id}"));
  2020. }
  2021. else
  2022. {
  2023. await client.GetContainer(Constant.TEAMModelOS, "Student").ReplaceItemAsync<StuCourse>(stuCourse, courseChange.id, new PartitionKey($"StuCourse-{tmd.id}"));
  2024. }
  2025. }
  2026. catch (CosmosException ex)
  2027. {
  2028. await _dingDing.SendBotMsg($"OS,{Environment.GetEnvironmentVariable("Option:Location")},CourseServiceBus -CosmosDB异常\n{ex.Message}\n{ex.StackTrace}", GroupNames.醍摩豆服務運維群組);
  2029. }
  2030. }
  2031. }
  2032. foreach (var delList in courseChange.delList)
  2033. {
  2034. (List<RMember> tchList, List<RGroupList> classLists) = await GroupListService.GetMemberByListids(_coreAPIHttpService, client, _dingDing, new List<string> { delList }, courseChange.school);
  2035. var delStudentsCls = tchList.FindAll(x => x.type == 2);
  2036. var delTmdidsCls = tchList.FindAll(x => x.type == 1);
  2037. foreach (var stu in delStudentsCls)
  2038. {
  2039. try
  2040. {
  2041. ItemResponse<StuCourse> stuCourse = await client.GetContainer(Constant.TEAMModelOS, "Student").ReadItemAsync<StuCourse>(courseChange.id, new PartitionKey($"StuCourse-{courseChange.school}-{stu.id}"));
  2042. if (stuCourse.Value.stulist.Contains(delList))
  2043. {
  2044. stuCourse.Value.stulist.Remove(delList);
  2045. }
  2046. if (!stuCourse.Value.classId.IsNotEmpty() && !stuCourse.Value.stulist.IsNotEmpty())
  2047. {
  2048. //当两个列表都不存在时则直接删除
  2049. await client.GetContainer(Constant.TEAMModelOS, "Student").DeleteItemAsync<StuCourse>(courseChange.id, new PartitionKey($"StuCourse-{courseChange.school}-{stu.id}"));
  2050. }
  2051. else
  2052. {
  2053. await client.GetContainer(Constant.TEAMModelOS, "Student").ReplaceItemAsync<StuCourse>(stuCourse, courseChange.id, new PartitionKey($"StuCourse-{courseChange.school}-{stu.id}"));
  2054. }
  2055. }
  2056. catch (CosmosException ex)
  2057. {
  2058. continue;
  2059. // await _dingDing.SendBotMsg($"OS,{ Environment.GetEnvironmentVariable("Option:Location")},CourseServiceBus -CosmosDB异常\n{ex.Message}\n{ex.StackTrace}", GroupNames.醍摩豆服務運維群組);
  2060. }
  2061. }
  2062. foreach (var tmd in delTmdidsCls)
  2063. {
  2064. try
  2065. {
  2066. ItemResponse<StuCourse> stuCourse = await client.GetContainer(Constant.TEAMModelOS, "Student").ReadItemAsync<StuCourse>(courseChange.id, new PartitionKey($"StuCourse-{tmd.id}"));
  2067. if (stuCourse.Value.stulist.Contains(delList))
  2068. {
  2069. stuCourse.Value.stulist.Remove(delList);
  2070. }
  2071. if (!stuCourse.Value.classId.IsNotEmpty() && !stuCourse.Value.stulist.IsNotEmpty())
  2072. {
  2073. //当两个列表都不存在时则直接删除
  2074. await client.GetContainer(Constant.TEAMModelOS, "Student").DeleteItemAsync<StuCourse>(courseChange.id, new PartitionKey($"StuCourse-{tmd.id}"));
  2075. }
  2076. else
  2077. {
  2078. await client.GetContainer(Constant.TEAMModelOS, "Student").ReplaceItemAsync<StuCourse>(stuCourse, courseChange.id, new PartitionKey($"StuCourse-{tmd.id}"));
  2079. }
  2080. }
  2081. catch (CosmosException ex)
  2082. {
  2083. await _dingDing.SendBotMsg($"OS,{Environment.GetEnvironmentVariable("Option:Location")},CourseServiceBus -CosmosDB异常\n{ex.Message}\n{ex.StackTrace}", GroupNames.醍摩豆服務運維群組);
  2084. }
  2085. }
  2086. }
  2087. }
  2088. catch (Exception ex)
  2089. {
  2090. await _dingDing.SendBotMsg($"OS,{Environment.GetEnvironmentVariable("Option:Location")},CourseServiceBus -Course\n{ex.Message}\n{ex.StackTrace}", GroupNames.醍摩豆服務運維群組);
  2091. }
  2092. }
  2093. [Function("Imei")]
  2094. public async Task ImeiFunc([ServiceBusTrigger("%Azure:ServiceBus:ActiveTask%", "imei", Connection = "Azure:ServiceBus:ConnectionString")] string msg)
  2095. {
  2096. try
  2097. {
  2098. //await _dingDing.SendBotMsg($"IES5,{Environment.GetEnvironmentVariable("Option:Location")},Imei AF call\n{msg.ToJsonString()}", GroupNames.成都开发測試群組);
  2099. using var json = JsonDocument.Parse(msg);
  2100. if (json.RootElement.TryGetProperty("channel", out JsonElement channel) &&
  2101. json.RootElement.TryGetProperty("userid", out JsonElement userid) &&
  2102. json.RootElement.TryGetProperty("school", out JsonElement school) &&
  2103. json.RootElement.TryGetProperty("stus", out JsonElement stus))
  2104. {
  2105. var db = _azureCosmos.GetCosmosClient();
  2106. foreach (var stu in stus.EnumerateArray())
  2107. {
  2108. await foreach (Response item in db.GetContainer(Constant.TEAMModelOS, Constant.Student).GetItemQueryStreamIterator(
  2109. queryText: $"SELECT TOP 1 * FROM c WHERE c.stuid = '{stu.GetString()}'",
  2110. requestOptions: new() { PartitionKey = new($"Imei") }))
  2111. {
  2112. using var root = await JsonDocument.ParseAsync(item.ContentStream);
  2113. if (root.RootElement.TryGetProperty("_count", out JsonElement count) && count.GetUInt16() > 0)
  2114. {
  2115. var doc = root.RootElement.GetProperty("Documents").EnumerateArray().First();
  2116. var imei = doc.ToObject<Imei>();
  2117. imei.channel = channel.GetString();
  2118. imei.userid = userid.GetString();
  2119. await db.GetContainer(Constant.TEAMModelOS, Constant.Student).ReplaceItemAsync<Imei>(imei, imei.id);
  2120. }
  2121. }
  2122. }
  2123. }
  2124. }
  2125. catch (Exception ex)
  2126. {
  2127. await _dingDing.SendBotMsg($"IES5,{_option.Location},Imei AF error\n{ex.Message}\n{ex.StackTrace}{msg.ToJsonString()}", GroupNames.醍摩豆服務運維群組);
  2128. }
  2129. }
  2130. }
  2131. }