SystemLabelRepository.cs 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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<bool> DeleteAsync(int id)
  40. {
  41. return await _repository.DeleteAsync(id);
  42. }
  43. public async Task<int> InsertAsync(Entity.SystemLabel.SystemLabel note)
  44. {
  45. return await _repository.InsertAsync(note);
  46. }
  47. public async Task<bool> UpdateAsync(SystemLabelUpRequest request)
  48. {
  49. if (request.Id > 0)
  50. {
  51. var model = await GetAsync(request.Id);
  52. if (request.IsDisable > 0)
  53. model.IsDisable = request.IsDisable == 1;
  54. if (request.IsPage > 0)
  55. model.IsPage = request.IsPage == 1;
  56. if (request.IsSkip > 0)
  57. model.IsSkip = request.IsSkip == 1;
  58. if (!string.IsNullOrEmpty(request.LabelName))
  59. model.LabelName = request.LabelName;
  60. if (!string.IsNullOrEmpty(request.ActionUrl))
  61. model.ActionUrl = request.ActionUrl;
  62. if (!string.IsNullOrEmpty(request.LabelNameDescribe))
  63. model.LabelNameDescribe = request.LabelNameDescribe;
  64. if (!string.IsNullOrEmpty(request.Remark))
  65. model.Remark = request.Remark;
  66. if (request.ResourceType > 0)
  67. model.ResourceType = request.ResourceType;
  68. if (request.Sort > 0)
  69. model.Sort = request.Sort;
  70. if (!string.IsNullOrEmpty(request.StyleType))
  71. model.StyleType = request.StyleType;
  72. if (request.IsShowLabelName > 0)
  73. model.IsShowLabelName = request.IsShowLabelName == 1;
  74. if (request.PageSize > 0)
  75. model.PageSize = request.PageSize;
  76. return await _repository.UpdateAsync(model);
  77. }
  78. return false;
  79. }
  80. public async Task<bool> UpdateAsync(SqlKata.Query query)
  81. {
  82. return await _repository.UpdateAsync(query) > 0;
  83. }
  84. public async Task<PagedList<SystemLabelResult>> GetAllAsync(Common.Page.PageParameter request)
  85. {
  86. var result = new PagedList<SystemLabelResult>();
  87. var query = Q.NewQuery();
  88. query.Where(nameof(Entity.SystemLabel.SystemLabel.IsDisable), false);
  89. result.Total = await _repository.CountAsync(query);
  90. query.OrderByDesc(nameof(Entity.Navigations.Navigation.Sort));
  91. query.ForPage(request.Page, request.PerPage);
  92. result.Items = await _repository.GetAllAsync<SystemLabelResult>(query);
  93. foreach (var item in result.Items)
  94. {
  95. query = Q.NewQuery();
  96. query.Where(nameof(Entity.tede2.Media.MediaLable.LableId), item.Id);
  97. //获取资源数量
  98. item.ResourceCount = await mediaLableRepository.CountAsync(query);
  99. }
  100. return result;
  101. }
  102. public async Task<IEnumerable<Entity.SystemLabel.SystemLabel>> GetAllAsync(List<int> ids)
  103. {
  104. return await _repository.GetAllAsync(Q.WhereIn(nameof(Entity.SystemLabel.SystemLabel.Id), ids));
  105. }
  106. }
  107. }