using System.Collections.Generic;
using System.Threading.Tasks;
using AutoMapper;
using Datory;
using GxPress.Common.AppOptions;
using GxPress.Common.Page;
using GxPress.Common.Tools;
using GxPress.Repository.Interface.SpecialLabel;
using GxPress.Request.SpecialLabel;
using Microsoft.Extensions.Options;
namespace GxPress.Repository.Implement.SpecialLabel
{
///
/// 特殊标签管理
///
public class SpecialLabelRepository : ISpecialLabelRepository
{
private readonly Repository _repository;
private readonly IMapper _mapper;
public SpecialLabelRepository(IOptionsMonitor dbOptionsAccessor, IMapper mapper)
{
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 InsertAsync(Entity.SystemLabel.SpecialLabel model)
{
return await _repository.InsertAsync(model);
}
///
/// 修改
///
///
///
public async Task UpdateAsync(Entity.SystemLabel.SpecialLabel model)
{
var specialLabel = await GetAsync(model.Id);
if (!string.IsNullOrEmpty(model.ImageUrls))
specialLabel.ImageUrls = model.ImageUrls;
if (!string.IsNullOrEmpty(model.Remark))
specialLabel.Remark = model.Remark;
if (model.Sort > 0)
specialLabel.Sort = model.Sort;
if (!string.IsNullOrEmpty(model.Title))
specialLabel.Title = model.Title;
if (model.TypeValue > 0)
specialLabel.TypeValue = model.TypeValue;
if (model.MiddleLable > 0)
specialLabel.MiddleLable = model.MiddleLable;
return await _repository.UpdateAsync(specialLabel);
}
///
/// 获取
///
///
///
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> GetAllAsync(int typeValue,int pageSize=10)
{
var query = Q.NewQuery();
query.Where(nameof(Entity.SystemLabel.SpecialLabel.TypeValue), typeValue);
query.OrderByDesc(nameof(Entity.SystemLabel.SpecialLabel.Sort)).Take(pageSize);
return await _repository.GetAllAsync(query);
}
///
///特使标签数据
///
///
///
public async Task> GetAllAsync(SpecialLabelSearchRequest request)
{
var result = new PagedList();
var query = Q.NewQuery();
if (request.TypeValue > 0)
query.Where(nameof(Entity.SystemLabel.SpecialLabel.TypeValue), request.TypeValue);
if (!string.IsNullOrEmpty(request.KeyWord))
query.WhereLike(nameof(Entity.SystemLabel.SpecialLabel.Title), $"%{request.KeyWord}%");
result.Total = await _repository.CountAsync(query);
query.OrderByDesc(nameof(Entity.SystemLabel.SpecialLabel.Sort));
query.ForPage(request.Page, request.PerPage);
result.Items = await _repository.GetAllAsync(query);
return result;
}
}
}