Add XEP-0020 support.
This commit is contained in:
parent
d8c9662302
commit
c30c47d291
1
setup.py
1
setup.py
@ -62,6 +62,7 @@ packages = [ 'sleekxmpp',
|
|||||||
'sleekxmpp/plugins/xep_0012',
|
'sleekxmpp/plugins/xep_0012',
|
||||||
'sleekxmpp/plugins/xep_0013',
|
'sleekxmpp/plugins/xep_0013',
|
||||||
'sleekxmpp/plugins/xep_0016',
|
'sleekxmpp/plugins/xep_0016',
|
||||||
|
'sleekxmpp/plugins/xep_0020',
|
||||||
'sleekxmpp/plugins/xep_0027',
|
'sleekxmpp/plugins/xep_0027',
|
||||||
'sleekxmpp/plugins/xep_0030',
|
'sleekxmpp/plugins/xep_0030',
|
||||||
'sleekxmpp/plugins/xep_0030/stanza',
|
'sleekxmpp/plugins/xep_0030/stanza',
|
||||||
|
@ -17,6 +17,7 @@ __all__ = [
|
|||||||
'xep_0012', # Last Activity
|
'xep_0012', # Last Activity
|
||||||
'xep_0013', # Flexible Offline Message Retrieval
|
'xep_0013', # Flexible Offline Message Retrieval
|
||||||
'xep_0016', # Privacy Lists
|
'xep_0016', # Privacy Lists
|
||||||
|
'xep_0020', # Feature Negotiation
|
||||||
'xep_0027', # Current Jabber OpenPGP Usage
|
'xep_0027', # Current Jabber OpenPGP Usage
|
||||||
'xep_0030', # Service Discovery
|
'xep_0030', # Service Discovery
|
||||||
'xep_0033', # Extended Stanza Addresses
|
'xep_0033', # Extended Stanza Addresses
|
||||||
|
16
sleekxmpp/plugins/xep_0020/__init__.py
Normal file
16
sleekxmpp/plugins/xep_0020/__init__.py
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
"""
|
||||||
|
SleekXMPP: The Sleek XMPP Library
|
||||||
|
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
This file is part of SleekXMPP.
|
||||||
|
|
||||||
|
See the file LICENSE for copying permission.
|
||||||
|
"""
|
||||||
|
|
||||||
|
from sleekxmpp.plugins.base import register_plugin
|
||||||
|
|
||||||
|
from sleekxmpp.plugins.xep_0020 import stanza
|
||||||
|
from sleekxmpp.plugins.xep_0020.stanza import FeatureNegotiation
|
||||||
|
from sleekxmpp.plugins.xep_0020.feature_negotiation import XEP_0020
|
||||||
|
|
||||||
|
|
||||||
|
register_plugin(XEP_0020)
|
36
sleekxmpp/plugins/xep_0020/feature_negotiation.py
Normal file
36
sleekxmpp/plugins/xep_0020/feature_negotiation.py
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
"""
|
||||||
|
SleekXMPP: The Sleek XMPP Library
|
||||||
|
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
This file is part of SleekXMPP.
|
||||||
|
|
||||||
|
See the file LICENSE for copying permission.
|
||||||
|
"""
|
||||||
|
|
||||||
|
import logging
|
||||||
|
|
||||||
|
from sleekxmpp import Iq, Message
|
||||||
|
from sleekxmpp.plugins import BasePlugin
|
||||||
|
from sleekxmpp.xmlstream.handler import Callback
|
||||||
|
from sleekxmpp.xmlstream.matcher import StanzaPath
|
||||||
|
from sleekxmpp.xmlstream import register_stanza_plugin, JID
|
||||||
|
from sleekxmpp.plugins.xep_0020 import stanza, FeatureNegotiation
|
||||||
|
from sleekxmpp.plugins.xep_0004 import Form
|
||||||
|
|
||||||
|
|
||||||
|
log = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
class XEP_0020(BasePlugin):
|
||||||
|
|
||||||
|
name = 'xep_0020'
|
||||||
|
description = 'XEP-0020: Feature Negotiation'
|
||||||
|
dependencies = set(['xep_0004', 'xep_0030'])
|
||||||
|
stanza = stanza
|
||||||
|
|
||||||
|
def plugin_init(self):
|
||||||
|
self.xmpp['xep_0030'].add_feature(FeatureNegotiation.namespace)
|
||||||
|
|
||||||
|
register_stanza_plugin(FeatureNegotiation, Form)
|
||||||
|
|
||||||
|
register_stanza_plugin(Iq, FeatureNegotiation)
|
||||||
|
register_stanza_plugin(Message, FeatureNegotiation)
|
17
sleekxmpp/plugins/xep_0020/stanza.py
Normal file
17
sleekxmpp/plugins/xep_0020/stanza.py
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
"""
|
||||||
|
SleekXMPP: The Sleek XMPP Library
|
||||||
|
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
This file is part of SleekXMPP.
|
||||||
|
|
||||||
|
See the file LICENSE for copying permission.
|
||||||
|
"""
|
||||||
|
|
||||||
|
from sleekxmpp.xmlstream import ElementBase
|
||||||
|
|
||||||
|
|
||||||
|
class FeatureNegotiation(ElementBase):
|
||||||
|
|
||||||
|
name = 'feature'
|
||||||
|
namespace = 'http://jabber.org/protocol/feature-neg'
|
||||||
|
plugin_attrib = 'feature_neg'
|
||||||
|
interfaces = set()
|
Loading…
Reference in New Issue
Block a user