mirror of
https://github.com/correl/SleekXMPP.git
synced 2024-11-23 19:19:53 +00:00
Allow XEP 0092 to send os information
Doesn't send these information by default, only if provided in the config dict (as the 'os' key)
This commit is contained in:
parent
7c7fa0f008
commit
68ce47c905
1 changed files with 5 additions and 0 deletions
|
@ -18,6 +18,7 @@ class xep_0092(base.base_plugin):
|
|||
self.xep = "0092"
|
||||
self.name = self.config.get('name', 'SleekXMPP')
|
||||
self.version = self.config.get('version', '0.1-dev')
|
||||
self.os = self.config.get('os', '')
|
||||
self.xmpp.add_handler("<iq type='get' xmlns='%s'><query xmlns='jabber:iq:version' /></iq>" % self.xmpp.default_ns, self.report_version, name='Sofware Version')
|
||||
|
||||
def post_init(self):
|
||||
|
@ -32,6 +33,10 @@ class xep_0092(base.base_plugin):
|
|||
name.text = self.name
|
||||
version = ET.Element('version')
|
||||
version.text = self.version
|
||||
if self.os:
|
||||
os = ET.Element('os')
|
||||
os.text = self.os
|
||||
query.append(os)
|
||||
query.append(name)
|
||||
query.append(version)
|
||||
iq.append(query)
|
||||
|
|
Loading…
Reference in a new issue