mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-14 07:22:18 +03:00
missing plugin message created
This commit is contained in:
parent
95abee215d
commit
daa078c90d
1 changed files with 14 additions and 6 deletions
|
@ -18,6 +18,16 @@ class Messaging(object):
|
||||||
self.db_service = scope.getDbService()
|
self.db_service = scope.getDbService()
|
||||||
self.event_manger = scope.getEventManager()
|
self.event_manger = scope.getEventManager()
|
||||||
|
|
||||||
|
def missing_plugin_message(self, plugin):
|
||||||
|
data = {}
|
||||||
|
data['type'] = 'MISSING_PLUGIN'
|
||||||
|
data['pluginName'] = plugin.get_name()
|
||||||
|
data['pluginVersion'] = plugin.get_version()
|
||||||
|
|
||||||
|
json_data = json.dumps(data)
|
||||||
|
self.logger.debug('[Messaging]Missing plugin message was created')
|
||||||
|
return str(json_data)
|
||||||
|
|
||||||
"""
|
"""
|
||||||
def response_msg(self, response):
|
def response_msg(self, response):
|
||||||
print("response message")
|
print("response message")
|
||||||
|
@ -64,8 +74,6 @@ class Messaging(object):
|
||||||
self.logger.debug('[Messaging] Policy status message was created')
|
self.logger.debug('[Messaging] Policy status message was created')
|
||||||
return str(json_data)
|
return str(json_data)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def login_msg(self, username):
|
def login_msg(self, username):
|
||||||
data = {}
|
data = {}
|
||||||
data['type'] = 'LOGIN'
|
data['type'] = 'LOGIN'
|
||||||
|
|
Loading…
Reference in a new issue