OpenAuth.Net/OpenAuth.App/Flow/FlowRuntime.cs

507 lines
17 KiB
C#
Raw Normal View History

2024-12-24 11:01:45 +08:00
using Infrastructure;
2024-03-06 21:55:21 +08:00
using Newtonsoft.Json.Linq;
using OpenAuth.Repository.Domain;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Text;
using Castle.Core.Internal;
2024-12-24 11:01:45 +08:00
using Infrastructure.Const;
2024-03-06 21:55:21 +08:00
namespace OpenAuth.App.Flow
{
2024-12-24 11:01:45 +08:00
/// <summary>
/// 一个正在运行中的流程实例
/// <para>该类只能通过new实例化禁止通过容器获取</para>
/// </summary>
2024-03-06 21:55:21 +08:00
public class FlowRuntime
{
public FlowRuntime(FlowInstance instance)
{
2024-11-05 16:25:36 +08:00
dynamic schemeContentJson = instance.SchemeContent.ToJson(); //获取工作流模板内容的json对象;
2024-03-06 21:55:21 +08:00
InitLines(schemeContentJson);
InitNodes(schemeContentJson);
2024-12-13 09:48:07 +08:00
currentNodeId = instance.ActivityId == "" ? startNodeId : instance.ActivityId;
2024-03-06 21:55:21 +08:00
currentNodeType = GetNodeType(currentNodeId);
FrmData = instance.FrmData;
title = schemeContentJson.title;
2024-11-05 16:25:36 +08:00
initNum = schemeContentJson.initNum ?? 0;
2024-03-06 21:55:21 +08:00
previousId = instance.PreviousId;
flowInstanceId = instance.Id;
//会签开始节点和流程结束节点没有下一步
if (currentNodeType == 0 || currentNodeType == 4)
{
nextNodeId = "-1";
nextNodeType = -1;
}
else
{
2024-11-05 16:25:36 +08:00
nextNodeId = GetNextNodeId(); //下一个节点
2024-03-06 21:55:21 +08:00
nextNodeType = GetNodeType(nextNodeId);
}
}
#region
/// <summary>
/// 获取工作流节点的字典列表:key节点id
/// </summary>
/// <param name="schemeContentJson"></param>
/// <returns></returns>
private void InitNodes(dynamic schemeContentJson)
{
Nodes = new Dictionary<string, FlowNode>();
foreach (JObject item in schemeContentJson.nodes)
{
var node = item.ToObject<FlowNode>();
if (!Nodes.ContainsKey(node.id))
{
Nodes.Add(node.id, node);
}
2024-11-05 16:25:36 +08:00
2024-03-06 21:55:21 +08:00
if (node.type == FlowNode.START)
{
this.startNodeId = node.id;
}
}
}
private void InitLines(dynamic schemeContentJson)
{
Lines = new List<FlowLine>();
FromNodeLines = new Dictionary<string, List<FlowLine>>();
ToNodeLines = new Dictionary<string, List<FlowLine>>();
foreach (JObject item in schemeContentJson.lines)
{
var line = item.ToObject<FlowLine>();
Lines.Add(line);
if (!FromNodeLines.ContainsKey(line.from))
{
List<FlowLine> d = new List<FlowLine> { line };
FromNodeLines.Add(line.from, d);
}
else
{
FromNodeLines[line.from].Add(line);
}
if (!ToNodeLines.ContainsKey(line.to))
{
List<FlowLine> d = new List<FlowLine> { line };
ToNodeLines.Add(line.to, d);
}
else
{
ToNodeLines[line.to].Add(line);
}
}
}
/// <summary>
/// 获取下一个节点
/// </summary>
private string GetNextNodeId(string nodeId = null)
{
var lines = nodeId == null ? FromNodeLines[currentNodeId] : FromNodeLines[nodeId];
if (lines.Count == 0)
{
throw new Exception("无法寻找到下一个节点");
}
if (FrmData == "" || FrmData == "{}") return lines[0].to;
2024-11-05 16:25:36 +08:00
FrmData = FrmData.ToLower(); //统一转小写
var frmDataJson = FrmData.ToJObject(); //获取数据内容
2024-03-06 21:55:21 +08:00
foreach (var l in lines)
{
2024-12-13 09:48:07 +08:00
if (!l.Compares.IsNullOrEmpty() && l.Compare(frmDataJson))
2024-03-06 21:55:21 +08:00
{
return l.to;
}
}
return lines[0].to;
}
#endregion
#region
//获取下一个节点
public FlowNode GetNextNode(string nodeId = null)
{
return Nodes[GetNextNodeId(nodeId)];
}
/// <summary>
/// 获取实例接下来运行的状态
/// </summary>
/// <returns>-1无法运行,0会签开始,1会签结束,2一般节点,4流程运行结束</returns>
public int GetNextNodeType()
{
if (nextNodeId != "-1")
{
return GetNodeType(nextNodeId);
}
2024-11-05 16:25:36 +08:00
2024-03-06 21:55:21 +08:00
return -1;
}
/// <summary>
/// 获取节点类型 0会签开始,1会签结束,2一般节点,开始节点,4流程运行结束
/// </summary>
/// <param name="nodeId"></param>
/// <returns></returns>
public int GetNodeType(string nodeId)
{
switch (Nodes[nodeId].type)
{
//会签开始节点
case FlowNode.FORK:
return 0;
//会签结束节点
case FlowNode.JOIN:
return 1;
//结束节点
case FlowNode.END:
return 4;
//开始节点
case FlowNode.START:
return 3;
default:
return 2;
}
}
/// <summary>
/// 节点会签审核
/// </summary>
/// <param name="nodeId">会签时currentNodeId是会签开始节点。这个表示当前正在处理的节点</param>
/// <param name="tag"></param>
/// <returns>-1不通过,1等待,其它通过</returns>
2024-11-05 16:25:36 +08:00
public string NodeConfluence(HttpClient httpClient, string nodeId, Tag tag)
2024-03-06 21:55:21 +08:00
{
2024-11-05 16:25:36 +08:00
var forkNode = Nodes[currentNodeId]; //会签开始节点
2024-03-06 21:55:21 +08:00
FlowNode nextNode = GetNextNode(nodeId); //获取当前处理的下一个节点
2024-11-05 16:25:36 +08:00
int forkNumber = FromNodeLines[currentNodeId].Count; //直接与会签节点连接的点,即会签分支数目
string res = string.Empty; //记录会签的结果,默认正在会签
2024-03-06 21:55:21 +08:00
if (forkNode.setInfo.NodeConfluenceType == "one") //有一个步骤通过即可
{
2024-11-05 16:25:36 +08:00
if (tag.Taged == (int)TagState.Ok)
2024-03-06 21:55:21 +08:00
{
2024-11-05 16:25:36 +08:00
if (nextNode.type == FlowNode.JOIN) //下一个节点是会签结束,则该线路结束
2024-03-06 21:55:21 +08:00
{
res = GetNextNodeId(nextNode.id);
}
}
2024-11-05 16:25:36 +08:00
else if (tag.Taged == (int)TagState.No)
2024-03-06 21:55:21 +08:00
{
if (forkNode.setInfo.ConfluenceNo == null)
{
forkNode.setInfo.ConfluenceNo = 1;
}
else if (forkNode.setInfo.ConfluenceNo == (forkNumber - 1))
{
res = TagState.No.ToString("D");
}
else
{
2024-11-05 16:25:36 +08:00
bool isFirst = true; //是不是从会签开始到现在第一个
2024-03-06 21:55:21 +08:00
var preNode = GetPreNode(nodeId);
while (preNode.id != forkNode.id) //反向一直到会签开始节点
{
2024-11-05 16:25:36 +08:00
if (preNode.setInfo != null && preNode.setInfo.Taged == (int)TagState.No)
2024-03-06 21:55:21 +08:00
{
isFirst = false;
break;
}
}
if (isFirst)
{
forkNode.setInfo.ConfluenceNo++;
}
}
}
}
else //默认所有步骤通过
{
2024-11-05 16:25:36 +08:00
if (tag.Taged == (int)TagState.No) //只要有一个不同意,那么流程就结束
2024-03-06 21:55:21 +08:00
{
res = TagState.No.ToString("D");
}
2024-11-05 16:25:36 +08:00
else if (tag.Taged == (int)TagState.Ok)
2024-03-06 21:55:21 +08:00
{
2024-11-05 16:25:36 +08:00
if (nextNode.type == FlowNode.JOIN) //这种模式下只有坚持到【会签结束】节点之前才有意义,是否需要判定这条线所有的节点都通过,不然直接执行这个节点??
2024-03-06 21:55:21 +08:00
{
if (forkNode.setInfo.ConfluenceOk == null)
{
forkNode.setInfo.ConfluenceOk = 1;
}
2024-11-05 16:25:36 +08:00
else if (forkNode.setInfo.ConfluenceOk == (forkNumber - 1)) //会签成功
2024-03-06 21:55:21 +08:00
{
res = GetNextNodeId(nextNode.id);
}
else
{
forkNode.setInfo.ConfluenceOk++;
}
}
}
}
if (res == TagState.No.ToString("D"))
{
2024-11-05 16:25:36 +08:00
tag.Taged = (int)TagState.No;
2024-03-06 21:55:21 +08:00
MakeTagNode(nextNode.id, tag);
}
else if (!string.IsNullOrEmpty(res)) //会签结束,标记合流节点
{
2024-11-05 16:25:36 +08:00
tag.Taged = (int)TagState.Ok;
2024-03-06 21:55:21 +08:00
MakeTagNode(nextNode.id, tag);
nextNodeId = res;
nextNodeType = GetNodeType(res);
}
else
{
nextNodeId = nextNode.id;
nextNodeType = GetNodeType(nextNode.id);
}
2024-11-05 16:25:36 +08:00
if (!string.IsNullOrEmpty(res)) //会签结束节点配置了回调,则发起通知
{
NotifyThirdParty(httpClient, nextNode, tag);
}
2024-03-06 21:55:21 +08:00
return res;
}
2024-11-05 16:25:36 +08:00
2024-03-06 21:55:21 +08:00
//获取上一个节点
private FlowNode GetPreNode(string nodeId = null)
{
var lines = nodeId == null ? ToNodeLines[currentNodeId] : ToNodeLines[nodeId];
if (lines.Count == 0)
{
throw new Exception("无法找到上一个点");
}
2024-11-05 16:25:36 +08:00
2024-03-06 21:55:21 +08:00
return Nodes[lines[0].from];
}
/// <summary>
/// 驳回
/// </summary>
/// <param name="rejectType">驳回类型。null:使用节点配置的驳回类型/0:前一步/1:第一步/2指定节点使用NodeRejectStep</param>
/// <returns></returns>
public string RejectNode(string rejectType)
{
dynamic node = Nodes[currentNodeId];
if (node.setInfo != null && string.IsNullOrEmpty(rejectType))
{
rejectType = node.setInfo.NodeRejectType;
}
2024-11-05 16:25:36 +08:00
2024-03-06 21:55:21 +08:00
if (rejectType == "0")
{
return previousId;
}
2024-11-05 16:25:36 +08:00
2024-03-06 21:55:21 +08:00
if (rejectType == "1")
{
return GetNextNodeId(startNodeId);
}
2024-11-05 16:25:36 +08:00
2024-03-06 21:55:21 +08:00
return previousId;
}
/// <summary>
/// 撤销流程,清空所有节点
/// </summary>
public void ReCall()
{
foreach (var item in Nodes)
{
item.Value.setInfo = null;
}
}
///<summary>
/// 标记节点1通过-1不通过0驳回
/// </summary>
/// <param name="nodeId"></param>
public void MakeTagNode(string nodeId, Tag tag)
{
foreach (var item in Nodes)
{
if (item.Key == nodeId)
{
if (item.Value.setInfo == null)
{
2024-11-05 16:25:36 +08:00
item.Value.setInfo = new Setinfo();
2024-03-06 21:55:21 +08:00
}
2024-11-05 16:25:36 +08:00
2024-03-06 21:55:21 +08:00
item.Value.setInfo.Taged = tag.Taged;
item.Value.setInfo.UserId = tag.UserId;
item.Value.setInfo.UserName = tag.UserName;
item.Value.setInfo.Description = tag.Description;
item.Value.setInfo.TagedTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm");
break;
}
}
}
public object ToSchemeObj()
{
return new
{
title = this.title,
initNum = this.initNum,
lines = Lines,
nodes = Nodes.Select(u => u.Value),
areas = new string[0]
};
}
2024-12-24 11:01:45 +08:00
/// <summary>
/// 生成一个扭转记录
/// </summary>
/// <param name="user">当前执行的用户</param>
/// <returns></returns>
public FlowInstanceTransitionHistory GenTransitionHistory(User user)
{
return new FlowInstanceTransitionHistory
{
InstanceId = flowInstanceId,
CreateUserId = user.Id,
CreateUserName = user.Name,
FromNodeId = currentNodeId,
FromNodeName = currentNode.name,
FromNodeType = currentNodeType,
ToNodeId = nextNodeId,
ToNodeName = nextNode?.name,
ToNodeType = nextNodeType,
IsFinish = nextNodeType == 4 ? FlowInstanceStatus.Finished : FlowInstanceStatus.Running,
TransitionSate = 0
};
}
2024-03-06 21:55:21 +08:00
/// <summary>
/// 通知三方系统,节点执行情况
/// </summary>
2024-11-05 16:25:36 +08:00
public void NotifyThirdParty(HttpClient client, FlowNode node, Tag tag)
2024-03-06 21:55:21 +08:00
{
2024-11-05 16:25:36 +08:00
if (node.setInfo == null || string.IsNullOrEmpty(node.setInfo.ThirdPartyUrl))
2024-03-06 21:55:21 +08:00
{
return;
}
var postData = new
{
flowInstanceId,
2024-11-05 16:25:36 +08:00
nodeName = node.name,
nodeId = node.id,
2024-03-06 21:55:21 +08:00
userId = tag.UserId,
userName = tag.UserName,
2024-11-05 16:25:36 +08:00
result = tag.Taged, //1通过;2不通过3驳回
2024-03-06 21:55:21 +08:00
description = tag.Description,
execTime = tag.TagedTime,
2024-11-05 16:25:36 +08:00
isFinish = node.type == FlowNode.END
2024-03-06 21:55:21 +08:00
};
using (HttpContent httpContent = new StringContent(JsonHelper.Instance.Serialize(postData), Encoding.UTF8))
{
2024-11-05 16:25:36 +08:00
httpContent.Headers.ContentType = new System.Net.Http.Headers.MediaTypeHeaderValue("application/json");
client.PostAsync(node.setInfo.ThirdPartyUrl, httpContent);
2024-03-06 21:55:21 +08:00
}
}
#endregion
#region
2024-12-24 11:01:45 +08:00
private string title { get; set; }
2024-03-06 21:55:21 +08:00
2024-12-24 11:01:45 +08:00
private int initNum { get; set; }
2024-03-06 21:55:21 +08:00
/// <summary>
/// 运行实例的Id
/// </summary>
2024-12-24 11:01:45 +08:00
private string flowInstanceId { get; set; }
2024-03-06 21:55:21 +08:00
/// <summary>
/// 开始节点的ID
/// </summary>
public string startNodeId { get; set; }
/// <summary>
/// 当前节点的ID
/// </summary>
public string currentNodeId { get; set; }
/// <summary>
/// 当前节点类型 0会签开始,1会签结束,2一般节点,开始节点,4流程运行结束
/// </summary>
public int currentNodeType { get; set; }
/// <summary>
/// 当前节点的对象
/// </summary>
public FlowNode currentNode => Nodes[currentNodeId];
/// <summary>
/// 下一个节点
/// </summary>
public string nextNodeId { get; set; }
/// <summary>
/// 下一个节点类型 -1无法运行,0会签开始,1会签结束,2一般节点,4流程运行结束
/// </summary>
/// <value>The type of the next node.</value>
public int nextNodeType { get; set; }
/// <summary>
/// 下一个节点对象
/// </summary>
2024-11-05 16:25:36 +08:00
public FlowNode nextNode => nextNodeId != "-1" ? Nodes[nextNodeId] : null;
2024-03-06 21:55:21 +08:00
/// <summary>
/// 上一个节点
/// </summary>
2024-12-24 11:01:45 +08:00
private string previousId { get; set; }
2024-03-06 21:55:21 +08:00
/// <summary>
/// 实例节点集合
/// </summary>
public Dictionary<string, FlowNode> Nodes { get; set; }
/// <summary>
/// 流程实例中所有的线段
/// </summary>
2024-12-24 11:01:45 +08:00
private List<FlowLine> Lines { get; set; }
2024-03-06 21:55:21 +08:00
/// <summary>
/// 从节点发出的线段集合
/// </summary>
public Dictionary<string, List<FlowLine>> FromNodeLines { get; set; }
/// <summary>
/// 到达节点的线段集合
/// </summary>
2024-12-24 11:01:45 +08:00
private Dictionary<string, List<FlowLine>> ToNodeLines { get; set; }
2024-03-06 21:55:21 +08:00
/// <summary>
/// 表单数据
/// </summary>
public string FrmData { get; set; }
#endregion
}
}