AppPageController.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using GxPress.Request.ArticleGroup;
  4. using GxPress.Result.Media;
  5. using GxPress.Result.SystemLabel;
  6. using GxPress.Service.Interface.AppHomePage;
  7. using Microsoft.AspNetCore.Authorization;
  8. using Microsoft.AspNetCore.Mvc;
  9. namespace GxPress.Api.AppControllers
  10. {
  11. /// <summary>
  12. /// App首页数据
  13. /// </summary>
  14. [Route("api/app/page")]
  15. [ApiController]
  16. [Authorize]
  17. public class AppPageController : Controller
  18. {
  19. private readonly IAppHomePageService appHomePageService;
  20. public AppPageController(IAppHomePageService appHomePageService)
  21. {
  22. this.appHomePageService = appHomePageService;
  23. }
  24. /// <summary>
  25. /// 大咖讲座
  26. /// </summary>
  27. /// <param name="request"></param>
  28. /// <returns></returns>
  29. [HttpPost("cathedra")]
  30. [AllowAnonymous]
  31. public async Task<List<AppLabelResult<MediaCathedraResult>>> GetMediasByTeacherAsync(ArticleGroupRequest request)
  32. {
  33. if (string.IsNullOrEmpty(request.StyleCss))
  34. throw new Common.Exceptions.BusinessException("样式未知!");
  35. return await appHomePageService.GetMediasByTeacherAsync(request);
  36. }
  37. /// <summary>
  38. /// 大咖讲座分页接口
  39. /// </summary>
  40. /// <returns></returns>
  41. [HttpPost("cathedra-page")]
  42. [AllowAnonymous]
  43. public async Task<IEnumerable<MediaCathedraResult>> MediaCathedraResult(ArticleGroupRequest request)
  44. {
  45. return await appHomePageService.MediaCathedraResult(request);
  46. }
  47. }
  48. }