mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-22 16:42:20 +03:00
bug fix
This commit is contained in:
parent
58face4eb9
commit
f50814e99f
9 changed files with 1 additions and 155 deletions
|
@ -28,7 +28,7 @@ class CustomScheduler(BaseScheduler):
|
||||||
def add_job(self, job):
|
def add_job(self, job):
|
||||||
self.events.append(job)
|
self.events.append(job)
|
||||||
|
|
||||||
def Tsave_and_add_job(self, task):
|
def save_and_add_job(self, task):
|
||||||
try:
|
try:
|
||||||
self.logger.debug('Saving scheduled task to database...')
|
self.logger.debug('Saving scheduled task to database...')
|
||||||
self.scheduledb.save(task)
|
self.scheduledb.save(task)
|
||||||
|
|
|
@ -1,20 +0,0 @@
|
||||||
#!/usr/bin/python3
|
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
from base.plugin.abstract_plugin import AbstractPlugin
|
|
||||||
|
|
||||||
|
|
||||||
class Init(AbstractPlugin):
|
|
||||||
def __init__(self, context):
|
|
||||||
super(Init, self).__init__()
|
|
||||||
self.context = context
|
|
||||||
self.logger = self.get_logger()
|
|
||||||
|
|
||||||
def handle_init_mode(self):
|
|
||||||
# TODO Do what do you want to do!
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
def handle_mode(context):
|
|
||||||
init = Init(context)
|
|
||||||
init.handle_init_mode()
|
|
|
@ -1,21 +0,0 @@
|
||||||
#!/usr/bin/python3
|
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
from base.plugin.abstract_plugin import AbstractPlugin
|
|
||||||
|
|
||||||
|
|
||||||
class Login(AbstractPlugin):
|
|
||||||
def __init__(self, context):
|
|
||||||
super(Login, self).__init__()
|
|
||||||
self.context = context
|
|
||||||
self.username = str(context.get_username())
|
|
||||||
self.logger = self.get_logger()
|
|
||||||
|
|
||||||
def handle_login_mode(self):
|
|
||||||
# TODO Do what do you want to do!
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
def handle_mode(context):
|
|
||||||
login = Login(context)
|
|
||||||
login.handle_login_mode()
|
|
|
@ -1,21 +0,0 @@
|
||||||
#!/usr/bin/python3
|
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
from base.plugin.abstract_plugin import AbstractPlugin
|
|
||||||
|
|
||||||
|
|
||||||
class Logout(AbstractPlugin):
|
|
||||||
def __init__(self, context):
|
|
||||||
super(Logout, self).__init__()
|
|
||||||
self.context = context
|
|
||||||
self.username = str(context.get_username())
|
|
||||||
self.logger = self.get_logger()
|
|
||||||
|
|
||||||
def handle_logout_mode(self):
|
|
||||||
# TODO Do what do you want to do!
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
def handle_mode(context):
|
|
||||||
logout = Logout(context)
|
|
||||||
logout.handle_logout_mode()
|
|
|
@ -1,5 +0,0 @@
|
||||||
#!/usr/bin/python3
|
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
def info():
|
|
||||||
return None
|
|
|
@ -1,23 +0,0 @@
|
||||||
#!/usr/bin/python3
|
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
from base.plugin.abstract_plugin import AbstractPlugin
|
|
||||||
|
|
||||||
|
|
||||||
class Sample(AbstractPlugin):
|
|
||||||
def __init__(self, profile_data, context):
|
|
||||||
super(Sample, self).__init__()
|
|
||||||
self.profile_data = profile_data
|
|
||||||
self.context = context
|
|
||||||
self.logger = self.get_logger()
|
|
||||||
|
|
||||||
def handle_policy(self):
|
|
||||||
# TODO Do what do you want to do!
|
|
||||||
# TODO Don't Forget returning response with <self.context.create_response(..)>
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
def handle_policy(profile_data, context):
|
|
||||||
print('Sample Plugin Policy')
|
|
||||||
sample = Sample(profile_data, context)
|
|
||||||
sample.handle_policy()
|
|
|
@ -1,21 +0,0 @@
|
||||||
#!/usr/bin/python3
|
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
from base.plugin.abstract_plugin import AbstractPlugin
|
|
||||||
|
|
||||||
|
|
||||||
class Safe(AbstractPlugin):
|
|
||||||
def __init__(self, context):
|
|
||||||
super(Safe, self).__init__()
|
|
||||||
self.context = context
|
|
||||||
self.username = str(context.get_username())
|
|
||||||
self.logger = self.get_logger()
|
|
||||||
|
|
||||||
def handle_safe_mode(self):
|
|
||||||
# TODO Do what do you want to do!
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
def handle_mode(context):
|
|
||||||
safe = Safe(context)
|
|
||||||
safe.handle_safe_mode()
|
|
|
@ -1,20 +0,0 @@
|
||||||
#!/usr/bin/python3
|
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
from base.plugin.abstract_plugin import AbstractPlugin
|
|
||||||
|
|
||||||
|
|
||||||
class Shutdown(AbstractPlugin):
|
|
||||||
def __init__(self, context):
|
|
||||||
super(Shutdown, self).__init__()
|
|
||||||
self.context = context
|
|
||||||
self.logger = self.get_logger()
|
|
||||||
|
|
||||||
def handle_shutdown_mode(self):
|
|
||||||
# TODO Do what do you want to do!
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
def handle_mode(context):
|
|
||||||
shutdown = Shutdown(context)
|
|
||||||
shutdown.handle_shutdown_mode()
|
|
|
@ -1,23 +0,0 @@
|
||||||
#!/usr/bin/python3
|
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
from base.plugin.abstract_plugin import AbstractPlugin
|
|
||||||
|
|
||||||
|
|
||||||
class Sample(AbstractPlugin):
|
|
||||||
def __init__(self, task, context):
|
|
||||||
super(Sample, self).__init__()
|
|
||||||
self.task = task
|
|
||||||
self.context = context
|
|
||||||
self.logger = self.get_logger()
|
|
||||||
|
|
||||||
def handle_task(self):
|
|
||||||
# TODO Do what do you want to do!
|
|
||||||
# TODO Don't Forget returning response with <self.context.create_response(..)>
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
def handle_task(task, context):
|
|
||||||
print('Sample Plugin Task')
|
|
||||||
sample = Sample(task, context)
|
|
||||||
sample.handle_task()
|
|
Loading…
Reference in a new issue