ArticleController.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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/web/article")]
  24. [ApiController]
  25. [Authorize]
  26. public class WebArticleController : 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 WebArticleController(IArticleRepository articleRepository, IBlacklistArticleRepository blacklistArticleRepository,
  37. ILoginContext loginContext, IArticleService articleService, IFlowService flowService, IUserRepository userRepository,
  38. IFlowFieldValueRepository flowFieldValueRepository, IVisitService visitService)
  39. {
  40. _articleRepository = articleRepository;
  41. _blacklistArticleRepository = blacklistArticleRepository;
  42. _loginContext = loginContext;
  43. _articleService = articleService;
  44. _flowService = flowService;
  45. _userRepository = userRepository;
  46. _flowFieldValueRepository = flowFieldValueRepository;
  47. _visitService = visitService;
  48. }
  49. /// <summary>
  50. /// 列表
  51. /// </summary>
  52. /// <returns></returns>
  53. [HttpPost("user-article-list")]
  54. public async Task<PagedList<ArticleResult>> GetUserList([FromBody] ArticleSearchRequest request)
  55. {
  56. request.UserId = _loginContext.AccountId;
  57. //屏蔽文章查询文章
  58. var blacklistArticleSearchRequest = new BlacklistArticleSearchRequest { UserId = request.UserId };
  59. var blacklistArticles = await _blacklistArticleRepository.GetListAsync(blacklistArticleSearchRequest);
  60. var pagedList = await _articleRepository.GetUserListAsync(request, blacklistArticles);
  61. foreach (var item in pagedList.Items)
  62. item.ReadCount = await _visitService.GetCountAsync(AllTypeConst.Article.GetHashCode(), item.Id);
  63. var resultList = new List<Result.Article.ArticleResult>();
  64. if (!string.IsNullOrWhiteSpace(request.Keyword))
  65. {
  66. //获取代办事项
  67. var userId = _loginContext.AccountId;
  68. var flowListRequest = new FlowListRequest();
  69. flowListRequest.Page = request.Page;
  70. flowListRequest.PerPage = request.PerPage;
  71. flowListRequest.Keyword = request.Keyword;
  72. var flowTodoList = await _flowService.ListMyCheckingAsync(userId, flowListRequest, nameof(GxPress.EnumConst.FlowListTypeConst.MyChecking));
  73. foreach (var flowTodo in flowTodoList.Items)
  74. {
  75. var result = new Result.Article.ArticleResult
  76. {
  77. Id = flowTodo.Id,
  78. ProcessId = flowTodo.ProcessId,
  79. FlowId = flowTodo.Id,
  80. UserId = flowTodo.UserId,
  81. Type = nameof(GxPress.EnumConst.TodoTypeConst.ApproverCheck),
  82. State = flowTodo.State,
  83. IsDone = false,
  84. CreatedDate = flowTodo.CreatedDate
  85. };
  86. result.Title = flowTodo.Title;
  87. result.AvatarUrl = flowTodo.AvatarUrl;
  88. result.Summaries = flowTodo.Summaries;
  89. result.SourceType = 1;
  90. resultList.Add(result);
  91. }
  92. }
  93. resultList.AddRange(pagedList.Items);
  94. pagedList.Total = resultList.Count();
  95. pagedList.Items = resultList;
  96. return pagedList;
  97. }
  98. /// <summary>
  99. /// 文章详情
  100. /// </summary>
  101. /// <returns></returns>
  102. [HttpGet("detail/{id}")]
  103. [AllowAnonymous]
  104. public async Task<ArticleResult> Get(int id)
  105. {
  106. var article = await _articleService.GetAsync(id, _loginContext.AccountId);
  107. return article;
  108. }
  109. /// <summary>
  110. /// 文章详情 web页面
  111. /// </summary>
  112. /// <returns></returns>
  113. [HttpGet("web-detail/{id}")]
  114. [AllowAnonymous]
  115. public async Task<ArticleResult> GetWeb(int id)
  116. {
  117. var article = await _articleService.GetAsync(id, 0);
  118. return article;
  119. }
  120. }
  121. }