123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- 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.Attach;
- using GxPress.Request.Attach;
- using Microsoft.Extensions.Options;
- namespace GxPress.Repository.Implement.Attach
- {
- public class AttachRepository : IAttachRepository
- {
- private readonly Repository<Entity.tede2.Attach.Attach> _repository;
- private readonly IMapper _mapper;
- private readonly string _connectionString;
- private readonly string _databaseTypestr;
- public AttachRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper)
- {
- _databaseTypestr = dbOptionsAccessor.CurrentValue.DatabaseType;
- _connectionString = dbOptionsAccessor.CurrentValue.ConnectionString;
- var databaseType =
- StringUtils.ToEnum<DatabaseType>(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql);
- var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString);
- _repository = new Repository<Entity.tede2.Attach.Attach>(database);
- _mapper = mapper;
- }
- public IDatabase Database => _repository.Database;
- public string TableName => _repository.TableName;
- public List<TableColumn> TableColumns => _repository.TableColumns;
- public async Task<bool> DeleteAsync(int id)
- {
- return await _repository.DeleteAsync(id);
- }
- public async Task<PagedList<Entity.tede2.Attach.Attach>> GetAllAsync(AttachRequest request)
- {
- var result = new PagedList<Entity.tede2.Attach.Attach>();
- var query = Q.NewQuery();
- query.Where(nameof(Entity.tede2.Attach.Attach.AttachType), request.TypeId);
- if (!string.IsNullOrEmpty(request.KeyWord))
- query.WhereLike(nameof(Entity.tede2.Attach.Attach.Name), $"%{request.KeyWord}%");
- if (request.CategoryId > 0)
- query.Where(nameof(Entity.tede2.Attach.Attach.CategoryId), request.CategoryId);
- if (request.AdminId > 0)
- query.Where(nameof(Entity.tede2.Attach.Attach.CategoryId), request.AdminId);
- if (request.WithdrawType > 0)
- query.Where(nameof(Entity.tede2.Attach.Attach.IsWithdraw), request.WithdrawType == 2);
- result.Items = await _repository.GetAllAsync(query.OrderByDesc(nameof(Entity.tede2.Attach.Attach.CreatedDate)).ForPage(request.Page, request.PerPage));
- result.Total = await _repository.CountAsync(query);
- return result;
- }
- public async Task<IEnumerable<Entity.tede2.Attach.Attach>> GetSearchAllAsync(AttachRequest request)
- {
- var query = Q.NewQuery();
- query.Where(nameof(Entity.tede2.Attach.Attach.AttachType), request.TypeId);
- if (!string.IsNullOrEmpty(request.KeyWord))
- query.WhereLike(nameof(Entity.tede2.Attach.Attach.Name), $"%{request.KeyWord}%");
- if (request.CategoryId > 0)
- query.Where(nameof(Entity.tede2.Attach.Attach.CategoryId), request.CategoryId);
- if (request.AdminId > 0)
- query.Where(nameof(Entity.tede2.Attach.Attach.CategoryId), request.AdminId);
- if (request.WithdrawType > 0)
- query.Where(nameof(Entity.tede2.Attach.Attach.IsWithdraw), request.WithdrawType == 2);
- var result = await _repository.GetAllAsync(query);
- return result;
- }
- public async Task<Entity.tede2.Attach.Attach> GetAsync(int id)
- {
- return await _repository.GetAsync(id);
- }
- public async Task<int> InsertAsync(Entity.tede2.Attach.Attach note)
- {
- var categoryId = "";
- var categoryIds = StringUtils.StringCollectionToStringList(note.CategoryId);
- foreach (var item in categoryIds)
- {
- categoryId += item.Split(",")[item.Split(",").Length - 1] + ",";
- }
- categoryId = categoryId.Remove(categoryId.Length - 1, 1);
- note.FullCategoryId = note.CategoryId;
- note.CategoryId = categoryId;
- return await _repository.InsertAsync(note);
- }
- public async Task<bool> UpdateAsync(Entity.tede2.Attach.Attach note)
- {
- var categoryId = "";
- var categoryIds = StringUtils.StringCollectionToStringList(note.CategoryId);
- foreach (var item in categoryIds)
- {
- categoryId += item.Split(",")[item.Split(",").Length - 1] + ",";
- }
- categoryId = categoryId.Remove(categoryId.Length - 1, 1);
- note.FullCategoryId = note.CategoryId;
- note.CategoryId = categoryId;
- return await _repository.UpdateAsync(note);
- }
- /// <summary>
- /// 获取明栏
- /// </summary>
- /// <returns></returns>
- public async Task<IEnumerable<(int, string)>> GetStarLablesAsync()
- {
- var query = Q.NewQuery();
- query.Where(nameof(Entity.tede2.Attach.Attach.AttachType), GxPress.EnumConst.AttachTypeConst.StarColumn.GetHashCode());
- query.OrderByDesc(nameof(Entity.tede2.Attach.Attach.CreatedDate));
- query.Select(nameof(Entity.tede2.Attach.Attach.Id));
- query.Select(nameof(Entity.tede2.Attach.Attach.Name));
- return await _repository.GetAllAsync<(int, string)>(query);
- }
- }
- }
|