Blame view

web/WebMvc/Areas/job/Controllers/SysJobController.cs 11.3 KB
1
2
using Hh.Mes.Common.log;
using Hh.Mes.Common.Request;
赖素文 authored
3
using Hh.Mes.POJO.Entity;
4
using Hh.Mes.POJO.Response;
赖素文 authored
5
using Hh.Mes.Service;
6
using Hh.Mes.Service.Configure;
赖素文 authored
7
8
9
10
using Hh.Mes.Service.SystemAuth;
using Hh.Mes.Service.WebService.Job;
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json.Linq;
11
using Org.BouncyCastle.Crypto;
赖素文 authored
12
using Quartz;
13
using Quartz.Spi;
赖素文 authored
14
using System;
15
using System.Collections.Generic;
赖素文 authored
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using WebMvc.Aop;


namespace WebMvc
{
    /// <summary>
	/// 定时任务调度表
	/// </summary>
    [Area("job")]
    public class SysJobController : BaseController
    {
        private readonly IScheduler _sched;
        private readonly JobService service;

        public SysJobController(IAuth authUtil, JobService service, IScheduler sched) : base(authUtil)
        {
            this.service = service;
33
            this.service.sysWebUser = authUtil.GetCurrentUser().User;
赖素文 authored
34
35
36
37
38
39
40
41
42
43
44
45
46
47
            _sched = sched;
        }

        #region 视图功能
        /// <summary>
        /// 默认视图Action
        /// </summary>
        /// <returns></returns>
        [Authenticate]
        [ServiceFilter(typeof(OperLogFilter))]
        public ActionResult Index()
        {
            return View();
        }
48
49
50
51
52

        public ActionResult cron()
        {
            return View();
        }
赖素文 authored
53
54
55
56
57
58
59
60
61
62
        #endregion

        #region 获取数据
        /// <summary>
        /// 加载及分页查询
        /// </summary>
        /// <param name="pageRequest">表单请求信息</param>
        /// <param name="entity">请求条件实例</param>
        /// <returns></returns>
        [HttpPost]
63
        public string Load(PageReq pageRequest, sys_job entity)
赖素文 authored
64
65
66
67
68
69
70
71
72
73
74
75
76
        {
            return Serialize(service.Load(pageRequest, entity));
        }
        #endregion

        #region 提交数据
        /// <summary>
        /// 新增数据
        /// </summary>
        /// <param name="entity">新增实例</param>
        /// <returns></returns>
        [HttpPost]
        [ServiceFilter(typeof(OperLogFilter))]
77
        public string Ins(sys_job entity)
赖素文 authored
78
79
80
        {
            try
            {
81
82
                if (string.IsNullOrEmpty(entity.methodParams)) throw new Exception("参数不能为空!");
                if (string.IsNullOrEmpty(entity.cronExpression)) throw new Exception("cron表达式不能为空!");
83
84
                var isExist=service.Context.Queryable<sys_job>().Any(x=>x.methodName == entity.methodName);
                if (isExist) throw new Exception($"只允许插入一条任务方法为【{entity.methodName}】相关的定时器任务!");
85
86
                if (entity.status == null) entity.status = "0";
                if (entity.status == "0")
赖素文 authored
87
                {
88
                    var cronExpression = new CronExpression(entity.cronExpression);
HuXiYu authored
89
                    entity.lastFireTime = DateTime.Now;
90
                    entity.nextFireTime = cronExpression.GetNextValidTimeAfter(DateTime.Now).Value.ToLocalTime().DateTime;
赖素文 authored
91
                }
92
                entity.jobGroup = entity.jobName;
赖素文 authored
93
94
95
96
                AddJob(entity);
                service.Ins(entity);
            }
            catch (Exception ex)
HuXiYu authored
97
            {
赖素文 authored
98
99
100
101
102
103
104
105
106
107
108
109
110
                Result.Status = false;
                Result.Message = ex.Message;
            }
            return Serialize(Result);
        }

        /// <summary>
        /// 修改数据
        /// </summary>
        /// <param name="entity">修改实例</param>
        /// <returns></returns>
        [HttpPost]
        [ServiceFilter(typeof(OperLogFilter))]
111
        public string Upd(sys_job entity)
赖素文 authored
112
113
114
        {
            try
            {
115
116
117
                if (string.IsNullOrEmpty(entity.methodParams)) throw new Exception("参数不能为空!");
                if (string.IsNullOrEmpty(entity.cronExpression)) throw new Exception("cron表达式不能为空!");
                if (entity.status == "0")
赖素文 authored
118
                {
119
120
121
                    var cronExpression = new CronExpression(entity.cronExpression);
                    entity.lastFireTime = DateTime.Now;
                    entity.nextFireTime = cronExpression.GetNextValidTimeAfter(DateTime.Now).Value.ToLocalTime().DateTime;
赖素文 authored
122
                }
123
                if (entity.status == "0")
赖素文 authored
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
                {
                    UpdateJob(entity);
                }
                service.Upd(entity);
            }
            catch (Exception ex)
            {
                Result.Status = false;
                Result.Message = ex.Message;
            }
            return Serialize(Result);
        }

        /// <summary>
        /// 暂停计划/启用计划
        /// </summary>
        /// <param name="entity">暂停计划/启用计划</param>
        /// <returns></returns>
        [HttpPost]
        [ServiceFilter(typeof(OperLogFilter))]
144
        public string PauseOrResume(sys_job entity)
赖素文 authored
145
146
147
        {
            try
            {
148
                if (entity.status == "0")
赖素文 authored
149
                {
150
                    entity.status = "1";
赖素文 authored
151
                    Upd(entity);
152
                    _sched.PauseJob(new JobKey(entity.jobName));
HuXiYu authored
153
                    // DeleteJob(entity);
赖素文 authored
154
155
156
                }
                else
                {
157
                    entity.status = "0";
赖素文 authored
158
                    Upd(entity);
159
                    _sched.ResumeJob(new JobKey(entity.jobName));
赖素文 authored
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
                    //  AddJob(entity);
                }
            }
            catch (Exception ex)
            {
                Result.Status = false;
                Result.Message = ex.Message;
            }
            return Serialize(Result);
        }

        [HttpPost]
        [ServiceFilter(typeof(OperLogFilter))]
        public string DelByIds(int[] ids)
        {
            try
            {
                foreach (var item in ids)
                {
179
                    var entity = service.Context.Queryable<sys_job>().First(u => u.id == item);
赖素文 authored
180
181
182
183
184
185
186
187
188
189
190
                    service.DelByIds(item);
                    DeleteJob(entity);
                }
            }
            catch (Exception ex)
            {
                Result.Status = false;
                Result.Message = ex.Message;
            }
            return Serialize(Result);
        }
HuXiYu authored
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223


        /// <summary>
        /// 初始化定时器
        /// </summary>
        /// <returns></returns>
        [HttpGet]
        [ServiceFilter(typeof(OperLogFilter))]
        public string ClearQrtz()
        {
            try
            {
                service.Context.Deleteable<qrtz_blob_triggers>();
                service.Context.Deleteable<qrtz_calendars>();
                service.Context.Deleteable<qrtz_cron_triggers>();
                service.Context.Deleteable<qrtz_fired_triggers>();

                service.Context.Deleteable<qrtz_job_details>();
                service.Context.Deleteable<qrtz_locks>();
                service.Context.Deleteable<qrtz_paused_trigger_grps>();
                service.Context.Deleteable<qrtz_scheduler_state>();

                service.Context.Deleteable<qrtz_simple_triggers>();
                service.Context.Deleteable<qrtz_simprop_triggers>();
                service.Context.Deleteable<qrtz_triggers>();
            }
            catch(Exception ex)
            {
                Result.Status=false;
                Result.Message = ex.Message;
            }
            return Serialize(Result);
        }
赖素文 authored
224
225
        #endregion
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
        #region  获取任务在未来周期内哪些时间会运行
        [HttpGet]
        public string GetTaskeFireTime(string cronExpression)
        {
            var response = new Response();
            return ExceptionsHelp.Instance.ExecuteT(() =>
            {
                if (string.IsNullOrEmpty(cronExpression)||cronExpression== "? * * * * ? ")
                {
                    response.ResponseError("请选择正确的Cron表达式");
                    return Serialize(response);
                }
                //运行次数
                var numTimes = 10;

                //时间表达式
                ITrigger trigger = TriggerBuilder.Create().WithCronSchedule(cronExpression).Build();
                var dates =  TriggerUtils.ComputeFireTimes(trigger as IOperableTrigger, null, numTimes);
                List<string> list = new List<string>();
                foreach (DateTimeOffset dtf in dates)
                {
                    list.Add(TimeZoneInfo.ConvertTimeFromUtc(dtf.DateTime, TimeZoneInfo.Local).ToString());
                }
                response.Result = list;
                return Serialize(response); 
            });

        }


        #endregion
赖素文 authored
258
259
260
        #region 自定义方法

        #region 增加计划
261
        private void AddJob(sys_job entity)
赖素文 authored
262
263
264
265
        {
            try
            {
                #region  创建任务
266
267
                var methodParams = entity.methodParams;
                var methodName = entity.methodName ?? "";
赖素文 authored
268
269
270
271
272
273
274
275
276
277
278
                var jobDataMap = new JobDataMap();
                var json = JObject.Parse(methodParams);
                if (json.Count > 0)
                {
                    foreach (var item in json)
                    {
                        jobDataMap.Add(item.Key, item.Value.ToString());
                    }
                }
                //https://bbs.csdn.net/topics/390236961 不在同一个解决方案下的不同项目之间操作,classname这个命名空间+类名怎么写
                var classType = Type.GetType($"{Program.quartzJobNameSpaceTypeName}.{methodName},{Program.quartzJobNameSpaceTypeName}");
HuXiYu authored
279
                IJobDetail job = JobBuilder.Create(classType).WithIdentity(entity.jobName).UsingJobData(jobDataMap).Build();
赖素文 authored
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
                #endregion

                #region 旧代码
                //if (methodName.ToLower().Equals("ClearLogJob".ToLower()))
                //{
                //    job = JobBuilder.Create<ClearLogJob>().WithIdentity(entity.JobName).UsingJobData(jobDataMap).Build();
                //}
                //else if (methodName.ToLower().Equals("GetCurrentStockJob".ToLower()))
                //{
                //    job = JobBuilder.Create<GetCurrentStockJob>().WithIdentity(entity.JobName).UsingJobData(jobDataMap).Build();
                //}
                #endregion

                if (job != null)
                {
                    //创建一个触发器
296
                    var trigger = TriggerBuilder.Create().WithIdentity(entity.jobName).WithCronSchedule(entity.cronExpression).Build();
赖素文 authored
297
298
299
300
301
302
                    //将触发器和任务器绑定到调度器中
                    _sched.ScheduleJob(job, trigger).Wait();
                }
            }
            catch (Exception e)
            {
HuXiYu authored
303
                throw new Exception("请确认定时器命名空间【Program 配置和quartzJobNameSpaceTypeName】是否一致" + e);
赖素文 authored
304
305
306
307
308
            }
        }
        #endregion

        #region 删除计划
309
        private void DeleteJob(sys_job entity)
赖素文 authored
310
311
312
        {
            try
            {
313
314
315
                _sched.PauseTrigger(new TriggerKey(entity.jobName)).Wait();
                _sched.UnscheduleJob(new TriggerKey(entity.jobName)).Wait();
                _sched.DeleteJob(new JobKey(entity.jobName)).Wait();
赖素文 authored
316
317
318
319
320
321
322
323
324
            }
            catch (Exception e)
            {
                throw e;
            }
        }
        #endregion

        #region 修改计划
325
        private void UpdateJob(sys_job entity)
赖素文 authored
326
327
328
329
330
331
332
333
334
        {
            DeleteJob(entity);
            AddJob(entity);
        }
        #endregion

        #endregion
    }
}