You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.6 KiB
75 lines
2.6 KiB
using Microsoft.AspNetCore.Hosting;
|
|
using System.Text;
|
|
using Tiobon.Core.Common.LogHelper;
|
|
using Tiobon.Core.Model.Models;
|
|
|
|
/// <summary>
|
|
/// 这里要注意下,命名空间和程序集是一样的,不然反射不到
|
|
/// </summary>
|
|
namespace Tiobon.Core.Tasks;
|
|
|
|
public class Job_OperateLog_Quartz : JobBase, IJob
|
|
{
|
|
private readonly IOperateLogServices _operateLogServices;
|
|
private readonly IWebHostEnvironment _environment;
|
|
|
|
public Job_OperateLog_Quartz(IOperateLogServices operateLogServices, IWebHostEnvironment environment, ITasksQzServices tasksQzServices, ITasksLogServices tasksLogServices)
|
|
: base(tasksQzServices, tasksLogServices)
|
|
{
|
|
_operateLogServices = operateLogServices;
|
|
_environment = environment;
|
|
}
|
|
|
|
public async Task Execute(IJobExecutionContext context)
|
|
{
|
|
var executeLog = await ExecuteJob(context, async () => await Run(context));
|
|
}
|
|
|
|
public async Task Run(IJobExecutionContext context)
|
|
{
|
|
|
|
// 可以直接获取 JobDetail 的值
|
|
var jobKey = context.JobDetail.Key;
|
|
var jobId = jobKey.Name;
|
|
// 也可以通过数据库配置,获取传递过来的参数
|
|
JobDataMap data = context.JobDetail.JobDataMap;
|
|
|
|
List<LogInfo> excLogs = new List<LogInfo>();
|
|
var exclogContent = LogLock.ReadLog(Path.Combine(_environment.ContentRootPath, "Log"), $"GlobalExceptionLogs_{DateTime.Now.ToString("yyyMMdd")}.log", Encoding.UTF8);
|
|
|
|
if (!string.IsNullOrEmpty(exclogContent))
|
|
{
|
|
excLogs = exclogContent.Split("--------------------------------")
|
|
.Where(d => !string.IsNullOrEmpty(d) && d != "\n" && d != "\r\n")
|
|
.Select(d => new LogInfo
|
|
{
|
|
Datetime = (d.Split("|")[0]).Split(',')[0].ObjToDate(),
|
|
Content = d.Split("|")[1]?.Replace("\r\n", "<br>"),
|
|
LogColor = "EXC",
|
|
Import = 9,
|
|
}).ToList();
|
|
}
|
|
|
|
var filterDatetime = DateTime.Now.AddHours(-1);
|
|
excLogs = excLogs.Where(d => d.Datetime >= filterDatetime).ToList();
|
|
|
|
var operateLogs = new List<OperateLog>() { };
|
|
excLogs.ForEach(m =>
|
|
{
|
|
operateLogs.Add(new OperateLog()
|
|
{
|
|
LogTime = m.Datetime,
|
|
Description = m.Content,
|
|
IPAddress = m.IP,
|
|
UserId = 0,
|
|
IsDeleted = false,
|
|
});
|
|
});
|
|
|
|
|
|
if (operateLogs.Count > 0)
|
|
{
|
|
var logsIds = await _operateLogServices.Add(operateLogs);
|
|
}
|
|
}
|
|
} |