You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

202 lines
6.6 KiB

using Microsoft.AspNetCore.Mvc;
using System;
using System.Threading.Tasks;
using Yitter.IdGenerator;
using Znyc.Cloudcar.Admin.AspNetCore.Controllers;
using Znyc.Cloudcar.Admin.AspNetCore.Entitys;
using Znyc.Cloudcar.Admin.AspNetCore.Mvc;
using Znyc.Cloudcar.Admin.AspNetCore.ViewModel;
using Znyc.Cloudcar.Admin.Commons.Dtos;
using Znyc.Cloudcar.Admin.Commons.Entitys;
using Znyc.Cloudcar.Admin.Commons.Extensions;
using Znyc.Cloudcar.Admin.Commons.Mapping;
using Znyc.Cloudcar.Admin.Commons.Pages;
using Znyc.Cloudcar.Admin.Security.Dtos;
using Znyc.Cloudcar.Admin.Security.Entitys;
using Znyc.Cloudcar.Admin.Security.IServices;
namespace Znyc.Cloudcar.Admin.WebApi.Controllers
{
/// <summary>
/// 角色接口
/// </summary>
[ApiController]
[Route("api/Security/[controller]")]
public class RoleController : AreaApiController<RoleEntityEntity, RoleOutputDto, RoleInputDto, IRoleService, long>
{
private readonly IOrganizeService organizeService;
/// <summary>
/// 构造函数
/// </summary>
/// <param name="service"></param>
/// <param name="_organizeService"></param>
public RoleController(IRoleService service, IOrganizeService _organizeService) : base(service)
{
_service = service;
organizeService = _organizeService;
}
/// <summary>
/// 新增前处理数据
/// </summary>
/// <param name="info"></param>
protected override void OnBeforeInsert(RoleEntityEntity info)
{
info.Id = 0;
info.CreatedTime = DateTime.Now;
info.CreatedUserId = CurrentUser.UserId;
info.IsDeleted = false;
if (info.SortCode == null)
{
info.SortCode = 99;
}
}
/// <summary>
/// 在更新数据前对数据的修改操作
/// </summary>
/// <param name="info"></param>
/// <returns></returns>
protected override void OnBeforeUpdate(RoleEntityEntity info)
{
info.ModifiedUserId = CurrentUser.UserId;
info.ModifiedTime = DateTime.Now;
}
/// <summary>
/// 在软删除数据前对数据的修改操作
/// </summary>
/// <param name="info"></param>
/// <returns></returns>
protected override void OnBeforeSoftDelete(RoleEntityEntity info)
{
info.IsDeleted = true;
}
/// <summary>
/// 异步新增数据
/// </summary>
/// <param name="tinfo"></param>
/// <returns></returns>
[HttpPost("Insert")]
[FunctionAuthorize("Add")]
public async Task<IActionResult> InsertAsync(RoleInputDto tinfo)
{
CommonResult result = new CommonResult();
RoleEntityEntity info = tinfo.MapTo<RoleEntityEntity>();
OnBeforeInsert(info);
info.Id = YitIdHelper.NextId();
long bl = await _service.InsertReturnPrimaryKeyAsync(info).ConfigureAwait(false);
if (bl > 0)
{
result.ErrCode = ErrCode.successCode;
result.ErrMsg = ErrCode.err0;
}
else
{
result.ErrMsg = ErrCode.err43002;
result.ErrCode = "43002";
}
return ToJsonContent(result);
}
/// <summary>
/// 异步更新数据
/// </summary>
/// <param name="tinfo"></param>
/// <returns></returns>
[HttpPost("Update")]
[FunctionAuthorize("Edit")]
public async Task<IActionResult> UpdateAsync(RoleInputDto tinfo)
{
CommonResult result = new CommonResult();
RoleEntityEntity info = _service.Get(tinfo.Id);
info.OrganizeId = tinfo.OrganizeId;
info.FullName = tinfo.FullName;
info.EnCode = tinfo.EnCode;
info.SortCode = tinfo.SortCode;
info.Description = tinfo.Description;
info.Type = tinfo.Type;
OnBeforeUpdate(info);
bool bl = await _service.UpdateAsync(info, tinfo.Id).ConfigureAwait(false);
if (bl)
{
result.ErrCode = ErrCode.successCode;
result.ErrMsg = ErrCode.err0;
}
else
{
result.ErrMsg = ErrCode.err43002;
result.ErrCode = "43002";
}
return ToJsonContent(result);
}
/// <summary>
/// 根据条件查询数据库,并返回对象集合(用于分页数据显示)
/// </summary>
/// <param name="search"></param>
/// <returns></returns>
[HttpPost("FindWithPagerAsync")]
[FunctionAuthorize("List")]
public virtual async Task<CommonResult<PageResult<RoleOutputDto>>> FindWithPagerAsync(
SearchInputDto<RoleEntityEntity> search)
{
CommonResult<PageResult<RoleOutputDto>> result = new CommonResult<PageResult<RoleOutputDto>>
{
ResData = await _service.FindWithPagerAsync(search),
ErrCode = ErrCode.successCode
};
return result;
}
/// <summary>
/// 异步批量禁用数据
/// </summary>
/// <param name="info"></param>
[HttpPost("SetEnabledMarktBatchAsync")]
[FunctionAuthorize("")]
public async Task<IActionResult> SetEnabledMarktBatchAsync(UpdateEnableViewModel info)
{
CommonResult result = new CommonResult();
string where = string.Empty;
if (typeof(int) == typeof(string))
{
@where = "id in ('" + info.Ids.Join(",").Trim(',').Replace(",", "','") + "')";
}
else if (typeof(int) == typeof(int))
{
@where = "id in (" + info.Ids.Join(",") + ")";
}
if (!string.IsNullOrEmpty(where))
{
bool bl = false;
if (info.Flag == "1")
{
bl = true;
}
bool blResult = await _service.SetEnabledMarkByWhereAsync(bl, where, CurrentUser.UserId);
if (blResult)
{
result.ErrCode = ErrCode.successCode;
result.ErrMsg = ErrCode.err0;
}
else
{
result.ErrMsg = ErrCode.err43002;
result.ErrCode = "43002";
}
}
return ToJsonContent(result);
}
}
}