AdminPlatformDataController.cs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using GxPress.Result.DataCenter;
  4. using GxPress.Service.Interface.PlatformData;
  5. using Microsoft.AspNetCore.Authorization;
  6. using Microsoft.AspNetCore.Mvc;
  7. namespace GxPress.Api.AdminControllers
  8. {
  9. /// <summary>
  10. /// 平台数据
  11. /// </summary>
  12. [Route("api/admin/platform")]
  13. [ApiController]
  14. [Authorize]
  15. public class AdminPlatformDataController : Controller
  16. {
  17. private readonly IPlatformDataService platformDataService;
  18. public AdminPlatformDataController(IPlatformDataService platformDataService)
  19. {
  20. this.platformDataService = platformDataService;
  21. }
  22. /// <summary>
  23. /// 平台数据
  24. /// </summary>
  25. /// <returns></returns>
  26. [HttpGet("data")]
  27. public async Task<PlatformDataResult> GetPlatformDataResult()
  28. {
  29. var result = new PlatformDataResult();
  30. result.PlatformOperationDataResult = await platformDataService.GetPlatformDataAsync();
  31. result.UserIncreaseResult = new UserIncreaseResult();
  32. result.UserAreaDistributingResults = new List<UserAreaDistributingResult>();
  33. result.UserVipProportionResult = new UserVipProportionResult();
  34. result.OnlineUserResult = new OnlineUserResult();
  35. result.PlatformContentDataResult = new PlatformContentDataResult();
  36. result.ContentTypeDistributingResult = new List<ContentTypeDistributingResult>();
  37. result.ContentOlogyDistributingResult = new List<ContentOlogyDistributingResult>();
  38. result.PayContentstatisticsResult = new PayContentstatisticsResult();
  39. result.ContentIncreaseResult = new ContentIncreaseResult();
  40. result.PlatformAccumulativeVisitResult = new PlatformAccumulativeVisitResult();
  41. result.VisitPortResult = new List<VisitPortResult>();
  42. result.PlatformCommerceResult = new PlatformCommerceResult();
  43. result.ContentSaleRankingResults = new List<ContentSaleRankingResult>();
  44. result.ContentSaleProportionResults = new List<ContentSaleProportionResult>();
  45. return result;
  46. }
  47. }
  48. }