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; namespace GxPress.Repository.Implement.SystemLabel { public class SystemLabelRepository : ISystemLabelRepository { private readonly Repository _repository; private readonly IMapper _mapper; private readonly string _connectionString; private readonly string _databaseTypestr; public SystemLabelRepository(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; } 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); } public async Task DeleteAsync(int id) { return await _repository.DeleteAsync(id); } public async Task InsertAsync(Entity.SystemLabel.SystemLabel note) { return await _repository.InsertAsync(note); } public async Task UpdateAsync(SystemLabelUpRequest request) { if (request.Id > 0) { var model = await GetAsync(request.Id); if (request.IsDisable > 0) model.IsDisable = request.IsDisable == 1; if (request.IsPage > 0) model.IsPage = request.IsPage == 1; if (request.IsSkip > 0) model.IsSkip = request.IsSkip == 1; if (!string.IsNullOrEmpty(request.LabelName)) model.LabelName = request.LabelName; if (!string.IsNullOrEmpty(request.LabelNameDescribe)) model.LabelNameDescribe = request.LabelNameDescribe; if (!string.IsNullOrEmpty(request.Remark)) model.Remark = request.Remark; if (request.ResourceType > 0) model.ResourceType = request.ResourceType; if (request.Sort > 0) model.Sort = request.Sort; if (!string.IsNullOrEmpty(request.StyleType)) model.StyleType = request.StyleType; if (request.IsShowLabelName > 0) model.IsShowLabelName = request.IsShowLabelName == 1; return await _repository.UpdateAsync(model); } return false; } public async Task UpdateAsync(SqlKata.Query query) { return await _repository.UpdateAsync(query) > 0; } public async Task> GetAllAsync() { return await _repository.GetAllAsync(Q.Where(nameof(Entity.SystemLabel.SystemLabel.IsDisable), false).OrderByDesc(nameof(Entity.Navigations.Navigation.Sort))); } public async Task> GetAllAsync(List ids) { return await _repository.GetAllAsync(Q.WhereIn(nameof(Entity.SystemLabel.SystemLabel.Id), ids).OrderByDesc(nameof(Entity.SystemLabel.SystemLabel.Sort))); } } }