AdminCategoryController.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using GxPress.Auth;
  4. using GxPress.Repository.Interface.Category;
  5. using GxPress.Repository.Interface.TrackLog;
  6. using GxPress.Result.Category;
  7. using GxPress.Service.Interface.Category;
  8. using Microsoft.AspNetCore.Authorization;
  9. using Microsoft.AspNetCore.Http;
  10. using Microsoft.AspNetCore.Mvc;
  11. // For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
  12. namespace GxPress.Api.AdminControllers
  13. {
  14. [ApiController]
  15. [Authorize]
  16. [Route("api/admin/category")]
  17. public class AdminCategoryController : Controller
  18. {
  19. private readonly ICategoryRepository categoryRepository;
  20. private readonly ICategoryService categoryService;
  21. private readonly ILoginContext _loginContext;
  22. private readonly IHttpContextAccessor httpContextAccessor;
  23. private readonly ITrackLogRepository trackLogRepository;
  24. public AdminCategoryController(ICategoryRepository categoryRepository, ILoginContext _loginContext, IHttpContextAccessor httpContextAccessor, ITrackLogRepository trackLogRepository, ICategoryService categoryService)
  25. {
  26. this.categoryRepository = categoryRepository;
  27. this.httpContextAccessor = httpContextAccessor;
  28. this._loginContext = _loginContext;
  29. this.trackLogRepository = trackLogRepository;
  30. this.categoryService = categoryService;
  31. }
  32. /// <summary>
  33. /// 详情
  34. /// </summary>
  35. /// <param name="id"></param>
  36. /// <returns></returns>
  37. [HttpGet("{id}")]
  38. public async Task<CategoryResult> GetAsync(int id)
  39. {
  40. return await categoryService.GetAsync(id);
  41. }
  42. /// <summary>
  43. /// 删除
  44. /// </summary>
  45. /// <param name="id"></param>
  46. /// <returns></returns>
  47. [HttpDelete("{id}")]
  48. public async Task<bool> DeleteAsync(int id)
  49. {
  50. var success = await categoryRepository.DeleteAsync(id);
  51. if (success)
  52. {
  53. var category = await categoryRepository.GetAsync(id);
  54. var ip = httpContextAccessor.HttpContext.Connection.RemoteIpAddress.ToString();
  55. var remark = $"删除类目:{category.Name}";
  56. await trackLogRepository.InsertAsync(_loginContext.Name, _loginContext.AccountId, ip, remark);
  57. }
  58. return success;
  59. }
  60. /// <summary>
  61. /// 添加
  62. /// </summary>
  63. /// <param name="note"></param>
  64. /// <returns></returns>
  65. [HttpPost]
  66. public async Task<bool> InsertAsync(Entity.tede2.Category.Category note)
  67. {
  68. var success = await categoryRepository.InsertAsync(note) > 0;
  69. if (success)
  70. {
  71. var ip = httpContextAccessor.HttpContext.Connection.RemoteIpAddress.ToString();
  72. var remark = $"添加类目:{note.Name}";
  73. await trackLogRepository.InsertAsync(_loginContext.Name, _loginContext.AccountId, ip, remark);
  74. }
  75. return success;
  76. }
  77. /// <summary>
  78. /// 修改
  79. /// </summary>
  80. /// <param name="note"></param>
  81. /// <returns></returns>
  82. [HttpPut]
  83. public async Task<bool> UpdateAsync(Entity.tede2.Category.Category note)
  84. {
  85. var success = await categoryRepository.UpdateAsync(note);
  86. if (success)
  87. {
  88. var ip = httpContextAccessor.HttpContext.Connection.RemoteIpAddress.ToString();
  89. var remark = $"修改类目:{note.Name}";
  90. await trackLogRepository.InsertAsync(_loginContext.Name, _loginContext.AccountId, ip, remark);
  91. }
  92. return success;
  93. }
  94. /// <summary>
  95. /// 获取所有PC/APP端 0pc 1 app
  96. /// </summary>
  97. /// <returns></returns>
  98. [HttpGet("all/{typeId}")]
  99. public async Task<IEnumerable<Entity.tede2.Category.Category>> GetAllAsync(int typeId)
  100. {
  101. return await categoryRepository.GetAllAsync(typeId);
  102. }
  103. /// <summary>
  104. /// 查询子集
  105. /// </summary>
  106. /// <param name="parentId"></param>
  107. /// <param name="typeValue"> 类型0 pc 1 app</param>
  108. /// <returns></returns>
  109. [HttpGet("children/{parentId}/{typeValue}")]
  110. public async Task<IEnumerable<CategoryResult>> GetCategoryChildrenAsync(int parentId, int typeValue)
  111. {
  112. return await categoryService.GetCategoryChildrenAsync(parentId, typeValue);
  113. }
  114. }
  115. }