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.
95 lines
3.9 KiB
C#
95 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("SyncDingTalkDeptJob", Description = "同步钉钉部门", GroupName = "default", Concurrent = false)]
|
|
[Daily(TriggerId = "SyncDingTalkDeptTrigger", Description = "同步钉钉部门")]
|
|
public class SyncDingTalkDeptJob : IJob
|
|
{
|
|
private readonly IServiceScopeFactory _scopeFactory;
|
|
private readonly IDingTalkApi _dingTalkApi;
|
|
private readonly ILogger _logger;
|
|
private readonly SqlSugarRepository<DingTalkDept> _dingTalkDeptRep;
|
|
|
|
public SyncDingTalkDeptJob(
|
|
IServiceScopeFactory scopeFactory,
|
|
IDingTalkApi dingTalkApi,
|
|
SqlSugarRepository<DingTalkDept> dingTalkDeptRep,
|
|
ILoggerFactory loggerFactory)
|
|
{
|
|
_scopeFactory = scopeFactory;
|
|
_dingTalkApi = dingTalkApi;
|
|
_dingTalkDeptRep = dingTalkDeptRep;
|
|
_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>();
|
|
// 获取部门列表
|
|
var deptIdsRes = await _dingTalkApi.GetDingTalkDept(tokenRes.AccessToken, new GetDingTalkDeptInput
|
|
{ dept_id = 1 });
|
|
if (deptIdsRes.ErrCode != 0)
|
|
{
|
|
_logger.LogError(deptIdsRes.ErrMsg);
|
|
throw Oops.Oh(deptIdsRes.ErrMsg);
|
|
}
|
|
dingTalkDeptList.AddRange(deptIdsRes.Result.Select(d => new DingTalkDept
|
|
{
|
|
dept_id = d.dept_id,
|
|
name = d.name,
|
|
parent_id = d.parent_id
|
|
}));
|
|
foreach (var item in deptIdsRes.Result)
|
|
{
|
|
dingTalkDeptList.AddRange(await GetDingTalkDeptList(tokenRes.AccessToken, item.dept_id));
|
|
}
|
|
await _dingTalkDeptRep.InsertOrUpdateAsync(dingTalkDeptList);
|
|
var originColor = Console.ForegroundColor;
|
|
Console.ForegroundColor = ConsoleColor.Blue;
|
|
Console.WriteLine("【" + DateTime.Now + "】同步钉钉部门");
|
|
Console.ForegroundColor = originColor;
|
|
}
|
|
|
|
private async Task<List<DingTalkDept>> GetDingTalkDeptList(string token, long dept_id)
|
|
{
|
|
List<DingTalkDept> listTemp = new List<DingTalkDept>();
|
|
var deptIdsRes = await _dingTalkApi.GetDingTalkDept(token, new GetDingTalkDeptInput
|
|
{ dept_id = dept_id });
|
|
if (deptIdsRes.ErrCode != 0)
|
|
{
|
|
return null;
|
|
}
|
|
listTemp.AddRange(deptIdsRes.Result.Select(x => new DingTalkDept
|
|
{
|
|
dept_id = x.dept_id,
|
|
name = x.name,
|
|
parent_id = x.parent_id
|
|
}));
|
|
foreach (var item in deptIdsRes.Result)
|
|
{
|
|
listTemp.AddRange(await GetDingTalkDeptList(token, item.dept_id));
|
|
}
|
|
return listTemp;
|
|
}
|
|
} |