123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- using System.Threading.Tasks;
- using Microsoft.AspNetCore.Http;
- using ZhonTai.Common.Helpers;
- using ZhonTai.Admin.Core.Dto;
- using ZhonTai.Admin.Services.OprationLog.Dto;
- using ZhonTai.Admin.Domain.OprationLog;
- using ZhonTai.Admin.Domain;
- using ZhonTai.DynamicApi;
- using ZhonTai.DynamicApi.Attributes;
- using Microsoft.AspNetCore.Mvc;
- using ZhonTai.Admin.Core.Consts;
- namespace ZhonTai.Admin.Services.OprationLog;
- /// <summary>
- /// 操作日志服务
- /// </summary>
- [DynamicApi(Area = AdminConsts.AreaName)]
- public class OprationLogService : BaseService, IOprationLogService, IDynamicApi
- {
- private readonly IHttpContextAccessor _context;
- private readonly IOprationLogRepository _oprationLogRepository;
- public OprationLogService(
- IHttpContextAccessor context,
- IOprationLogRepository oprationLogRepository
- )
- {
- _context = context;
- _oprationLogRepository = oprationLogRepository;
- }
- /// <summary>
- /// 查询分页
- /// </summary>
- /// <param name="input"></param>
- /// <returns></returns>
- [HttpPost]
- public async Task<PageOutput<OprationLogListOutput>> GetPageAsync(PageInput<LogGetPageDto> input)
- {
- var userName = input.Filter?.CreatedUserName;
- var list = await _oprationLogRepository.Select
- .WhereDynamicFilter(input.DynamicFilter)
- .WhereIf(userName.NotNull(), a => a.CreatedUserName.Contains(userName))
- .Count(out var total)
- .OrderByDescending(true, c => c.Id)
- .Page(input.CurrentPage, input.PageSize)
- .ToListAsync<OprationLogListOutput>();
- var data = new PageOutput<OprationLogListOutput>()
- {
- List = list,
- Total = total
- };
- return data;
- }
- /// <summary>
- /// 新增
- /// </summary>
- /// <param name="input"></param>
- /// <returns></returns>
- public async Task<long> AddAsync(OprationLogAddInput input)
- {
- string ua = _context.HttpContext.Request.Headers["User-Agent"];
- if (ua.NotNull())
- {
- var client = UAParser.Parser.GetDefault().Parse(ua);
- var device = client.Device.Family;
- device = device.ToLower() == "other" ? "" : device;
- input.Browser = client.UA.Family;
- input.Os = client.OS.Family;
- input.Device = device;
- input.BrowserInfo = ua;
- }
- input.Name = User.Name;
- input.IP = IPHelper.GetIP(_context?.HttpContext?.Request);
- var entity = Mapper.Map<OprationLogEntity>(input);
- await _oprationLogRepository.InsertAsync(entity);
- return entity.Id;
- }
- }
|