AdminCategoryController.cs 4.3 KB

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