2013-01-24 10:46:16 +00:00
|
|
|
"""
|
|
|
|
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.xmlstream import register_stanza_plugin
|
|
|
|
from sleekxmpp.plugins import BasePlugin
|
2013-01-25 07:05:05 +00:00
|
|
|
from sleekxmpp.plugins.google.auth import stanza
|
2013-01-24 10:46:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2013-01-25 07:05:05 +00:00
|
|
|
class GoogleAuth(BasePlugin):
|
2013-01-24 10:46:16 +00:00
|
|
|
|
|
|
|
"""
|
2013-01-25 07:05:05 +00:00
|
|
|
Google: Auth Extensions (JID Domain Discovery, OAuth2)
|
2013-01-24 10:46:16 +00:00
|
|
|
|
2013-01-25 07:05:05 +00:00
|
|
|
Also see:
|
|
|
|
<https://developers.google.com/talk/jep_extensions/jid_domain_change>
|
|
|
|
<https://developers.google.com/talk/jep_extensions/oauth>
|
2013-01-24 10:46:16 +00:00
|
|
|
"""
|
|
|
|
|
2013-01-25 07:05:05 +00:00
|
|
|
name = 'google_auth'
|
|
|
|
description = 'Google: Auth Extensions (JID Domain Discovery, OAuth2)'
|
2013-01-24 10:46:16 +00:00
|
|
|
dependencies = set(['feature_mechanisms'])
|
|
|
|
stanza = stanza
|
|
|
|
|
|
|
|
def plugin_init(self):
|
2013-01-25 07:05:05 +00:00
|
|
|
self.xmpp.namespace_map['http://www.google.com/talk/protocol/auth'] = 'ga'
|
2013-01-24 10:46:16 +00:00
|
|
|
|
|
|
|
register_stanza_plugin(self.xmpp['feature_mechanisms'].stanza.Auth,
|
|
|
|
stanza.GoogleAuth)
|
|
|
|
|
|
|
|
self.xmpp.add_filter('out', self._auth)
|
|
|
|
|
|
|
|
def plugin_end(self):
|
|
|
|
self.xmpp.del_filter('out', self._auth)
|
|
|
|
|
|
|
|
def _auth(self, stanza):
|
|
|
|
if isinstance(stanza, self.xmpp['feature_mechanisms'].stanza.Auth):
|
2013-01-25 07:05:05 +00:00
|
|
|
stanza.stream = self.xmpp
|
|
|
|
stanza['google']['client_uses_full_bind_result'] = True
|
|
|
|
if stanza['mechanism'] == 'X-OAUTH2':
|
|
|
|
stanza['google']['service'] = 'oauth2'
|
|
|
|
print(stanza)
|
2013-01-24 10:46:16 +00:00
|
|
|
return stanza
|