AttachRepository.cs 5.5 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.Attach;
  9. using GxPress.Request.Attach;
  10. using Microsoft.Extensions.Options;
  11. namespace GxPress.Repository.Implement.Attach
  12. {
  13. public class AttachRepository : IAttachRepository
  14. {
  15. private readonly Repository<Entity.tede2.Attach.Attach> _repository;
  16. private readonly IMapper _mapper;
  17. private readonly string _connectionString;
  18. private readonly string _databaseTypestr;
  19. public AttachRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper)
  20. {
  21. _databaseTypestr = dbOptionsAccessor.CurrentValue.DatabaseType;
  22. _connectionString = dbOptionsAccessor.CurrentValue.ConnectionString;
  23. var databaseType =
  24. StringUtils.ToEnum<DatabaseType>(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql);
  25. var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString);
  26. _repository = new Repository<Entity.tede2.Attach.Attach>(database);
  27. _mapper = mapper;
  28. }
  29. public IDatabase Database => _repository.Database;
  30. public string TableName => _repository.TableName;
  31. public List<TableColumn> TableColumns => _repository.TableColumns;
  32. public async Task<bool> DeleteAsync(int id)
  33. {
  34. return await _repository.DeleteAsync(id);
  35. }
  36. public async Task<PagedList<Entity.tede2.Attach.Attach>> GetAllAsync(AttachRequest request)
  37. {
  38. var result = new PagedList<Entity.tede2.Attach.Attach>();
  39. var query = Q.NewQuery();
  40. query.Where(nameof(Entity.tede2.Attach.Attach.AttachType), request.TypeId);
  41. if (!string.IsNullOrEmpty(request.KeyWord))
  42. query.WhereLike(nameof(Entity.tede2.Attach.Attach.Name), $"%{request.KeyWord}%");
  43. if (request.CategoryId > 0)
  44. query.Where(nameof(Entity.tede2.Attach.Attach.CategoryId), request.CategoryId);
  45. if (request.AdminId > 0)
  46. query.Where(nameof(Entity.tede2.Attach.Attach.CategoryId), request.AdminId);
  47. if (request.WithdrawType > 0)
  48. query.Where(nameof(Entity.tede2.Attach.Attach.IsWithdraw), request.WithdrawType == 2);
  49. result.Items = await _repository.GetAllAsync(query.OrderByDesc(nameof(Entity.tede2.Attach.Attach.CreatedDate)).ForPage(request.Page, request.PerPage));
  50. result.Total = await _repository.CountAsync(query);
  51. return result;
  52. }
  53. public async Task<IEnumerable<Entity.tede2.Attach.Attach>> GetSearchAllAsync(AttachRequest request)
  54. {
  55. var query = Q.NewQuery();
  56. query.Where(nameof(Entity.tede2.Attach.Attach.AttachType), request.TypeId);
  57. if (!string.IsNullOrEmpty(request.KeyWord))
  58. query.WhereLike(nameof(Entity.tede2.Attach.Attach.Name), $"%{request.KeyWord}%");
  59. if (request.CategoryId > 0)
  60. query.Where(nameof(Entity.tede2.Attach.Attach.CategoryId), request.CategoryId);
  61. if (request.AdminId > 0)
  62. query.Where(nameof(Entity.tede2.Attach.Attach.CategoryId), request.AdminId);
  63. if (request.WithdrawType > 0)
  64. query.Where(nameof(Entity.tede2.Attach.Attach.IsWithdraw), request.WithdrawType == 2);
  65. var result = await _repository.GetAllAsync(query);
  66. return result;
  67. }
  68. public async Task<Entity.tede2.Attach.Attach> GetAsync(int id)
  69. {
  70. return await _repository.GetAsync(id);
  71. }
  72. public async Task<int> InsertAsync(Entity.tede2.Attach.Attach note)
  73. {
  74. var categoryId = "";
  75. var categoryIds = StringUtils.StringCollectionToStringList(note.CategoryId);
  76. foreach (var item in categoryIds)
  77. {
  78. categoryId += item.Split(",")[item.Split(",").Length - 1] + ",";
  79. }
  80. categoryId = categoryId.Remove(categoryId.Length - 1, 1);
  81. note.FullCategoryId = note.CategoryId;
  82. note.CategoryId = categoryId;
  83. return await _repository.InsertAsync(note);
  84. }
  85. public async Task<bool> UpdateAsync(Entity.tede2.Attach.Attach note)
  86. {
  87. var categoryId = "";
  88. var categoryIds = StringUtils.StringCollectionToStringList(note.CategoryId);
  89. foreach (var item in categoryIds)
  90. {
  91. categoryId += item.Split(",")[item.Split(",").Length - 1] + ",";
  92. }
  93. categoryId = categoryId.Remove(categoryId.Length - 1, 1);
  94. note.FullCategoryId = note.CategoryId;
  95. note.CategoryId = categoryId;
  96. return await _repository.UpdateAsync(note);
  97. }
  98. /// <summary>
  99. /// 获取明栏
  100. /// </summary>
  101. /// <returns></returns>
  102. public async Task<IEnumerable<(int, string)>> GetStarLablesAsync()
  103. {
  104. var query = Q.NewQuery();
  105. query.Where(nameof(Entity.tede2.Attach.Attach.AttachType), GxPress.EnumConst.AttachTypeConst.StarColumn.GetHashCode());
  106. query.OrderByDesc(nameof(Entity.tede2.Attach.Attach.CreatedDate));
  107. query.Select(nameof(Entity.tede2.Attach.Attach.Id));
  108. query.Select(nameof(Entity.tede2.Attach.Attach.Name));
  109. return await _repository.GetAllAsync<(int, string)>(query);
  110. }
  111. }
  112. }