using Microsoft.AspNetCore.Mvc; using System; using System.Threading.Tasks; using Znyc.Recruitment.Admin.AspNetCore.Controllers; using Znyc.Recruitment.Admin.AspNetCore.Entitys; using Znyc.Recruitment.Admin.AspNetCore.Mvc; using Znyc.Recruitment.Admin.Commons.Encrypt; using Znyc.Recruitment.Admin.Commons.Entitys; using Znyc.Recruitment.Admin.Commons.Helpers; 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 APPController : AreaApiController { /// /// 构造函数 /// /// public APPController(IAPPService service) : base(service) { _service = service; } /// /// 新增前处理数据 /// /// protected override void OnBeforeInsert(APPEntity info) { info.Id = 0; info.AppSecret = MD5Util.GetMD5_32(GuidUtils.NewGuidFormatN()).ToUpper(); info.CreatedTime = DateTime.Now; info.CreatedUserId = CurrentUser.UserId; info.IsDeleted = false; } /// /// 在更新数据前对数据的修改操作 /// /// /// protected override void OnBeforeUpdate(APPEntity info) { info.ModifiedUserId = CurrentUser.UserId; info.ModifiedTime = DateTime.Now; } /// /// 在软删除数据前对数据的修改操作 /// /// /// protected override void OnBeforeSoftDelete(APPEntity info) { info.IsDeleted = true; } /// /// 异步更新数据 /// /// /// [HttpPost("Update")] [FunctionAuthorize("Edit")] public async Task UpdateAsync(APPInputDto tinfo) { CommonResult result = new CommonResult(); APPEntity info = _service.Get(tinfo.Id); info.AppId = tinfo.AppId; OnBeforeUpdate(info); bool bl = await _service.UpdateAsync(info, tinfo.Id).ConfigureAwait(true); if (bl) { result.ErrCode = ErrCode.successCode; result.ErrMsg = ErrCode.err0; } else { result.ErrMsg = ErrCode.err43002; result.ErrCode = "43002"; } return ToJsonContent(result); } /// /// 重置AppSecret /// /// [HttpGet("ResetAppSecret")] [FunctionAuthorize("ResetAppSecret")] public async Task ResetAppSecret(int id) { CommonResult result = new CommonResult(); APPEntity aPP = _service.Get(id); aPP.AppSecret = MD5Util.GetMD5_32(GuidUtils.NewGuidFormatN()).ToUpper(); bool bl = await _service.UpdateAsync(aPP, id); if (bl) { result.ErrCode = ErrCode.successCode; result.ErrMsg = aPP.AppSecret; result.Success = true; } else { result.ErrMsg = ErrCode.err43002; result.ErrCode = "43002"; } return ToJsonContent(result); } } }