134 lines
4.8 KiB
C#
134 lines
4.8 KiB
C#
using Learun.Application.Base.AuthorizeModule;
|
||
using Learun.Util.Operat;
|
||
using System.Web.Mvc;
|
||
using System.Web.Script.Serialization;
|
||
|
||
namespace Learun.Application.Web.Areas.LR_AuthorizeModule.Controllers
|
||
{
|
||
/// <summary>
|
||
/// 版 本 PIT-ADMS V7.0.3 敏捷开发框架
|
||
/// Copyright (c) 2013-2018 Hexagon PPM
|
||
/// 创建人:研发部
|
||
/// 日 期:2017.04.17
|
||
/// 描 述:功能权限设置
|
||
/// </summary>
|
||
public class AuthorizeController : MvcControllerBase
|
||
{
|
||
private AuthorizeIBLL authorizeIBLL = new AuthorizeBLL();
|
||
|
||
#region 获取视图
|
||
/// <summary>
|
||
/// 功能权限设置
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
[HttpGet]
|
||
public ActionResult Form()
|
||
{
|
||
return View();
|
||
}
|
||
/// <summary>
|
||
/// 移动功能权限设置
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
[HttpGet]
|
||
public ActionResult AppForm()
|
||
{
|
||
return View();
|
||
}
|
||
/// <summary>
|
||
/// 功能权限设置
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
[HttpGet]
|
||
public ActionResult Index()
|
||
{
|
||
return View();
|
||
}
|
||
|
||
#endregion
|
||
|
||
#region 获取数据
|
||
/// <summary>
|
||
/// 网页 打开 功能授权的form后
|
||
/// (选项内容在 lr base module里,如果对某个角色有效,则还会在lr base authorize
|
||
/// </summary>
|
||
/// <param name="objectId">设置对象(如角色组的id)</param>
|
||
/// <returns></returns>
|
||
[HttpGet]
|
||
[AjaxOnly]
|
||
public ActionResult GetFormData(string objectId)
|
||
{
|
||
var modules = authorizeIBLL.GetItemIdList(objectId, 1);
|
||
var buttons = authorizeIBLL.GetItemIdList(objectId, 2);
|
||
var columns = authorizeIBLL.GetItemIdList(objectId, 3);
|
||
var forms = authorizeIBLL.GetItemIdList(objectId, 4);
|
||
|
||
var datajson = new
|
||
{
|
||
modules,
|
||
buttons,
|
||
columns,
|
||
forms
|
||
};
|
||
return Success(datajson);
|
||
}
|
||
/// <summary>
|
||
/// 获取设置信息(移动App)
|
||
/// </summary>
|
||
/// <param name="objectId">设置对象</param>
|
||
/// <returns></returns>
|
||
[HttpGet]
|
||
[AjaxOnly]
|
||
public ActionResult GetAppFormData(string objectId)
|
||
{
|
||
var data = authorizeIBLL.GetItemIdList(objectId, 5);
|
||
return Success(data);
|
||
}
|
||
#endregion
|
||
|
||
#region 提交数据
|
||
/// <summary>
|
||
/// 保存表单数据(公司级 - 项目角色 - 功能授权)
|
||
/// 本质上是删掉roleid在表lr base authorize里的记录,再重新插入一遍勾选的内容
|
||
/// </summary>
|
||
/// <param name="objectId">对象Id</param>
|
||
/// <param name="objectType">权限分类-1岗位2用户</param>
|
||
/// <param name="moduleIds">功能Id</param>
|
||
/// <param name="moduleButtonIds">按钮Id</param>
|
||
/// <param name="moduleColumnIds">视图Id</param>
|
||
/// <param name="strModuleFormId">表单Id</param>
|
||
/// <returns></returns>
|
||
[HttpPost]
|
||
[ValidateAntiForgeryToken]
|
||
[AjaxOnly]
|
||
public ActionResult SaveForm(string objectId,int objectType, string strModuleId, string strModuleButtonId, string strModuleColumnId,string strModuleFormId)
|
||
{
|
||
string[] moduleIds = strModuleId.Split(',');
|
||
string[] moduleButtonIds = strModuleButtonId.Split(',');
|
||
string[] moduleColumnIds = strModuleColumnId.Split(',');
|
||
string[] moduleFormIds = strModuleFormId.Split(',');
|
||
|
||
authorizeIBLL.SaveAuthorize(objectType, objectId, moduleIds, moduleButtonIds, moduleColumnIds, moduleFormIds);
|
||
object entity = new { objectType = objectType, objectId = objectId, moduleIds = moduleIds, moduleButtonIds = moduleButtonIds, moduleColumnIds = moduleColumnIds, moduleFormIds = moduleFormIds };
|
||
return Success("保存成功!", "功能授权", OperationType.Update, objectId, new JavaScriptSerializer().Serialize(entity));
|
||
}
|
||
/// <summary>
|
||
/// 保存表单数据
|
||
/// </summary>
|
||
/// <param name="objectId">对象Id</param>
|
||
/// <param name="objectType">权限分类-1角色2用户</param>
|
||
/// <param name="strFormId">移动功能Id</param>
|
||
/// <returns></returns>
|
||
[HttpPost]
|
||
[ValidateAntiForgeryToken]
|
||
[AjaxOnly]
|
||
public ActionResult SaveAppForm(string objectId, int objectType, string strFormId)
|
||
{
|
||
string[] formIds = strFormId.Split(',');
|
||
|
||
authorizeIBLL.SaveAppAuthorize(objectType, objectId, formIds);
|
||
return Success("保存成功!");
|
||
}
|
||
#endregion
|
||
}
|
||
} |