SystemLabelRepository.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using AutoMapper;
  4. using Datory;
  5. using GxPress.Common.AppOptions;
  6. using GxPress.Common.Page;
  7. using GxPress.Common.Tools;
  8. using GxPress.Repository.Interface.SystemLabel;
  9. using GxPress.Request.SystemLabel;
  10. using GxPress.Result.SystemLabel;
  11. using Microsoft.Extensions.Options;
  12. namespace GxPress.Repository.Implement.SystemLabel
  13. {
  14. public class SystemLabelRepository : ISystemLabelRepository
  15. {
  16. private readonly Repository<Entity.SystemLabel.SystemLabel> _repository;
  17. private readonly IMapper _mapper;
  18. private readonly string _connectionString;
  19. private readonly string _databaseTypestr;
  20. private readonly Repository<Entity.tede2.Media.MediaLable> mediaLableRepository;
  21. public SystemLabelRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper)
  22. {
  23. _databaseTypestr = dbOptionsAccessor.CurrentValue.DatabaseType;
  24. _connectionString = dbOptionsAccessor.CurrentValue.ConnectionString;
  25. var databaseType =
  26. StringUtils.ToEnum<DatabaseType>(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql);
  27. var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString);
  28. _repository = new Repository<Entity.SystemLabel.SystemLabel>(database);
  29. _mapper = mapper;
  30. mediaLableRepository = new Repository<Entity.tede2.Media.MediaLable>(database);
  31. }
  32. public IDatabase Database => _repository.Database;
  33. public string TableName => _repository.TableName;
  34. public List<TableColumn> TableColumns => _repository.TableColumns;
  35. public async Task<Entity.SystemLabel.SystemLabel> GetAsync(int id)
  36. {
  37. return await _repository.GetAsync(id);
  38. }
  39. public async Task<Entity.SystemLabel.SystemLabel> GetByNameAsync(string name)
  40. {
  41. return await _repository.GetAsync(Q.WhereLike(nameof(Entity.SystemLabel.SystemLabel.LabelName), $"%{name}%"));
  42. }
  43. public async Task<bool> DeleteAsync(int id)
  44. {
  45. return await _repository.DeleteAsync(id);
  46. }
  47. public async Task<int> InsertAsync(Entity.SystemLabel.SystemLabel note)
  48. {
  49. return await _repository.InsertAsync(note);
  50. }
  51. public async Task<bool> UpdateAsync(SystemLabelUpRequest request)
  52. {
  53. if (request.Id > 0)
  54. {
  55. var model = await GetAsync(request.Id);
  56. if (request.IsDisable > 0)
  57. model.IsDisable = request.IsDisable == 1;
  58. if (request.IsPage > 0)
  59. model.IsPage = request.IsPage == 1;
  60. if (request.IsSkip > 0)
  61. model.IsSkip = request.IsSkip == 1;
  62. if (!string.IsNullOrEmpty(request.LabelName))
  63. model.LabelName = request.LabelName;
  64. if (!string.IsNullOrEmpty(request.ActionUrl))
  65. model.ActionUrl = request.ActionUrl;
  66. if (!string.IsNullOrEmpty(request.LabelNameDescribe))
  67. model.LabelNameDescribe = request.LabelNameDescribe;
  68. if (!string.IsNullOrEmpty(request.Remark))
  69. model.Remark = request.Remark;
  70. if (request.ResourceType > 0)
  71. model.ResourceType = request.ResourceType;
  72. if (request.Sort > 0)
  73. model.Sort = request.Sort;
  74. if (!string.IsNullOrEmpty(request.StyleType))
  75. model.StyleType = request.StyleType;
  76. if (request.IsShowLabelName > 0)
  77. model.IsShowLabelName = request.IsShowLabelName == 1;
  78. if (request.PageSize > 0)
  79. model.PageSize = request.PageSize;
  80. return await _repository.UpdateAsync(model);
  81. }
  82. return false;
  83. }
  84. public async Task<bool> UpdateAsync(SqlKata.Query query)
  85. {
  86. return await _repository.UpdateAsync(query) > 0;
  87. }
  88. public async Task<PagedList<SystemLabelResult>> GetAllAsync(Common.Page.PageParameter request)
  89. {
  90. var result = new PagedList<SystemLabelResult>();
  91. var query = Q.NewQuery();
  92. query.Where(nameof(Entity.SystemLabel.SystemLabel.IsDisable), false);
  93. result.Total = await _repository.CountAsync(query);
  94. query.OrderByDesc(nameof(Entity.Navigations.Navigation.Sort));
  95. query.ForPage(request.Page, request.PerPage);
  96. result.Items = await _repository.GetAllAsync<SystemLabelResult>(query);
  97. foreach (var item in result.Items)
  98. {
  99. query = Q.NewQuery();
  100. query.Where(nameof(Entity.tede2.Media.MediaLable.LableId), item.Id);
  101. //获取资源数量
  102. item.ResourceCount = await mediaLableRepository.CountAsync(query);
  103. }
  104. return result;
  105. }
  106. public async Task<IEnumerable<Entity.SystemLabel.SystemLabel>> GetAllAsync(List<int> ids)
  107. {
  108. return await _repository.GetAllAsync(Q.WhereIn(nameof(Entity.SystemLabel.SystemLabel.Id), ids));
  109. }
  110. }
  111. }