AppReportController.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using System.Threading.Tasks;
  4. using GxPress.Auth;
  5. using GxPress.Common.Tools;
  6. using GxPress.Entity;
  7. using GxPress.Repository.Interface;
  8. using GxPress.Repository.Interface.AppReport;
  9. using Microsoft.AspNetCore.Authorization;
  10. using Microsoft.AspNetCore.Mvc;
  11. namespace GxPress.Api.AppControllers
  12. {
  13. /// <summary>
  14. /// App数据报表
  15. /// </summary>
  16. [Route("api/app/app-report")]
  17. [ApiController]
  18. [Authorize]
  19. public class AppReportController : ControllerBase
  20. {
  21. private readonly IAppReportRepository _appReportRepository;
  22. private readonly IUserRepository userRepository;
  23. private readonly ILoginContext _loginContext;
  24. public AppReportController(IAppReportRepository appReportRepository, IUserRepository userRepository, ILoginContext _loginContext)
  25. {
  26. _appReportRepository = appReportRepository;
  27. this.userRepository = userRepository;
  28. this._loginContext = _loginContext;
  29. }
  30. /// <summary>
  31. /// 查询
  32. /// </summary>
  33. /// <returns></returns>
  34. [HttpPost("list")]
  35. public async Task<IEnumerable<Entity.AppReport>> GetAppReportList()
  36. {
  37. var user = await userRepository.GetAsync(_loginContext.AccountId);
  38. if (!user.IsReport)
  39. return new List<Entity.AppReport>();
  40. var result = await _appReportRepository.GetAppReportListAsync();
  41. var appReportList = result as AppReport[] ?? result.ToArray();
  42. foreach (var appReport in appReportList)
  43. {
  44. appReport.IocUrl = StringUtils.AddDomain(appReport.IocUrl);
  45. }
  46. return appReportList;
  47. }
  48. }
  49. }