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.Cache;
using Znyc.Recruitment.Admin.Commons.Encrypt;
using Znyc.Recruitment.Admin.Commons.Entitys;
using Znyc.Recruitment.Admin.Commons.Helpers;
using Znyc.Recruitment.Admin.Commons.Log;
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
SystemTypeController : AreaApiController
{
///
/// 构造函数
///
///
public SystemTypeController(ISystemTypeService service) : base(service)
{
_service = service;
}
///
/// 新增前处理数据
///
///
protected override void OnBeforeInsert(SystemTypeEntity info)
{
info.Id = 0;
info.CreatedTime = DateTime.Now;
info.CreatedUserId = CurrentUser.UserId;
info.IsDeleted = false;
}
///
/// 在更新数据前对数据的修改操作
///
///
///
protected override void OnBeforeUpdate(SystemTypeEntity info)
{
info.ModifiedUserId = CurrentUser.UserId;
info.ModifiedTime = DateTime.Now;
}
///
/// 在软删除数据前对数据的修改操作
///
///
///
protected override void OnBeforeSoftDelete(SystemTypeEntity info)
{
info.IsDeleted = true;
}
///
/// 异步更新数据
///
///
///
[HttpPost("Update")]
[FunctionAuthorize("Edit")]
public async Task UpdateAsync(SystemTypeInputDto tinfo)
{
CommonResult result = new CommonResult();
SystemTypeEntity info = _service.Get(tinfo.Id);
//info.FullName = tinfo.FullName;
//info.EnCode = tinfo.EnCode;
//info.Url = tinfo.Url;
//info.AllowEdit = tinfo.AllowEdit;
//info.AllowDelete = tinfo.AllowDelete;
//info.SortCode = tinfo.SortCode;
//info.Description = tinfo.Description;
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);
}
///
/// 系统切换时获取凭据
/// 适用于不同子系统分别独立部署站点场景
///
/// 子系统编码
///
[HttpGet("ZnycConnecSys")]
[FunctionAuthorize("")]
public IActionResult ZnycConnecSys(string systype)
{
CommonResult result = new CommonResult();
try
{
if (!string.IsNullOrEmpty(systype))
{
SystemTypeEntity systemType = _service.GetByCode(systype);
string openmf = MD5Util.GetMD5_32(DEncrypt.Encrypt(CurrentUser.UserId + systemType.Id.ToString(),
GuidUtils.NewGuidFormatN())).ToLower();
CacheHelper cacheHelper = new CacheHelper();
TimeSpan expiresSliding = DateTime.Now.AddSeconds(200) - DateTime.Now;
cacheHelper.Add("openmf" + openmf, CurrentUser.UserId, expiresSliding);
result.ErrCode = ErrCode.successCode;
result.ResData = systemType.Url + "?openmf=" + openmf;
}
else
{
result.ErrCode = ErrCode.failCode;
result.ErrMsg = "切换子系统参数错误";
}
}
catch (Exception ex)
{
Log4NetHelper.Error("切换子系统异常", ex);
result.ErrMsg = ErrCode.err40110;
result.ErrCode = "40110";
}
return ToJsonContent(result);
}
}
}