| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- // 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> 部门信息;
- public SyncDingTalkDeptJob(
- IServiceScopeFactory scopeFactory,
- IDingTalkApi dingTalkApi,
- SqlSugarRepository<DingTalkDept> _部门信息,
- ILoggerFactory loggerFactory)
- {
- _scopeFactory = scopeFactory;
- _dingTalkApi = dingTalkApi;
- 部门信息 = _部门信息;
- _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 获取部门列表(tokenRes.AccessToken, item.dept_id));
- }
- 部门信息.InsertOrUpdateAsync(dingTalkDeptList);
- var originColor = Console.ForegroundColor;
- Console.ForegroundColor = ConsoleColor.Blue;
- Console.WriteLine("【" + DateTime.Now + "】同步钉钉部门");
- Console.ForegroundColor = originColor;
- }
- private async Task<List<DingTalkDept>> 获取部门列表(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 获取部门列表(token, item.dept_id));
- }
- return listTemp;
- }
- }
|