ReplyController.cs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. using Microsoft.AspNetCore.Mvc;
  2. using GxPress.Service.Interface.Reply;
  3. using System.Threading.Tasks;
  4. using System.Collections.Generic;
  5. using GxPress.Request.Reply;
  6. using GxPress.Result.Reply;
  7. using GxPress.Auth;
  8. using Microsoft.AspNetCore.Authorization;
  9. using System.Linq;
  10. namespace GxPress.Api.AppControllers
  11. {
  12. /// <summary>
  13. /// 回复我的
  14. /// </summary>
  15. [Route("api/app/reply")]
  16. [ApiController]
  17. [Authorize]
  18. public class ReplyController : Controller
  19. {
  20. private readonly IReplyService replyService;
  21. private readonly ILoginContext _loginContext;
  22. public ReplyController(IReplyService replyService, ILoginContext _loginContext)
  23. {
  24. this.replyService = replyService;
  25. this._loginContext = _loginContext;
  26. }
  27. /// <summary>
  28. /// 获取回复我的笔记或者话题
  29. /// </summary>
  30. /// <param name="request"></param>
  31. /// <returns></returns>
  32. [HttpPost("list")]
  33. public async Task<ReplyPraiseCountResult> GetReplyNoteOrTopicResults(ReplyRequest request)
  34. {
  35. request.UserId = _loginContext.AccountId;
  36. var result = new ReplyPraiseCountResult();
  37. result.Item = await replyService.GetReplyResults(request);
  38. result.PraiseCount = await replyService.GetUReadPraiseCountAsync(request.UserId);
  39. return result;
  40. }
  41. /// <summary>
  42. /// 获取我收到的赞
  43. /// </summary>
  44. /// <param name="request"></param>
  45. /// <returns></returns>
  46. [HttpPost("praise")]
  47. public async Task<IEnumerable<ReplyResult>> GetPraiseAsync(ReplyRequest request)
  48. {
  49. request.UserId = _loginContext.AccountId;
  50. var result = new List<ReplyResult>();
  51. result.AddRange(await replyService.GetNotePraiseAsync(request));
  52. result.AddRange(await replyService.GetCommentPraiseAsync(request));
  53. result.AddRange(await replyService.GetNoticePraiseAsync(request));
  54. result.AddRange(await replyService.GetTopicPraiseAsync(request));
  55. var dd = result.OrderByDescending(n => n.CreatedDate);
  56. await replyService.UpdateUReadPraiseAsync(request.UserId);
  57. return dd;
  58. }
  59. }
  60. }