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.
		
		
		
		
		
			
		
			
				
					
					
						
							268 lines
						
					
					
						
							12 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							268 lines
						
					
					
						
							12 KiB
						
					
					
				
								from fastapi import Request
							 | 
						|
								from sqlalchemy.ext.asyncio import AsyncSession
							 | 
						|
								from typing import List
							 | 
						|
								from config.constant import CommonConstant, JobConstant
							 | 
						|
								from config.get_scheduler import SchedulerUtil
							 | 
						|
								from exceptions.exception import ServiceException
							 | 
						|
								from module_admin.dao.job_dao import JobDao
							 | 
						|
								from module_admin.entity.vo.common_vo import CrudResponseModel
							 | 
						|
								from module_admin.entity.vo.job_vo import DeleteJobModel, EditJobModel, JobModel, JobPageQueryModel
							 | 
						|
								from module_admin.service.dict_service import DictDataService
							 | 
						|
								from utils.common_util import CamelCaseUtil, export_list2excel
							 | 
						|
								from utils.cron_util import CronUtil
							 | 
						|
								from utils.string_util import StringUtil
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								class JobService:
							 | 
						|
								    """
							 | 
						|
								    定时任务管理模块服务层
							 | 
						|
								    """
							 | 
						|
								
							 | 
						|
								    @classmethod
							 | 
						|
								    async def get_job_list_services(
							 | 
						|
								        cls, query_db: AsyncSession, query_object: JobPageQueryModel, is_page: bool = False
							 | 
						|
								    ):
							 | 
						|
								        """
							 | 
						|
								        获取定时任务列表信息service
							 | 
						|
								
							 | 
						|
								        :param query_db: orm对象
							 | 
						|
								        :param query_object: 查询参数对象
							 | 
						|
								        :param is_page: 是否开启分页
							 | 
						|
								        :return: 定时任务列表信息对象
							 | 
						|
								        """
							 | 
						|
								        job_list_result = await JobDao.get_job_list(query_db, query_object, is_page)
							 | 
						|
								
							 | 
						|
								        return job_list_result
							 | 
						|
								
							 | 
						|
								    @classmethod
							 | 
						|
								    async def check_job_unique_services(cls, query_db: AsyncSession, page_object: JobModel):
							 | 
						|
								        """
							 | 
						|
								        校验定时任务是否存在service
							 | 
						|
								
							 | 
						|
								        :param query_db: orm对象
							 | 
						|
								        :param page_object: 定时任务对象
							 | 
						|
								        :return: 校验结果
							 | 
						|
								        """
							 | 
						|
								        job_id = -1 if page_object.job_id is None else page_object.job_id
							 | 
						|
								        job = await JobDao.get_job_detail_by_info(query_db, page_object)
							 | 
						|
								        if job and job.job_id != job_id:
							 | 
						|
								            return CommonConstant.NOT_UNIQUE
							 | 
						|
								        return CommonConstant.UNIQUE
							 | 
						|
								
							 | 
						|
								    @classmethod
							 | 
						|
								    async def add_job_services(cls, query_db: AsyncSession, page_object: JobModel):
							 | 
						|
								        """
							 | 
						|
								        新增定时任务信息service
							 | 
						|
								
							 | 
						|
								        :param query_db: orm对象
							 | 
						|
								        :param page_object: 新增定时任务对象
							 | 
						|
								        :return: 新增定时任务校验结果
							 | 
						|
								        """
							 | 
						|
								        if not CronUtil.validate_cron_expression(page_object.cron_expression):
							 | 
						|
								            raise ServiceException(message=f'新增定时任务{page_object.job_name}失败,Cron表达式不正确')
							 | 
						|
								        elif StringUtil.contains_ignore_case(page_object.invoke_target, CommonConstant.LOOKUP_RMI):
							 | 
						|
								            raise ServiceException(message=f'新增定时任务{page_object.job_name}失败,目标字符串不允许rmi调用')
							 | 
						|
								        elif StringUtil.contains_any_ignore_case(
							 | 
						|
								            page_object.invoke_target, [CommonConstant.LOOKUP_LDAP, CommonConstant.LOOKUP_LDAPS]
							 | 
						|
								        ):
							 | 
						|
								            raise ServiceException(message=f'新增定时任务{page_object.job_name}失败,目标字符串不允许ldap(s)调用')
							 | 
						|
								        elif StringUtil.contains_any_ignore_case(
							 | 
						|
								            page_object.invoke_target, [CommonConstant.HTTP, CommonConstant.HTTPS]
							 | 
						|
								        ):
							 | 
						|
								            raise ServiceException(message=f'新增定时任务{page_object.job_name}失败,目标字符串不允许http(s)调用')
							 | 
						|
								        elif StringUtil.startswith_any_case(page_object.invoke_target, JobConstant.JOB_ERROR_LIST):
							 | 
						|
								            raise ServiceException(message=f'新增定时任务{page_object.job_name}失败,目标字符串存在违规')
							 | 
						|
								        elif not StringUtil.startswith_any_case(page_object.invoke_target, JobConstant.JOB_WHITE_LIST):
							 | 
						|
								            raise ServiceException(message=f'新增定时任务{page_object.job_name}失败,目标字符串不在白名单内')
							 | 
						|
								        elif not await cls.check_job_unique_services(query_db, page_object):
							 | 
						|
								            raise ServiceException(message=f'新增定时任务{page_object.job_name}失败,定时任务已存在')
							 | 
						|
								        else:
							 | 
						|
								            try:
							 | 
						|
								                add_job = await JobDao.add_job_dao(query_db, page_object)
							 | 
						|
								                job_info = await cls.job_detail_services(query_db, add_job.job_id)
							 | 
						|
								                if job_info.status == '0':
							 | 
						|
								                    SchedulerUtil.add_scheduler_job(job_info=job_info)
							 | 
						|
								                await query_db.commit()
							 | 
						|
								                result = dict(is_success=True, message='新增成功')
							 | 
						|
								            except Exception as e:
							 | 
						|
								                await query_db.rollback()
							 | 
						|
								                raise e
							 | 
						|
								
							 | 
						|
								        return CrudResponseModel(**result)
							 | 
						|
								
							 | 
						|
								    @classmethod
							 | 
						|
								    async def edit_job_services(cls, query_db: AsyncSession, page_object: EditJobModel):
							 | 
						|
								        """
							 | 
						|
								        编辑定时任务信息service
							 | 
						|
								
							 | 
						|
								        :param query_db: orm对象
							 | 
						|
								        :param page_object: 编辑定时任务对象
							 | 
						|
								        :return: 编辑定时任务校验结果
							 | 
						|
								        """
							 | 
						|
								        edit_job = page_object.model_dump(exclude_unset=True)
							 | 
						|
								        if page_object.type == 'status':
							 | 
						|
								            del edit_job['type']
							 | 
						|
								        job_info = await cls.job_detail_services(query_db, page_object.job_id)
							 | 
						|
								        if job_info:
							 | 
						|
								            if page_object.type != 'status':
							 | 
						|
								                if not CronUtil.validate_cron_expression(page_object.cron_expression):
							 | 
						|
								                    raise ServiceException(message=f'修改定时任务{page_object.job_name}失败,Cron表达式不正确')
							 | 
						|
								                elif StringUtil.contains_ignore_case(page_object.invoke_target, CommonConstant.LOOKUP_RMI):
							 | 
						|
								                    raise ServiceException(message=f'修改定时任务{page_object.job_name}失败,目标字符串不允许rmi调用')
							 | 
						|
								                elif StringUtil.contains_any_ignore_case(
							 | 
						|
								                    page_object.invoke_target, [CommonConstant.LOOKUP_LDAP, CommonConstant.LOOKUP_LDAPS]
							 | 
						|
								                ):
							 | 
						|
								                    raise ServiceException(
							 | 
						|
								                        message=f'修改定时任务{page_object.job_name}失败,目标字符串不允许ldap(s)调用'
							 | 
						|
								                    )
							 | 
						|
								                elif StringUtil.contains_any_ignore_case(
							 | 
						|
								                    page_object.invoke_target, [CommonConstant.HTTP, CommonConstant.HTTPS]
							 | 
						|
								                ):
							 | 
						|
								                    raise ServiceException(
							 | 
						|
								                        message=f'修改定时任务{page_object.job_name}失败,目标字符串不允许http(s)调用'
							 | 
						|
								                    )
							 | 
						|
								                elif StringUtil.startswith_any_case(page_object.invoke_target, JobConstant.JOB_ERROR_LIST):
							 | 
						|
								                    raise ServiceException(message=f'修改定时任务{page_object.job_name}失败,目标字符串存在违规')
							 | 
						|
								                elif not StringUtil.startswith_any_case(page_object.invoke_target, JobConstant.JOB_WHITE_LIST):
							 | 
						|
								                    raise ServiceException(message=f'修改定时任务{page_object.job_name}失败,目标字符串不在白名单内')
							 | 
						|
								                elif not await cls.check_job_unique_services(query_db, page_object):
							 | 
						|
								                    raise ServiceException(message=f'修改定时任务{page_object.job_name}失败,定时任务已存在')
							 | 
						|
								            try:
							 | 
						|
								                await JobDao.edit_job_dao(query_db, edit_job)
							 | 
						|
								                SchedulerUtil.remove_scheduler_job(job_id=edit_job.get('job_id'))
							 | 
						|
								                if edit_job.get('status') == '0':
							 | 
						|
								                    job_info = await cls.job_detail_services(query_db, edit_job.get('job_id'))
							 | 
						|
								                    SchedulerUtil.add_scheduler_job(job_info=job_info)
							 | 
						|
								                await query_db.commit()
							 | 
						|
								                return CrudResponseModel(is_success=True, message='更新成功')
							 | 
						|
								            except Exception as e:
							 | 
						|
								                await query_db.rollback()
							 | 
						|
								                raise e
							 | 
						|
								        else:
							 | 
						|
								            raise ServiceException(message='定时任务不存在')
							 | 
						|
								
							 | 
						|
								    @classmethod
							 | 
						|
								    async def execute_job_once_services(cls, query_db: AsyncSession, page_object: JobModel):
							 | 
						|
								        """
							 | 
						|
								        执行一次定时任务service
							 | 
						|
								
							 | 
						|
								        :param query_db: orm对象
							 | 
						|
								        :param page_object: 定时任务对象
							 | 
						|
								        :return: 执行一次定时任务结果
							 | 
						|
								        """
							 | 
						|
								        SchedulerUtil.remove_scheduler_job(job_id=page_object.job_id)
							 | 
						|
								        job_info = await cls.job_detail_services(query_db, page_object.job_id)
							 | 
						|
								        if job_info:
							 | 
						|
								            SchedulerUtil.execute_scheduler_job_once(job_info=job_info)
							 | 
						|
								            return CrudResponseModel(is_success=True, message='执行成功')
							 | 
						|
								        else:
							 | 
						|
								            raise ServiceException(message='定时任务不存在')
							 | 
						|
								
							 | 
						|
								    @classmethod
							 | 
						|
								    async def delete_job_services(cls, query_db: AsyncSession, page_object: DeleteJobModel):
							 | 
						|
								        """
							 | 
						|
								        删除定时任务信息service
							 | 
						|
								
							 | 
						|
								        :param query_db: orm对象
							 | 
						|
								        :param page_object: 删除定时任务对象
							 | 
						|
								        :return: 删除定时任务校验结果
							 | 
						|
								        """
							 | 
						|
								        if page_object.job_ids:
							 | 
						|
								            job_id_list = page_object.job_ids.split(',')
							 | 
						|
								            try:
							 | 
						|
								                for job_id in job_id_list:
							 | 
						|
								                    await JobDao.delete_job_dao(query_db, JobModel(jobId=job_id))
							 | 
						|
								                    SchedulerUtil.remove_scheduler_job(job_id=job_id)
							 | 
						|
								                await query_db.commit()
							 | 
						|
								                return CrudResponseModel(is_success=True, message='删除成功')
							 | 
						|
								            except Exception as e:
							 | 
						|
								                await query_db.rollback()
							 | 
						|
								                raise e
							 | 
						|
								        else:
							 | 
						|
								            raise ServiceException(message='传入定时任务id为空')
							 | 
						|
								
							 | 
						|
								    @classmethod
							 | 
						|
								    async def job_detail_services(cls, query_db: AsyncSession, job_id: int):
							 | 
						|
								        """
							 | 
						|
								        获取定时任务详细信息service
							 | 
						|
								
							 | 
						|
								        :param query_db: orm对象
							 | 
						|
								        :param job_id: 定时任务id
							 | 
						|
								        :return: 定时任务id对应的信息
							 | 
						|
								        """
							 | 
						|
								        job = await JobDao.get_job_detail_by_id(query_db, job_id=job_id)
							 | 
						|
								        if job:
							 | 
						|
								            result = JobModel(**CamelCaseUtil.transform_result(job))
							 | 
						|
								        else:
							 | 
						|
								            result = JobModel(**dict())
							 | 
						|
								
							 | 
						|
								        return result
							 | 
						|
								
							 | 
						|
								    @staticmethod
							 | 
						|
								    async def export_job_list_services(request: Request, job_list: List):
							 | 
						|
								        """
							 | 
						|
								        导出定时任务信息service
							 | 
						|
								
							 | 
						|
								        :param request: Request对象
							 | 
						|
								        :param job_list: 定时任务信息列表
							 | 
						|
								        :return: 定时任务信息对应excel的二进制数据
							 | 
						|
								        """
							 | 
						|
								        # 创建一个映射字典,将英文键映射到中文键
							 | 
						|
								        mapping_dict = {
							 | 
						|
								            'jobId': '任务编码',
							 | 
						|
								            'jobName': '任务名称',
							 | 
						|
								            'jobGroup': '任务组名',
							 | 
						|
								            'jobExecutor': '任务执行器',
							 | 
						|
								            'invokeTarget': '调用目标字符串',
							 | 
						|
								            'jobArgs': '位置参数',
							 | 
						|
								            'jobKwargs': '关键字参数',
							 | 
						|
								            'cronExpression': 'cron执行表达式',
							 | 
						|
								            'misfirePolicy': '计划执行错误策略',
							 | 
						|
								            'concurrent': '是否并发执行',
							 | 
						|
								            'status': '状态',
							 | 
						|
								            'createBy': '创建者',
							 | 
						|
								            'createTime': '创建时间',
							 | 
						|
								            'updateBy': '更新者',
							 | 
						|
								            'updateTime': '更新时间',
							 | 
						|
								            'remark': '备注',
							 | 
						|
								        }
							 | 
						|
								
							 | 
						|
								        data = job_list
							 | 
						|
								        job_group_list = await DictDataService.query_dict_data_list_from_cache_services(
							 | 
						|
								            request.app.state.redis, dict_type='sys_job_group'
							 | 
						|
								        )
							 | 
						|
								        job_group_option = [dict(label=item.get('dictLabel'), value=item.get('dictValue')) for item in job_group_list]
							 | 
						|
								        job_group_option_dict = {item.get('value'): item for item in job_group_option}
							 | 
						|
								        job_executor_list = await DictDataService.query_dict_data_list_from_cache_services(
							 | 
						|
								            request.app.state.redis, dict_type='sys_job_executor'
							 | 
						|
								        )
							 | 
						|
								        job_executor_option = [
							 | 
						|
								            dict(label=item.get('dictLabel'), value=item.get('dictValue')) for item in job_executor_list
							 | 
						|
								        ]
							 | 
						|
								        job_executor_option_dict = {item.get('value'): item for item in job_executor_option}
							 | 
						|
								
							 | 
						|
								        for item in data:
							 | 
						|
								            if item.get('status') == '0':
							 | 
						|
								                item['status'] = '正常'
							 | 
						|
								            else:
							 | 
						|
								                item['status'] = '暂停'
							 | 
						|
								            if str(item.get('jobGroup')) in job_group_option_dict.keys():
							 | 
						|
								                item['jobGroup'] = job_group_option_dict.get(str(item.get('jobGroup'))).get('label')
							 | 
						|
								            if str(item.get('jobExecutor')) in job_executor_option_dict.keys():
							 | 
						|
								                item['jobExecutor'] = job_executor_option_dict.get(str(item.get('jobExecutor'))).get('label')
							 | 
						|
								            if item.get('misfirePolicy') == '1':
							 | 
						|
								                item['misfirePolicy'] = '立即执行'
							 | 
						|
								            elif item.get('misfirePolicy') == '2':
							 | 
						|
								                item['misfirePolicy'] = '执行一次'
							 | 
						|
								            else:
							 | 
						|
								                item['misfirePolicy'] = '放弃执行'
							 | 
						|
								            if item.get('concurrent') == '0':
							 | 
						|
								                item['concurrent'] = '允许'
							 | 
						|
								            else:
							 | 
						|
								                item['concurrent'] = '禁止'
							 | 
						|
								        new_data = [
							 | 
						|
								            {mapping_dict.get(key): value for key, value in item.items() if mapping_dict.get(key)} for item in data
							 | 
						|
								        ]
							 | 
						|
								        binary_data = export_list2excel(new_data)
							 | 
						|
								
							 | 
						|
								        return binary_data
							 | 
						|
								
							 |