File size: 45,916 Bytes
020c337 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 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 224 225 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 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 | #coding: utf-8
#-------------------------------------------------------------------
# 宝塔Linux面板
#-------------------------------------------------------------------
# Copyright (c) 2015-2099 宝塔软件(http://bt.cn) All rights reserved.
#-------------------------------------------------------------------
# Author: hwliang <hwl@bt.cn>
#-------------------------------------------------------------------
#------------------------------
# 任务编排
#------------------------------
import db
import public
import time
import json
import os
import sys
from crontabModel.base import crontabBase
class main(crontabBase):
_log_type = '任务编排-任务'
_operator = ['=','!=','>','>=','<','<=','in','not in']
_exec_script_file = 'script/crontab_task_exec.py'
_exec_log_file = 'logs/crontab_task_exec.log'
custom_order_path = '/www/server/panel/data/custom_order.json'
def __init__(self) -> None:
super().__init__()
self._sql = db.Sql().dbfile(self.dbfile)
self.custom_order = self._load_custom_order()
def _load_custom_order(self):
if os.path.exists(self.custom_order_path):
with open(self.custom_order_path, 'r') as f:
return json.load(f)
return []
def save_custom_order(self, args):
'''
@name 保存自定义排序
@param args<dict_obj>{
order_list<str> 排序后的任务ID列表 (字符串形式的 JSON 数组)
}
@return dict
'''
order_list_str = args.get('order_list')
if not order_list_str:
return public.returnMsg(False, '排序列表不能为空')
try:
# 将字符串转换为列表
order_list = json.loads(order_list_str)
if not isinstance(order_list, list):
return public.returnMsg(False, '排序列表格式不正确')
# 保存排序结果到文件
public.writeFile(self.custom_order_path, json.dumps(order_list))
self.custom_order = order_list
return public.returnMsg(True, '排序保存成功')
except Exception as e:
return public.returnMsg(False, '排序保存失败: ' + str(e))
def get_trigger_list_all(self, args=None):
# 获取所有任务数据
data = self._sql.table('trigger').order('trigger_id desc').select()
if self.custom_order:
# 创建任务字典
id_to_task = {str(task['trigger_id']): task for task in data}
# 根据自定义顺序重新排序任务
sorted_data = [id_to_task[str(task_id)] for task_id in self.custom_order if str(task_id) in id_to_task]
# 获取未包含在自定义排序中的任务
remaining_tasks = [task for task in data if int(task['trigger_id']) not in self.custom_order]
# 将剩余任务按照原排序顺序追加到排序后的列表中
sorted_data.extend(remaining_tasks)
# 返回重新排序后的任务列表
return sorted_data
# 如果没有自定义排序,返回原排序的任务列表
return data
def get_trigger_list(self,args = None):
'''
@name 获取任务列表
@author hwliang
@param args<dict_obj>{
p<int> 分页
rows<int> 每页数量
search<string> 搜索关键字
}
@return list
'''
p = 1
if args and 'p' in args: p = int(args.p)
rows = 10
if args and 'rows' in args: rows = int(args.rows)
search = ''
if args and 'search' in args: search = args.search
tojs = ''
if args and 'tojs' in args: tojs = args.tojs
where = ''
params = []
if search:
where = "name like ? or ps like ?"
params.append('%' + search + '%')
params.append('%' + search + '%')
if 'script_id' in args:
where = "script_id = ?"
params.append(args.script_id)
if 'type_id' in args and args.type_id:
where = "type_id = ?"
params.append(args.type_id)
if 'status' in args:
where = "status = ?"
params.append(args.status)
count = self._sql.table('trigger').where(where,tuple(params)).count()
data = public.get_page(count,p,rows,tojs)
data['data'] = self._sql.table('trigger').where(where,tuple(params)).order('trigger_id desc').limit(data['row'],data['shift']).select()
# 按自定义排序顺序重新排序任务列表
if self.custom_order:
id_to_task = {str(task['trigger_id']): task for task in data['data']}
# 确保每个任务ID唯一
sorted_data = []
seen = set()
for task_id in self.custom_order:
str_task_id = str(task_id)
if str_task_id in id_to_task and str_task_id not in seen:
sorted_data.append(id_to_task[str_task_id])
seen.add(str_task_id)
remaining_tasks = [task for task_id, task in id_to_task.items() if str(task_id) not in seen]
data['data'] = sorted_data + remaining_tasks
for i in data['data']:
i['operator_where'] = self._sql.table('operator_where').where('trigger_id=?',i['trigger_id']).select()
i['return_type'] = 'all'
i['script_info'] = {}
if not i['args']: i['args'] = ''
if i['script_id']:
i['script_info'] = self._sql.table('scripts').where('script_id=?',(i['script_id'],)).find()
if i['script_info']:
i['return_type'] = i['script_info']['return_type']
else:
i['script_info'] = {}
if not i['return_type']: i['return_type'] = 'all'
# 取上次执行时间
i['last_exec_time'] = self._sql.table('tasks').where('trigger_id=?',(i['trigger_id'],)).order('log_id desc').getField('start_time')
if not i['last_exec_time']:
i['last_exec_time']=""
if 'order_param' in args and args.order_param:
order_param=getattr(args,'order_param',None)
data['data']=self._sort_triggers(data['data'],order_param)
return data
def _sort_triggers(self, task, order_param):
sort_key, order = order_param.split(' ')
reverse_order = order == "desc"
def safe_key(item):
value = item[sort_key]
# 将所有值转换为字符串进行比较
return str(value) if not isinstance(value, str) else value
return sorted(task, key=safe_key, reverse=reverse_order)
def sync_crontab(self,trigger_id):
'''
@name 同步到计划任务
@param trigger_id<int> 任务ID
@return dict
'''
trigger_info = self._sql.table('trigger').where('trigger_id=?',(trigger_id,)).find()
if not trigger_info:
return public.returnMsg(False,'任务不存在')
import crontab
crontab_obj = crontab.crontab()
# 检查是否使用了自定义 crontab 表达式
if trigger_info['cycle_type'] == 'custom' and trigger_info['crontab_expression']:
cron_config = trigger_info['crontab_expression']
else:
trigger_info['type'] = trigger_info['cycle_type']
trigger_info['hour'] = trigger_info['cycle_hour']
trigger_info['minute'] = trigger_info['cycle_minute']
trigger_info['week'] = trigger_info['cycle_where']
trigger_info['where1'] = trigger_info['cycle_where']
cron_config, param, name = crontab_obj.GetCrondCycle(trigger_info)
panel_path = public.get_panel_path()
start_time = trigger_info['start_time'] if trigger_info['start_time'] else ''
exec_count = trigger_info['exec_count'] if trigger_info['exec_count'] else 0
cron_line = "{} {} {}/{} {} >> {}/{}".format(cron_config,public.get_python_bin(),panel_path,self._exec_script_file,trigger_id,panel_path,self._exec_log_file)
cron_file = crontab_obj.get_cron_file()
if not os.path.exists(cron_file):
public.writeFile(cron_file,'')
cron_body = public.readFile(cron_file)
cron_lines = cron_body.strip().split('\n')
cron_lines.append(cron_line)
cron_body = '\n'.join(cron_lines)
cron_body += '\n'
result = public.writeFile(cron_file, cron_body)
if not result: return False
crontab_obj.CrondReload()
return True
def remove_crontab(self,trigger_id):
'''
@name 移除计划任务
@param trigger_id<int> 任务ID
@return dict
'''
import crontab
crontab_obj = crontab.crontab()
cron_file = crontab_obj.get_cron_file()
if not os.path.exists(cron_file):
return
cron_body = public.readFile(cron_file)
cron_lines = cron_body.strip().split('\n')
cron_lines_new = []
tip_line = '{} {} >>'.format(self._exec_script_file,trigger_id)
for cron_line in cron_lines:
if not cron_line: continue
if cron_line.find(tip_line) == -1:
cron_lines_new.append(cron_line)
cron_body = '\n'.join(cron_lines_new)
cron_body += '\n'
public.writeFile(cron_file,cron_body)
crontab_obj.CrondReload()
return True
def get_trigger_info(self,args = None):
'''
@name 获取任务信息
@author hwliang
@param args<dict_obj>{
trigger_id<int> 任务ID
}
@return dict
'''
if not args or not 'trigger_id' in args:
return public.returnMsg(False,'参数错误')
trigger_id = int(args.trigger_id)
trigger_info = self._sql.table('trigger').where('trigger_id=?',(trigger_id,)).find()
if not trigger_info:
return public.returnMsg(False,'任务不存在')
trigger_info['operator_where'] = self._sql.table('operator_where').where('trigger_id=?',trigger_info['trigger_id']).select()
return public.returnMsg(True,trigger_info)
def create_trigger(self,args = None):
'''
@name 添加任务信息
@author hwliang
@param args<dict_obj>{
name<string> 任务名称
script_id<int> 脚本ID
ps<string> 备注
script_body<string> 脚本内容
cycle_type<string> 任务类型
cycle_where<string> 任务条件
cycle_hour<string> 小时
cycle_minute<string> 运行分钟
operator_where<list>{
operator<string> 操作符
op_value<string> 值
run_script_id<int> 运行脚本ID
run_script<string> 运行脚本内容
}
start_time<string> 开始执行时间
exec_count<int> 执行次数
}
@return dict
'''
if not args or not hasattr(args,'name') or not hasattr(args,'script_id'):
return public.returnMsg(False,'参数错误')
if not args.name:
return public.returnMsg(False,'任务名称不能为空')
if not args.script_id and not args.script_body:
return public.returnMsg(False,'脚本内容和脚本ID不能同时为空')
if not args.cycle_type:
return public.returnMsg(False,'任务类型不能为空')
crontab_expression=args.crontab_expression if hasattr(args,'crontab_expression') else ''
if args.cycle_type=="custom" and not crontab_expression:
return public.returnMsg(False, 'crontab表达式不能为空')
# 验证 crontab 表达式
if crontab_expression and not self.validate_crontab_expression(crontab_expression):
return public.returnMsg(False, '无效的 crontab 表达式')
script_args = args.get('args','')
#检查脚本是否存在
if args.script_id:
script_info = self._sql.table('scripts').where('script_id=?',(args.script_id,)).find()
if not script_info:
return public.returnMsg(False,'脚本不存在')
if 'is_args' in script_info and script_info['is_args'] == 1 and not script_args:
return public.returnMsg(False,'该脚本需要脚本参数')
#检查任务是否存在
if self._sql.table('trigger').where('name=?',(args.name,)).count():
return public.returnMsg(False,'任务已存在')
# 根据用户是否提供 crontab 表达式来决定使用哪种方式
if crontab_expression:
cycle_type = 'custom'
cycle_where = ""
cycle_hour = ''
cycle_minute = ''
else:
cycle_type = args.cycle_type
cycle_where = args.cycle_where
cycle_hour = args.cycle_hour
cycle_minute = args.cycle_minute
# 获取开始执行时间和执行次数
start_time = args.start_time if hasattr(args, 'start_time') else 0
exec_count = args.exec_count if hasattr(args, 'exec_count') else 0
# 获取当前时间戳
current_time = int(time.time())
# 检查开始时间是否小于当前时间
if start_time < current_time:
return public.returnMsg(False, '设置的开始执行时间不能早于当前时间')
pdata = {
'name':args.name,
'script_id':args.script_id,
'ps':args.ps,
'script_body':args.script_body,
'args':script_args,
'cycle_type':cycle_type,
'cycle_where':cycle_where,
'cycle_hour':cycle_hour,
'cycle_minute':cycle_minute,
'create_time': int(time.time()),
'crontab_expression':crontab_expression,
'start_time': start_time,
'exec_count': exec_count,
'type_id':0
}
trigger_id = self._sql.table('trigger').insert(pdata)
if not trigger_id:
return public.returnMsg(False,'添加失败')
result = self.sync_crontab(trigger_id)
if not result:
self._sql.table('trigger').where('trigger_id=?', trigger_id).delete()
return public.returnMsg(False, '写入计划任务失败,请检查磁盘是否可写或是否开启了系统加固!')
#增加任务条件
operator_where = args.operator_where
for op in operator_where:
op['trigger_id'] = trigger_id
op['create_time'] = int(time.time())
self._sql.table('operator_where').insert(op)
# 更新自定义排序
self.custom_order.insert(0,trigger_id)
public.writeFile(self.custom_order_path, json.dumps(self.custom_order))
public.set_module_logs('crontab_trigger', 'create_trigger', 1)
public.WriteLog(self._log_type,'添加任务【%s】成功!' % args.name)
return public.returnMsg(True,'添加成功')
def validate_crontab_expression(self,expression):
import re
pattern = (
r'^(\*|([0-5]?\d)(-\d+)?)(,(\*|([0-5]?\d)(-\d+)?))*\s+' # Minute: *, 0-59, 0-59/step
r'(\*|([01]?\d|2[0-3])(-\d+)?)(,(\*|([01]?\d|2[0-3])(-\d+)?))*\s+' # Hour: *, 0-23, 0-23/step
r'(\*|([1-9]|[12]\d|3[01])(-\d+)?)(,(\*|([1-9]|[12]\d|3[01])(-\d+)?))*\s+' # Day of month: *, 1-31, 1-31/step
r'(\*|([1-9]|1[0-2])(-\d+)?)(,(\*|([1-9]|1[0-2])(-\d+)?))*\s+' # Month: *, 1-12, 1-12/step
r'(\*|([0-7])(-\d+)?)(,(\*|([0-7])(-\d+)?))*$' # Day of week: *, 0-7, 0-7/step
)
return re.match(pattern, expression.strip()) is not None
def modify_trigger(self,args = None):
'''
@name 修改任务信息
@author hwliang
@param args<dict_obj>{
trigger_id<int> 任务ID
name<string> 任务名称
script_id<int> 脚本ID
ps<string> 备注
script_body<string> 脚本内容
cycle_type<string> 任务类型
cycle_where<string> 任务条件
cycle_hour<string> 小时
cycle_minute<string> 运行分钟
operator_where<list>{
operator<string> 操作符
op_value<string> 值
run_script_id<int> 运行脚本ID
run_script<string> 运行脚本内容
}
}
@return dict
'''
if not args or not hasattr(args,'name') or not hasattr(args,'script_id'):
return public.returnMsg(False,'参数错误')
if not args.name:
return public.returnMsg(False,'任务名称不能为空')
if not args.script_id and not args.script_body:
return public.returnMsg(False,'脚本内容和脚本ID不能同时为空')
if not args.cycle_type:
return public.returnMsg(False,'任务类型不能为空')
crontab_expression=args.crontab_expression if hasattr(args,'crontab_expression') else ''
if args.cycle_type=="custom" and not crontab_expression:
return public.returnMsg(False, 'crontab表达式不能为空')
# 验证 crontab 表达式
if crontab_expression and not self.validate_crontab_expression(crontab_expression):
return public.returnMsg(False, '无效的 crontab 表达式')
script_args = args.get('args','')
#检查脚本是否存在
if args.script_id:
script_info = self._sql.table('scripts').where('script_id=?',(args.script_id,)).find()
if not script_info:
return public.returnMsg(False,'脚本不存在')
if 'is_args' in script_info and script_info['is_args'] and not script_args:
return public.returnMsg(False,'该脚本需要脚本参数')
#检查任务是否存在
trigger_info = self._sql.table('trigger').where('trigger_id=?',(args.trigger_id,)).find()
if not trigger_info:
return public.returnMsg(False,'任务不存在')
#检查任务是否存在
if self._sql.table('trigger').where('name=? and trigger_id!=?',(args.name,args.trigger_id)).count():
return public.returnMsg(False,'任务已存在')
# 根据用户是否提供 crontab 表达式来决定使用哪种方式
if crontab_expression:
cycle_type = 'custom'
cycle_where = ""
cycle_hour = ''
cycle_minute = ''
else:
cycle_type = args.cycle_type
cycle_where = args.cycle_where
cycle_hour = args.cycle_hour
cycle_minute = args.cycle_minute
start_time = args.start_time if hasattr(args, 'start_time') else 0
exec_count = args.exec_count if hasattr(args, 'exec_count') else 0
pdata = {
'name':args.name,
'script_id':args.script_id,
'ps':args.ps,
'script_body':args.script_body,
'args':script_args,
'cycle_type':cycle_type,
'cycle_where':cycle_where,
'cycle_hour':cycle_hour,
'cycle_minute':cycle_minute,
'crontab_expression':crontab_expression,
'start_time': start_time,
'exec_count': exec_count
}
self._sql.table('trigger').where('trigger_id=?',(args.trigger_id,)).update(pdata)
# #删除任务条件
# self._sql.table('operator_where').where('trigger_id=?',(args.trigger_id,)).delete()
#增加任务条件
operator_where = args.operator_where
for op in operator_where:
op['trigger_id'] = args.trigger_id
op['create_time'] = int(time.time())
self._sql.table('operator_where').insert(op)
self.remove_crontab(args.trigger_id)
result = self.sync_crontab(args.trigger_id)
if not result:
return public.returnMsg(False, '写入计划任务失败,请检查磁盘是否可写或是否开启了系统加固!')
# 删除 task_count.json 中对应的任务执行次数记录
count_file = '/www/server/panel/data/task_count.json'
if os.path.exists(count_file):
with open(count_file, 'r') as f:
task_counts = json.load(f)
if str(args.trigger_id) in task_counts:
del task_counts[str(args.trigger_id)]
with open(count_file, 'w') as f:
json.dump(task_counts, f)
# 更新数据库中的任务
self._sql.table('trigger').where('trigger_id=?', (args.trigger_id,)).update(pdata)
public.WriteLog(self._log_type,'修改任务【%s】成功!' % args.name)
return public.returnMsg(True,'修改成功')
def remove_trigger(self,args = None):
'''
@name 删除任务信息
@author hwliang
@param args<dict_obj>{
trigger_id<int> 任务ID
}
@return dict
'''
if not args or not 'trigger_id' in args:
return public.returnMsg(False,'参数错误')
trigger_info = self._sql.table('trigger').where('trigger_id=?',(args.trigger_id,)).find()
if not trigger_info:
return public.returnMsg(False,'任务不存在')
self._sql.table('trigger').where('trigger_id=?',(args.trigger_id,)).delete()
self._sql.table('operator_where').where('trigger_id=?',(args.trigger_id,)).delete()
self._sql.table("tasks").where('trigger_id=? AND script_id=0',(args.trigger_id,)).delete()
self.remove_crontab(args.trigger_id)
# 删除 task_count.json 中对应的任务执行次数记录
count_file = '/www/server/panel/data/task_count.json'
if os.path.exists(count_file):
with open(count_file, 'r') as f:
task_counts = json.load(f)
if str(args.trigger_id) in task_counts:
del task_counts[str(args.trigger_id)]
with open(count_file, 'w') as f:
json.dump(task_counts, f)
# 更新自定义排序
if args.trigger_id in self.custom_order:
self.custom_order.remove(args.trigger_id)
public.writeFile(self.custom_order_path, json.dumps(self.custom_order))
public.WriteLog(self._log_type,'删除任务【%s】成功!' % trigger_info['name'])
return public.returnMsg(True,'删除成功')
def get_operator_where_list(self,args):
'''
@name 获取触发事件列表
@author hwliang
@param args<dict_obj>{
trigger_id:<int>
}
@return list
'''
trigger_id = args.get('trigger_id',0)
if not trigger_id: return public.returnMsg(False,"任务ID不能为空")
data = self._sql.table('operator_where').where('trigger_id=?',trigger_id).select()
for d in data:
d['script_info'] = {}
if d['run_script_id']:
d['script_info'] = self._sql.table('scripts').where('script_id=?',(d['run_script_id'],)).find()
if not d['script_info']: d['script_info'] = {}
if not d['args']: d['args'] = ''
return data
def create_operator_where(self,args):
'''
@name 创建触发事件
@author hwliang
@param args<dict_obj>{
"trigger_id":<int>, 任务ID
"operator":<string>, 运算符,支持: =,!=,>,>=,<,<=,in,not in
"op_value":<mixed>, 比较值,如果运算符为in,not in 时,此处应当为string类型的数据; 运算符为=,!=时,可以是string/int/float类型的数据;运算符为>,>=,<,<=时,此处应当为: int/float类型的数据
"run_script_id":<int>, 触发成功后运行的脚本ID,此参数与run_script互斥
"run_script":<string> 触发触功后运行的脚本内容,仅支持bash脚本,此参数与run_script_id互斥
}
@return dict
'''
op = {}
op['trigger_id'] = int(args.get('trigger_id',0))
op['operator'] = args.get('operator','=')
op['op_value'] = args.get('op_value','')
op['run_script_id'] = int(args.get('run_script_id',0))
op['run_script'] = args.get('run_script','')
op['args'] = args.get('args','')
if not op['run_script_id'] and not op['run_script']:
return public.returnMsg(False,'run_script_id和run_script至少需要一个有效值')
if not op['operator'] in self._operator:
return public.returnMsg(False,'请使用以下运算符之一:{}'.format(self._operator))
trigger_info = self._sql.table('trigger').where('trigger_id=?',(op['trigger_id'],)).find()
if not trigger_info:
return public.returnMsg(False,'指定任务不存在')
if op['run_script_id']:
script_info = self._sql.table('scripts').where('script_id=?',(op['run_script_id'],)).find()
if not script_info:
return public.returnMsg(False,'指定脚本不存在')
if 'is_args' in script_info and script_info['is_args'] and not op['args']:
return public.returnMsg(False,'脚本需要参数,请填写参数')
op['create_time'] = int(time.time())
if not self._sql.table('operator_where').insert(op):
return public.returnMsg(False,'添加触发事件失败')
public.WriteLog(self._log_type,"为任务[{}]添加了一个新事件".format(trigger_info['name']))
return public.returnMsg(True,'添加成功')
def modify_operator_where(self,args):
'''
@name 修改触发事件
@author hwliang
@param args<dict_obj>{
"where_id": <int> 事件ID
"operator":<string>, 运算符,支持: =,!=,>,>=,<,<=,in,not in
"op_value":<mixed>, 比较值,如果运算符为in,not in 时,此处应当为string类型的数据; 运算符为=,!=时,可以是string/int/float类型的数据;运算符为>,>=,<,<=时,此处应当为: int/float类型的数据
"run_script_id":<int>, 触发成功后运行的脚本ID,此参数与run_script互斥
"run_script":<string> 触发触功后运行的脚本内容,仅支持bash脚本,此参数与run_script_id互斥
}
@return dict
'''
op = {}
op['where_id'] = int(args.get('where_id',0))
op['operator'] = args.get('operator','=')
op['op_value'] = args.get('op_value','')
op['run_script_id'] = args.get('run_script_id',0)
op['run_script'] = args.get('run_script','')
op['args'] = args.get('args','')
if not op['where_id']:
return public.returnMsg(False,'事件ID不能为空')
if not op['operator'] in self._operator:
return public.returnMsg(False,'请使用以下运算符之一:{}'.format(self._operator))
where_info = self._sql.table('operator_where').where('where_id=?',(op['where_id'],)).find()
if not where_info:
return public.returnMsg(False,'指定事件不存在')
if not op['run_script_id'] and not op['run_script']:
return public.returnMsg(False,'run_script_id和run_script至少需要一个有效值')
if op['run_script_id']:
script_info = self._sql.table('scripts').where('script_id=?',(op['run_script_id'],)).find()
if not script_info:
return public.returnMsg(False,'指定脚本不存在')
if 'is_args' in script_info and script_info['is_args'] and not op['args']:
return public.returnMsg(False,'脚本需要参数,请填写参数')
if not self._sql.table('operator_where').where('where_id=?',op['where_id']).update(op):
return public.returnMsg(False,'修改事件成功')
public.WriteLog(self._log_type,"修改事件: ".format(op['where_id']))
return public.returnMsg(True,'修改成功')
def remove_operator_where(self,args):
'''
@name 删除指定事件
@author hwliang
@param args<dict_obj>{
"where_id": <int> 事件ID
}
@return dict
'''
where_id = int(args.get('where_id',0))
if not where_id: return public.returnMsg(False,'事件ID不能为空')
where_info = self._sql.table('operator_where').where('where_id=?',(where_id,)).find()
if not where_info:
return public.returnMsg(False,'指定事件不存在')
if not self._sql.table('operator_where').where('where_id=?',where_id).delete():
return public.returnMsg(False,'事件删除失败')
public.WriteLog(self._log_type,"删除事件: ".format(where_id))
return public.returnMsg(True,'删除成功')
def exec_script(self,script_id,script_body,s_args):
'''
@name 执行脚本内容
@param script_id<int> 脚本ID
@param script_body<string> 脚本内容
@return dict
'''
script_type = 'bash'
script_exts = {'bash':'sh','python':'py','php':'php','node':'js','ruby':'rb','perl':'pl'}
if script_id:
script_info = self._sql.table('scripts').where('script_id=?',(script_id,)).find()
if not script_info:
return False
script_body = script_info['script']
script_type = script_info['script_type']
if not script_body:
return False
if s_args: s_args = ' ' + s_args
tmp_file = '{}/tmp/{}.{}'.format(public.get_panel_path(),public.GetRandomString(32),script_exts[script_type])
public.writeFile(tmp_file,script_body)
if script_type == 'bash':
result = public.ExecShell('bash {}{}'.format(tmp_file,s_args))
elif script_type == 'python':
result = public.ExecShell('{} {}{}'.format(public.get_python_bin(),tmp_file,s_args))
if os.path.exists(tmp_file):
os.remove(tmp_file)
return result
def add_task_log(self,script_id,trigger_id,where_id,status,result_succ,result_err,start_time,end_time):
'''
@name 添加任务日志
@param script_id<int> 脚本ID
@param trigger_id<int> 触发器ID
@param where_id<int> 事件ID
@param status<int> 任务状态
@param result_succ<string> 成功结果
@param result_err<string> 错误结果
@param start_time<int> 开始时间
@param end_time<int> 结束时间
@return bool
'''
return self._sql.table('tasks').add('script_id,trigger_id,where_id,status,result_succ,result_err,start_time,end_time',
(script_id,trigger_id,where_id,status,result_succ,result_err,start_time,end_time))
def get_trigger_logs(self,args):
'''
@name 获取任务执行日志
@param args<dict_obj>{
"trigger_id": <int> 任务ID
"p": <int> 页码
"rows": <int> 每页数量
}
'''
trigger_id = int(args.get('trigger_id',0))
if not trigger_id: return public.returnMsg(False,'任务ID不能为空')
p = 1
if 'p' in args: p = int(args['p'])
rows = 10
if 'rows' in args: rows = int(args['rows'])
tojs = ''
if 'tojs' in args: tojs = args.tojs
where = 'trigger_id=?'
where_args = (trigger_id,)
count = self._sql.table('tasks').where(where,where_args).count()
page = public.get_page(count,p,rows,tojs)
page['data'] = self._sql.table('tasks').where(where,where_args).limit(page['row'],page['shift']).order('log_id desc').select()
return page
def get_operator_logs(self,args):
'''
@name 获取任务事件执行日志
@param args<dict_obj>{
"where_id": <int> 任务事件ID
"p": <int> 页码
"rows": <int> 每页数量
}
'''
where_id = int(args.get('where_id',0))
if not where_id: return public.returnMsg(False,'任务事件ID不能为空')
p = 1
if 'p' in args: p = int(args['p'])
rows = 10
if 'rows' in args: rows = int(args['rows'])
tojs = ''
if 'tojs' in args: tojs = args.tojs
where = 'where_id=?'
where_args = (where_id,)
count = self._sql.table('tasks').where(where,where_args).count()
page = public.get_page(count,p,rows,tojs)
page['data'] = self._sql.table('tasks').where(where,where_args).limit(page['row'],page['shift']).order('log_id desc').select()
return page
def test_trigger(self,args):
'''
@name 测试指定任务
@author hwliang
@param args<dict_obj>{
trigger_id<int> 任务ID
}
@return dict
'''
if not args or not 'trigger_id' in args:
return public.returnMsg(False,'参数错误')
trigger_info = self._sql.table('trigger').where('trigger_id=?',(args.trigger_id,)).find()
if not trigger_info:
return public.returnMsg(False,'任务不存在')
script_body = ''
script_type = 'bash'
return_type = 'string'
script_exts = {'bash':'sh','python':'py','php':'php','node':'js','ruby':'rb','perl':'pl'}
script_args = ''
#检查脚本是否存在
if trigger_info['script_id']:
script_info = self._sql.table('scripts').where('script_id=?',(trigger_info['script_id'],)).find()
if not script_info:
return public.returnMsg(False,'脚本不存在')
script_body = script_info['script']
script_type = script_info['script_type']
return_type = script_info['return_type']
if 'args' in trigger_info and trigger_info['args']: script_args = trigger_info['args']
else:
script_body = trigger_info['script_body']
trigger_start_time = int(time.time())
result_msg = ['正在执行任务...']
if script_args: script_args = ' {}'.format(script_args)
tmp_file = '{}/tmp/trigger_{}.{}'.format(public.get_panel_path(),trigger_info['trigger_id'],script_exts[script_type])
public.writeFile(tmp_file,script_body)
#执行脚本
if script_type == 'bash':
result = public.ExecShell("bash {}{}".format(tmp_file,script_args))
else:
result = public.ExecShell("{} {}{}".format(public.get_python_bin(),tmp_file,script_args))
if os.path.exists(tmp_file):
os.remove(tmp_file)
if not result[0]:
self.add_task_log(trigger_info['script_id'],trigger_info['trigger_id'],0,0,result[0],result[1],trigger_start_time,int(time.time()))
return public.returnMsg(False,'脚本执行失败,错误信息:\n{}'.format(result[1]))
result_msg.append("任务脚本已执行完成,返回结果:\n{}".format(result[0]))
#检查任务事件
operator_where = self._sql.table('operator_where').where('trigger_id=?',(args.trigger_id,)).select()
if not operator_where:
result_msg.append("该任务没有设置事件,跳过事件检查。")
self.add_task_log(trigger_info['script_id'],trigger_info['trigger_id'],0,1,'\n'.join(result_msg),result[1],trigger_start_time,int(time.time()))
return public.returnMsg(True,result_msg)
if return_type in ['string','json']:
_line = result[0].strip()
else:
_line = result[0].strip().split('\n')[-1]
_value = _line
if return_type == 'string':
_value = _line
elif return_type == 'json':
try:
_value = json.loads(_line)
except:
result_msg.append("脚本返回结果不是JSON格式,跳过事件检查。")
self.add_task_log(trigger_info['script_id'],trigger_info['trigger_id'],0,0,'\n'.join(result_msg),result[1],trigger_start_time,int(time.time()))
return public.returnMsg(False,result_msg)
elif return_type == 'int':
try:
_value = int(_line)
except:
result_msg.append("脚本返回结果的最后一行不是整数,跳过事件检查。")
self.add_task_log(trigger_info['script_id'],trigger_info['trigger_id'],0,0,'\n'.join(result_msg),result[1],trigger_start_time,int(time.time()))
return public.returnMsg(False,result_msg)
elif return_type == 'float':
try:
_value = float(_line)
except:
result_msg.append("脚本返回结果的最后一行不是浮点数,跳过事件检查。")
self.add_task_log(trigger_info['script_id'],trigger_info['trigger_id'],0,0,'\n'.join(result_msg),result[1],trigger_start_time,int(time.time()))
return public.returnMsg(False,result_msg)
result_msg.append("共有 {} 个事件需要处理".format(len(operator_where)))
n = 1
for op in operator_where:
if return_type == 'int':
op['op_value'] = int(op['op_value'])
elif return_type == 'float':
op['op_value'] = float(op['op_value'])
_script = op['run_script_id'] if op['run_script_id'] else op['run_script']
result_msg.append("正在处理第 {} 个事件: [当返回值 {} {} 时 执行 {}]".format(n,op['operator'],op['op_value'],_script))
op_start_time = int(time.time())
is_true = False
if op['operator'] in ['==','=']:
if _value == op['op_value']:
is_true = True
elif op['operator'] == '!=':
if _value != op['op_value']:
is_true = True
elif op['operator'] == '>':
if _value > op['op_value']:
is_true = True
elif op['operator'] == '>=':
if _value >= op['op_value']:
is_true = True
elif op['operator'] == '<':
if _value < op['op_value']:
is_true = True
elif op['operator'] == '<=':
if _value <= op['op_value']:
is_true = True
elif op['operator'] == 'in':
if str(_value).find(str(op['op_value'])) != -1:
is_true = True
elif op['operator'] == 'not in':
if str(_value).find(str(op['op_value'])) == -1:
is_true = True
if is_true:
result_msg.append("事件条件成立,正在执行执行脚本...")
public.WriteLog('任务编排',"任务[{}]触发条件[返回结果 {} {}],已执行预设的脚本!".format(trigger_info['name'],op['operator'],op['op_value']))
s_args = ''
if 'args' in op and op['args']: s_args = op['args']
result_msg.append("事件条件成立,正在执行执行事件脚本...")
result = self.exec_script(op['run_script_id'],op['run_script'],s_args)
if not result[0]:
public.WriteLog('任务编排',"任务[{}]触发条件[返回结果 {} {} ],执行预设的脚本失败:{} ".format(trigger_info['name'],op['operator'],op['op_value'],result[1]))
result_msg.append("事件脚本执行失败,错误信息:\n{}".format("\n".join(result)))
self.add_task_log(op['run_script_id'],0,op['where_id'],0,'\n'.join(result_msg),'\n'.join(result),op_start_time,int(time.time()))
else:
self.add_task_log(op['run_script_id'],0,op['where_id'],1,result[0],result[1],op_start_time,int(time.time()))
result_msg.append("事件脚本执行成功,返回结果:\n{}".format(result[0]))
else:
result_msg.append("事件条件不成立,跳过执行。")
result_msg.append("第 {} 个事件处理完成。".format(n))
result_msg.append("-" * 20)
n+=1
self.add_task_log(trigger_info['script_id'],trigger_info['trigger_id'],0,1,'\n'.join(result_msg),result[1],trigger_start_time,int(time.time()))
return public.returnMsg(True,"\n".join(result_msg))
# 设置计划任务状态
def set_trigger_status(self, args):
try:
trigger_id=args.trigger_id
triggerInfo = self._sql.table('trigger').where('trigger_id=?',(trigger_id,)).find()
if not triggerInfo:
return public.returnMsg(False, "未找到对应任务的数据,请刷新页面查看该任务是否存在!")
status_msg = ['停用', '启用']
status = int(args.status)
if status == 0:
if not self.remove_crontab(trigger_id):
return public.returnMsg(False, '写入计划任务失败,请检查磁盘是否可写或是否开启了系统加固!')
else:
if not self.sync_crontab(trigger_id):
return public.returnMsg(False, '写入计划任务失败,请检查磁盘是否可写或是否开启了系统加固!')
self._sql.table('trigger').where('trigger_id=?',(trigger_id,)).setField('status', status)
return public.returnMsg(True, '处理成功')
except :
import traceback
return public.returnMsg(False,traceback.format_exc())
def get_trigger_types(self, args):
data = public.M("trigger_types").field("id,name,ps").order("id asc").select()
return {'status': True, 'msg': data}
def add_trigger_type(self, args):
import re
# get.name = html.escape(get.name.strip())
name = public.xsssec(args.name.strip())
if re.search('<.*?>', args.name):
return public.returnMsg(False, "分类名称不能包含HTML语句")
if not name:
return public.returnMsg(False, "分类名称不能为空")
if len(name) > 16:
return public.returnMsg(False, "分类名称长度不能超过16位")
trigger_type_sql = public.M('trigger_types')
if trigger_type_sql.where('name=?', (name,)).count() > 0:
return public.returnMsg(False, "指定分类名称已存在")
# 添加新的计划任务分类
trigger_type_sql.add("name", (name,))
return public.returnMsg(True, '添加成功')
def remove_trigger_type(self, args):
trigger_type_sql = public.M('trigger_types')
trigger_sql = public.M('trigger')
trigger_type_id = args.id
if trigger_type_sql.where('id=?', ( trigger_type_id,)).count() == 0:
return public.returnMsg(False, "指定分类不存在")
trigger_type_sql.where('id=?', (trigger_type_id,)).delete()
try:
trigger_sql.where('type_id=?', (trigger_type_id,)).save('type_id', (0))
except:
pass
return public.returnMsg(True, "分类已删除")
def modify_trigger_type_name(self, args):
import re
# get.name = html.escape(get.name.strip())
name = public.xsssec(args.name.strip())
trigger_type_id = args.id
if re.search('<.*?>', args.name):
return public.returnMsg(False, "分类名称不能包含HTML语句")
if not name:
return public.returnMsg(False, "分类名称不能为空")
if len(name) > 16:
return public.returnMsg(False, "分类名称长度不能超过16位")
trigger_type_sql = public.M('trigger_types')
if trigger_type_sql.where('id=?', (trigger_type_id,)).count() == 0:
return public.returnMsg(False, "指定分类不存在")
if trigger_type_sql.where('name=? AND id!=?', (name, trigger_type_id)).count() > 0:
return public.returnMsg(False, "指定分类名称已存在")
# 修改指定的计划任务分类名称
trigger_type_sql.where('id=?', ( trigger_type_id,)).setField('name', name)
return public.returnMsg(True, "修改成功")
def set_trigger_type(self, args):
try:
trigger_ids = json.loads(args.trigger_ids)
trigger_type_sql = public.M('trigger_types')
trigger_sql = public.M('trigger')
trigger_type_id = args.id
if trigger_type_id=="0":
return public.returnMsg(False,"不能设置为默认分类!")
if trigger_type_sql.where('id=?', (trigger_type_id,)).count() == 0:
return public.returnMsg(False, "指定分类不存在")
for s_id in trigger_ids:
trigger_sql.where("trigger_id=?", (s_id,)).save('type_id', (trigger_type_id))
return public.returnMsg(True, "设置成功!")
except Exception as e:
return public.returnMsg(False, "设置失败" + str(e)) |