You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

98 lines
3.9 KiB
C#

// Admin.NET 项目的版权、商标、专利和其他相关权利均受相应法律法规的保护。使用本项目应遵守相关法律法规和许可证的要求。
//
// 本项目主要遵循 MIT 许可证和 Apache 许可证(版本 2.0)进行分发和使用。许可证位于源代码树根目录中的 LICENSE-MIT 和 LICENSE-APACHE 文件。
//
// 不得利用本项目从事危害国家安全、扰乱社会秩序、侵犯他人合法权益等法律法规禁止的活动!任何基于本项目二次开发而产生的一切法律纠纷和责任,我们不承担任何责任!
using Admin.NET.Plugin.DingTalk;
using Furion.Schedule;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
namespace Admin.NET.Plugin.Job;
/// <summary>
/// 同步钉钉角色job,自动同步触发器请在web页面按需求设置
/// </summary>
[JobDetail(
"SyncWokerflowLogJob",
Description = "同步钉钉审批状态",
GroupName = "default",
Concurrent = false
)]
[Daily(TriggerId = "SyncWokerflowLogTrigger", Description = "同步钉钉审批状态")]
public class SyncWokerflowLogJob : IJob
{
private readonly IServiceScopeFactory _scopeFactory;
private readonly IDingTalkApi _dingTalkApi;
private readonly ILogger _logger;
private readonly SqlSugarRepository<DingTalkDept> _dingTalkDeptRep;
private readonly SqlSugarRepository<DingTalkWokerflowLog> _dingTalkWokerflowLogRep;
public SyncWokerflowLogJob(
IServiceScopeFactory scopeFactory,
IDingTalkApi dingTalkApi,
SqlSugarRepository<DingTalkDept> dingTalkDeptRep,
SqlSugarRepository<DingTalkWokerflowLog> dingTalkWokerflowLogRep,
ILoggerFactory loggerFactory
)
{
_scopeFactory = scopeFactory;
_dingTalkApi = dingTalkApi;
_dingTalkDeptRep = dingTalkDeptRep;
_dingTalkWokerflowLogRep = dingTalkWokerflowLogRep;
_logger = loggerFactory.CreateLogger(CommonConst.SysLogCategoryName);
}
public async Task ExecuteAsync(JobExecutingContext context, CancellationToken stoppingToken)
{
using var serviceScope = _scopeFactory.CreateScope();
var _dingTalkOptions = serviceScope.ServiceProvider.GetRequiredService<
IOptions<DingTalkOptions>
>();
// 获取Token
var tokenRes = await _dingTalkApi.GetDingTalkToken(
_dingTalkOptions.Value.ClientId,
_dingTalkOptions.Value.ClientSecret
);
if (tokenRes.ErrCode != 0)
throw Oops.Oh(tokenRes.ErrMsg);
var dingTalkDeptList = new List<DingTalkDept>();
// 获取未完成审批列表
List<DingTalkWokerflowLog> flow_list = await _dingTalkWokerflowLogRep.GetListAsync(t =>
t.Status == "RUNNING"
);
List<DingTalkWokerflowLog> update_list = new List<DingTalkWokerflowLog>();
if (flow_list?.Count > 0)
{
foreach (var item in flow_list)
{
var flow = await _dingTalkApi.GetProcessInstances(
tokenRes.AccessToken,
item.instanceId
);
if (flow.Result.Status != item.Status)
{
item.Status = flow.Result.Status;
item.UpdateTime = DateTime.Now;
item.WorkflowId = flow.Result.BusinessId;
item.taskId = flow
.Result.Tasks.FirstOrDefault(t => t.Status == "RUNNING")
?.TaskId;
update_list.Add(item);
}
}
if (update_list.Count > 0)
{
await _dingTalkWokerflowLogRep.UpdateRangeAsync(update_list);
}
var originColor = Console.ForegroundColor;
Console.ForegroundColor = ConsoleColor.Blue;
Console.WriteLine("【" + DateTime.Now + "】同步钉钉审批记录状态");
Console.ForegroundColor = originColor;
}
}
}