SystemLableMediaRepository.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. using System.Transactions;
  11. using Dapper;
  12. namespace GxPress.Repository.Implement.SystemLabel
  13. {
  14. public class SystemLableMediaRepository : ISystemLableMediaRepository
  15. {
  16. private readonly Repository<Entity.SystemLabel.SystemLableMedia> _repository;
  17. private readonly IMapper _mapper;
  18. private readonly string _connectionString;
  19. private readonly string _databaseTypestr;
  20. private readonly Repository<Entity.SystemLabel.SystemLableMedia> mediaLableRepository;
  21. public SystemLableMediaRepository(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.SystemLableMedia>(database);
  29. _mapper = mapper;
  30. mediaLableRepository = new Repository<Entity.SystemLabel.SystemLableMedia>(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.SystemLableMedia> GetAsync(int id)
  36. {
  37. return await _repository.GetAsync(id);
  38. }
  39. /// <summary>
  40. /// 根据标签ID获取媒体ID
  41. /// </summary>
  42. /// <param name="lableId"></param>
  43. /// <returns></returns>
  44. public async Task<IEnumerable<int>> GetMediaIdsAsync(int lableId)
  45. {
  46. return await _repository.GetAllAsync<int>(Q.Where(nameof(Entity.SystemLabel.SystemLableMedia.LableId), lableId).Select(nameof(Entity.SystemLabel.SystemLableMedia.MediaId)));
  47. }
  48. public async Task<bool> DeleteAsync(List<int> ids)
  49. {
  50. return await _repository.DeleteAsync(Q.WhereIn(nameof(Entity.SystemLabel.SystemLableMedia.Id), ids)) > 0;
  51. }
  52. /// <summary>
  53. /// 添加
  54. /// </summary>
  55. /// <param name="request"></param>
  56. /// <returns></returns>
  57. public async Task<bool> InsertAsync(SystemLableMediaRequest request)
  58. {
  59. try
  60. {
  61. using (var transactions = new TransactionScope())
  62. {
  63. var sql = $@"INSERT INTO `tede_system_lable_media`(`Guid`,`CreatedDate`,`LastModifiedDate`,`LableId`,`MediaId`) VALUES";
  64. var createdDate = System.DateTime.Now.ToString("yyyy-MM-dd hh:mm:ss");
  65. foreach (var item in request.MediaIds)
  66. {
  67. var guid = System.Guid.NewGuid().ToString();
  68. sql += $@"('{guid}','{createdDate}','{createdDate}',{request.LableId},{item}),";
  69. }
  70. sql = sql.Remove(sql.Length - 1, 1);
  71. var databaseType = _databaseTypestr.ToEnum<DatabaseType>(DatabaseType.MySql);
  72. var database = new Database(databaseType, _connectionString);
  73. var connection = database.GetConnection();
  74. await connection.ExecuteAsync(sql);
  75. transactions.Complete();
  76. }
  77. }
  78. catch
  79. {
  80. return false;
  81. }
  82. return true;
  83. }
  84. }
  85. }