using System.Collections.Generic; using System.Threading.Tasks; using AutoMapper; using Datory; using GxPress.Common.AppOptions; using GxPress.Common.Tools; using GxPress.Repository.Interface.SystemLabel; using GxPress.Request.SystemLabel; using Microsoft.Extensions.Options; using System.Transactions; using Dapper; namespace GxPress.Repository.Implement.SystemLabel { public class SystemLableMediaRepository : ISystemLableMediaRepository { private readonly Repository _repository; private readonly IMapper _mapper; private readonly string _connectionString; private readonly string _databaseTypestr; private readonly Repository mediaLableRepository; public SystemLableMediaRepository(IOptionsMonitor dbOptionsAccessor, IMapper mapper) { _databaseTypestr = dbOptionsAccessor.CurrentValue.DatabaseType; _connectionString = dbOptionsAccessor.CurrentValue.ConnectionString; var databaseType = StringUtils.ToEnum(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql); var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString); _repository = new Repository(database); _mapper = mapper; mediaLableRepository = new Repository(database); } public IDatabase Database => _repository.Database; public string TableName => _repository.TableName; public List TableColumns => _repository.TableColumns; public async Task GetAsync(int id) { return await _repository.GetAsync(id); } /// /// 根据标签ID获取媒体ID /// /// /// public async Task> GetMediaIdsAsync(int lableId, int typeValue) { return await _repository.GetAllAsync(Q.Where(nameof(Entity.SystemLabel.SystemLableMedia.LableId), lableId).Where(nameof(Entity.SystemLabel.SystemLableMedia.TypeValue), typeValue).Select(nameof(Entity.SystemLabel.SystemLableMedia.MediaId))); } /// /// 根据分类获取媒体ID /// /// /// public async Task> GetMediaIdsByTypeValueAsync(int typeValue) { return await _repository.GetAllAsync(Q.Where(nameof(Entity.SystemLabel.SystemLableMedia.TypeValue), typeValue).Select(nameof(Entity.SystemLabel.SystemLableMedia.MediaId))); } public async Task DeleteAsync(List ids) { return await _repository.DeleteAsync(Q.WhereIn(nameof(Entity.SystemLabel.SystemLableMedia.Id), ids)) > 0; } /// /// 添加 /// /// /// public async Task InsertAsync(SystemLableMediaRequest request) { try { using (var transactions = new TransactionScope()) { await _repository.DeleteAsync(Q.Where(nameof(Entity.SystemLabel.SystemLableMedia.LableId), request.LableId)); var sql = $@"INSERT INTO `tede_system_lable_media`(`Guid`,`CreatedDate`,`LastModifiedDate`,`LableId`,`MediaId`,`TypeValue`) VALUES"; var createdDate = System.DateTime.Now.ToString("yyyy-MM-dd hh:mm:ss"); foreach (var item in request.MediaIds) { var guid = System.Guid.NewGuid().ToString(); sql += $@"('{guid}','{createdDate}','{createdDate}',{request.LableId},{item},{request.TypeValue}),"; } sql = sql.Remove(sql.Length - 1, 1); var databaseType = _databaseTypestr.ToEnum(DatabaseType.MySql); var database = new Database(databaseType, _connectionString); var connection = database.GetConnection(); await connection.ExecuteAsync(sql); transactions.Complete(); } } catch { return false; } return true; } } }