231 lines
6.0 KiB
C#
231 lines
6.0 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
|
|||
|
|
using Infrastructure;
|
|||
|
|
|
|||
|
|
using Microsoft.AspNetCore.Mvc;
|
|||
|
|
|
|||
|
|
using OpenAuth.App;
|
|||
|
|
using OpenAuth.App.Interface;
|
|||
|
|
using OpenAuth.App.Response;
|
|||
|
|
using OpenAuth.Repository.Domain;
|
|||
|
|
|
|||
|
|
namespace OpenAuth.Mvc.Controllers
|
|||
|
|
{
|
|||
|
|
public class ModuleManagerController : BaseController
|
|||
|
|
{
|
|||
|
|
private ModuleManagerApp _app;
|
|||
|
|
public ModuleManagerController(IAuth authUtil, ModuleManagerApp app) : base(authUtil)
|
|||
|
|
{
|
|||
|
|
_app = app;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// GET: /ModuleManager/
|
|||
|
|
|
|||
|
|
public ActionResult Index()
|
|||
|
|
{
|
|||
|
|
return View();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
public ActionResult Assign()
|
|||
|
|
{
|
|||
|
|
return View();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 加载角色模块
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="firstId">The role identifier.</param>
|
|||
|
|
/// <returns>System.String.</returns>
|
|||
|
|
public string LoadForRole(string firstId)
|
|||
|
|
{
|
|||
|
|
var modules = _app.LoadForRole(firstId);
|
|||
|
|
return JsonHelper.Instance.Serialize(modules);
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 获取角色已经分配的字段
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="roleId">角色id</param>
|
|||
|
|
/// <param name="moduleCode">模块代码,如Category</param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
[HttpGet]
|
|||
|
|
public string LoadPropertiesForRole(string roleId, string moduleCode)
|
|||
|
|
{
|
|||
|
|
try
|
|||
|
|
{
|
|||
|
|
var props = _app.LoadPropertiesForRole(roleId, moduleCode);
|
|||
|
|
var data = new Response<IEnumerable<string>>
|
|||
|
|
{
|
|||
|
|
Result = props.ToList(),
|
|||
|
|
};
|
|||
|
|
return JsonHelper.Instance.Serialize(data);
|
|||
|
|
}
|
|||
|
|
catch(Exception ex)
|
|||
|
|
{
|
|||
|
|
return JsonHelper.Instance.Serialize(new Response
|
|||
|
|
{
|
|||
|
|
Message = ex.Message,
|
|||
|
|
Code = 500,
|
|||
|
|
});
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 根据某角色ID获取可访问某模块的菜单项
|
|||
|
|
/// </summary>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
public string LoadMenusForRole(long moduleId, long roleId)
|
|||
|
|
{
|
|||
|
|
var menus = _app.LoadMenusForRole(moduleId, roleId);
|
|||
|
|
return JsonHelper.Instance.Serialize(menus);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 获取发起页面的菜单权限
|
|||
|
|
/// </summary>
|
|||
|
|
/// <returns>System.String.</returns>
|
|||
|
|
public string LoadAuthorizedMenus(string modulecode)
|
|||
|
|
{
|
|||
|
|
var user = _authUtil.GetCurrentUser();
|
|||
|
|
var module = user.Modules.First(u => u.Code == modulecode);
|
|||
|
|
if(module != null)
|
|||
|
|
{
|
|||
|
|
return JsonHelper.Instance.Serialize(module.Elements);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
return "";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
#region 添加编辑模块
|
|||
|
|
|
|||
|
|
//添加模块
|
|||
|
|
[HttpPost]
|
|||
|
|
|
|||
|
|
public string Add(SysModule model)
|
|||
|
|
{
|
|||
|
|
try
|
|||
|
|
{
|
|||
|
|
_app.Add(model);
|
|||
|
|
}
|
|||
|
|
catch(Exception ex)
|
|||
|
|
{
|
|||
|
|
Result.Code = 500;
|
|||
|
|
Result.Message = ex.InnerException?.Message ?? ex.Message;
|
|||
|
|
}
|
|||
|
|
return JsonHelper.Instance.Serialize(Result);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
//修改模块
|
|||
|
|
[HttpPost]
|
|||
|
|
|
|||
|
|
public string Update(SysModule model)
|
|||
|
|
{
|
|||
|
|
try
|
|||
|
|
{
|
|||
|
|
_app.Update(model);
|
|||
|
|
}
|
|||
|
|
catch(Exception ex)
|
|||
|
|
{
|
|||
|
|
Result.Code = 500;
|
|||
|
|
Result.Message = ex.InnerException?.Message ?? ex.Message;
|
|||
|
|
}
|
|||
|
|
return JsonHelper.Instance.Serialize(Result);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
//[HttpPost]
|
|||
|
|
//public string Delete(string[] ids)
|
|||
|
|
//{
|
|||
|
|
// try
|
|||
|
|
// {
|
|||
|
|
// _app.Delete(ids);
|
|||
|
|
// }
|
|||
|
|
// catch(Exception e)
|
|||
|
|
// {
|
|||
|
|
// Result.Code = 500;
|
|||
|
|
// Result.Message = e.InnerException?.Message ?? e.Message;
|
|||
|
|
// }
|
|||
|
|
|
|||
|
|
// return JsonHelper.Instance.Serialize(Result);
|
|||
|
|
//}
|
|||
|
|
|
|||
|
|
#endregion 添加编辑模块
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 加载当前用户可访问模块的菜单
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="moduleId">The module identifier.</param>
|
|||
|
|
/// <returns>System.String.</returns>
|
|||
|
|
public string LoadMenus(long moduleId)
|
|||
|
|
{
|
|||
|
|
var user = _authUtil.GetCurrentUser();
|
|||
|
|
|
|||
|
|
var module = user.Modules.Single(u => u.Id == moduleId);
|
|||
|
|
|
|||
|
|
var data = new TableData
|
|||
|
|
{
|
|||
|
|
data = module.Elements,
|
|||
|
|
count = module.Elements.Count(),
|
|||
|
|
};
|
|||
|
|
return JsonHelper.Instance.Serialize(data);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
//添加菜单
|
|||
|
|
[HttpPost]
|
|||
|
|
|
|||
|
|
public string AddMenu(SysModuleElement model)
|
|||
|
|
{
|
|||
|
|
try
|
|||
|
|
{
|
|||
|
|
_app.AddMenu(model);
|
|||
|
|
}
|
|||
|
|
catch(Exception ex)
|
|||
|
|
{
|
|||
|
|
Result.Code = 500;
|
|||
|
|
Result.Message = ex.InnerException?.Message ?? ex.Message;
|
|||
|
|
}
|
|||
|
|
return JsonHelper.Instance.Serialize(Result);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
//添加菜单
|
|||
|
|
[HttpPost]
|
|||
|
|
|
|||
|
|
public string UpdateMenu(SysModuleElement model)
|
|||
|
|
{
|
|||
|
|
try
|
|||
|
|
{
|
|||
|
|
_app.UpdateMenu(model);
|
|||
|
|
}
|
|||
|
|
catch(Exception ex)
|
|||
|
|
{
|
|||
|
|
Result.Code = 500;
|
|||
|
|
Result.Message = ex.InnerException?.Message ?? ex.Message;
|
|||
|
|
}
|
|||
|
|
return JsonHelper.Instance.Serialize(Result);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 删除菜单
|
|||
|
|
/// </summary>
|
|||
|
|
//[HttpPost]
|
|||
|
|
//public string DelMenu(params string[] ids)
|
|||
|
|
//{
|
|||
|
|
// try
|
|||
|
|
// {
|
|||
|
|
// _app.DelMenu(ids);
|
|||
|
|
// }
|
|||
|
|
// catch(Exception e)
|
|||
|
|
// {
|
|||
|
|
// Result.Code = 500;
|
|||
|
|
// Result.Message = e.InnerException?.Message ?? e.Message;
|
|||
|
|
// }
|
|||
|
|
|
|||
|
|
// return JsonHelper.Instance.Serialize(Result);
|
|||
|
|
//}
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|