using Microsoft.AspNetCore.Mvc;
using System;
using System.Threading.Tasks;
using Yitter.IdGenerator;
using Znyc.Recruitment.Admin.AspNetCore.Controllers;
using Znyc.Recruitment.Admin.AspNetCore.Entitys;
using Znyc.Recruitment.Admin.AspNetCore.Mvc;
using Znyc.Recruitment.Admin.Commons.Cache;
using Znyc.Recruitment.Admin.Commons.Entitys;
using Znyc.Recruitment.Admin.Commons.Enums;
using Znyc.Recruitment.Admin.Commons.Mapping;
using Znyc.Recruitment.Admin.Commons.Pages;
using Znyc.Recruitment.Admin.Security.Dtos;
using Znyc.Recruitment.Admin.Security.Entitys;
using Znyc.Recruitment.Admin.Security.IServices;
namespace Znyc.Recruitment.Admin.WebApi.Controllers
{
///
///
///
[ApiController]
[Route("api/Security/[controller]")]
public class
BannerController : AreaApiController
{
///
/// 构造函数
///
///
public BannerController(IBannerService _service) : base(_service)
{
}
///
/// 新增前处理数据
///
///
protected override void OnBeforeInsert(BannerEntity info)
{
info.Id = YitIdHelper.NextId();
info.CreatedTime = DateTime.Now;
info.CreatedUserId = CurrentUser.UserId;
info.IsDeleted = false;
}
///
/// 在更新数据前对数据的修改操作
///
///
///
protected override void OnBeforeUpdate(BannerEntity info)
{
info.ModifiedUserId = CurrentUser.UserId;
info.ModifiedTime = DateTime.Now;
}
///
/// 在软删除数据前对数据的修改操作
///
///
///
protected override void OnBeforeSoftDelete(BannerEntity info)
{
info.IsDeleted = true;
info.ModifiedUserId = CurrentUser.UserId;
info.ModifiedTime = DateTime.Now;
}
///
/// 分页查询
///
///
///
[HttpPost("FindWithPagerSearchAsync")]
[FunctionAuthorize("List")]
public async Task FindWithPagerSearchAsync(SearchBannerModel search)
{
CommonResult> result = new CommonResult>
{
ResData = await _service.FindWithPagerSearchAsync(search),
ErrCode = ErrCode.successCode
};
return ToJsonContent(result);
}
///
/// 新增banner/活动
///
///
///
[HttpPost("InsertAsync")]
[FunctionAuthorize("Add")]
public async Task InsertAsync(BannerInput input)
{
CommonResult result = new CommonResult();
CacheHelper cacheHelper = new CacheHelper();
BannerEntity banner = input.MapTo();
OnBeforeInsert(banner);
result = await _service.InsertAsync(banner);
if (result.Success)
{
//清除缓存
cacheHelper.Remove("banner:list");
result.ErrCode = ErrCode.successCode;
result.ErrMsg = ErrCode.err0;
}
else
{
result.ErrMsg = result.ErrMsg;
result.ErrCode = "43001";
}
return ToJsonContent(result);
}
///
/// 异步更新数据
///
///
///
[HttpPost("UpdateAsync")]
[FunctionAuthorize("Edit")]
public async Task UpdateAsync(BannerUpdateInput input)
{
CommonResult result = new CommonResult();
CacheHelper cacheHelper = new CacheHelper();
BannerEntity bannerEntity = input.MapTo();
OnBeforeUpdate(bannerEntity);
result = await _service.UpdateAsync(bannerEntity);
if (result.Success)
{
cacheHelper.Remove("banner:list");
result.ErrCode = ErrCode.successCode;
result.ErrMsg = ErrCode.err0;
}
else
{
result.ErrMsg = result.ErrMsg;
result.ErrCode = "43001";
}
return ToJsonContent(result);
}
///
/// 异步软删除数据
///
///
///
[HttpDelete("DeleteSoftAsync")]
[FunctionAuthorize("Delete")]
public async Task DeleteSoftAsync(long id)
{
CommonResult result = new CommonResult();
CacheHelper cacheHelper = new CacheHelper();
result.Success = await _service.DeleteSoftAsync(false, id, CurrentUser.UserId);
if (result.Success)
{
cacheHelper.Remove("banner:list");
result.ErrCode = ErrCode.successCode;
result.ErrMsg = ErrCode.err0;
}
else
{
result.ErrMsg = ErrCode.err43001;
result.ErrCode = "43001";
}
return ToJsonContent(result);
}
}
}