mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
117 lines
2.9 KiB
C#
117 lines
2.9 KiB
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Infrastructure;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using OpenAuth.App;
|
|
using OpenAuth.App.Interface;
|
|
using OpenAuth.App.Request;
|
|
using OpenAuth.Repository.Domain;
|
|
|
|
namespace OpenAuth.Mvc.Controllers
|
|
{
|
|
public class FlowSchemesController : BaseController
|
|
{
|
|
private readonly FlowSchemeApp _app;
|
|
|
|
//
|
|
|
|
public ActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
public ActionResult Design()
|
|
{
|
|
return View();
|
|
}
|
|
public ActionResult Preview()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
//流程节点信息
|
|
public ActionResult NodeInfo()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
public string Get(string id)
|
|
{
|
|
try
|
|
{
|
|
var result = new Response<FlowScheme> {Result = _app.Get(id)};
|
|
return JsonHelper.Instance.Serialize(result);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Result.Code = 500;
|
|
Result.Message = ex.InnerException?.Message ?? ex.Message;
|
|
}
|
|
return JsonHelper.Instance.Serialize(Result);
|
|
}
|
|
|
|
//添加或修改
|
|
[HttpPost]
|
|
public string Add(FlowScheme obj)
|
|
{
|
|
try
|
|
{
|
|
_app.Add(obj);
|
|
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Result.Code = 500;
|
|
Result.Message = ex.InnerException?.Message ?? ex.Message;
|
|
}
|
|
return JsonHelper.Instance.Serialize(Result);
|
|
}
|
|
|
|
//添加或修改
|
|
[HttpPost]
|
|
public string Update(FlowScheme obj)
|
|
{
|
|
try
|
|
{
|
|
_app.Update(obj);
|
|
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Result.Code = 500;
|
|
Result.Message = ex.InnerException?.Message ?? ex.Message;
|
|
}
|
|
return JsonHelper.Instance.Serialize(Result);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 加载列表
|
|
/// </summary>
|
|
public async Task<string> Load([FromQuery]QueryFlowSchemeListReq request)
|
|
{
|
|
var objs = await _app.Load(request);
|
|
return JsonHelper.Instance.Serialize(objs);
|
|
}
|
|
|
|
[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);
|
|
}
|
|
|
|
public FlowSchemesController(IAuth authUtil, FlowSchemeApp app) : base(authUtil)
|
|
{
|
|
_app = app;
|
|
}
|
|
}
|
|
} |