ArticleController.cs 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using System.Threading.Tasks;
  4. using GxPress.Auth;
  5. using GxPress.Common.Page;
  6. using GxPress.Repository.Interface;
  7. using GxPress.Request.Article;
  8. using GxPress.Request.BlacklistArticle;
  9. using GxPress.Result.Article;
  10. using GxPress.Service.Interface;
  11. using GxPress.Service.Interface.Article;
  12. using Microsoft.AspNetCore.Authorization;
  13. using Microsoft.AspNetCore.Mvc;
  14. using GxPress.Repository.Interface.WorkFlow;
  15. using GxPress.Request.App.Flow;
  16. using GxPress.Service.Interface.Visit;
  17. using GxPress.EnumConst;
  18. namespace GxPress.Api.AppControllers
  19. {
  20. /// <summary>
  21. /// 审批文章/通知
  22. /// </summary>
  23. [Route("api/app/article")]
  24. [ApiController]
  25. [Authorize]
  26. public class ArticleController : ControllerBase
  27. {
  28. private readonly IArticleRepository _articleRepository;
  29. private readonly IBlacklistArticleRepository _blacklistArticleRepository;
  30. private readonly IArticleService _articleService;
  31. private readonly ILoginContext _loginContext;
  32. private readonly IFlowService _flowService;
  33. private readonly IUserRepository _userRepository;
  34. private readonly IFlowFieldValueRepository _flowFieldValueRepository;
  35. private readonly IVisitService _visitService;
  36. public ArticleController(IArticleRepository articleRepository, IBlacklistArticleRepository blacklistArticleRepository,
  37. ILoginContext loginContext, IArticleService articleService, IFlowService flowService, IUserRepository userRepository, IFlowFieldValueRepository flowFieldValueRepository, IVisitService visitService)
  38. {
  39. _articleRepository = articleRepository;
  40. _blacklistArticleRepository = blacklistArticleRepository;
  41. _loginContext = loginContext;
  42. _articleService = articleService;
  43. _flowService = flowService;
  44. _userRepository = userRepository;
  45. _flowFieldValueRepository = flowFieldValueRepository;
  46. _visitService = visitService;
  47. }
  48. /// <summary>
  49. /// 列表
  50. /// </summary>
  51. /// <returns></returns>
  52. [HttpPost("user-article-list")]
  53. public async Task<PagedList<ArticleResult>> GetUserList([FromBody] ArticleSearchRequest request)
  54. {
  55. request.UserId = _loginContext.AccountId;
  56. //屏蔽文章查询文章
  57. var blacklistArticleSearchRequest = new BlacklistArticleSearchRequest { UserId = request.UserId };
  58. var blacklistArticles = await _blacklistArticleRepository.GetListAsync(blacklistArticleSearchRequest);
  59. var pagedList = await _articleRepository.GetUserListAsync(request, blacklistArticles);
  60. foreach (var item in pagedList.Items)
  61. item.ReadCount = await _visitService.GetCountAsync(AllTypeConst.Article.GetHashCode(), item.Id);
  62. var resultList = new List<Result.Article.ArticleResult>();
  63. if (!string.IsNullOrWhiteSpace(request.Keyword))
  64. {
  65. //获取代办事项
  66. var userId = _loginContext.AccountId;
  67. var flowListRequest = new FlowListRequest();
  68. flowListRequest.Page = request.Page;
  69. flowListRequest.PerPage = request.PerPage;
  70. flowListRequest.Keyword = request.Keyword;
  71. var flowTodoList = await _flowService.ListMyCheckingAsync(userId, flowListRequest, nameof(GxPress.EnumConst.FlowListTypeConst.MyChecking));
  72. foreach (var flowTodo in flowTodoList.Items)
  73. {
  74. var result = new Result.Article.ArticleResult
  75. {
  76. Id = flowTodo.Id,
  77. ProcessId = flowTodo.ProcessId,
  78. FlowId = flowTodo.Id,
  79. UserId = flowTodo.UserId,
  80. Type = nameof(GxPress.EnumConst.TodoTypeConst.ApproverCheck),
  81. State = flowTodo.State,
  82. IsDone = false,
  83. CreatedDate = flowTodo.CreatedDate
  84. };
  85. result.Title = flowTodo.Title;
  86. result.AvatarUrl = flowTodo.AvatarUrl;
  87. result.Summaries = flowTodo.Summaries;
  88. result.SourceType = 1;
  89. resultList.Add(result);
  90. }
  91. }
  92. resultList.AddRange(pagedList.Items);
  93. pagedList.Total = resultList.Count();
  94. pagedList.Items = resultList;
  95. return pagedList;
  96. }
  97. /// <summary>
  98. /// 文章详情
  99. /// </summary>
  100. /// <returns></returns>
  101. [HttpGet("detail/{id}")]
  102. public async Task<ArticleResult> Get(int id)
  103. {
  104. var article = await _articleService.GetAsync(id, _loginContext.AccountId);
  105. return article;
  106. }
  107. /// <summary>
  108. /// 文章详情 web页面
  109. /// </summary>
  110. /// <returns></returns>
  111. [HttpGet("web-detail/{id}")]
  112. [AllowAnonymous]
  113. public async Task<ArticleResult> GetWeb(int id)
  114. {
  115. var article = await _articleService.GetAsync(id, 0);
  116. return article;
  117. }
  118. }
  119. }