123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453 |
- using Azure.Cosmos;
- using Microsoft.AspNetCore.Http;
- using Microsoft.AspNetCore.Mvc;
- using System;
- using System.Collections.Generic;
- using System.IdentityModel.Tokens.Jwt;
- using System.Text.Json;
- using System.Threading.Tasks;
- using TEAMModelOS.Models.Dto;
- using TEAMModelOS.SDK.Models;
- using TEAMModelOS.SDK;
- using TEAMModelOS.SDK.DI;
- using TEAMModelOS.SDK.Extension;
- using TEAMModelOS.SDK;
- using TEAMModelOS.SDK.Helper.Common.StringHelper;
- using TEAMModelOS.Models;
- using Microsoft.Extensions.Options;
- using System.Text;
- using Azure.Messaging.ServiceBus;
- using Microsoft.Extensions.Configuration;
- using System.Linq;
- namespace TEAMModelOS.Controllers
- {
- [ProducesResponseType(StatusCodes.Status200OK)]
- [ProducesResponseType(StatusCodes.Status400BadRequest)]
- //[Authorize(Roles = "IES5")]
- [Route("teacher/comment")]
- [ApiController]
- public class CommentController : ControllerBase
- {
- private readonly AzureCosmosFactory _azureCosmos;
- private readonly DingDing _dingDing;
- private readonly Option _option;
- private readonly AzureStorageFactory _azureStorage;
- public IConfiguration _configuration { get; set; }
- private readonly AzureServiceBusFactory _serviceBus;
- public CommentController(AzureCosmosFactory azureCosmos, DingDing dingDing, IOptionsSnapshot<Option> option, AzureStorageFactory azureStorage, AzureServiceBusFactory serviceBus, IConfiguration configuration)
- {
- _azureCosmos = azureCosmos;
- _dingDing = dingDing;
- _option = option?.Value;
- _azureStorage = azureStorage;
- _serviceBus = serviceBus;
- _configuration = configuration;
- }
- /// <summary>
- /// 添加教师评语快捷回复
- /// </summary>
- /// <param name="request"></param>
- /// <returns></returns>
- [ProducesDefaultResponseType]
- [HttpPost("add-comment")]
- public async Task<IActionResult> AddComment(JsonElement request)
- {
- //var id = "Comment-" + request.TEAMModelId.Replace("#", "");
- //ResponseBuilder builder = ResponseBuilder.custom();
- //List<Comment> comments = await _azureCosmos.FindByDict<Comment>(new Dictionary<string, object> { { "code", request.TEAMModelId }, { "id", id } });
- //Comment comment = new Comment();
- //if (comments.IsEmpty())
- //{
- // comment.id = id;
- // comment.code = request.TEAMModelId;
- // comment.comment.Add(request.comment);
- // comments.Add(comment);
- //}
- //else {
- // comment = comments[0];
- // comment.comment.Add(request.comment);
- //}
- //builder.Data(await _azureCosmos.SaveOrUpdate(comment));
- //return builder.build();
- //return Ok(await _azureCosmos.SaveOrUpdate(comment));
- return Ok();
- }
- /// <summary>
- /// 查询教师评语罐头
- /// </summary>
- /// <param name="request"></param>
- /// <returns></returns>
- [ProducesDefaultResponseType]
- [HttpPost("find-comment")]
- public async Task<IActionResult> findComment(JsonElement requert)
- {
- //var client = _azureCosmos.GetCosmosClient();
- //if (!requert.TryGetProperty("school_code", out JsonElement school_code)) return BadRequest();
- ////var (id, name, picture, _) = HttpContext.GetAuthTokenInfo();
- //if (!requert.TryGetProperty("id_token", out JsonElement id_token)) return BadRequest();
- //var jwt = new JwtSecurityToken(id_token.GetString());
- //if (!jwt.Payload.Iss.Equals("account.teammodel", StringComparison.Ordinal)) return BadRequest();
- //var id = jwt.Payload.Sub;
- //List<object> comments = new List<object>();
- //var query = $"select c.id,c.comment from c";
- //await foreach (var item in client.GetContainer("TEAMModelOS", "Teacher").GetItemQueryStreamIterator(queryText: query, requestOptions: new QueryRequestOptions() { PartitionKey = new PartitionKey($"Comment-{id}") }))
- //{
- // using var json = await JsonDocument.ParseAsync(item.ContentStream);
- // if (json.RootElement.TryGetProperty("_count", out JsonElement count) && count.GetUInt16() > 0)
- // {
- // foreach (var obj in json.RootElement.GetProperty("Documents").EnumerateArray())
- // {
- // comments.Add(obj.ToObject<object>());
- // }
- // }
- //}
- return Ok();
- }
- /// <summary>
- /// 更新保存教师评语罐头,如果评语列表为空则删除
- /// </summary>
- /// <param name="request"></param>
- /// <returns></returns>
- [ProducesDefaultResponseType]
- [HttpPost("upsert-comment")]
- public async Task<IActionResult> UpsertComment(Comment request)
- {
- // request.TryAdd("PartitionKey", request.lang);
- //ResponseBuilder builder = ResponseBuilder.custom();
- //Comment comment = null;
- //if (request.comment.Count > 0)
- //{
- // if (string.IsNullOrEmpty(request.id)) {
- // request.id = "Comment-" + request.code.Replace("#", "");
- // }
- // comment = await _azureCosmos.SaveOrUpdate<Comment>(request);
- //}
- //else {
- // if (!string.IsNullOrEmpty(request.id))
- // {
- // IdPk idPk = await _azureCosmos.DeleteAsync<Comment>(request.id, request.code);
- // }
- //}
- ////return builder.Data(comment).build();
- return Ok();
- }
- //批注
- [ProducesDefaultResponseType]
- //[AuthToken(Roles = "Teacher")]
- [HttpPost("upsert-answer")]
- public async Task<IActionResult> upsertAnswer(JsonElement request)
- {
- if (!request.TryGetProperty("id", out JsonElement id)) return BadRequest();
- if (!request.TryGetProperty("mark", out JsonElement mark)) return BadRequest();
- if (!request.TryGetProperty("studentId", out JsonElement studentId)) return BadRequest();
- if (!request.TryGetProperty("tmdId", out JsonElement tId)) return BadRequest();
- if (!request.TryGetProperty("subjectId", out JsonElement subjectId)) return BadRequest();
- if (!request.TryGetProperty("classId", out JsonElement classId)) return BadRequest();
- if (!request.TryGetProperty("index", out JsonElement itemIndex)) return BadRequest();
- //根据不同评测的类型返回对应的编码
- if (!request.TryGetProperty("code", out JsonElement school)) return BadRequest();
- try
- {
- var client = _azureCosmos.GetCosmosClient();
- List<ExamClassResult> examClassResults = new List<ExamClassResult>();
- await foreach (var item in client.GetContainer("TEAMModelOS", "Common").GetItemQueryStreamIterator(
- queryText: $"select value(c) from c where c.examId = '{id}' and c.subjectId = '{subjectId}' and c.info.id = '{classId}'",
- requestOptions: new QueryRequestOptions() { PartitionKey = new PartitionKey($"ExamClassResult-{school}") }))
- {
- using var json = await JsonDocument.ParseAsync(item.ContentStream);
- if (json.RootElement.TryGetProperty("_count", out JsonElement count) && count.GetUInt16() > 0)
- {
- foreach (var obj in json.RootElement.GetProperty("Documents").EnumerateArray())
- {
- examClassResults.Add(obj.ToObject<ExamClassResult>());
- }
- }
- }
- ExamClassResult classResult = new ExamClassResult();
- Details ans = mark.ToObject<Details>();
- List<List<string>> standard = new List<List<string>>();
- List<double> points = new List<double>();
- List<Task<string>> tasks = new List<Task<string>>();
- foreach (ExamClassResult result in examClassResults)
- {
- int index = result.studentIds.IndexOf(studentId.ToString());
- /*StringBuilder builder = new StringBuilder();
- builder.Append(result.examId).Append("/");
- builder.Append(result.subjectId).Append("/");
- builder.Append(studentId).Append("mark").Append("/");
- //builder.Append(tId).Append('/');
- builder.Append("ans.json");
- *//*string FileName = result.examId + "/" + result.subjectId + "/" + studentId;
- string blob = FileName + "/" + "ans.json";*//*
- tasks.Add(_azureStorage.UploadFileByContainer(school.ToString(), ans.ToJsonString(), "exam", builder.ToString(), false));
- //result.studentAnswers[newIndex].Add(builder.ToString());
- *//*string FileName = result.examId + "/" + result.subjectId + "/" + studentId + "mark";
- string blob = await _azureStorage.UploadFileByContainer(school.ToString(), ans.ToJsonString(), "exam", FileName + "/" + "ans.json");*//*
- //result.studentAnswers[index].Add(blob);*/
- List<Details> details = result.mark[index][itemIndex.GetInt32()];
- if (details.Count > 0)
- {
- List<Details> ds = details.Where(x => x.tmdId.Equals(tId.GetString())).ToList();
- if (ds.Count > 0)
- {
- foreach (Details de in ds)
- {
- if (de.tmdId.Equals(ans.tmdId))
- {
- de.mark = ans.mark;
- de.sc = ans.sc;
- //de.index = itemIndex.GetInt32();
- }
- }
- }
- else {
- result.mark[index][itemIndex.GetInt32()].Add(ans);
- }
- }
- else {
- result.mark[index][itemIndex.GetInt32()].Add(ans);
- }
-
- /*result.mark[index][itemIndex.GetInt32()].Add(ans);
- if (result.mark == null || result.mark.Count == 0)
- {
- List<List<string>> annotation = new List<List<string>>();
- foreach (string ids in result.studentIds)
- {
- annotation.Add(new List<string>());
- }
- result.mark = annotation;
- }
- result.mark[index].Add(builder.ToString());*/
- classResult = await client.GetContainer("TEAMModelOS", "Common").ReplaceItemAsync(result, result.id, new PartitionKey($"{result.code}"));
- }
- await Task.WhenAll(tasks);
- /* //变更blob 大小
- ExamInfo info = await client.GetContainer("TEAMModelOS", "Common").ReadItemAsync<ExamInfo>(id.ToString(), new Azure.Cosmos.PartitionKey($"Exam-{school}"));
- info.size = await _azureStorage.GetBlobContainerClient(school.ToString()).GetBlobsSize($"exam/{id}");
- var messageBlob = new ServiceBusMessage(new { id = Guid.NewGuid().ToString(), progress = "annotation", root = $"exam/{id}", name = school }.ToJsonString());
- messageBlob.ApplicationProperties.Add("name", "BlobRoot");
- var ActiveTask = _configuration.GetValue<string>("Azure:ServiceBus:ActiveTask");
- await _serviceBus.GetServiceBusClient().SendMessageAsync(ActiveTask, messageBlob);*/
- return Ok(new { classResult });
- }
- catch (Exception e)
- {
- await _dingDing.SendBotMsg($"OS,{_option.Location},teacher/comment/upsertAnswer()\n{e.Message}", GroupNames.醍摩豆服務運維群組);
- return BadRequest();
- }
- }
- /// <summary>
- /// 教师端,查询活动所有活动类型的列表,班主任,任课教师等
- /// 执教班级
- /// </summary>
- /// <param name="request">
- /// 教师tmdid !userid:"1255868536"
- ///学校编码 !school:"hbcn"
- ///执教的班级信息 !classes:[{"classid":"S-C-00001","scope":"school"},{"classid":"P-C-00004","scope":"private"}] TODO 需要排查 对象和班级字符串id设计原因 {"classid":"S-C-00001","scope":"school"}
- ///执教的科目 ?subjects:["subjectid1","subjectid2"]
- ///活动类型 !"pk":"Vote"/"Exam"/"Homework"/"Learn"/"Survey"" // Vote投票 Survey问卷 Exam评测 Learn学习活动 Homework作业活动
- ///时间筛选范围开始时间 默认30天之前 ?"stime":1608274766154
- ///时间筛选范围结束时间 默认当前时间 ?"etime":1608274766666
- ///每页大小 ?"count":10/null/Undefined
- ///分页Token ?"continuationToken":Undefined/null/"[{\"token\":\"+RID:~omxMAP3ipcSEEwAAAAAAAA==#RT:2#TRC:20#ISV:2#IEO:65551#QCF:1#FPC:AYQTAAAAAAAAiRMAAAAAAAA=\",\"range\":{\"min\":\"\",\"max\":\"FF\"}}]"
- ///当前状态 ?"progress":Undefined/null/"" 表示两种状态都要查询/ "going"/"finish" 表示查询进行中/ 或者已完成 学生端只能查询正在进行或已经结束 going 已发布|finish 已结束
- /// </param>
- /// <returns></returns>
- [ProducesDefaultResponseType]
- [HttpPost("tch-activity")]
- //[AuthToken(Roles = "teacher")]
- public async Task<IActionResult> TchActivity(JsonElement requert)
- {
- var (id, _, _, school) = HttpContext.GetAuthTokenInfo();
- if (string.IsNullOrWhiteSpace(school))
- {
- if (requert.TryGetProperty("school", out JsonElement schoolcode))
- {
- if (!schoolcode.ValueKind.Equals(JsonValueKind.Undefined) && !schoolcode.ValueKind.Equals(JsonValueKind.Null) && schoolcode.ValueKind.Equals(JsonValueKind.String))
- {
- school = schoolcode.GetString();
- }
- }
- }
- if (string.IsNullOrWhiteSpace(id))
- {
- if (requert.TryGetProperty("userid", out JsonElement userid))
- {
- if (!userid.ValueKind.Equals(JsonValueKind.Undefined) && !userid.ValueKind.Equals(JsonValueKind.Null) && userid.ValueKind.Equals(JsonValueKind.String))
- {
- id = userid.GetString();
- }
- }
- }
- //var stimestamp = DateTimeOffset.UtcNow.AddDays(-30).ToUnixTimeMilliseconds();
- //if (requert.TryGetProperty("stime", out JsonElement stime))
- //{
- // if (!stime.ValueKind.Equals(JsonValueKind.Undefined) && !stime.ValueKind.Equals(JsonValueKind.Null) && stime.TryGetInt64(out long data))
- // {
- // stimestamp = data;
- // }
- //}
- //string stimesql = $" c.startTime >= {stimestamp} ";
- //var etimestamp = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds();
- //string etimesql = $" and c.startTime <= {etimestamp} ";
- //var progresssql = "";
- //if (requert.TryGetProperty("progress", out JsonElement progress))
- //{
- // if (!progress.ValueKind.Equals(JsonValueKind.Undefined) && !progress.ValueKind.Equals(JsonValueKind.Null) && progress.ValueKind.Equals(JsonValueKind.String))
- // {
- // progresssql = $" and c.progress='{progress}' ";
- // }
- //}
- var pksql = "";
- string type = null;
- if (requert.TryGetProperty("pk", out JsonElement pk))
- {
- if (!pk.ValueKind.Equals(JsonValueKind.Undefined) && !pk.ValueKind.Equals(JsonValueKind.Null) && pk.ValueKind.Equals(JsonValueKind.String))
- {
- pksql = $" c.pk='{pk}' ";
- type = $"{pk}";
- }
- }
- if (string.IsNullOrEmpty(type)) { return BadRequest("type is required!"); }
- string continuationTokenSchool = null;
- //默认不指定返回大小
- int? topcout = null;
- if (requert.TryGetProperty("count", out JsonElement jcount))
- {
- if (!jcount.ValueKind.Equals(JsonValueKind.Undefined) && !jcount.ValueKind.Equals(JsonValueKind.Null) && jcount.TryGetInt32(out int data))
- {
- topcout = data;
- }
- }
- //是否需要进行分页查询,默认不分页
- bool iscontinuation = false;
- if (topcout != null && topcout.Value > 0)
- {
- iscontinuation = true;
- }
- //如果指定了返回大小
- if (requert.TryGetProperty("continuationTokenSchool", out JsonElement continuationSchool))
- {
- //指定了cancellationToken continuationSchool
- if (!continuationSchool.ValueKind.Equals(JsonValueKind.Null) && continuationSchool.ValueKind.Equals(JsonValueKind.String))
- {
- continuationTokenSchool = continuationSchool.GetString();
- }
- }
- //班级
- string joinSqlClasses = "";
- string andSqlClasses = "";
- List<string> classes = null;
- if (requert.TryGetProperty("classes", out JsonElement jclasses))
- {
- if (jclasses.ValueKind is JsonValueKind.Array)
- {
- classes = jclasses.ToObject<List<string>>();
- if (classes.IsNotEmpty())
- {
- joinSqlClasses = " join A1 in c.classes ";
- List<string> sqlList = new List<string>();
- classes.ForEach(x => { sqlList.Add($" '{x}' "); });
- string sql = string.Join(" , ", sqlList);
- andSqlClasses = $" A1 in ({sql}) ";
- }
- }
- }
- string classesSql = "";
- if (!string.IsNullOrWhiteSpace(joinSqlClasses))
- {
- classesSql = $" and {andSqlClasses } ";
- }
- //科目
- //string joinSqlSubjects = "";
- //string andSqlSubjects = "";
- //if (requert.TryGetProperty("subjects", out JsonElement jsubjects))
- //{
- // if (jsubjects.ValueKind is JsonValueKind.Array)
- // {
- // List<string> subjects = jsubjects.ToObject<List<string>>();
- // if (subjects.IsNotEmpty())
- // {
- // joinSqlSubjects = " join A2 in c.subjects ";
- // List<string> sqlList = new List<string>();
- // subjects.ForEach(x => { sqlList.Add($" '{x}' "); });
- // string sql = string.Join(" , ", sqlList);
- // andSqlSubjects = $" and A2 in ({sql}) ";
- // }
- // }
- //}
- List<JsonElement> datas = new List<JsonElement>();
- var client = _azureCosmos.GetCosmosClient();
- //班主任 ,任课教师只需要查询两种校园活动 和班级活动 , 不查询私人教室创建的活动。
- if (!string.IsNullOrWhiteSpace(school) && classes.IsNotEmpty())
- {
- //string querySchool = $" SELECT distinct value c FROM c {joinSqlClasses} {joinSqlSubjects} where {stimesql} {etimesql} {progresssql} {typesql} {andSqlSubjects} {tgSql}";
- string querySchool = $" SELECT distinct c.owner, c.id,c.code, c.classes,c.subjects,c.progress,c.scope,c.startTime,c.school,c.creatorId,c.name,c.pk ,c.endTime FROM c {joinSqlClasses} where {pksql} {classesSql}";
- //查询数据归属学校的
- await foreach (var item in client.GetContainer("TEAMModelOS", "Common").GetItemQueryStreamIterator(querySchool, continuationToken: continuationTokenSchool, requestOptions: new QueryRequestOptions() { MaxItemCount = topcout, PartitionKey = new PartitionKey($"{type}-{school}") }))
- {
- using var json = await JsonDocument.ParseAsync(item.ContentStream);
- if (json.RootElement.TryGetProperty("_count", out JsonElement count) && count.GetUInt16() > 0)
- {
- foreach (var obj in json.RootElement.GetProperty("Documents").EnumerateArray())
- {
- datas.Add(obj.ToObject<JsonElement>());
- }
- //如果需要分页则跳出
- if (iscontinuation)
- {
- continuationTokenSchool = item.GetContinuationToken();
- break;
- }
- }
- }
- }
- string continuationTokenTeacher = null;
- //如果指定了返回大小
- if (requert.TryGetProperty("continuationTokenTeacher", out JsonElement continuationTeacher))
- {
- //指定了cancellationToken continuationSchool
- if (!continuationTeacher.ValueKind.Equals(JsonValueKind.Null) && continuationTeacher.ValueKind.Equals(JsonValueKind.String))
- {
- continuationTokenTeacher = continuationTeacher.GetString();
- }
- }
- string queryTeacher = $" SELECT distinct c.owner, c.id,c.code, c.classes,c.subjects,c.progress,c.scope,c.startTime,c.school,c.creatorId,c.name,c.pk ,c.endTime FROM c where {pksql} ";
- //查询数据归属学校的
- await foreach (var item in client.GetContainer("TEAMModelOS", "Common").GetItemQueryStreamIterator(queryTeacher, continuationToken: continuationTokenSchool, requestOptions: new QueryRequestOptions() { MaxItemCount = topcout, PartitionKey = new PartitionKey($"{type}-{id}") }))
- {
- using var json = await JsonDocument.ParseAsync(item.ContentStream);
- if (json.RootElement.TryGetProperty("_count", out JsonElement count) && count.GetUInt16() > 0)
- {
- foreach (var obj in json.RootElement.GetProperty("Documents").EnumerateArray())
- {
- datas.Add(obj.ToObject<JsonElement>());
- }
- //如果需要分页则跳出
- if (iscontinuation)
- {
- continuationTokenTeacher = item.GetContinuationToken();
- break;
- }
- }
- }
- return Ok(new { datas, continuationTokenSchool, continuationTokenTeacher });
- }
- }
- }
|