AppPageController.cs 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using GxPress.Common.Page;
  4. using GxPress.Request.ArticleGroup;
  5. using GxPress.Request.Media;
  6. using GxPress.Result.Media;
  7. using GxPress.Result.SystemLabel;
  8. using GxPress.Service.Interface.AppHomePage;
  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/page")]
  17. [ApiController]
  18. [Authorize]
  19. public class AppPageController : Controller
  20. {
  21. private readonly IAppHomePageService appHomePageService;
  22. public AppPageController(IAppHomePageService appHomePageService)
  23. {
  24. this.appHomePageService = appHomePageService;
  25. }
  26. /// <summary>
  27. /// 大咖讲座
  28. /// </summary>
  29. /// <param name="request"></param>
  30. /// <returns></returns>
  31. [HttpPost("cathedra")]
  32. [AllowAnonymous]
  33. public async Task<List<AppLabelResult<MediaCathedraResult>>> GetMediasByTeacherAsync(ArticleGroupRequest request)
  34. {
  35. if (string.IsNullOrEmpty(request.StyleCss))
  36. throw new Common.Exceptions.BusinessException("样式未知!");
  37. return await appHomePageService.GetMediasByTeacherAsync(request);
  38. }
  39. /// <summary>
  40. /// 大咖讲座分页接口
  41. /// </summary>
  42. /// <returns></returns>
  43. [HttpPost("cathedra-page")]
  44. [AllowAnonymous]
  45. public async Task<PagedList<MediaCathedraResult>> MediaCathedraResult(ArticleGroupRequest request)
  46. {
  47. return await appHomePageService.MediaCathedraResult(request);
  48. }
  49. /// <summary>
  50. /// 每日好文
  51. /// </summary>
  52. /// <param name="request"></param>
  53. /// <returns></returns>
  54. [HttpPost("day-good-text")]
  55. [AllowAnonymous]
  56. public async Task<PagedList<MediaCathedraResult>> GetDayGoodTextAsync(MediaSearchRequest request)
  57. {
  58. request.MediaType = GxPress.EnumConst.AllTypeConst.Article.GetHashCode();
  59. return await appHomePageService.GetDayGoodTextAsync(request);
  60. }
  61. /// <summary>
  62. /// 信源听说
  63. /// </summary>
  64. /// <param name="request"></param>
  65. /// <returns></returns>
  66. [HttpPost("chat-hear-speak")]
  67. [AllowAnonymous]
  68. public async Task<PagedList<MediaCathedraResult>> GetChatHearSpeak(MediaSearchRequest request)
  69. {
  70. request.MediaType = GxPress.EnumConst.AllTypeConst.Audio.GetHashCode();
  71. return await appHomePageService.GetDayGoodTextAsync(request);
  72. }
  73. /// <summary>
  74. /// 根据标签ID获取每日好书
  75. /// </summary>
  76. /// <returns></returns>
  77. [HttpPost("lable")]
  78. public async Task<PagedList<MediaCathedraResult>> GetMediaByLableIdsAsync(MediaIdsRequest request)
  79. {
  80. return await appHomePageService.GetMediaByLableIdsAsync(request);
  81. }
  82. }
  83. }