mirror of https://github.com/jumpserver/jumpserver
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.
49 lines
1.3 KiB
49 lines
1.3 KiB
# -*- coding: utf-8 -*-
|
|
#
|
|
import time
|
|
|
|
from django.utils import timezone
|
|
|
|
from common.utils import get_logger
|
|
from common.utils.timezone import local_now_display
|
|
|
|
from .handlers import AccountBackupHandler
|
|
|
|
logger = get_logger(__name__)
|
|
|
|
|
|
class AccountBackupManager:
|
|
def __init__(self, execution):
|
|
self.execution = execution
|
|
self.date_start = timezone.now()
|
|
self.time_start = time.time()
|
|
self.date_end = None
|
|
self.time_end = None
|
|
self.timedelta = 0
|
|
|
|
def do_run(self):
|
|
execution = self.execution
|
|
logger.info('\n\033[33m# 账号备份计划正在执行\033[0m')
|
|
handler = AccountBackupHandler(execution)
|
|
handler.run()
|
|
|
|
def pre_run(self):
|
|
self.execution.date_start = self.date_start
|
|
self.execution.save()
|
|
|
|
def post_run(self):
|
|
self.time_end = time.time()
|
|
self.date_end = timezone.now()
|
|
|
|
logger.info('\n\n' + '-' * 80)
|
|
logger.info('计划执行结束 {}\n'.format(local_now_display()))
|
|
self.timedelta = self.time_end - self.time_start
|
|
logger.info('用时: {}s'.format(self.timedelta))
|
|
self.execution.timedelta = self.timedelta
|
|
self.execution.save()
|
|
|
|
def run(self):
|
|
self.pre_run()
|
|
self.do_run()
|
|
self.post_run()
|