|
@@ -1,12 +1,16 @@
|
|
|
using System.Threading.Tasks;
|
|
|
using GxPress.Auth;
|
|
|
using GxPress.Common.Page;
|
|
|
+using GxPress.EnumConst;
|
|
|
using GxPress.Repository.Interface.Media;
|
|
|
+using GxPress.Repository.Interface.TrackLog;
|
|
|
using GxPress.Request.Media;
|
|
|
using GxPress.Result.Media;
|
|
|
using GxPress.Service.Interface.Media;
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
+using Microsoft.AspNetCore.Http;
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
+using GxPress.Common.Tools;
|
|
|
|
|
|
// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
|
|
|
|
|
@@ -20,11 +24,15 @@ namespace GxPress.Api.AdminControllers
|
|
|
private readonly IMediaRepository mediaRepository;
|
|
|
private readonly ILoginContext _loginContext;
|
|
|
private readonly IMediaService mediaService;
|
|
|
- public AdminMediaController(IMediaRepository mediaRepository, ILoginContext _loginContext, IMediaService mediaService)
|
|
|
+ private readonly ITrackLogRepository trackLogRepository;
|
|
|
+ private readonly IHttpContextAccessor httpContextAccessor;
|
|
|
+ public AdminMediaController(IMediaRepository mediaRepository, ILoginContext _loginContext, IMediaService mediaService, ITrackLogRepository trackLogRepository, IHttpContextAccessor httpContextAccessor)
|
|
|
{
|
|
|
this.mediaRepository = mediaRepository;
|
|
|
this._loginContext = _loginContext;
|
|
|
this.mediaService = mediaService;
|
|
|
+ this.trackLogRepository = trackLogRepository;
|
|
|
+ this.httpContextAccessor = httpContextAccessor;
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 详情
|
|
@@ -44,7 +52,16 @@ namespace GxPress.Api.AdminControllers
|
|
|
[HttpDelete("{id}")]
|
|
|
public async Task<bool> DeleteAsync(int id)
|
|
|
{
|
|
|
- return await mediaRepository.DeleteAsync(id);
|
|
|
+ var result = await mediaRepository.GetAsync(id);
|
|
|
+ var success = await mediaRepository.DeleteAsync(id);
|
|
|
+ if (success)
|
|
|
+ {
|
|
|
+ var ip = httpContextAccessor.HttpContext.Connection.RemoteIpAddress.ToString();
|
|
|
+ var mediaTypeValue = ((ResourceTypeConst)result.MediaType).GetDescriptionOriginal();
|
|
|
+ var remark = $"删除{mediaTypeValue}{result.Title}";
|
|
|
+ await trackLogRepository.InsertAsync(_loginContext.Name, _loginContext.AccountId, ip, remark);
|
|
|
+ }
|
|
|
+ return success;
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 添加媒体
|
|
@@ -56,7 +73,15 @@ namespace GxPress.Api.AdminControllers
|
|
|
{
|
|
|
result.AdminId = _loginContext.AccountId;
|
|
|
result.Creator = _loginContext.Name;
|
|
|
- return await mediaService.InsertAsync(result);
|
|
|
+ var success = await mediaService.InsertAsync(result);
|
|
|
+ if (success)
|
|
|
+ {
|
|
|
+ var ip = httpContextAccessor.HttpContext.Connection.RemoteIpAddress.ToString();
|
|
|
+ var mediaTypeValue = ((ResourceTypeConst)result.MediaType).GetDescriptionOriginal();
|
|
|
+ var remark = $"添加{mediaTypeValue}{result.Title}";
|
|
|
+ await trackLogRepository.InsertAsync(_loginContext.Name, _loginContext.AccountId, ip, remark);
|
|
|
+ }
|
|
|
+ return success;
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 修改
|
|
@@ -66,7 +91,15 @@ namespace GxPress.Api.AdminControllers
|
|
|
[HttpPut]
|
|
|
public async Task<bool> UpdateAsync(MediaResult result)
|
|
|
{
|
|
|
- return await mediaRepository.UpdateAsync(result);
|
|
|
+ var success = await mediaRepository.UpdateAsync(result);
|
|
|
+ if (success)
|
|
|
+ {
|
|
|
+ var ip = httpContextAccessor.HttpContext.Connection.RemoteIpAddress.ToString();
|
|
|
+ var mediaTypeValue = ((ResourceTypeConst)result.MediaType).GetDescriptionOriginal();
|
|
|
+ var remark = $"修改{mediaTypeValue}{result.Title}";
|
|
|
+ await trackLogRepository.InsertAsync(_loginContext.Name, _loginContext.AccountId, ip, remark);
|
|
|
+ }
|
|
|
+ return success;
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 查询
|