2016-01-05 17:14:10 +08:00
|
|
|
|
using Infrastructure;
|
2015-10-26 21:58:12 +08:00
|
|
|
|
using OpenAuth.App;
|
2015-10-29 23:51:10 +08:00
|
|
|
|
using OpenAuth.Domain;
|
2015-11-05 23:27:08 +08:00
|
|
|
|
using OpenAuth.Mvc.Models;
|
2015-11-06 00:27:08 +08:00
|
|
|
|
using System;
|
2016-01-07 15:55:53 +08:00
|
|
|
|
using System.Collections.Generic;
|
2016-01-07 11:47:43 +08:00
|
|
|
|
using System.Linq;
|
2015-11-06 00:27:08 +08:00
|
|
|
|
using System.Web.Mvc;
|
2016-01-07 11:47:43 +08:00
|
|
|
|
using OpenAuth.App.ViewModel;
|
2015-10-26 21:58:12 +08:00
|
|
|
|
|
|
|
|
|
namespace OpenAuth.Mvc.Controllers
|
|
|
|
|
{
|
2015-11-06 00:27:08 +08:00
|
|
|
|
public class OrgManagerController : BaseController
|
|
|
|
|
{
|
|
|
|
|
private OrgManagerApp _orgApp;
|
2015-10-26 21:58:12 +08:00
|
|
|
|
|
2015-11-06 00:27:08 +08:00
|
|
|
|
public OrgManagerController()
|
|
|
|
|
{
|
2015-12-16 22:52:23 +08:00
|
|
|
|
_orgApp = AutofacExt.GetFromFac<OrgManagerApp>();
|
2015-11-06 00:27:08 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// GET: /OrgManager/
|
2016-05-26 20:10:22 +08:00
|
|
|
|
[Authenticate]
|
2015-11-06 00:27:08 +08:00
|
|
|
|
public ActionResult Index()
|
|
|
|
|
{
|
|
|
|
|
return View();
|
|
|
|
|
}
|
2016-04-20 16:33:27 +08:00
|
|
|
|
public ActionResult Assign(int firstId, string key)
|
2015-11-06 00:27:08 +08:00
|
|
|
|
{
|
2016-04-20 16:33:27 +08:00
|
|
|
|
ViewBag.FirstId = firstId;
|
|
|
|
|
ViewBag.ModuleType = key;
|
2015-11-06 00:27:08 +08:00
|
|
|
|
return View();
|
|
|
|
|
}
|
2015-11-05 23:27:08 +08:00
|
|
|
|
|
2016-01-07 15:55:53 +08:00
|
|
|
|
public string LoadOrg()
|
2016-01-07 11:47:43 +08:00
|
|
|
|
{
|
2016-05-26 20:10:22 +08:00
|
|
|
|
return JsonHelper.Instance.Serialize(AutofacExt.GetFromFac<LoginApp>().GetLoginUser().AccessedOrgs);
|
2016-01-07 11:47:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-04-20 16:33:27 +08:00
|
|
|
|
public string LoadForUser(int firstId)
|
2016-01-07 11:47:43 +08:00
|
|
|
|
{
|
2016-04-20 16:33:27 +08:00
|
|
|
|
var orgs = _orgApp.LoadForUser(firstId);
|
2016-01-07 11:47:43 +08:00
|
|
|
|
return JsonHelper.Instance.Serialize(orgs);
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-20 16:33:27 +08:00
|
|
|
|
public string LoadForRole(int firstId)
|
2016-01-07 11:47:43 +08:00
|
|
|
|
{
|
2016-04-20 16:33:27 +08:00
|
|
|
|
var orgs = _orgApp.LoadForRole(firstId);
|
2016-01-07 11:47:43 +08:00
|
|
|
|
return JsonHelper.Instance.Serialize(orgs);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2015-11-05 23:27:08 +08:00
|
|
|
|
//添加组织提交
|
|
|
|
|
[HttpPost]
|
2015-11-06 00:27:08 +08:00
|
|
|
|
public string AddOrg(Org org)
|
2015-11-05 23:27:08 +08:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2015-11-24 15:49:00 +08:00
|
|
|
|
_orgApp.AddOrUpdate(org);
|
2015-11-06 00:27:08 +08:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
2015-11-08 23:19:04 +08:00
|
|
|
|
BjuiResponse.statusCode = "300";
|
|
|
|
|
BjuiResponse.message = ex.Message;
|
2015-11-06 00:27:08 +08:00
|
|
|
|
}
|
2015-11-08 23:19:04 +08:00
|
|
|
|
return JsonHelper.Instance.Serialize(BjuiResponse);
|
2015-11-06 00:27:08 +08:00
|
|
|
|
}
|
2016-01-07 15:55:53 +08:00
|
|
|
|
|
2015-11-06 00:27:08 +08:00
|
|
|
|
public string LoadChildren(int id)
|
|
|
|
|
{
|
|
|
|
|
return JsonHelper.Instance.Serialize(_orgApp.LoadAllChildren(id));
|
|
|
|
|
}
|
2015-10-29 23:51:10 +08:00
|
|
|
|
|
2015-11-05 23:27:08 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 删除指定ID的组织
|
|
|
|
|
/// <para>Id为逗号分开的字符串</para>
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>System.String.</returns>
|
2015-12-06 00:05:32 +08:00
|
|
|
|
public string DelOrg(int Id)
|
2015-10-30 23:14:31 +08:00
|
|
|
|
{
|
2015-11-03 00:22:54 +08:00
|
|
|
|
try
|
2015-10-30 23:14:31 +08:00
|
|
|
|
{
|
2015-12-06 00:05:32 +08:00
|
|
|
|
_orgApp.DelOrg(Id);
|
2015-10-30 23:14:31 +08:00
|
|
|
|
}
|
2015-11-03 00:22:54 +08:00
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
2015-11-08 23:19:04 +08:00
|
|
|
|
BjuiResponse.statusCode = "300";
|
|
|
|
|
BjuiResponse.message = e.Message;
|
2015-11-03 00:22:54 +08:00
|
|
|
|
}
|
|
|
|
|
|
2015-11-08 23:19:04 +08:00
|
|
|
|
return JsonHelper.Instance.Serialize(BjuiResponse);
|
2015-10-30 23:14:31 +08:00
|
|
|
|
}
|
2015-11-06 00:27:08 +08:00
|
|
|
|
}
|
2015-10-26 21:58:12 +08:00
|
|
|
|
}
|