SystemLabelRepository.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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 Microsoft.Extensions.Options;
  10. namespace GxPress.Repository.Implement.SystemLabel
  11. {
  12. public class SystemLabelRepository : ISystemLabelRepository
  13. {
  14. private readonly Repository<Entity.SystemLabel.SystemLabel> _repository;
  15. private readonly IMapper _mapper;
  16. private readonly string _connectionString;
  17. private readonly string _databaseTypestr;
  18. public SystemLabelRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper)
  19. {
  20. _databaseTypestr = dbOptionsAccessor.CurrentValue.DatabaseType;
  21. _connectionString = dbOptionsAccessor.CurrentValue.ConnectionString;
  22. var databaseType =
  23. StringUtils.ToEnum<DatabaseType>(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql);
  24. var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString);
  25. _repository = new Repository<Entity.SystemLabel.SystemLabel>(database);
  26. _mapper = mapper;
  27. }
  28. public IDatabase Database => _repository.Database;
  29. public string TableName => _repository.TableName;
  30. public List<TableColumn> TableColumns => _repository.TableColumns;
  31. public async Task<Entity.SystemLabel.SystemLabel> GetAsync(int id)
  32. {
  33. return await _repository.GetAsync(id);
  34. }
  35. public async Task<bool> DeleteAsync(int id)
  36. {
  37. return await _repository.DeleteAsync(id);
  38. }
  39. public async Task<int> InsertAsync(Entity.SystemLabel.SystemLabel note)
  40. {
  41. return await _repository.InsertAsync(note);
  42. }
  43. public async Task<bool> UpdateAsync(SystemLabelUpRequest request)
  44. {
  45. if (request.Id > 0)
  46. {
  47. var model = await GetAsync(request.Id);
  48. if (request.IsDisable > 0)
  49. model.IsDisable = request.IsDisable == 1;
  50. if (request.IsPage > 0)
  51. model.IsPage = request.IsPage == 1;
  52. if (request.IsSkip > 0)
  53. model.IsSkip = request.IsSkip == 1;
  54. if (!string.IsNullOrEmpty(request.LabelName))
  55. model.LabelName = request.LabelName;
  56. if (!string.IsNullOrEmpty(request.LabelNameDescribe))
  57. model.LabelNameDescribe = request.LabelNameDescribe;
  58. if (!string.IsNullOrEmpty(request.Remark))
  59. model.Remark = request.Remark;
  60. if (request.ResourceType > 0)
  61. model.ResourceType = request.ResourceType;
  62. if (request.Sort > 0)
  63. model.Sort = request.Sort;
  64. if (!string.IsNullOrEmpty(request.StyleType))
  65. model.StyleType = request.StyleType;
  66. return await _repository.UpdateAsync(model);
  67. }
  68. return false;
  69. }
  70. public async Task<bool> UpdateAsync(SqlKata.Query query)
  71. {
  72. return await _repository.UpdateAsync(query) > 0;
  73. }
  74. public async Task<IEnumerable<Entity.SystemLabel.SystemLabel>> GetAllAsync()
  75. {
  76. return await _repository.GetAllAsync(Q.Where(nameof(Entity.SystemLabel.SystemLabel.IsDisable), false).OrderByDesc(nameof(Entity.Navigations.Navigation.Sort)));
  77. }
  78. public async Task<IEnumerable<Entity.SystemLabel.SystemLabel>> GetAllAsync(List<int> ids)
  79. {
  80. return await _repository.GetAllAsync(Q.WhereIn(nameof(Entity.SystemLabel.SystemLabel.Id), ids));
  81. }
  82. }
  83. }