SystemLabelRepository.cs 4.6 KB

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