2016-01-05 17:14:10 +08:00
|
|
|
|
// ***********************************************************************
|
2015-12-05 16:07:53 +08:00
|
|
|
|
// Assembly : OpenAuth.Mvc
|
|
|
|
|
// Author : Yubao Li
|
|
|
|
|
// Created : 12-02-2015
|
|
|
|
|
//
|
|
|
|
|
// Last Modified By : Yubao Li
|
|
|
|
|
// Last Modified On : 12-02-2015
|
|
|
|
|
// ***********************************************************************
|
|
|
|
|
// <copyright file="ModuleElementManagerController.cs" company="">
|
|
|
|
|
// Copyright (c) . All rights reserved.
|
|
|
|
|
// </copyright>
|
|
|
|
|
// <summary>模块元素管理,无需权限控制</summary>
|
|
|
|
|
// ***********************************************************************
|
|
|
|
|
|
|
|
|
|
using Infrastructure;
|
|
|
|
|
using OpenAuth.App;
|
|
|
|
|
using OpenAuth.Domain;
|
|
|
|
|
using OpenAuth.Mvc.Models;
|
2016-04-18 23:36:40 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Data.Entity.Validation;
|
|
|
|
|
using System.Web.Mvc;
|
2015-12-05 16:07:53 +08:00
|
|
|
|
|
|
|
|
|
namespace OpenAuth.Mvc.Controllers
|
|
|
|
|
{
|
2016-04-25 11:53:21 +08:00
|
|
|
|
public class ModuleElementManagerController : BaseController
|
2015-12-05 16:07:53 +08:00
|
|
|
|
{
|
|
|
|
|
private readonly BjuiResponse _bjuiResponse = new BjuiResponse();
|
|
|
|
|
private ModuleElementManagerApp _app;
|
|
|
|
|
|
|
|
|
|
public ModuleElementManagerController()
|
|
|
|
|
{
|
2015-12-16 22:52:23 +08:00
|
|
|
|
_app = AutofacExt.GetFromFac<ModuleElementManagerApp>();
|
2015-12-05 16:07:53 +08:00
|
|
|
|
}
|
2016-09-02 18:05:17 +08:00
|
|
|
|
public ActionResult Index(Guid id)
|
2015-12-05 16:07:53 +08:00
|
|
|
|
{
|
|
|
|
|
ViewBag.ModuleId = id;
|
2016-04-11 23:46:33 +08:00
|
|
|
|
return View();
|
|
|
|
|
}
|
2016-09-02 18:05:17 +08:00
|
|
|
|
public ActionResult Get(Guid moduleId)
|
2016-04-11 23:46:33 +08:00
|
|
|
|
{
|
|
|
|
|
return Json(_app.LoadByModuleId(moduleId));
|
2015-12-05 16:07:53 +08:00
|
|
|
|
}
|
|
|
|
|
[HttpPost]
|
|
|
|
|
public string AddOrEditButton(ModuleElement button)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2015-12-16 22:52:23 +08:00
|
|
|
|
_app.AddOrUpdate(button);
|
2015-12-05 16:07:53 +08:00
|
|
|
|
}
|
|
|
|
|
catch (DbEntityValidationException e)
|
|
|
|
|
{
|
|
|
|
|
_bjuiResponse.statusCode = "300";
|
|
|
|
|
_bjuiResponse.message = e.Message;
|
|
|
|
|
}
|
|
|
|
|
return JsonHelper.Instance.Serialize(_bjuiResponse);
|
|
|
|
|
}
|
2016-04-11 23:46:33 +08:00
|
|
|
|
public string Del(string moduleElements)
|
2015-12-05 16:07:53 +08:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2016-04-11 23:46:33 +08:00
|
|
|
|
var delObjs = JsonHelper.Instance.Deserialize<ModuleElement[]>(moduleElements);
|
|
|
|
|
_app.Delete(delObjs);
|
2015-12-05 16:07:53 +08:00
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
_bjuiResponse.statusCode = "300";
|
|
|
|
|
_bjuiResponse.message = e.Message;
|
|
|
|
|
}
|
|
|
|
|
return JsonHelper.Instance.Serialize(_bjuiResponse);
|
|
|
|
|
}
|
2015-12-06 23:40:34 +08:00
|
|
|
|
|
2016-01-07 15:55:53 +08:00
|
|
|
|
/// <summary>
|
2016-04-18 23:36:40 +08:00
|
|
|
|
/// 分配模块菜单(按钮)界面
|
|
|
|
|
/// <para>可以为用户/角色分配,同过key(UserElement/RoleElement)区分</para>
|
2016-01-07 15:55:53 +08:00
|
|
|
|
/// </summary>
|
2016-04-18 23:36:40 +08:00
|
|
|
|
/// <param name="firstId">The first identifier.</param>
|
|
|
|
|
/// <param name="key">The key.</param>
|
|
|
|
|
/// <returns>ActionResult.</returns>
|
2016-09-02 18:05:17 +08:00
|
|
|
|
public ActionResult AssignModuleElement(Guid firstId, string key)
|
2016-04-15 17:49:21 +08:00
|
|
|
|
{
|
2016-04-18 23:36:40 +08:00
|
|
|
|
ViewBag.FirstId = firstId;
|
|
|
|
|
ViewBag.ModuleType = key;
|
2015-12-07 15:22:01 +08:00
|
|
|
|
return View();
|
|
|
|
|
}
|
2016-09-02 18:05:17 +08:00
|
|
|
|
public string LoadWithAccess(Guid tId, Guid firstId, string key)
|
2015-12-07 15:22:01 +08:00
|
|
|
|
{
|
2016-04-18 23:36:40 +08:00
|
|
|
|
return JsonHelper.Instance.Serialize(_app.LoadWithAccess(key, firstId, tId));
|
2015-12-07 15:22:01 +08:00
|
|
|
|
}
|
2015-12-05 16:07:53 +08:00
|
|
|
|
}
|
2015-12-02 16:28:01 +08:00
|
|
|
|
}
|