Compare commits
	
		
			1 Commits
		
	
	
		
			exp_idle_c
			...
			1.1.11
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | 846f2bac5f | 
							
								
								
									
										9
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										9
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							| @@ -1,4 +1,4 @@ | ||||
| *.py[co] | ||||
| *.pyc | ||||
| build/ | ||||
| dist/ | ||||
| MANIFEST | ||||
| @@ -6,9 +6,4 @@ docs/_build/ | ||||
| *.swp | ||||
| .tox/ | ||||
| .coverage | ||||
| slixmpp.egg-info/ | ||||
| .ropeproject/ | ||||
| 4913 | ||||
| *~ | ||||
| .baboon/ | ||||
| .DS_STORE | ||||
| sleekxmpp.egg-info/ | ||||
|   | ||||
							
								
								
									
										31
									
								
								LICENSE
									
									
									
									
									
								
							
							
						
						
									
										31
									
								
								LICENSE
									
									
									
									
									
								
							| @@ -69,8 +69,8 @@ modification, are permitted provided that the following conditions are met: | ||||
|     * Redistributions in binary form must reproduce the above copyright | ||||
|       notice, this list of conditions and the following disclaimer in the | ||||
|       documentation and/or other materials provided with the distribution. | ||||
|     * Neither the name of Red Innovation nor the names of its contributors | ||||
|       may be used to endorse or promote products derived from this software | ||||
|     * Neither the name of Red Innovation nor the names of its contributors  | ||||
|       may be used to endorse or promote products derived from this software  | ||||
|       without specific prior written permission. | ||||
|  | ||||
| THIS SOFTWARE IS PROVIDED BY RED INNOVATION ``AS IS'' AND ANY | ||||
| @@ -119,7 +119,7 @@ SUELTA – A PURE-PYTHON SASL CLIENT LIBRARY | ||||
|  | ||||
| This software is subject to "The MIT License" | ||||
|  | ||||
| Copyright 2004-2013 David Alan Cridland | ||||
| Copyright 2007-2010 David Alan Cridland | ||||
|  | ||||
| Permission is hereby granted, free of charge, to any person obtaining a copy | ||||
| of this software and associated documentation files (the "Software"), to deal | ||||
| @@ -167,28 +167,3 @@ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||||
| LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE | ||||
| OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | ||||
| ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||||
|  | ||||
| socksipy: A Python SOCKS client module. | ||||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||||
| Copyright 2006 Dan-Haim. All rights reserved. | ||||
|  | ||||
| Redistribution and use in source and binary forms, with or without modification, | ||||
| are permitted provided that the following conditions are met: | ||||
| 1. Redistributions of source code must retain the above copyright notice, this | ||||
|    list of conditions and the following disclaimer. | ||||
| 2. Redistributions in binary form must reproduce the above copyright notice, | ||||
|    this list of conditions and the following disclaimer in the documentation | ||||
|    and/or other materials provided with the distribution. | ||||
| 3. Neither the name of Dan Haim nor the names of his contributors may be used | ||||
|    to endorse or promote products derived from this software without specific | ||||
|    prior written permission. | ||||
|  | ||||
| THIS SOFTWARE IS PROVIDED BY DAN HAIM "AS IS" AND ANY EXPRESS OR IMPLIED | ||||
| WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||||
| MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO | ||||
| EVENT SHALL DAN HAIM OR HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | ||||
| INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||||
| LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA | ||||
| OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||||
| LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT | ||||
| OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMANGE. | ||||
|   | ||||
							
								
								
									
										105
									
								
								README.rst
									
									
									
									
									
								
							
							
						
						
									
										105
									
								
								README.rst
									
									
									
									
									
								
							| @@ -1,12 +1,76 @@ | ||||
| Slixmpp | ||||
| SleekXMPP | ||||
| ######### | ||||
|  | ||||
| Slixmpp is an MIT licensed XMPP library for Python 3.4+. It is a fork of | ||||
| SleekXMPP. | ||||
| SleekXMPP is an MIT licensed XMPP library for Python 2.6/3.1+, | ||||
| and is featured in examples in | ||||
| `XMPP: The Definitive Guide <http://oreilly.com/catalog/9780596521271>`_  | ||||
| by Kevin Smith, Remko Tronçon, and Peter Saint-Andre. If you've arrived | ||||
| here from reading the Definitive Guide, please see the notes on updating | ||||
| the examples to the latest version of SleekXMPP. | ||||
|  | ||||
| Slixmpp's goals is to only rewrite the core of the library (the low level | ||||
| socket handling, the timers, the events dispatching) in order to remove all | ||||
| threads. | ||||
| SleekXMPP's design goals and philosphy are: | ||||
|  | ||||
| **Low number of dependencies** | ||||
|     Installing and using SleekXMPP should be as simple as possible, without | ||||
|     having to deal with long dependency chains. | ||||
|  | ||||
|     As part of reducing the number of dependencies, some third party | ||||
|     modules are included with SleekXMPP in the ``thirdparty`` directory. | ||||
|     Imports from this module first try to import an existing installed | ||||
|     version before loading the packaged version, when possible. | ||||
|  | ||||
| **Every XEP as a plugin** | ||||
|     Following Python's "batteries included" approach, the goal is to | ||||
|     provide support for all currently active XEPs (final and draft). Since | ||||
|     adding XEP support is done through easy to create plugins, the hope is | ||||
|     to also provide a solid base for implementing and creating experimental | ||||
|     XEPs. | ||||
|  | ||||
| **Rewarding to work with** | ||||
|     As much as possible, SleekXMPP should allow things to "just work" using | ||||
|     sensible defaults and appropriate abstractions. XML can be ugly to work | ||||
|     with, but it doesn't have to be that way. | ||||
|  | ||||
|  | ||||
| Get the Code | ||||
| ------------ | ||||
|  | ||||
| Get the latest stable version from PyPI:: | ||||
|  | ||||
|     pip install sleekxmpp | ||||
|  | ||||
| The latest source code for SleekXMPP may be found on `Github | ||||
| <http://github.com/fritzy/SleekXMPP>`_. Releases can be found in the | ||||
| ``master`` branch, while the latest development version is in the | ||||
| ``develop`` branch. | ||||
|  | ||||
| **Latest Release** | ||||
|     - `1.1.10 <http://github.com/fritzy/SleekXMPP/zipball/1.1.10>`_ | ||||
|  | ||||
| **Develop Releases** | ||||
|     - `Latest Develop Version <http://github.com/fritzy/SleekXMPP/zipball/develop>`_ | ||||
|  | ||||
|  | ||||
| Installing DNSPython | ||||
| --------------------- | ||||
| If you are using Python3 and wish to use dnspython, you will have to checkout and | ||||
| install the ``python3`` branch:: | ||||
|  | ||||
|     git clone http://github.com/rthalley/dnspython | ||||
|     cd dnspython | ||||
|     git checkout python3 | ||||
|     python3 setup.py install | ||||
|  | ||||
| Discussion | ||||
| ---------- | ||||
| A mailing list and XMPP chat room are available for discussing and getting | ||||
| help with SleekXMPP. | ||||
|  | ||||
| **Mailing List** | ||||
|     `SleekXMPP Discussion on Google Groups <http://groups.google.com/group/sleekxmpp-discussion>`_ | ||||
|  | ||||
| **Chat** | ||||
|     `sleek@conference.jabber.org <xmpp:sleek@conference.jabber.org?join>`_ | ||||
|  | ||||
|  | ||||
| Documentation and Testing | ||||
| @@ -19,22 +83,22 @@ be in ``docs/_build/html``:: | ||||
|     make html | ||||
|     open _build/html/index.html | ||||
|  | ||||
| To run the test suite for Slixmpp:: | ||||
| To run the test suite for SleekXMPP:: | ||||
|  | ||||
|     python testall.py | ||||
|  | ||||
|  | ||||
| The Slixmpp Boilerplate | ||||
| The SleekXMPP Boilerplate | ||||
| ------------------------- | ||||
| Projects using Slixmpp tend to follow a basic pattern for setting up client/component | ||||
| connections and configuration. Here is the gist of the boilerplate needed for a Slixmpp | ||||
| Projects using SleekXMPP tend to follow a basic pattern for setting up client/component | ||||
| connections and configuration. Here is the gist of the boilerplate needed for a SleekXMPP | ||||
| based project. See the documetation or examples directory for more detailed archetypes for | ||||
| Slixmpp projects:: | ||||
| SleekXMPP projects:: | ||||
|  | ||||
|     import logging | ||||
|  | ||||
|     from slixmpp import ClientXMPP | ||||
|     from slixmpp.exceptions import IqError, IqTimeout | ||||
|     from sleekxmpp import ClientXMPP | ||||
|     from sleekxmpp.exceptions import IqError, IqTimeout | ||||
|  | ||||
|  | ||||
|     class EchoBot(ClientXMPP): | ||||
| @@ -80,7 +144,7 @@ Slixmpp projects:: | ||||
|  | ||||
|  | ||||
|     if __name__ == '__main__': | ||||
|         # Ideally use optparse or argparse to get JID, | ||||
|         # Ideally use optparse or argparse to get JID,  | ||||
|         # password, and log level. | ||||
|  | ||||
|         logging.basicConfig(level=logging.DEBUG, | ||||
| @@ -91,25 +155,18 @@ Slixmpp projects:: | ||||
|         xmpp.process(block=True) | ||||
|  | ||||
|  | ||||
| Slixmpp Credits | ||||
| --------------- | ||||
|  | ||||
| **Maintainer of the slixmpp fork:** Florent Le Coz | ||||
|     `louiz@louiz.org <xmpp:louiz@louiz.org?message>`_, | ||||
|  | ||||
| Credits | ||||
| ------- | ||||
|  | ||||
| **Main Author:** Nathan Fritz | ||||
|     `fritzy@netflint.net <xmpp:fritzy@netflint.net?message>`_, | ||||
|     `fritzy@netflint.net <xmpp:fritzy@netflint.net?message>`_,  | ||||
|     `@fritzy <http://twitter.com/fritzy>`_ | ||||
|  | ||||
|     Nathan is also the author of XMPPHP and `Seesmic-AS3-XMPP | ||||
|     <http://code.google.com/p/seesmic-as3-xmpp/>`_, and a former member of | ||||
|     <http://code.google.com/p/seesmic-as3-xmpp/>`_, and a former member of  | ||||
|     the XMPP Council. | ||||
|  | ||||
| **Co-Author:** Lance Stout | ||||
|     `lancestout@gmail.com <xmpp:lancestout@gmail.com?message>`_, | ||||
|     `lancestout@gmail.com <xmpp:lancestout@gmail.com?message>`_,  | ||||
|     `@lancestout <http://twitter.com/lancestout>`_ | ||||
|  | ||||
| **Contributors:** | ||||
|   | ||||
| @@ -72,17 +72,17 @@ qthelp: | ||||
| 	@echo | ||||
| 	@echo "Build finished; now you can run "qcollectiongenerator" with the" \ | ||||
| 	      ".qhcp project file in $(BUILDDIR)/qthelp, like this:" | ||||
| 	@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/Slixmpp.qhcp" | ||||
| 	@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/SleekXMPP.qhcp" | ||||
| 	@echo "To view the help file:" | ||||
| 	@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/Slixmpp.qhc" | ||||
| 	@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/SleekXMPP.qhc" | ||||
|  | ||||
| devhelp: | ||||
| 	$(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp | ||||
| 	@echo | ||||
| 	@echo "Build finished." | ||||
| 	@echo "To view the help file:" | ||||
| 	@echo "# mkdir -p $$HOME/.local/share/devhelp/Slixmpp" | ||||
| 	@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/Slixmpp" | ||||
| 	@echo "# mkdir -p $$HOME/.local/share/devhelp/SleekXMPP" | ||||
| 	@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/SleekXMPP" | ||||
| 	@echo "# devhelp" | ||||
|  | ||||
| epub: | ||||
|   | ||||
							
								
								
									
										68
									
								
								docs/_static/nature.css
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										68
									
								
								docs/_static/nature.css
									
									
									
									
										vendored
									
									
								
							| @@ -8,11 +8,11 @@ | ||||
|  * :license: BSD, see LICENSE for details. | ||||
|  * | ||||
|  */ | ||||
|  | ||||
|   | ||||
| @import url("basic.css"); | ||||
|  | ||||
|   | ||||
| /* -- page layout ----------------------------------------------------------- */ | ||||
|  | ||||
|   | ||||
| body { | ||||
|     font-family: Arial, sans-serif; | ||||
|     font-size: 100%; | ||||
| @@ -34,18 +34,18 @@ div.bodywrapper { | ||||
| hr { | ||||
|     border: 1px solid #B1B4B6; | ||||
| } | ||||
|  | ||||
|   | ||||
| div.document { | ||||
|     background-color: #eee; | ||||
| } | ||||
|  | ||||
|   | ||||
| div.body { | ||||
|     background-color: #ffffff; | ||||
|     color: #3E4349; | ||||
|     padding: 0 30px 30px 30px; | ||||
|     font-size: 0.9em; | ||||
| } | ||||
|  | ||||
|   | ||||
| div.footer { | ||||
|     color: #555; | ||||
|     width: 100%; | ||||
| @@ -53,12 +53,12 @@ div.footer { | ||||
|     text-align: center; | ||||
|     font-size: 75%; | ||||
| } | ||||
|  | ||||
|   | ||||
| div.footer a { | ||||
|     color: #444; | ||||
|     text-decoration: underline; | ||||
| } | ||||
|  | ||||
|   | ||||
| div.related { | ||||
|     background-color: #6BA81E; | ||||
|     line-height: 32px; | ||||
| @@ -66,11 +66,11 @@ div.related { | ||||
|     text-shadow: 0px 1px 0 #444; | ||||
|     font-size: 0.9em; | ||||
| } | ||||
|  | ||||
|   | ||||
| div.related a { | ||||
|     color: #E2F3CC; | ||||
| } | ||||
|  | ||||
|   | ||||
| div.sphinxsidebar { | ||||
|     font-size: 0.75em; | ||||
|     line-height: 1.5em; | ||||
| @@ -79,7 +79,7 @@ div.sphinxsidebar { | ||||
| div.sphinxsidebarwrapper{ | ||||
|     padding: 20px 0; | ||||
| } | ||||
|  | ||||
|   | ||||
| div.sphinxsidebar h3, | ||||
| div.sphinxsidebar h4 { | ||||
|     font-family: Arial, sans-serif; | ||||
| @@ -95,30 +95,30 @@ div.sphinxsidebar h4 { | ||||
| div.sphinxsidebar h4{ | ||||
|     font-size: 1.1em; | ||||
| } | ||||
|  | ||||
|   | ||||
| div.sphinxsidebar h3 a { | ||||
|     color: #444; | ||||
| } | ||||
|  | ||||
|  | ||||
|   | ||||
|   | ||||
| div.sphinxsidebar p { | ||||
|     color: #888; | ||||
|     padding: 5px 20px; | ||||
| } | ||||
|  | ||||
|   | ||||
| div.sphinxsidebar p.topless { | ||||
| } | ||||
|  | ||||
|   | ||||
| div.sphinxsidebar ul { | ||||
|     margin: 10px 20px; | ||||
|     padding: 0; | ||||
|     color: #000; | ||||
| } | ||||
|  | ||||
|   | ||||
| div.sphinxsidebar a { | ||||
|     color: #444; | ||||
| } | ||||
|  | ||||
|   | ||||
| div.sphinxsidebar input { | ||||
|     border: 1px solid #ccc; | ||||
|     font-family: sans-serif; | ||||
| @@ -128,19 +128,19 @@ div.sphinxsidebar input { | ||||
| div.sphinxsidebar input[type=text]{ | ||||
|     margin-left: 20px; | ||||
| } | ||||
|  | ||||
|   | ||||
| /* -- body styles ----------------------------------------------------------- */ | ||||
|  | ||||
|   | ||||
| a { | ||||
|     color: #005B81; | ||||
|     text-decoration: none; | ||||
| } | ||||
|  | ||||
|   | ||||
| a:hover { | ||||
|     color: #E32E00; | ||||
|     text-decoration: underline; | ||||
| } | ||||
|  | ||||
|   | ||||
| div.body h1, | ||||
| div.body h2, | ||||
| div.body h3, | ||||
| @@ -155,30 +155,30 @@ div.body h6 { | ||||
|     padding: 5px 0 5px 10px; | ||||
|     text-shadow: 0px 1px 0 white | ||||
| } | ||||
|  | ||||
|   | ||||
| div.body h1 { border-top: 20px solid white; margin-top: 0; font-size: 200%; } | ||||
| div.body h2 { font-size: 150%; background-color: #C8D5E3; } | ||||
| div.body h3 { font-size: 120%; background-color: #D8DEE3; } | ||||
| div.body h4 { font-size: 110%; background-color: #D8DEE3; } | ||||
| div.body h5 { font-size: 100%; background-color: #D8DEE3; } | ||||
| div.body h6 { font-size: 100%; background-color: #D8DEE3; } | ||||
|  | ||||
|   | ||||
| a.headerlink { | ||||
|     color: #c60f0f; | ||||
|     font-size: 0.8em; | ||||
|     padding: 0 4px 0 4px; | ||||
|     text-decoration: none; | ||||
| } | ||||
|  | ||||
|   | ||||
| a.headerlink:hover { | ||||
|     background-color: #c60f0f; | ||||
|     color: white; | ||||
| } | ||||
|  | ||||
|   | ||||
| div.body p, div.body dd, div.body li { | ||||
|     line-height: 1.5em; | ||||
| } | ||||
|  | ||||
|   | ||||
| div.admonition p.admonition-title + p { | ||||
|     display: inline; | ||||
| } | ||||
| @@ -191,29 +191,29 @@ div.note { | ||||
|     background-color: #eee; | ||||
|     border: 1px solid #ccc; | ||||
| } | ||||
|  | ||||
|   | ||||
| div.seealso { | ||||
|     background-color: #ffc; | ||||
|     border: 1px solid #ff6; | ||||
| } | ||||
|  | ||||
|   | ||||
| div.topic { | ||||
|     background-color: #eee; | ||||
| } | ||||
|  | ||||
|   | ||||
| div.warning { | ||||
|     background-color: #ffe4e4; | ||||
|     border: 1px solid #f66; | ||||
| } | ||||
|  | ||||
|   | ||||
| p.admonition-title { | ||||
|     display: inline; | ||||
| } | ||||
|  | ||||
|   | ||||
| p.admonition-title:after { | ||||
|     content: ":"; | ||||
| } | ||||
|  | ||||
|   | ||||
| pre { | ||||
|     padding: 10px; | ||||
|     background-color: White; | ||||
| @@ -225,7 +225,7 @@ pre { | ||||
|     -webkit-box-shadow: 1px 1px 1px #d8d8d8; | ||||
|     -moz-box-shadow: 1px 1px 1px #d8d8d8; | ||||
| } | ||||
|  | ||||
|   | ||||
| tt { | ||||
|     background-color: #ecf0f3; | ||||
|     color: #222; | ||||
|   | ||||
							
								
								
									
										2
									
								
								docs/_static/sphinxdoc.css
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								docs/_static/sphinxdoc.css
									
									
									
									
										vendored
									
									
								
							| @@ -134,7 +134,7 @@ div.footer a { | ||||
|  | ||||
| /* -- body styles ----------------------------------------------------------- */ | ||||
|  | ||||
| p { | ||||
| p {     | ||||
|     margin: 0.8em 0 0.5em 0; | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -2,7 +2,7 @@ | ||||
| BaseXMPP | ||||
| ======== | ||||
|  | ||||
| .. module:: slixmpp.basexmpp | ||||
| .. module:: sleekxmpp.basexmpp | ||||
|  | ||||
| .. autoclass:: BaseXMPP | ||||
|     :members: | ||||
|   | ||||
| @@ -2,7 +2,7 @@ | ||||
| ClientXMPP | ||||
| ========== | ||||
|  | ||||
| .. module:: slixmpp.clientxmpp | ||||
| .. module:: sleekxmpp.clientxmpp | ||||
|  | ||||
| .. autoclass:: ClientXMPP | ||||
|     :members: | ||||
|   | ||||
| @@ -2,7 +2,7 @@ | ||||
| ComponentXMPP | ||||
| ============= | ||||
|  | ||||
| .. module:: slixmpp.componentxmpp | ||||
| .. module:: sleekxmpp.componentxmpp | ||||
|  | ||||
| .. autoclass:: ComponentXMPP | ||||
|     :members: | ||||
|   | ||||
| @@ -1,9 +1,9 @@ | ||||
| Exceptions | ||||
| ========== | ||||
|  | ||||
| .. module:: slixmpp.exceptions | ||||
|  | ||||
| .. module:: sleekxmpp.exceptions | ||||
|  | ||||
|      | ||||
| .. autoexception:: XMPPError | ||||
|     :members: | ||||
|  | ||||
|   | ||||
| @@ -1,4 +1,4 @@ | ||||
| .. module:: slixmpp.xmlstream.filesocket | ||||
| .. module:: sleekxmpp.xmlstream.filesocket | ||||
|  | ||||
| .. _filesocket: | ||||
|  | ||||
|   | ||||
| @@ -3,14 +3,14 @@ Stanza Handlers | ||||
|  | ||||
| The Basic Handler | ||||
| ----------------- | ||||
| .. module:: slixmpp.xmlstream.handler.base | ||||
| .. module:: sleekxmpp.xmlstream.handler.base | ||||
|  | ||||
| .. autoclass:: BaseHandler | ||||
|     :members: | ||||
|  | ||||
| Callback | ||||
| -------- | ||||
| .. module:: slixmpp.xmlstream.handler.callback | ||||
| .. module:: sleekxmpp.xmlstream.handler.callback | ||||
|  | ||||
| .. autoclass:: Callback | ||||
|     :members: | ||||
| @@ -18,7 +18,7 @@ Callback | ||||
|  | ||||
| Waiter | ||||
| ------ | ||||
| .. module:: slixmpp.xmlstream.handler.waiter | ||||
| .. module:: sleekxmpp.xmlstream.handler.waiter | ||||
|  | ||||
| .. autoclass:: Waiter | ||||
|     :members: | ||||
|   | ||||
| @@ -1,7 +1,7 @@ | ||||
| Jabber IDs (JID) | ||||
| ================= | ||||
|  | ||||
| .. module:: slixmpp.xmlstream.jid | ||||
| .. module:: sleekxmpp.xmlstream.jid | ||||
|  | ||||
| .. autoclass:: JID | ||||
|     :members: | ||||
|   | ||||
| @@ -3,7 +3,7 @@ Stanza Matchers | ||||
|  | ||||
| The Basic Matcher | ||||
| ----------------- | ||||
| .. module:: slixmpp.xmlstream.matcher.base | ||||
| .. module:: sleekxmpp.xmlstream.matcher.base | ||||
|  | ||||
| .. autoclass:: MatcherBase | ||||
|     :members: | ||||
| @@ -11,7 +11,7 @@ The Basic Matcher | ||||
|  | ||||
| ID Matching | ||||
| ----------- | ||||
| .. module:: slixmpp.xmlstream.matcher.id | ||||
| .. module:: sleekxmpp.xmlstream.matcher.id | ||||
|  | ||||
| .. autoclass:: MatcherId | ||||
|     :members: | ||||
| @@ -19,7 +19,7 @@ ID Matching | ||||
|  | ||||
| Stanza Path Matching | ||||
| -------------------- | ||||
| .. module:: slixmpp.xmlstream.matcher.stanzapath | ||||
| .. module:: sleekxmpp.xmlstream.matcher.stanzapath | ||||
|  | ||||
| .. autoclass:: StanzaPath | ||||
|     :members: | ||||
| @@ -27,7 +27,7 @@ Stanza Path Matching | ||||
|  | ||||
| XPath | ||||
| ----- | ||||
| .. module:: slixmpp.xmlstream.matcher.xpath | ||||
| .. module:: sleekxmpp.xmlstream.matcher.xpath | ||||
|  | ||||
| .. autoclass:: MatchXPath | ||||
|     :members: | ||||
| @@ -35,7 +35,7 @@ XPath | ||||
|  | ||||
| XMLMask | ||||
| ------- | ||||
| .. module:: slixmpp.xmlstream.matcher.xmlmask | ||||
| .. module:: sleekxmpp.xmlstream.matcher.xmlmask | ||||
|  | ||||
| .. autoclass:: MatchXMLMask | ||||
|     :members: | ||||
|   | ||||
| @@ -2,7 +2,7 @@ | ||||
| Scheduler | ||||
| ========= | ||||
|  | ||||
| .. module:: slixmpp.xmlstream.scheduler | ||||
| .. module:: sleekxmpp.xmlstream.scheduler | ||||
|  | ||||
| .. autoclass:: Task | ||||
|     :members: | ||||
|   | ||||
| @@ -4,9 +4,9 @@ | ||||
| Stanza Objects | ||||
| ============== | ||||
|  | ||||
| .. module:: slixmpp.xmlstream.stanzabase | ||||
| .. module:: sleekxmpp.xmlstream.stanzabase | ||||
|  | ||||
| The :mod:`~slixmpp.xmlstream.stanzabase` module provides a wrapper for the | ||||
| The :mod:`~sleekmxpp.xmlstream.stanzabase` module provides a wrapper for the | ||||
| standard :mod:`~xml.etree.ElementTree` module that makes working with XML | ||||
| less painful. Instead of having to manually move up and down an element | ||||
| tree and insert subelements and attributes, you can interact with an object | ||||
| @@ -52,9 +52,9 @@ elements of the original XML chunk. | ||||
| .. seealso:: | ||||
|     :ref:`create-stanza-interfaces`. | ||||
|  | ||||
| Because the :mod:`~slixmpp.xmlstream.stanzabase` module was developed | ||||
| Because the :mod:`~sleekxmpp.xmlstream.stanzabase` module was developed | ||||
| as part of an `XMPP <http://xmpp.org>`_ library, these chunks of XML are | ||||
| referred to as :term:`stanzas <stanza>`, and in Slixmpp we refer to a | ||||
| referred to as :term:`stanzas <stanza>`, and in SleekXMPP we refer to a | ||||
| subclass of :class:`ElementBase` which defines the interfaces needed for | ||||
| interacting with a given :term:`stanza` a :term:`stanza object`. | ||||
|  | ||||
| @@ -72,7 +72,7 @@ plugin stanza object. Here is an example: | ||||
|  | ||||
|     <iq type="result"> | ||||
|       <query xmlns="http://jabber.org/protocol/disco#info"> | ||||
|         <identity category="client" type="bot" name="Slixmpp Bot" /> | ||||
|         <identity category="client" type="bot" name="SleekXMPP Bot" /> | ||||
|       </query> | ||||
|     </iq> | ||||
|  | ||||
| @@ -84,13 +84,13 @@ we can access the plugin as so:: | ||||
|  | ||||
|     >>> iq['disco_info'] | ||||
|     '<query xmlns="http://jabber.org/protocol/disco#info"> | ||||
|       <identity category="client" type="bot" name="Slixmpp Bot" /> | ||||
|       <identity category="client" type="bot" name="SleekXMPP Bot" /> | ||||
|     </query>' | ||||
|  | ||||
| We can then drill down through the plugin object's interfaces as desired:: | ||||
|  | ||||
|     >>> iq['disco_info']['identities'] | ||||
|     [('client', 'bot', 'Slixmpp Bot')] | ||||
|     [('client', 'bot', 'SleekXMPP Bot')] | ||||
|  | ||||
| Plugins may also add new interfaces to the parent stanza object as if they | ||||
| had been defined by the parent directly, and can also override the behaviour | ||||
| @@ -101,7 +101,7 @@ of an interface defined by the parent. | ||||
|     - :ref:`create-stanza-plugins` | ||||
|     - :ref:`create-extension-plugins` | ||||
|     - :ref:`override-parent-interfaces` | ||||
|  | ||||
|       | ||||
|  | ||||
| Registering Stanza Plugins | ||||
| -------------------------- | ||||
|   | ||||
| @@ -1,18 +1,18 @@ | ||||
| .. module:: slixmpp.xmlstream.tostring | ||||
| .. module:: sleekxmpp.xmlstream.tostring | ||||
|  | ||||
| .. _tostring: | ||||
|  | ||||
| XML Serialization | ||||
| ================= | ||||
|  | ||||
| Since the XML layer of Slixmpp is based on :mod:`~xml.etree.ElementTree`, | ||||
| Since the XML layer of SleekXMPP is based on :mod:`~xml.etree.ElementTree`, | ||||
| why not just use the built-in :func:`~xml.etree.ElementTree.tostring` | ||||
| method? The answer is that using that method produces ugly results when | ||||
| using namespaces. The :func:`tostring()` method used here intelligently | ||||
| hides namespaces when able and does not introduce excessive namespace | ||||
| prefixes:: | ||||
|  | ||||
|     >>> from slixmpp.xmlstream.tostring import tostring | ||||
|     >>> from sleekxmpp.xmlstream.tostring import tostring | ||||
|     >>> from xml.etree import cElementTree as ET | ||||
|     >>> xml = ET.fromstring('<foo xmlns="bar"><baz /></foo>') | ||||
|     >>> ET.tostring(xml) | ||||
| @@ -25,7 +25,7 @@ produce unexpected results depending on how the :func:`tostring()` method | ||||
| is invoked. For example, when sending XML on the wire, the main XMPP | ||||
| stanzas with their namespace of ``jabber:client`` will not include the | ||||
| namespace because that is already declared by the stream header. But, if | ||||
| you create a :class:`~slixmpp.stanza.message.Message` instance and dump | ||||
| you create a :class:`~sleekxmpp.stanza.message.Message` instance and dump | ||||
| it to the terminal, the ``jabber:client`` namespace will appear. | ||||
|  | ||||
| .. autofunction:: tostring | ||||
|   | ||||
| @@ -2,7 +2,9 @@ | ||||
| XML Stream | ||||
| ========== | ||||
|  | ||||
| .. module:: slixmpp.xmlstream.xmlstream | ||||
| .. module:: sleekxmpp.xmlstream.xmlstream | ||||
|  | ||||
| .. autoexception:: RestartStream | ||||
|  | ||||
| .. autoclass:: XMLStream | ||||
|     :members: | ||||
|   | ||||
| @@ -1,9 +1,9 @@ | ||||
| .. index:: XMLStream, BaseXMPP, ClientXMPP, ComponentXMPP | ||||
|  | ||||
| Slixmpp Architecture | ||||
| SleekXMPP Architecture | ||||
| ====================== | ||||
|  | ||||
| The core of Slixmpp is contained in four classes: ``XMLStream``, | ||||
| The core of SleekXMPP is contained in four classes: ``XMLStream``, | ||||
| ``BaseXMPP``, ``ClientXMPP``, and ``ComponentXMPP``. Along side this | ||||
| stack is a library for working with XML objects that eliminates most | ||||
| of the tedium of creating/manipulating XML. | ||||
| @@ -17,7 +17,7 @@ of the tedium of creating/manipulating XML. | ||||
|  | ||||
| The Foundation: XMLStream | ||||
| ------------------------- | ||||
| :class:`~slixmpp.xmlstream.xmlstream.XMLStream` is a mostly XMPP-agnostic | ||||
| :class:`~sleekxmpp.xmlstream.xmlstream.XMLStream` is a mostly XMPP-agnostic | ||||
| class whose purpose is to read and write from a bi-directional XML stream. | ||||
| It also allows for callback functions to execute when XML matching given | ||||
| patterns is received; these callbacks are also referred to as :term:`stream | ||||
| @@ -26,7 +26,7 @@ which can be triggered either manually or on a timed schedule. | ||||
|  | ||||
| The Main Threads | ||||
| ~~~~~~~~~~~~~~~~ | ||||
| :class:`~slixmpp.xmlstream.xmlstream.XMLStream` instances run using at | ||||
| :class:`~sleekxmpp.xmlstream.xmlstream.XMLStream` instances run using at | ||||
| least three background threads: the send thread, the read thread, and the | ||||
| scheduler thread. The send thread is in charge of monitoring the send queue | ||||
| and writing text to the outgoing XML stream. The read thread pulls text off | ||||
| @@ -34,7 +34,7 @@ of the incoming XML stream and stores the results in an event queue. The | ||||
| scheduler thread is used to emit events after a given period of time. | ||||
|  | ||||
| Additionally, the main event processing loop may be executed in its | ||||
| own thread if Slixmpp is being used in the background for another | ||||
| own thread if SleekXMPP is being used in the background for another | ||||
| application. | ||||
|  | ||||
| Short-lived threads may also be spawned as requested for threaded | ||||
| @@ -61,10 +61,10 @@ when this bit of XML is received (with an assumed namespace of | ||||
|    new object is determined using a map of namespaced element names to | ||||
|    classes. | ||||
|  | ||||
|    Our incoming XML is thus turned into a :class:`~slixmpp.stanza.Message` | ||||
|    Our incoming XML is thus turned into a :class:`~sleekxmpp.stanza.Message` | ||||
|    :term:`stanza object` because the namespaced element name | ||||
|    ``{jabber:client}message`` is associated with the class | ||||
|    :class:`~slixmpp.stanza.Message`. | ||||
|    :class:`~sleekxmpp.stanza.Message`. | ||||
|  | ||||
| 2. **Match stanza objects to callbacks.** | ||||
|  | ||||
| @@ -73,14 +73,14 @@ when this bit of XML is received (with an assumed namespace of | ||||
|    :term:`stanza object` is paired with a reference to the handler and | ||||
|    placed into the event queue. | ||||
|  | ||||
|    Our :class:`~slixmpp.stanza.Message` object is thus paired with the message stanza handler | ||||
|    Our :class:`~sleekxmpp.stanza.Message` object is thus paired with the message stanza handler | ||||
|    :meth:`BaseXMPP._handle_message` to create the tuple:: | ||||
|  | ||||
|        ('stanza', stanza_obj, handler) | ||||
|  | ||||
| 3. **Process the event queue.** | ||||
|  | ||||
|    The event queue is the heart of Slixmpp. Nearly every action that | ||||
|    The event queue is the heart of SleekXMPP. Nearly every action that | ||||
|    takes place is first inserted into this queue, whether that be received | ||||
|    stanzas, custom events, or scheduled events. | ||||
|  | ||||
| @@ -88,7 +88,7 @@ when this bit of XML is received (with an assumed namespace of | ||||
|    callback, the callback function is executed with the stanza as its only | ||||
|    parameter. | ||||
|  | ||||
|    .. warning:: | ||||
|    .. warning::  | ||||
|        The callback, aka :term:`stream handler`, is executed in the main event | ||||
|        processing thread. If the handler blocks, event processing will also | ||||
|        block. | ||||
| @@ -97,7 +97,7 @@ when this bit of XML is received (with an assumed namespace of | ||||
|  | ||||
|    Since a :term:`stream handler` shouldn't block, if extensive processing | ||||
|    for a stanza is required (such as needing to send and receive an | ||||
|    :class:`~slixmpp.stanza.Iq` stanza), then custom events must be used. | ||||
|    :class:`~sleekxmpp.stanza.Iq` stanza), then custom events must be used. | ||||
|    These events are not explicitly tied to the incoming XML stream and may | ||||
|    be raised at any time. Importantly, these events may be handled in their | ||||
|    own thread. | ||||
| @@ -108,6 +108,10 @@ when this bit of XML is received (with an assumed namespace of | ||||
|    handlers <event handler>`. Each stanza/handler pair is then put into the | ||||
|    event queue. | ||||
|  | ||||
|    .. note:: | ||||
|        It is possible to skip the event queue and process an event immediately | ||||
|        by using ``direct=True`` when raising the event. | ||||
|  | ||||
|    The code for :meth:`BaseXMPP._handle_message` follows this pattern, and | ||||
|    raises a ``'message'`` event:: | ||||
|  | ||||
| @@ -117,7 +121,7 @@ when this bit of XML is received (with an assumed namespace of | ||||
|    paired with an :term:`event handler`:: | ||||
|  | ||||
|        ('event', 'message', msg_copy1, custom_event_handler_1) | ||||
|        ('event', 'message', msg_copy2, custom_evetn_handler_2) | ||||
|        ('event', 'message', msg_copy2, custom_evetn_handler_2)  | ||||
|  | ||||
| 5. **Process Custom Events** | ||||
|  | ||||
| @@ -127,9 +131,9 @@ when this bit of XML is received (with an assumed namespace of | ||||
|    will be spawned for it. | ||||
|  | ||||
|    .. note:: | ||||
|        Events may be raised without needing :term:`stanza objects <stanza object>`. | ||||
|        For example, you could use ``self.event('custom', {'a': 'b'})``. | ||||
|        You don't even need any arguments: ``self.event('no_parameters')``. | ||||
|        Events may be raised without needing :term:`stanza objects <stanza object>`.  | ||||
|        For example, you could use ``self.event('custom', {'a': 'b'})``.  | ||||
|        You don't even need any arguments: ``self.event('no_parameters')``.  | ||||
|        However, every event handler MUST accept at least one argument. | ||||
|  | ||||
|    Finally, after a long trek, our message is handed off to the user's | ||||
| @@ -144,8 +148,8 @@ when this bit of XML is received (with an assumed namespace of | ||||
|  | ||||
| Raising XMPP Awareness: BaseXMPP | ||||
| -------------------------------- | ||||
| While :class:`~slixmpp.xmlstream.xmlstream.XMLStream` attempts to shy away | ||||
| from anything too XMPP specific, :class:`~slixmpp.basexmpp.BaseXMPP`'s | ||||
| While :class:`~sleekxmpp.xmlstream.xmlstream.XMLStream` attempts to shy away | ||||
| from anything too XMPP specific, :class:`~sleekxmpp.basexmpp.BaseXMPP`'s | ||||
| sole purpose is to provide foundational support for sending and receiving | ||||
| XMPP stanzas. This support includes registering the basic message, | ||||
| presence, and iq stanzas, methods for creating and sending stanzas, and | ||||
| @@ -153,14 +157,14 @@ default handlers for incoming messages and keeping track of presence | ||||
| notifications. | ||||
|  | ||||
| The plugin system for adding new XEP support is also maintained by | ||||
| :class:`~slixmpp.basexmpp.BaseXMPP`. | ||||
| :class:`~sleekxmpp.basexmpp.BaseXMPP`. | ||||
|  | ||||
| .. index:: ClientXMPP, BaseXMPP | ||||
|  | ||||
| ClientXMPP | ||||
| ---------- | ||||
| :class:`~slixmpp.clientxmpp.ClientXMPP` extends | ||||
| :class:`~slixmpp.clientxmpp.BaseXMPP` with additional logic for connecting | ||||
| :class:`~sleekxmpp.clientxmpp.ClientXMPP` extends | ||||
| :class:`~sleekxmpp.clientxmpp.BaseXMPP` with additional logic for connecting | ||||
| to an XMPP server by performing DNS lookups. It also adds support for stream | ||||
| features such as STARTTLS and SASL. | ||||
|  | ||||
| @@ -168,6 +172,6 @@ features such as STARTTLS and SASL. | ||||
|  | ||||
| ComponentXMPP | ||||
| ------------- | ||||
| :class:`~slixmpp.componentxmpp.ComponentXMPP` is only a thin layer on top of | ||||
| :class:`~slixmpp.basexmpp.BaseXMPP` that implements the component handshake | ||||
| :class:`~sleekxmpp.componentxmpp.ComponentXMPP` is only a thin layer on top of | ||||
| :class:`~sleekxmpp.basexmpp.BaseXMPP` that implements the component handshake | ||||
| protocol. | ||||
|   | ||||
							
								
								
									
										12
									
								
								docs/conf.py
									
									
									
									
									
								
							
							
						
						
									
										12
									
								
								docs/conf.py
									
									
									
									
									
								
							| @@ -1,6 +1,6 @@ | ||||
| # -*- coding: utf-8 -*- | ||||
| # | ||||
| # Slixmpp documentation build configuration file, created by | ||||
| # SleekXMPP documentation build configuration file, created by | ||||
| # sphinx-quickstart on Tue Aug  9 22:27:06 2011. | ||||
| # | ||||
| # This file is execfile()d with the current directory set to its containing dir. | ||||
| @@ -40,7 +40,7 @@ source_suffix = '.rst' | ||||
| master_doc = 'index' | ||||
|  | ||||
| # General information about the project. | ||||
| project = u'Slixmpp' | ||||
| project = u'SleekXMPP' | ||||
| copyright = u'2011, Nathan Fritz, Lance Stout' | ||||
|  | ||||
| # The version info for the project you're documenting, acts as replacement for | ||||
| @@ -105,7 +105,7 @@ html_theme = 'haiku' | ||||
|  | ||||
| # The name for this set of Sphinx documents.  If None, it defaults to | ||||
| # "<project> v<release> documentation". | ||||
| html_title = 'Slixmpp' | ||||
| html_title = 'SleekXMPP' | ||||
|  | ||||
| # A shorter title for the navigation bar.  Default is the same as html_title. | ||||
| html_short_title = '%s Documentation' % release | ||||
| @@ -168,7 +168,7 @@ html_additional_pages = { | ||||
| #html_file_suffix = None | ||||
|  | ||||
| # Output file base name for HTML help builder. | ||||
| htmlhelp_basename = 'Slixmppdoc' | ||||
| htmlhelp_basename = 'SleekXMPPdoc' | ||||
|  | ||||
|  | ||||
| # -- Options for LaTeX output -------------------------------------------------- | ||||
| @@ -182,7 +182,7 @@ htmlhelp_basename = 'Slixmppdoc' | ||||
| # Grouping the document tree into LaTeX files. List of tuples | ||||
| # (source start file, target name, title, author, documentclass [howto/manual]). | ||||
| latex_documents = [ | ||||
|   ('index', 'Slixmpp.tex', u'Slixmpp Documentation', | ||||
|   ('index', 'SleekXMPP.tex', u'SleekXMPP Documentation', | ||||
|    u'Nathan Fritz, Lance Stout', 'manual'), | ||||
| ] | ||||
|  | ||||
| @@ -215,7 +215,7 @@ latex_documents = [ | ||||
| # One entry per manual page. List of tuples | ||||
| # (source start file, name, description, authors, manual section). | ||||
| man_pages = [ | ||||
|     ('index', 'slixmpp', u'Slixmpp Documentation', | ||||
|     ('index', 'sleekxmpp', u'SleekXMPP Documentation', | ||||
|      [u'Nathan Fritz, Lance Stout'], 1) | ||||
| ] | ||||
|  | ||||
|   | ||||
| @@ -1,10 +1,10 @@ | ||||
| .. _create-plugin: | ||||
|  | ||||
| Creating a Slixmpp Plugin | ||||
| Creating a SleekXMPP Plugin | ||||
| =========================== | ||||
|  | ||||
| One of the goals of Slixmpp is to provide support for every draft or final | ||||
| XMPP extension (`XEP <http://xmpp.org/extensions/>`_). To do this, Slixmpp has a | ||||
| One of the goals of SleekXMPP is to provide support for every draft or final | ||||
| XMPP extension (`XEP <http://xmpp.org/extensions/>`_). To do this, SleekXMPP has a | ||||
| plugin mechanism for adding the functionalities required by each XEP. But even | ||||
| though plugins were made to quickly implement and prototype the official XMPP | ||||
| extensions, there is no reason you can't create your own plugin to implement | ||||
| @@ -14,11 +14,11 @@ This guide will help walk you through the steps to | ||||
| implement a rudimentary version of `XEP-0077 In-band | ||||
| Registration <http://xmpp.org/extensions/xep-0077.html>`_. In-band registration | ||||
| was implemented in example 14-6 (page 223) of `XMPP: The Definitive | ||||
| Guide <http://oreilly.com/catalog/9780596521271>`_ because there was no Slixmpp | ||||
| Guide <http://oreilly.com/catalog/9780596521271>`_ because there was no SleekXMPP | ||||
| plugin for XEP-0077 at the time of writing. We will partially fix that issue | ||||
| here by turning the example implementation from *XMPP: The Definitive Guide* | ||||
| into a plugin. Again, note that this will not a complete implementation, and a | ||||
| different, more robust, official plugin for XEP-0077 may be added to Slixmpp | ||||
| different, more robust, official plugin for XEP-0077 may be added to SleekXMPP | ||||
| in the future. | ||||
|  | ||||
| .. note:: | ||||
| @@ -29,10 +29,10 @@ in the future. | ||||
|  | ||||
| First Steps | ||||
| ----------- | ||||
| Every plugin inherits from the class :mod:`BasePlugin <slixmpp.plugins.base.BasePlugin`, | ||||
| Every plugin inherits from the class :mod:`base_plugin <sleekxmpp.plugins.base.base_plugin>`, | ||||
| and must include a ``plugin_init`` method. While the | ||||
| plugins distributed with Slixmpp must be placed in the plugins directory | ||||
| ``slixmpp/plugins`` to be loaded, custom plugins may be loaded from any | ||||
| plugins distributed with SleekXMPP must be placed in the plugins directory | ||||
| ``sleekxmpp/plugins`` to be loaded, custom plugins may be loaded from any | ||||
| module. To do so, use the following form when registering the plugin: | ||||
|  | ||||
| .. code-block:: python | ||||
| @@ -40,9 +40,9 @@ module. To do so, use the following form when registering the plugin: | ||||
|     self.register_plugin('myplugin', module=mod_containing_my_plugin) | ||||
|  | ||||
| The plugin name must be the same as the plugin's class name. | ||||
|  | ||||
|   | ||||
| Now, we can open our favorite text editors and create ``xep_0077.py`` in | ||||
| ``Slixmpp/slixmpp/plugins``. We want to do some basic house-keeping and | ||||
| ``SleekXMPP/sleekxmpp/plugins``. We want to do some basic house-keeping and | ||||
| declare the name and description of the XEP we are implementing. If you | ||||
| are creating your own custom plugin, you don't need to include the ``xep`` | ||||
| attribute. | ||||
| @@ -50,15 +50,15 @@ attribute. | ||||
| .. code-block:: python | ||||
|  | ||||
|     """ | ||||
|     Creating a Slixmpp Plugin | ||||
|     Creating a SleekXMPP Plugin | ||||
|  | ||||
|     This is a minimal implementation of XEP-0077 to serve | ||||
|     as a tutorial for creating Slixmpp plugins. | ||||
|     as a tutorial for creating SleekXMPP plugins. | ||||
|     """ | ||||
|  | ||||
|     from slixmpp.plugins.base import BasePlugin | ||||
|     from sleekxmpp.plugins.base import base_plugin | ||||
|  | ||||
|     class xep_0077(BasePlugin): | ||||
|     class xep_0077(base_plugin): | ||||
|         """ | ||||
|         XEP-0077 In-Band Registration | ||||
|         """ | ||||
| @@ -68,7 +68,7 @@ attribute. | ||||
|             self.xep = "0077" | ||||
|  | ||||
| Now that we have a basic plugin, we need to edit | ||||
| ``slixmpp/plugins/__init__.py`` to include our new plugin by adding | ||||
| ``sleekxmpp/plugins/__init__.py`` to include our new plugin by adding | ||||
| ``'xep_0077'`` to the ``__all__`` declaration. | ||||
|  | ||||
| Interacting with Other Plugins | ||||
| @@ -81,20 +81,20 @@ call in a method named ``post_init`` which will be called once the plugin has | ||||
| been loaded; by doing so we advertise that we can do registrations only after we | ||||
| finish activating the plugin. | ||||
|  | ||||
| The ``post_init`` method needs to call ``BasePlugin.post_init(self)`` | ||||
| The ``post_init`` method needs to call ``base_plugin.post_init(self)`` | ||||
| which will mark that ``post_init`` has been called for the plugin. Once the | ||||
| Slixmpp object begins processing, ``post_init`` will be called on any plugins | ||||
| SleekXMPP object begins processing, ``post_init`` will be called on any plugins | ||||
| that have not already run ``post_init``. This allows you to register plugins and | ||||
| their dependencies without needing to worry about the order in which you do so. | ||||
|  | ||||
| **Note:** by adding this call we have introduced a dependency on the XEP-0030 | ||||
| plugin. Be sure to register ``'xep_0030'`` as well as ``'xep_0077'``. Slixmpp | ||||
| plugin. Be sure to register ``'xep_0030'`` as well as ``'xep_0077'``. SleekXMPP | ||||
| does not automatically load plugin dependencies for you. | ||||
|  | ||||
| .. code-block:: python | ||||
|  | ||||
|     def post_init(self): | ||||
|         BasePlugin.post_init(self) | ||||
|         base_plugin.post_init(self) | ||||
|         self.xmpp['xep_0030'].add_feature("jabber:iq:register") | ||||
|  | ||||
| Creating Custom Stanza Objects | ||||
| @@ -141,7 +141,7 @@ behaviour: | ||||
|     **Note:** The accessor methods currently use title case, and not camel case. | ||||
|     Thus if you need to access an item named ``"methodName"`` you will need to | ||||
|     use ``getMethodname``. This naming convention might change to full camel | ||||
|     case in a future version of Slixmpp. | ||||
|     case in a future version of SleekXMPP. | ||||
|  | ||||
| * ``sub_interfaces`` | ||||
|     A subset of ``interfaces``, but these keys map to the text of any | ||||
| @@ -156,8 +156,8 @@ behaviour: | ||||
|  | ||||
| .. code-block:: python | ||||
|  | ||||
|     from slixmpp.xmlstream import ElementBase, ET, JID, register_stanza_plugin | ||||
|     from slixmpp import Iq | ||||
|     from sleekxmpp.xmlstream import ElementBase, ET, JID, register_stanza_plugin | ||||
|     from sleekxmpp import Iq | ||||
|  | ||||
|     class Registration(ElementBase): | ||||
|         namespace = 'jabber:iq:register' | ||||
| @@ -209,7 +209,7 @@ registration to our ``plugin_init`` method. | ||||
|  | ||||
| Also, we need to associate our ``Registration`` class with IQ stanzas; | ||||
| that requires the use of the ``register_stanza_plugin`` function (in | ||||
| ``slixmpp.xmlstream.stanzabase``) which takes the class of a parent stanza | ||||
| ``sleekxmpp.xmlstream.stanzabase``) which takes the class of a parent stanza | ||||
| type followed by the substanza type. In our case, the parent stanza is an IQ | ||||
| stanza, and the substanza is our registration query. | ||||
|  | ||||
| @@ -222,7 +222,7 @@ handler function to process registration requests. | ||||
|         self.description = "In-Band Registration" | ||||
|         self.xep = "0077" | ||||
|  | ||||
|         self.xmpp.register_handler( | ||||
|         self.xmpp.registerHandler( | ||||
|           Callback('In-Band Registration', | ||||
|             MatchXPath('{%s}iq/{jabber:iq:register}query' % self.xmpp.default_ns), | ||||
|             self.__handleRegistration)) | ||||
| @@ -347,7 +347,7 @@ method ``setForm`` which will take the names of the fields we wish to include. | ||||
|                 # Add a blank field | ||||
|                 reg.addField(field) | ||||
|  | ||||
|         iq.reply().set_payload(reg.xml) | ||||
|         iq.reply().setPayload(reg.xml) | ||||
|         iq.send() | ||||
|  | ||||
| Note how we are able to access our ``Registration`` stanza object with | ||||
| @@ -421,7 +421,7 @@ to the IQ reply. | ||||
|     ... | ||||
|  | ||||
|     def _sendError(self, iq, code, error_type, name, text=''): | ||||
|         iq.reply().set_payload(iq['register'].xml) | ||||
|         iq.reply().setPayload(iq['register'].xml) | ||||
|         iq.error() | ||||
|         iq['error']['code'] = code | ||||
|         iq['error']['type'] = error_type | ||||
| @@ -464,7 +464,7 @@ component examples below for how to respond to this event. | ||||
|             if self.backend.register(iq['from'].bare, iq['register']): | ||||
|                 # Successful registration | ||||
|                 self.xmpp.event('registered_user', iq) | ||||
|                 iq.reply().set_payload(iq['register'].xml) | ||||
|                 iq.reply().setPayload(iq['register'].xml) | ||||
|                 iq.send() | ||||
|             else: | ||||
|                 # Conflicting registration | ||||
| @@ -484,15 +484,15 @@ and that we specified the form fields we wish to use with | ||||
|  | ||||
| .. code-block:: python | ||||
|  | ||||
|     import slixmpp.componentxmpp | ||||
|     import sleekxmpp.componentxmpp | ||||
|  | ||||
|     class Example(slixmpp.componentxmpp.ComponentXMPP): | ||||
|     class Example(sleekxmpp.componentxmpp.ComponentXMPP): | ||||
|  | ||||
|         def __init__(self, jid, password): | ||||
|             slixmpp.componentxmpp.ComponentXMPP.__init__(self, jid, password, 'localhost', 8888) | ||||
|             sleekxmpp.componentxmpp.ComponentXMPP.__init__(self, jid, password, 'localhost', 8888) | ||||
|  | ||||
|             self.register_plugin('xep_0030') | ||||
|             self.register_plugin('xep_0077') | ||||
|             self.registerPlugin('xep_0030') | ||||
|             self.registerPlugin('xep_0077') | ||||
|             self.plugin['xep_0077'].setForm('username', 'password') | ||||
|  | ||||
|             self.add_event_handler("registered_user", self.reg) | ||||
| @@ -500,11 +500,11 @@ and that we specified the form fields we wish to use with | ||||
|  | ||||
|         def reg(self, iq): | ||||
|             msg = "Welcome! %s" % iq['register']['username'] | ||||
|             self.send_message(iq['from'], msg, mfrom=self.fulljid) | ||||
|             self.sendMessage(iq['from'], msg, mfrom=self.fulljid) | ||||
|  | ||||
|         def unreg(self, iq): | ||||
|             msg = "Bye! %s" % iq['register']['username'] | ||||
|             self.send_message(iq['from'], msg, mfrom=self.fulljid) | ||||
|             self.sendMessage(iq['from'], msg, mfrom=self.fulljid) | ||||
|  | ||||
| **Congratulations!** We now have a basic, functioning implementation of | ||||
| XEP-0077. | ||||
| @@ -517,17 +517,17 @@ with some additional registration fields implemented. | ||||
| .. code-block:: python | ||||
|  | ||||
|     """ | ||||
|     Creating a Slixmpp Plugin | ||||
|     Creating a SleekXMPP Plugin | ||||
|  | ||||
|     This is a minimal implementation of XEP-0077 to serve | ||||
|     as a tutorial for creating Slixmpp plugins. | ||||
|     as a tutorial for creating SleekXMPP plugins. | ||||
|     """ | ||||
|  | ||||
|     from slixmpp.plugins.base import BasePlugin | ||||
|     from slixmpp.xmlstream.handler.callback import Callback | ||||
|     from slixmpp.xmlstream.matcher.xpath import MatchXPath | ||||
|     from slixmpp.xmlstream import ElementBase, ET, JID, register_stanza_plugin | ||||
|     from slixmpp import Iq | ||||
|     from sleekxmpp.plugins.base import base_plugin | ||||
|     from sleekxmpp.xmlstream.handler.callback import Callback | ||||
|     from sleekxmpp.xmlstream.matcher.xpath import MatchXPath | ||||
|     from sleekxmpp.xmlstream import ElementBase, ET, JID, register_stanza_plugin | ||||
|     from sleekxmpp import Iq | ||||
|     import copy | ||||
|  | ||||
|  | ||||
| @@ -535,9 +535,9 @@ with some additional registration fields implemented. | ||||
|         namespace = 'jabber:iq:register' | ||||
|         name = 'query' | ||||
|         plugin_attrib = 'register' | ||||
|         interfaces = set(('username', 'password', 'email', 'nick', 'name', | ||||
|                           'first', 'last', 'address', 'city', 'state', 'zip', | ||||
|                           'phone', 'url', 'date', 'misc', 'text', 'key', | ||||
|         interfaces = set(('username', 'password', 'email', 'nick', 'name',  | ||||
|                           'first', 'last', 'address', 'city', 'state', 'zip',  | ||||
|                           'phone', 'url', 'date', 'misc', 'text', 'key',  | ||||
|                           'registered', 'remove', 'instructions')) | ||||
|         sub_interfaces = interfaces | ||||
|  | ||||
| @@ -589,7 +589,7 @@ with some additional registration fields implemented. | ||||
|         def unregister(self, jid): | ||||
|             del self.users[jid] | ||||
|  | ||||
|     class xep_0077(BasePlugin): | ||||
|     class xep_0077(base_plugin): | ||||
|         """ | ||||
|         XEP-0077 In-Band Registration | ||||
|         """ | ||||
| @@ -601,14 +601,14 @@ with some additional registration fields implemented. | ||||
|             self.form_instructions = "" | ||||
|             self.backend = UserStore() | ||||
|  | ||||
|             self.xmpp.register_handler( | ||||
|             self.xmpp.registerHandler( | ||||
|                 Callback('In-Band Registration', | ||||
|                          MatchXPath('{%s}iq/{jabber:iq:register}query' % self.xmpp.default_ns), | ||||
|                          self.__handleRegistration)) | ||||
|             register_stanza_plugin(Iq, Registration) | ||||
|  | ||||
|         def post_init(self): | ||||
|             BasePlugin.post_init(self) | ||||
|             base_plugin.post_init(self) | ||||
|             self.xmpp['xep_0030'].add_feature("jabber:iq:register") | ||||
|  | ||||
|         def __handleRegistration(self, iq): | ||||
| @@ -634,7 +634,7 @@ with some additional registration fields implemented. | ||||
|                 if self.backend.register(iq['from'].bare, iq['register']): | ||||
|                     # Successful registration | ||||
|                     self.xmpp.event('registered_user', iq) | ||||
|                     iq.reply().set_payload(iq['register'].xml) | ||||
|                     iq.reply().setPayload(iq['register'].xml) | ||||
|                     iq.send() | ||||
|                 else: | ||||
|                     # Conflicting registration | ||||
| @@ -666,11 +666,11 @@ with some additional registration fields implemented. | ||||
|                     # Add a blank field | ||||
|                     reg.addField(field) | ||||
|  | ||||
|             iq.reply().set_payload(reg.xml) | ||||
|             iq.reply().setPayload(reg.xml) | ||||
|             iq.send() | ||||
|  | ||||
|         def _sendError(self, iq, code, error_type, name, text=''): | ||||
|             iq.reply().set_payload(iq['register'].xml) | ||||
|             iq.reply().setPayload(iq['register'].xml) | ||||
|             iq.error() | ||||
|             iq['error']['code'] = code | ||||
|             iq['error']['type'] = error_type | ||||
|   | ||||
| @@ -6,33 +6,27 @@ Event Index | ||||
|  | ||||
|     connected | ||||
|         - **Data:** ``{}`` | ||||
|         - **Source:** :py:class:`~slixmpp.xmlstream.XMLstream` | ||||
|         - **Source:** :py:class:`~sleekxmpp.clientxmpp.ClientXMPP` | ||||
|  | ||||
|         Signal that a connection has been made with the XMPP server, but a session | ||||
|         has not yet been established. | ||||
|  | ||||
|     connection_failed | ||||
|         - **Data:** ``{}`` or ``Failure Stanza`` if available | ||||
|         - **Source:** :py:class:`~slixmpp.xmlstream.XMLstream` | ||||
|  | ||||
|         Signal that a connection can not be established after number of attempts. | ||||
|  | ||||
|     changed_status | ||||
|         - **Data:** :py:class:`~slixmpp.Presence` | ||||
|         - **Source:** :py:class:`~slixmpp.roster.item.RosterItem` | ||||
|         - **Data:** :py:class:`~sleekxmpp.Presence` | ||||
|         - **Source:** :py:class:`~sleekxmpp.BaseXMPP` | ||||
|  | ||||
|         Triggered when a presence stanza is received from a JID with a show type | ||||
|         different than the last presence stanza from the same JID. | ||||
|  | ||||
|     changed_subscription | ||||
|         - **Data:** :py:class:`~slixmpp.Presence` | ||||
|         - **Source:** :py:class:`~slixmpp.BaseXMPP` | ||||
|         - **Data:** :py:class:`~sleekxmpp.Presence` | ||||
|         - **Source:** :py:class:`~sleekxmpp.BaseXMPP` | ||||
|  | ||||
|         Triggered whenever a presence stanza with a type of ``subscribe``, | ||||
|         ``subscribed``, ``unsubscribe``, or ``unsubscribed`` is received. | ||||
|  | ||||
|         Note that if the values ``xmpp.auto_authorize`` and ``xmpp.auto_subscribe`` | ||||
|         are set to ``True`` or ``False``, and not ``None``, then Slixmpp will | ||||
|         are set to ``True`` or ``False``, and not ``None``, then SleekXMPP will | ||||
|         either accept or reject all subscription requests before your event handlers | ||||
|         are called. Set these values to ``None`` if you wish to make more complex | ||||
|         subscription decisions. | ||||
| @@ -58,21 +52,21 @@ Event Index | ||||
|         - **Source:** | ||||
|  | ||||
|     disco_info | ||||
|         - **Data:** :py:class:`~slixmpp.plugins.xep_0030.stanza.DiscoInfo` | ||||
|         - **Source:** :py:class:`~slixmpp.plugins.xep_0030.disco.xep_0030` | ||||
|  | ||||
|         - **Data:** :py:class:`~sleekxmpp.plugins.xep_0030.stanza.DiscoInfo` | ||||
|         - **Source:** :py:class:`~sleekxmpp.plugins.xep_0030.disco.xep_0030` | ||||
|          | ||||
|         Triggered whenever a ``disco#info`` result stanza is received. | ||||
|  | ||||
|     disco_items | ||||
|         - **Data:** :py:class:`~slixmpp.plugins.xep_0030.stanza.DiscoItems` | ||||
|         - **Source:** :py:class:`~slixmpp.plugins.xep_0030.disco.xep_0030` | ||||
|  | ||||
|         - **Data:** :py:class:`~sleekxmpp.plugins.xep_0030.stanza.DiscoItems` | ||||
|         - **Source:** :py:class:`~sleekxmpp.plugins.xep_0030.disco.xep_0030` | ||||
|          | ||||
|         Triggered whenever a ``disco#items`` result stanza is received. | ||||
|  | ||||
|     disconnected | ||||
|         - **Data:** ``{}`` | ||||
|         - **Source:** :py:class:`~slixmpp.xmlstream.XMLstream` | ||||
|  | ||||
|         - **Source:** :py:class:`~sleekxmpp.ClientXMPP` | ||||
|          | ||||
|         Signal that the connection with the XMPP server has been lost. | ||||
|  | ||||
|     entity_time | ||||
| @@ -81,34 +75,34 @@ Event Index | ||||
|  | ||||
|     failed_auth | ||||
|         - **Data:** ``{}`` | ||||
|         - **Source:** :py:class:`~slixmpp.ClientXMPP`, :py:class:`~slixmpp.plugins.xep_0078.xep_0078` | ||||
|         - **Source:** :py:class:`~sleekxmpp.ClientXMPP`, :py:class:`~sleekxmpp.plugins.xep_0078.xep_0078` | ||||
|  | ||||
|         Signal that the server has rejected the provided login credentials. | ||||
|  | ||||
|     gmail_notify | ||||
|         - **Data:** ``{}`` | ||||
|         - **Source:** :py:class:`~slixmpp.plugins.gmail_notify.gmail_notify` | ||||
|  | ||||
|         - **Source:** :py:class:`~sleekxmpp.plugins.gmail_notify.gmail_notify` | ||||
|          | ||||
|         Signal that there are unread emails for the Gmail account associated with the current XMPP account. | ||||
|  | ||||
|     gmail_messages | ||||
|         - **Data:** :py:class:`~slixmpp.Iq` | ||||
|         - **Source:** :py:class:`~slixmpp.plugins.gmail_notify.gmail_notify` | ||||
|  | ||||
|         - **Data:** :py:class:`~sleekxmpp.Iq` | ||||
|         - **Source:** :py:class:`~sleekxmpp.plugins.gmail_notify.gmail_notify` | ||||
|          | ||||
|         Signal that there are unread emails for the Gmail account associated with the current XMPP account. | ||||
|  | ||||
|     got_online | ||||
|         - **Data:** :py:class:`~slixmpp.Presence` | ||||
|         - **Source:** :py:class:`~slixmpp.roster.item.RosterItem` | ||||
|  | ||||
|         - **Data:** :py:class:`~sleekxmpp.Presence` | ||||
|         - **Source:** :py:class:`~sleekxmpp.BaseXMPP` | ||||
|          | ||||
|         If a presence stanza is received from a JID which was previously marked as | ||||
|         offline, and the presence has a show type of '``chat``', '``dnd``', '``away``', | ||||
|         or '``xa``', then this event is triggered as well. | ||||
|  | ||||
|     got_offline | ||||
|         - **Data:** :py:class:`~slixmpp.Presence` | ||||
|         - **Source:** :py:class:`~slixmpp.roster.item.RosterItem` | ||||
|  | ||||
|         - **Data:** :py:class:`~sleekxmpp.Presence` | ||||
|         - **Source:** :py:class:`~sleekxmpp.BaseXMPP` | ||||
|          | ||||
|         Signal that an unavailable presence stanza has been received from a JID. | ||||
|  | ||||
|     groupchat_invite | ||||
| @@ -116,25 +110,25 @@ Event Index | ||||
|         - **Source:** | ||||
|  | ||||
|     groupchat_direct_invite | ||||
|         - **Data:** :py:class:`~slixmpp.Message` | ||||
|         - **Source:** :py:class:`~slixmpp.plugins.xep_0249.direct` | ||||
|         - **Data:** :py:class:`~sleekxmpp.Message`  | ||||
|         - **Source:** :py:class:`~sleekxmpp.plugins.xep_0249.direct` | ||||
|  | ||||
|     groupchat_message | ||||
|         - **Data:** :py:class:`~slixmpp.Message` | ||||
|         - **Source:** :py:class:`~slixmpp.plugins.xep_0045.xep_0045` | ||||
|  | ||||
|         - **Data:** :py:class:`~sleekxmpp.Message` | ||||
|         - **Source:** :py:class:`~sleekxmpp.plugins.xep_0045.xep_0045` | ||||
|          | ||||
|         Triggered whenever a message is received from a multi-user chat room. | ||||
|  | ||||
|     groupchat_presence | ||||
|         - **Data:** :py:class:`~slixmpp.Presence` | ||||
|         - **Source:** :py:class:`~slixmpp.plugins.xep_0045.xep_0045` | ||||
|  | ||||
|         - **Data:** :py:class:`~sleekxmpp.Presence` | ||||
|         - **Source:** :py:class:`~sleekxmpp.plugins.xep_0045.xep_0045` | ||||
|          | ||||
|         Triggered whenever a presence stanza is received from a user in a multi-user chat room. | ||||
|  | ||||
|     groupchat_subject | ||||
|         - **Data:** :py:class:`~slixmpp.Message` | ||||
|         - **Source:** :py:class:`~slixmpp.plugins.xep_0045.xep_0045` | ||||
|  | ||||
|         - **Data:** :py:class:`~sleekxmpp.Message` | ||||
|         - **Source:** :py:class:`~sleekxmpp.plugins.xep_0045.xep_0045` | ||||
|          | ||||
|         Triggered whenever the subject of a multi-user chat room is changed, or announced when joining a room. | ||||
|  | ||||
|     killed | ||||
| @@ -146,25 +140,25 @@ Event Index | ||||
|         - **Source:** | ||||
|  | ||||
|     message | ||||
|         - **Data:** :py:class:`~slixmpp.Message` | ||||
|         - **Source:** :py:class:`BaseXMPP <slixmpp.BaseXMPP>` | ||||
|  | ||||
|         - **Data:** :py:class:`~sleekxmpp.Message` | ||||
|         - **Source:** :py:class:`BaseXMPP <sleekxmpp.BaseXMPP>` | ||||
|          | ||||
|         Makes the contents of message stanzas available whenever one is received. Be | ||||
|         sure to check the message type in order to handle error messages. | ||||
|  | ||||
|     message_form | ||||
|         - **Data:** :py:class:`~slixmpp.plugins.xep_0004.Form` | ||||
|         - **Source:** :py:class:`~slixmpp.plugins.xep_0004.xep_0004` | ||||
|  | ||||
|         - **Data:** :py:class:`~sleekxmpp.plugins.xep_0004.Form`  | ||||
|         - **Source:** :py:class:`~sleekxmpp.plugins.xep_0004.xep_0004`  | ||||
|          | ||||
|         Currently the same as :term:`message_xform`. | ||||
|  | ||||
|     message_xform | ||||
|         - **Data:** :py:class:`~slixmpp.plugins.xep_0004.Form` | ||||
|         - **Source:** :py:class:`~slixmpp.plugins.xep_0004.xep_0004` | ||||
|  | ||||
|         - **Data:** :py:class:`~sleekxmpp.plugins.xep_0004.Form`  | ||||
|         - **Source:** :py:class:`~sleekxmpp.plugins.xep_0004.xep_0004`  | ||||
|          | ||||
|         Triggered whenever a data form is received inside a message. | ||||
|  | ||||
|     muc::[room]::got_offline | ||||
|     mucc::[room]::got_offline | ||||
|         - **Data:** | ||||
|         - **Source:** | ||||
|  | ||||
| @@ -181,74 +175,76 @@ Event Index | ||||
|         - **Source:** | ||||
|  | ||||
|     presence_available | ||||
|         - **Data:** :py:class:`~slixmpp.Presence` | ||||
|         - **Source:** :py:class:`~slixmpp.BaseXMPP` | ||||
|  | ||||
|         - **Data:** :py:class:`~sleekxmpp.Presence` | ||||
|         - **Source:** :py:class:`~sleekxmpp.BaseXMPP` | ||||
|          | ||||
|         A presence stanza with a type of '``available``' is received. | ||||
|  | ||||
|     presence_error | ||||
|         - **Data:** :py:class:`~slixmpp.Presence` | ||||
|         - **Source:** :py:class:`~slixmpp.BaseXMPP` | ||||
|  | ||||
|         - **Data:** :py:class:`~sleekxmpp.Presence` | ||||
|         - **Source:** :py:class:`~sleekxmpp.BaseXMPP` | ||||
|          | ||||
|         A presence stanza with a type of '``error``' is received. | ||||
|  | ||||
|     presence_form | ||||
|         - **Data:** :py:class:`~slixmpp.plugins.xep_0004.Form` | ||||
|         - **Source:** :py:class:`~slixmpp.plugins.xep_0004.xep_0004` | ||||
|  | ||||
|         - **Data:** :py:class:`~sleekxmpp.plugins.xep_0004.Form`  | ||||
|         - **Source:** :py:class:`~sleekxmpp.plugins.xep_0004.xep_0004`  | ||||
|          | ||||
|         This event is present in the XEP-0004 plugin code, but is currently not used. | ||||
|  | ||||
|     presence_probe | ||||
|         - **Data:** :py:class:`~slixmpp.Presence` | ||||
|         - **Source:** :py:class:`~slixmpp.BaseXMPP` | ||||
|  | ||||
|         - **Data:** :py:class:`~sleekxmpp.Presence` | ||||
|         - **Source:** :py:class:`~sleekxmpp.BaseXMPP` | ||||
|          | ||||
|         A presence stanza with a type of '``probe``' is received. | ||||
|  | ||||
|     presence_subscribe | ||||
|         - **Data:** :py:class:`~slixmpp.Presence` | ||||
|         - **Source:** :py:class:`~slixmpp.BaseXMPP` | ||||
|  | ||||
|         - **Data:** :py:class:`~sleekxmpp.Presence` | ||||
|         - **Source:** :py:class:`~sleekxmpp.BaseXMPP` | ||||
|          | ||||
|         A presence stanza with a type of '``subscribe``' is received. | ||||
|  | ||||
|     presence_subscribed | ||||
|         - **Data:** :py:class:`~slixmpp.Presence` | ||||
|         - **Source:** :py:class:`~slixmpp.BaseXMPP` | ||||
|  | ||||
|         - **Data:** :py:class:`~sleekxmpp.Presence` | ||||
|         - **Source:** :py:class:`~sleekxmpp.BaseXMPP` | ||||
|          | ||||
|         A presence stanza with a type of '``subscribed``' is received. | ||||
|  | ||||
|     presence_unavailable | ||||
|         - **Data:** :py:class:`~slixmpp.Presence` | ||||
|         - **Source:** :py:class:`~slixmpp.BaseXMPP` | ||||
|  | ||||
|         - **Data:** :py:class:`~sleekxmpp.Presence` | ||||
|         - **Source:** :py:class:`~sleekxmpp.BaseXMPP` | ||||
|          | ||||
|         A presence stanza with a type of '``unavailable``' is received. | ||||
|  | ||||
|     presence_unsubscribe | ||||
|         - **Data:** :py:class:`~slixmpp.Presence` | ||||
|         - **Source:** :py:class:`~slixmpp.BaseXMPP` | ||||
|  | ||||
|         - **Data:** :py:class:`~sleekxmpp.Presence` | ||||
|         - **Source:** :py:class:`~sleekxmpp.BaseXMPP` | ||||
|          | ||||
|         A presence stanza with a type of '``unsubscribe``' is received. | ||||
|  | ||||
|     presence_unsubscribed | ||||
|         - **Data:** :py:class:`~slixmpp.Presence` | ||||
|         - **Source:** :py:class:`~slixmpp.BaseXMPP` | ||||
|  | ||||
|         - **Data:** :py:class:`~sleekxmpp.Presence` | ||||
|         - **Source:** :py:class:`~sleekxmpp.BaseXMPP` | ||||
|          | ||||
|         A presence stanza with a type of '``unsubscribed``' is received. | ||||
|  | ||||
|     roster_update | ||||
|         - **Data:** :py:class:`~slixmpp.stanza.Roster` | ||||
|         - **Source:** :py:class:`~slixmpp.ClientXMPP` | ||||
|  | ||||
|         - **Data:** :py:class:`~sleekxmpp.stanza.Roster`  | ||||
|         - **Source:** :py:class:`~sleekxmpp.ClientXMPP`  | ||||
|          | ||||
|         An IQ result containing roster entries is received. | ||||
|  | ||||
|     sent_presence | ||||
|         - **Data:** ``{}`` | ||||
|         - **Source:** :py:class:`~slixmpp.roster.multi.Roster` | ||||
|  | ||||
|         - **Source:** :py:class:`BaseXMPP <sleekxmpp.BaseXMPP>` | ||||
|          | ||||
|         Signal that an initial presence stanza has been written to the XML stream. | ||||
|  | ||||
|     session_end | ||||
|         - **Data:** ``{}`` | ||||
|         - **Source:** :py:class:`~slixmpp.xmlstream.XMLstream` | ||||
|         - **Source:** :py:class:`ClientXMPP <sleekxmpp.ClientXMPP>`,  | ||||
|           :py:class:`ComponentXMPP <sleekxmpp.ComponentXMPP>` | ||||
|           :py:class:`XEP-0078 <sleekxmpp.plugins.xep_0078>` | ||||
|  | ||||
|         Signal that a connection to the XMPP server has been lost and the current | ||||
|         stream session has ended. Currently equivalent to :term:`disconnected`, but | ||||
| @@ -260,16 +256,16 @@ Event Index | ||||
|  | ||||
|     session_start | ||||
|         - **Data:** ``{}`` | ||||
|         - **Source:** :py:class:`ClientXMPP <slixmpp.ClientXMPP>`, | ||||
|           :py:class:`ComponentXMPP <slixmpp.ComponentXMPP>` | ||||
|           :py:class:`XEP-0078 <slixmpp.plugins.xep_0078>` | ||||
|         - **Source:** :py:class:`ClientXMPP <sleekxmpp.ClientXMPP>`,  | ||||
|           :py:class:`ComponentXMPP <sleekxmpp.ComponentXMPP>` | ||||
|           :py:class:`XEP-0078 <sleekxmpp.plugins.xep_0078>` | ||||
|  | ||||
|         Signal that a connection to the XMPP server has been made and a session has been established. | ||||
|  | ||||
|     socket_error | ||||
|         - **Data:** ``Socket`` exception object | ||||
|         - **Source:** :py:class:`~slixmpp.xmlstream.XMLstream` | ||||
|         - **Data:** ``Socket`` exception object  | ||||
|         - **Source:** :py:class:`~sleekxmpp.xmlstream.XMLstream` | ||||
|  | ||||
|     stream_error | ||||
|         - **Data:** :py:class:`~slixmpp.stanza.StreamError` | ||||
|         - **Source:** :py:class:`~slixmpp.BaseXMPP` | ||||
|         - **Data:** :py:class:`~sleekxmpp.stanza.StreamError` | ||||
|         - **Source:** :py:class:`~sleekxmpp.BaseXMPP` | ||||
|   | ||||
| @@ -5,24 +5,24 @@ Create and Run a Server Component | ||||
| ================================= | ||||
|  | ||||
| .. note:: | ||||
|  | ||||
|      | ||||
|     If you have any issues working through this quickstart guide | ||||
|     or the other tutorials here, please either send a message to the | ||||
|     `mailing list <http://groups.google.com/group/slixmpp-discussion>`_ | ||||
|     `mailing list <http://groups.google.com/group/sleekxmpp-discussion>`_ | ||||
|     or join the chat room at `sleek@conference.jabber.org | ||||
|     <xmpp:sleek@conference.jabber.org?join>`_. | ||||
|  | ||||
| If you have not yet installed Slixmpp, do so now by either checking out a version | ||||
| from `Github <http://github.com/fritzy/Slixmpp>`_, or installing it using ``pip`` | ||||
| If you have not yet installed SleekXMPP, do so now by either checking out a version | ||||
| from `Github <http://github.com/fritzy/SleekXMPP>`_, or installing it using ``pip`` | ||||
| or ``easy_install``. | ||||
|  | ||||
| .. code-block:: sh | ||||
|  | ||||
|     pip install slixmpp  # Or: easy_install slixmpp | ||||
|     pip install sleekxmpp  # Or: easy_install sleekxmpp | ||||
|  | ||||
|  | ||||
| Many XMPP applications eventually graduate to requiring to run as a server | ||||
| component in order to meet scalability requirements. To demonstrate how to | ||||
| Many XMPP applications eventually graduate to requiring to run as a server  | ||||
| component in order to meet scalability requirements. To demonstrate how to  | ||||
| turn an XMPP client bot into a component, we'll turn the echobot example | ||||
| (:ref:`echobot`) into a component version. | ||||
|  | ||||
| @@ -30,7 +30,7 @@ The first difference is that we will add an additional import statement: | ||||
|  | ||||
| .. code-block:: python | ||||
|  | ||||
|     from slixmpp.componentxmpp import ComponentXMPP | ||||
|     from sleekxmpp.componentxmpp import ComponentXMPP | ||||
|  | ||||
| Likewise, we will change the bot's class definition to match: | ||||
|  | ||||
| @@ -48,7 +48,7 @@ a MUC component, the following could be used: | ||||
|  | ||||
| .. code-block:: python | ||||
|  | ||||
|     muc = ComponentXMPP('muc.slixmpp.com', '******', 'slixmpp.com', 5555) | ||||
|     muc = ComponentXMPP('muc.sleekxmpp.com', '******', 'sleekxmpp.com', 5555) | ||||
|  | ||||
| .. note:: | ||||
|  | ||||
| @@ -62,10 +62,10 @@ with presence. | ||||
| The other, main difference with components is that the | ||||
| ``'from'`` value for every stanza must be explicitly set, since | ||||
| components may send stanzas from multiple JIDs. To do so, | ||||
| the :meth:`~slixmpp.basexmpp.BaseXMPP.send_message()` and | ||||
| :meth:`~slixmpp.basexmpp.BaseXMPP.send_presence()` accept the parameters | ||||
| the :meth:`~sleekxmpp.basexmpp.BaseXMPP.send_message()` and | ||||
| :meth:`~sleekxmpp.basexmpp.BaseXMPP.send_presence()` accept the parameters | ||||
| ``mfrom`` and ``pfrom``, respectively. For any method that uses | ||||
| :class:`~slixmpp.stanza.iq.Iq` stanzas, ``ifrom`` may be used. | ||||
| :class:`~sleekxmpp.stanza.iq.Iq` stanzas, ``ifrom`` may be used. | ||||
|  | ||||
|  | ||||
| Final Product | ||||
|   | ||||
| @@ -1,24 +1,24 @@ | ||||
| .. _echobot: | ||||
|  | ||||
| =============================== | ||||
| Slixmpp Quickstart - Echo Bot | ||||
| SleekXMPP Quickstart - Echo Bot | ||||
| =============================== | ||||
|  | ||||
| .. note:: | ||||
|  | ||||
|      | ||||
|     If you have any issues working through this quickstart guide | ||||
|     or the other tutorials here, please either send a message to the | ||||
|     `mailing list <http://groups.google.com/group/slixmpp-discussion>`_ | ||||
|     `mailing list <http://groups.google.com/group/sleekxmpp-discussion>`_ | ||||
|     or join the chat room at `sleek@conference.jabber.org | ||||
|     <xmpp:sleek@conference.jabber.org?join>`_. | ||||
|  | ||||
| If you have not yet installed Slixmpp, do so now by either checking out a version | ||||
| from `Github <http://github.com/fritzy/Slixmpp>`_, or installing it using ``pip`` | ||||
| If you have not yet installed SleekXMPP, do so now by either checking out a version | ||||
| from `Github <http://github.com/fritzy/SleekXMPP>`_, or installing it using ``pip`` | ||||
| or ``easy_install``. | ||||
|  | ||||
| .. code-block:: sh | ||||
|  | ||||
|     pip install slixmpp  # Or: easy_install slixmpp | ||||
|     pip install sleekxmpp  # Or: easy_install sleekxmpp | ||||
|  | ||||
|  | ||||
| As a basic starting project, we will create an echo bot which will reply to any | ||||
| @@ -48,7 +48,7 @@ To get started, here is a brief outline of the structure that the final project | ||||
|     import getpass | ||||
|     from optparse import OptionParser | ||||
|  | ||||
|     import slixmpp | ||||
|     import sleekxmpp | ||||
|  | ||||
|     '''Here we will create out echo bot class''' | ||||
|  | ||||
| @@ -61,7 +61,7 @@ To get started, here is a brief outline of the structure that the final project | ||||
|  | ||||
| Default Encoding | ||||
| ---------------- | ||||
| XMPP requires support for UTF-8 and so Slixmpp must use UTF-8 as well. In | ||||
| XMPP requires support for UTF-8 and so SleekXMPP must use UTF-8 as well. In | ||||
| Python3 this is simple because Unicode is the default string type. For Python2.6+ | ||||
| the situation is not as easy because standard strings are simply byte arrays and | ||||
| use ASCII. We can get Python to use UTF-8 as the default encoding by including: | ||||
| @@ -69,13 +69,13 @@ use ASCII. We can get Python to use UTF-8 as the default encoding by including: | ||||
| .. code-block:: python | ||||
|  | ||||
|     if sys.version_info < (3, 0): | ||||
|         from slixmpp.util.misc_ops import setdefaultencoding | ||||
|         from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|         setdefaultencoding('utf8') | ||||
|  | ||||
| .. warning:: | ||||
|  | ||||
|     Until we are able to ensure that Slixmpp will always use Unicode in Python2.6+, this | ||||
|     may cause issues embedding Slixmpp into other applications which assume ASCII encoding. | ||||
|     Until we are able to ensure that SleekXMPP will always use Unicode in Python2.6+, this | ||||
|     may cause issues embedding SleekXMPP into other applications which assume ASCII encoding. | ||||
|  | ||||
| Creating the EchoBot Class | ||||
| -------------------------- | ||||
| @@ -85,15 +85,15 @@ clients. Since our echo bot will only be responding to a few people, and won't n | ||||
| to remember thousands of users, we will use a client connection. A client connection | ||||
| is the same type that you use with your standard IM client such as Pidgin or Psi. | ||||
|  | ||||
| Slixmpp comes with a :class:`ClientXMPP <slixmpp.clientxmpp.ClientXMPP>` class | ||||
| which we can extend to add our message echoing feature. :class:`ClientXMPP <slixmpp.clientxmpp.ClientXMPP>` | ||||
| SleekXMPP comes with a :class:`ClientXMPP <sleekxmpp.clientxmpp.ClientXMPP>` class | ||||
| which we can extend to add our message echoing feature. :class:`ClientXMPP <sleekxmpp.clientxmpp.ClientXMPP>` | ||||
| requires the parameters ``jid`` and ``password``, so we will let our ``EchoBot`` class accept those | ||||
| as well. | ||||
|  | ||||
| .. code-block:: python | ||||
|  | ||||
|     class EchoBot(slixmpp.ClientXMPP): | ||||
|  | ||||
|     class EchoBot(sleekxmpp.ClientXMPP): | ||||
|          | ||||
|         def __init__(self, jid, password): | ||||
|             super(EchoBot, self).__init__(jid, password) | ||||
|  | ||||
| @@ -102,7 +102,7 @@ Handling Session Start | ||||
| The XMPP spec requires clients to broadcast its presence and retrieve its roster (buddy list) once | ||||
| it connects and establishes a session with the XMPP server. Until these two tasks are completed, | ||||
| some servers may not deliver or send messages or presence notifications to the client. So we now | ||||
| need to be sure that we retrieve our roster and send an initial presence once the session has | ||||
| need to be sure that we retrieve our roster and send an initial presence once the session has  | ||||
| started. To do that, we will register an event handler for the :term:`session_start` event. | ||||
|  | ||||
| .. code-block:: python | ||||
| @@ -132,8 +132,8 @@ Our event handler, like every event handler, accepts a single parameter which ty | ||||
| that was received that caused the event. In this case, ``event`` will just be an empty dictionary since | ||||
| there is no associated data. | ||||
|  | ||||
| Our first task of sending an initial presence is done using :meth:`send_presence <slixmpp.basexmpp.BaseXMPP.send_presence>`. | ||||
| Calling :meth:`send_presence <slixmpp.basexmpp.BaseXMPP.send_presence>` without any arguments will send the simplest | ||||
| Our first task of sending an initial presence is done using :meth:`send_presence <sleekxmpp.basexmpp.BaseXMPP.send_presence>`. | ||||
| Calling :meth:`send_presence <sleekxmpp.basexmpp.BaseXMPP.send_presence>` without any arguments will send the simplest | ||||
| stanza allowed in XMPP: | ||||
|  | ||||
| .. code-block:: xml | ||||
| @@ -141,17 +141,17 @@ stanza allowed in XMPP: | ||||
|     <presence /> | ||||
|  | ||||
|  | ||||
| The second requirement is fulfilled using :meth:`get_roster <slixmpp.clientxmpp.ClientXMPP.get_roster>`, which | ||||
| The second requirement is fulfilled using :meth:`get_roster <sleekxmpp.clientxmpp.ClientXMPP.get_roster>`, which | ||||
| will send an IQ stanza requesting the roster to the server and then wait for the response. You may be wondering | ||||
| what :meth:`get_roster <slixmpp.clientxmpp.ClientXMPP.get_roster>` returns since we are not saving any return | ||||
| what :meth:`get_roster <sleekxmpp.clientxmpp.ClientXMPP.get_roster>` returns since we are not saving any return | ||||
| value. The roster data is saved by an internal handler to ``self.roster``, and in the case of a :class:`ClientXMPP | ||||
| <slixmpp.clientxmpp.ClientXMPP>` instance to ``self.client_roster``. (The difference between ``self.roster`` and | ||||
| <sleekxmpp.clientxmpp.ClientXMPP>` instance to ``self.client_roster``. (The difference between ``self.roster`` and | ||||
| ``self.client_roster`` is that ``self.roster`` supports storing roster information for multiple JIDs, which is useful | ||||
| for components, whereas ``self.client_roster`` stores roster data for just the client's JID.) | ||||
|  | ||||
| It is possible for a timeout to occur while waiting for the server to respond, which can happen if the | ||||
| network is excessively slow or the server is no longer responding. In that case, an :class:`IQTimeout | ||||
| <slixmpp.exceptions.IQTimeout>` is raised. Similarly, an :class:`IQError <slixmpp.exceptions.IQError>` exception can | ||||
| <sleekxmpp.exceptions.IQTimeout>` is raised. Similarly, an :class:`IQError <sleekxmpp.exceptions.IQError>` exception can | ||||
| be raised if the request contained bad data or requested the roster for the wrong user. In either case, you can wrap the | ||||
| ``get_roster()`` call in a ``try``/``except`` block to retry the roster retrieval process. | ||||
|  | ||||
| @@ -198,10 +198,10 @@ or ``chat``. (Other potential types are ``error``, ``headline``, and ``groupchat | ||||
|  | ||||
| Let's take a closer look at the ``.reply()`` method used above. For message stanzas, | ||||
| ``.reply()`` accepts the parameter ``body`` (also as the first positional argument), | ||||
| which is then used as the value of the ``<body />`` element of the message. | ||||
| which is then used as the value of the ``<body />`` element of the message.  | ||||
| Setting the appropriate ``to`` JID is also handled by ``.reply()``. | ||||
|  | ||||
| Another way to have sent the reply message would be to use :meth:`send_message <slixmpp.basexmpp.BaseXMPP.send_message>`, | ||||
| Another way to have sent the reply message would be to use :meth:`send_message <sleekxmpp.basexmpp.BaseXMPP.send_message>`, | ||||
| which is a convenience method for generating and sending a message based on the values passed to it. If we were to use | ||||
| this method, the above code would look as so: | ||||
|  | ||||
| @@ -229,20 +229,20 @@ Whichever method you choose to use, the results in action will look like this: | ||||
|     XMPP does not require stanzas sent by a client to include a ``from`` attribute, and | ||||
|     leaves that responsibility to the XMPP server. However, if a sent stanza does | ||||
|     include a ``from`` attribute, it must match the full JID of the client or some | ||||
|     servers will reject it. Slixmpp thus leaves out the ``from`` attribute when replying | ||||
|     servers will reject it. SleekXMPP thus leaves out the ``from`` attribute when replying | ||||
|     using a client connection. | ||||
|  | ||||
| Command Line Arguments and Logging | ||||
| ---------------------------------- | ||||
|  | ||||
| While this isn't part of Slixmpp itself, we do want our echo bot program to be able | ||||
| While this isn't part of SleekXMPP itself, we do want our echo bot program to be able | ||||
| to accept a JID and password from the command line instead of hard coding them. We will | ||||
| use the ``optparse`` module for this, though there are several alternative methods, including | ||||
| the newer ``argparse`` module. | ||||
|  | ||||
| We want to accept three parameters: the JID for the echo bot, its password, and a flag for | ||||
| displaying the debugging logs. We also want these to be optional parameters, since passing | ||||
| a password directly through the command line can be a security risk. | ||||
| a password directly through the command line can be a security risk.  | ||||
|  | ||||
| .. code-block:: python | ||||
|  | ||||
| @@ -303,21 +303,21 @@ the ``EchoBot.__init__`` method instead. | ||||
|  | ||||
| .. note:: | ||||
|  | ||||
|     If you are using the OpenFire server, you will need to include an additional | ||||
|     If you are using the OpenFire server, you will need to include an additional  | ||||
|     configuration step. OpenFire supports a different version of SSL than what | ||||
|     most servers and Slixmpp support. | ||||
|     most servers and SleekXMPP support. | ||||
|  | ||||
|     .. code-block:: python | ||||
|  | ||||
|      | ||||
|         import ssl | ||||
|         xmpp.ssl_version = ssl.PROTOCOL_SSLv3 | ||||
|  | ||||
| Now we're ready to connect and begin echoing messages. If you have the package | ||||
| ``dnspython`` installed, then the :meth:`slixmpp.clientxmpp.ClientXMPP` method | ||||
| ``dnspython`` installed, then the :meth:`sleekxmpp.clientxmpp.ClientXMPP` method | ||||
| will perform a DNS query to find the appropriate server to connect to for the | ||||
| given JID. If you do not have ``dnspython``, then Slixmpp will attempt to | ||||
| given JID. If you do not have ``dnspython``, then SleekXMPP will attempt to  | ||||
| connect to the hostname used by the JID, unless an address tuple is supplied | ||||
| to :meth:`slixmpp.clientxmpp.ClientXMPP`. | ||||
| to :meth:`sleekxmpp.clientxmpp.ClientXMPP`.  | ||||
|  | ||||
| .. code-block:: python | ||||
|  | ||||
| @@ -346,19 +346,19 @@ to :meth:`slixmpp.clientxmpp.ClientXMPP`. | ||||
|             else: | ||||
|                 print('Unable to connect') | ||||
|  | ||||
| To begin responding to messages, you'll see we called :meth:`slixmpp.basexmpp.BaseXMPP.process` | ||||
| To begin responding to messages, you'll see we called :meth:`sleekxmpp.basexmpp.BaseXMPP.process` | ||||
| which will start the event handling, send queue, and XML reader threads. It will also call | ||||
| the :meth:`slixmpp.plugins.base.BasePlugin.post_init` method on all registered plugins. By | ||||
| passing ``block=True`` to :meth:`slixmpp.basexmpp.BaseXMPP.process` we are running the | ||||
| main processing loop in the main thread of execution. The :meth:`slixmpp.basexmpp.BaseXMPP.process` | ||||
| call will not return until after Slixmpp disconnects. If you need to run the client in the background | ||||
| the :meth:`sleekxmpp.plugins.base.base_plugin.post_init` method on all registered plugins. By | ||||
| passing ``block=True`` to :meth:`sleekxmpp.basexmpp.BaseXMPP.process` we are running the  | ||||
| main processing loop in the main thread of execution. The :meth:`sleekxmpp.basexmpp.BaseXMPP.process` | ||||
| call will not return until after SleekXMPP disconnects. If you need to run the client in the background | ||||
| for another program, use ``block=False`` to spawn the processing loop in its own thread. | ||||
|  | ||||
| .. note:: | ||||
| .. note::  | ||||
|  | ||||
|     Before 1.0, controlling the blocking behaviour of :meth:`slixmpp.basexmpp.BaseXMPP.process` was | ||||
|     Before 1.0, controlling the blocking behaviour of :meth:`sleekxmpp.basexmpp.BaseXMPP.process` was | ||||
|     done via the ``threaded`` argument. This arrangement was a source of confusion because some users | ||||
|     interpreted that as controlling whether or not Slixmpp used threads at all, instead of how | ||||
|     interpreted that as controlling whether or not SleekXMPP used threads at all, instead of how | ||||
|     the processing loop itself was spawned. | ||||
|  | ||||
|     The statements ``xmpp.process(threaded=False)`` and ``xmpp.process(block=True)`` are equivalent. | ||||
| @@ -370,7 +370,7 @@ The Final Product | ||||
| ----------------- | ||||
|  | ||||
| Here then is what the final result should look like after working through the guide above. The code | ||||
| can also be found in the Slixmpp `examples directory <http://github.com/fritzy/Slixmpp/tree/master/examples>`_. | ||||
| can also be found in the SleekXMPP `examples directory <http://github.com/fritzy/SleekXMPP/tree/master/examples>`_. | ||||
|  | ||||
| .. compound:: | ||||
|  | ||||
|   | ||||
| @@ -1,17 +1,17 @@ | ||||
| Send/Receive IQ Stanzas | ||||
| ======================= | ||||
|  | ||||
| Unlike :class:`~slixmpp.stanza.message.Message` and | ||||
| :class:`~slixmpp.stanza.presence.Presence` stanzas which only use | ||||
| text data for basic usage, :class:`~slixmpp.stanza.iq.Iq` stanzas | ||||
| Unlike :class:`~sleekxmpp.stanza.message.Message` and | ||||
| :class:`~sleekxmpp.stanza.presence.Presence` stanzas which only use | ||||
| text data for basic usage, :class:`~sleekxmpp.stanza.iq.Iq` stanzas | ||||
| require using XML payloads, and generally entail creating a new | ||||
| Slixmpp plugin to provide the necessary convenience methods to | ||||
| SleekXMPP plugin to provide the necessary convenience methods to | ||||
| make working with them easier. | ||||
|  | ||||
| Basic Use | ||||
| --------- | ||||
|  | ||||
| XMPP's use of :class:`~slixmpp.stanza.iq.Iq` stanzas is built around | ||||
| XMPP's use of :class:`~sleekxmpp.stanza.iq.Iq` stanzas is built around | ||||
| namespaced ``<query />`` elements. For clients, just sending the | ||||
| empty ``<query />`` element will suffice for retrieving information. For | ||||
| example, a very basic implementation of service discovery would just | ||||
| @@ -26,18 +26,18 @@ need to be able to send: | ||||
| Creating Iq Stanzas | ||||
| ~~~~~~~~~~~~~~~~~~~ | ||||
|  | ||||
| Slixmpp provides built-in support for creating basic :class:`~slixmpp.stanza.iq.Iq` | ||||
| SleekXMPP provides built-in support for creating basic :class:`~sleekxmpp.stanza.iq.Iq` | ||||
| stanzas this way. The relevant methods are: | ||||
|  | ||||
| * :meth:`~slixmpp.basexmpp.BaseXMPP.make_iq` | ||||
| * :meth:`~slixmpp.basexmpp.BaseXMPP.make_iq_get` | ||||
| * :meth:`~slixmpp.basexmpp.BaseXMPP.make_iq_set` | ||||
| * :meth:`~slixmpp.basexmpp.BaseXMPP.make_iq_result` | ||||
| * :meth:`~slixmpp.basexmpp.BaseXMPP.make_iq_error` | ||||
| * :meth:`~slixmpp.basexmpp.BaseXMPP.make_iq_query` | ||||
| * :meth:`~sleekxmpp.basexmpp.BaseXMPP.make_iq` | ||||
| * :meth:`~sleekxmpp.basexmpp.BaseXMPP.make_iq_get` | ||||
| * :meth:`~sleekxmpp.basexmpp.BaseXMPP.make_iq_set` | ||||
| * :meth:`~sleekxmpp.basexmpp.BaseXMPP.make_iq_result` | ||||
| * :meth:`~sleekxmpp.basexmpp.BaseXMPP.make_iq_error` | ||||
| * :meth:`~sleekxmpp.basexmpp.BaseXMPP.make_iq_query` | ||||
|  | ||||
| These methods all follow the same pattern: create or modify an existing | ||||
| :class:`~slixmpp.stanza.iq.Iq` stanza, set the ``'type'`` value based | ||||
| These methods all follow the same pattern: create or modify an existing  | ||||
| :class:`~sleekxmpp.stanza.iq.Iq` stanza, set the ``'type'`` value based | ||||
| on the method name, and finally add a ``<query />`` element with the given | ||||
| namespace. For example, to produce the query above, you would use: | ||||
|  | ||||
| @@ -50,14 +50,14 @@ namespace. For example, to produce the query above, you would use: | ||||
| Sending Iq Stanzas | ||||
| ~~~~~~~~~~~~~~~~~~ | ||||
|  | ||||
| Once an :class:`~slixmpp.stanza.iq.Iq` stanza is created, sending it | ||||
| over the wire is done using its :meth:`~slixmpp.stanza.iq.Iq.send()` | ||||
| Once an :class:`~sleekxmpp.stanza.iq.Iq` stanza is created, sending it | ||||
| over the wire is done using its :meth:`~sleekxmpp.stanza.iq.Iq.send()` | ||||
| method, like any other stanza object. However, there are a few extra | ||||
| options to control how to wait for the query's response. | ||||
|  | ||||
| These options are: | ||||
|  | ||||
| * ``block``: The default behaviour is that :meth:`~slixmpp.stanza.iq.Iq.send()` | ||||
| * ``block``: The default behaviour is that :meth:`~sleekxmpp.stanza.iq.Iq.send()` | ||||
|   will block until a response is received and the response stanza will be the | ||||
|   return value. Setting ``block`` to ``False`` will cause the call to return | ||||
|   immediately. In which case, you will need to arrange some way to capture | ||||
| @@ -74,7 +74,7 @@ These options are: | ||||
|   To change the timeout for a single call, the ``timeout`` parameter works: | ||||
|  | ||||
|     .. code-block:: python | ||||
|  | ||||
|          | ||||
|         iq.send(timeout=60) | ||||
|  | ||||
| * ``callback``: When not using a blocking call, using the ``callback`` | ||||
| @@ -85,16 +85,16 @@ These options are: | ||||
|  | ||||
|     .. code-block:: python | ||||
|  | ||||
|        cb_name = iq.send(callback=self.a_callback) | ||||
|        cb_name = iq.send(callback=self.a_callback)  | ||||
|  | ||||
|        # ... later if we need to cancel | ||||
|        self.remove_handler(cb_name) | ||||
|  | ||||
| Properly working with :class:`~slixmpp.stanza.iq.Iq` stanzas requires | ||||
| Properly working with :class:`~sleekxmpp.stanza.iq.Iq` stanzas requires | ||||
| handling the intended, normal flow, error responses, and timed out | ||||
| requests. To make this easier, two exceptions may be thrown by | ||||
| :meth:`~slixmpp.stanza.iq.Iq.send()`: :exc:`~slixmpp.exceptions.IqError` | ||||
| and :exc:`~slixmpp.exceptions.IqTimeout`. These exceptions only | ||||
| :meth:`~sleekxmpp.stanza.iq.Iq.send()`: :exc:`~sleekxmpp.exceptions.IqError` | ||||
| and :exc:`~sleekxmpp.exceptions.IqTimeout`. These exceptions only | ||||
| apply to the default, blocking calls. | ||||
|  | ||||
| .. code-block:: python | ||||
| @@ -110,7 +110,7 @@ apply to the default, blocking calls. | ||||
|         pass | ||||
|  | ||||
| If you do not care to distinguish between errors and timeouts, then you | ||||
| can combine both cases with a generic :exc:`~slixmpp.exceptions.XMPPError` | ||||
| can combine both cases with a generic :exc:`~sleekxmpp.exceptions.XMPPError` | ||||
| exception: | ||||
|  | ||||
| .. code-block:: python | ||||
| @@ -124,24 +124,24 @@ exception: | ||||
| Advanced Use | ||||
| ------------ | ||||
|  | ||||
| Going beyond the basics provided by Slixmpp requires building at least a | ||||
| rudimentary Slixmpp plugin to create a :term:`stanza object` for | ||||
| interfacting with the :class:`~slixmpp.stanza.iq.Iq` payload. | ||||
| Going beyond the basics provided by SleekXMPP requires building at least a | ||||
| rudimentary SleekXMPP plugin to create a :term:`stanza object` for | ||||
| interfacting with the :class:`~sleekxmpp.stanza.iq.Iq` payload. | ||||
|  | ||||
| .. seealso:: | ||||
|  | ||||
|     * :ref:`create-plugin` | ||||
|     * :ref:`work-with-stanzas` | ||||
|     * :ref:`using-handlers-matchers` | ||||
|      | ||||
|  | ||||
|  | ||||
| The typical way to respond to :class:`~slixmpp.stanza.iq.Iq` requests is | ||||
| The typical way to respond to :class:`~sleekxmpp.stanza.iq.Iq` requests is | ||||
| to register stream handlers. As an example, suppose we create a stanza class | ||||
| named ``CustomXEP`` which uses the XML element ``<query xmlns="custom-xep" />``, | ||||
| and has a :attr:`~slixmpp.xmlstream.stanzabase.ElementBase.plugin_attrib` value | ||||
| and has a :attr:`~sleekxmpp.xmlstream.stanzabase.ElementBase.plugin_attrib` value | ||||
| of ``custom_xep``. | ||||
|  | ||||
| There are two types of incoming :class:`~slixmpp.stanza.iq.Iq` requests: | ||||
| There are two types of incoming :class:`~sleekxmpp.stanza.iq.Iq` requests: | ||||
| ``get`` and ``set``. You can register a handler that will accept both and then | ||||
| filter by type as needed, as so: | ||||
|  | ||||
| @@ -167,7 +167,7 @@ filter by type as needed, as so: | ||||
|  | ||||
| If you want to filter out query types beforehand, you can adjust the matching | ||||
| filter by using ``@type=get`` or ``@type=set`` if you are using the recommended | ||||
| :class:`~slixmpp.xmlstream.matcher.stanzapath.StanzaPath` matcher. | ||||
| :class:`~sleekxmpp.xmlstream.matcher.stanzapath.StanzaPath` matcher. | ||||
|  | ||||
| .. code-block:: python | ||||
|  | ||||
|   | ||||
| @@ -8,20 +8,20 @@ Mulit-User Chat (MUC) Bot | ||||
|  | ||||
|     If you have any issues working through this quickstart guide | ||||
|     or the other tutorials here, please either send a message to the | ||||
|     `mailing list <http://groups.google.com/group/slixmpp-discussion>`_ | ||||
|     `mailing list <http://groups.google.com/group/sleekxmpp-discussion>`_ | ||||
|     or join the chat room at `sleek@conference.jabber.org | ||||
|     <xmpp:sleek@conference.jabber.org?join>`_. | ||||
|  | ||||
| If you have not yet installed Slixmpp, do so now by either checking out a version | ||||
| from `Github <http://github.com/fritzy/Slixmpp>`_, or installing it using ``pip`` | ||||
| If you have not yet installed SleekXMPP, do so now by either checking out a version | ||||
| from `Github <http://github.com/fritzy/SleekXMPP>`_, or installing it using ``pip`` | ||||
| or ``easy_install``. | ||||
|  | ||||
| .. code-block:: sh | ||||
|  | ||||
|     pip install slixmpp  # Or: easy_install slixmpp | ||||
|     pip install sleekxmpp  # Or: easy_install sleekxmpp | ||||
|  | ||||
|  | ||||
| Now that you've got the basic gist of using Slixmpp by following the | ||||
| Now that you've got the basic gist of using SleekXMPP by following the | ||||
| echobot example (:ref:`echobot`), we can use one of the bundled plugins | ||||
| to create a very popular XMPP starter project: a `Multi-User Chat`_ | ||||
| (MUC) bot. Our bot will login to an XMPP server, join an MUC chat room | ||||
| @@ -36,7 +36,7 @@ Joining The Room | ||||
|  | ||||
| As usual, our code will be based on the pattern explained in :ref:`echobot`. | ||||
| To start, we create an ``MUCBot`` class based on | ||||
| :class:`ClientXMPP <slixmpp.clientxmpp.ClientXMPP>` and which accepts | ||||
| :class:`ClientXMPP <sleekxmpp.clientxmpp.ClientXMPP>` and which accepts | ||||
| parameters for the JID of the MUC room to join, and the nick that the | ||||
| bot will use inside the chat room.  We also register an | ||||
| :term:`event handler` for the :term:`session_start` event. | ||||
| @@ -44,12 +44,12 @@ bot will use inside the chat room.  We also register an | ||||
|  | ||||
| .. code-block:: python | ||||
|  | ||||
|     import slixmpp | ||||
|     import sleekxmpp | ||||
|  | ||||
|     class MUCBot(slixmpp.ClientXMPP): | ||||
|     class MUCBot(sleekxmpp.ClientXMPP): | ||||
|  | ||||
|         def __init__(self, jid, password, room, nick): | ||||
|             slixmpp.ClientXMPP.__init__(self, jid, password) | ||||
|             sleekxmpp.ClientXMPP.__init__(self, jid, password) | ||||
|  | ||||
|             self.room = room | ||||
|             self.nick = nick | ||||
| @@ -81,7 +81,7 @@ the roster. Next, we want to join the group chat, so we call the | ||||
|  | ||||
| .. note:: | ||||
|  | ||||
|     The :attr:`plugin <slixmpp.basexmpp.BaseXMPP.plugin>` attribute is | ||||
|     The :attr:`plugin <sleekxmpp.basexmpp.BaseXMPP.plugin>` attribute is | ||||
|     dictionary that maps to instances of plugins that we have previously | ||||
|     registered, by their names. | ||||
|  | ||||
| @@ -115,7 +115,7 @@ event inside the bot's ``__init__`` function. | ||||
| .. code-block:: python | ||||
|  | ||||
|     def __init__(self, jid, password, room, nick): | ||||
|         slixmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         sleekxmpp.ClientXMPP.__init__(self, jid, password) | ||||
|  | ||||
|         self.room = room | ||||
|         self.nick = nick | ||||
| @@ -159,7 +159,7 @@ event so it's a good idea to register an event handler for it. | ||||
| .. code-block:: python | ||||
|  | ||||
|     def __init__(self, jid, password, room, nick): | ||||
|         slixmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         sleekxmpp.ClientXMPP.__init__(self, jid, password) | ||||
|  | ||||
|         self.room = room | ||||
|         self.nick = nick | ||||
|   | ||||
| @@ -5,19 +5,19 @@ Enable HTTP Proxy Support | ||||
| ========================= | ||||
|  | ||||
| .. note:: | ||||
|  | ||||
|      | ||||
|     If you have any issues working through this quickstart guide | ||||
|     or the other tutorials here, please either send a message to the | ||||
|     `mailing list <http://groups.google.com/group/slixmpp-discussion>`_ | ||||
|     `mailing list <http://groups.google.com/group/sleekxmpp-discussion>`_ | ||||
|     or join the chat room at `sleek@conference.jabber.org | ||||
|     <xmpp:sleek@conference.jabber.org?join>`_. | ||||
|  | ||||
| In some instances, you may wish to route XMPP traffic through | ||||
| an HTTP proxy, probably to get around restrictive firewalls. | ||||
| Slixmpp provides support for basic HTTP proxying with DIGEST | ||||
| SleekXMPP provides support for basic HTTP proxying with DIGEST | ||||
| authentication. | ||||
|  | ||||
| Enabling proxy support is done in two steps. The first is to instruct Slixmpp | ||||
| Enabling proxy support is done in two steps. The first is to instruct SleekXMPP | ||||
| to use a proxy, and the second is to configure the proxy details: | ||||
|  | ||||
| .. code-block:: python | ||||
|   | ||||
| @@ -2,29 +2,29 @@ Sign in, Send a Message, and Disconnect | ||||
| ======================================= | ||||
|  | ||||
| .. note:: | ||||
|  | ||||
|      | ||||
|     If you have any issues working through this quickstart guide | ||||
|     or the other tutorials here, please either send a message to the | ||||
|     `mailing list <http://groups.google.com/group/slixmpp-discussion>`_ | ||||
|     `mailing list <http://groups.google.com/group/sleekxmpp-discussion>`_ | ||||
|     or join the chat room at `sleek@conference.jabber.org | ||||
|     <xmpp:sleek@conference.jabber.org?join>`_. | ||||
|  | ||||
| A common use case for Slixmpp is to send one-off messages from | ||||
| time to time. For example, one use case could be sending out a notice when | ||||
| A common use case for SleekXMPP is to send one-off messages from | ||||
| time to time. For example, one use case could be sending out a notice when  | ||||
| a shell script finishes a task. | ||||
|  | ||||
| We will create our one-shot bot based on the pattern explained in :ref:`echobot`. To | ||||
| start, we create a client class based on :class:`ClientXMPP <slixmpp.clientxmpp.ClientXMPP>` and | ||||
| start, we create a client class based on :class:`ClientXMPP <sleekxmpp.clientxmpp.ClientXMPP>` and | ||||
| register a handler for the :term:`session_start` event. We will also accept parameters | ||||
| for the JID that will receive our message, and the string content of the message. | ||||
|  | ||||
| .. code-block:: python | ||||
|  | ||||
|     import slixmpp | ||||
|     import sleekxmpp | ||||
|  | ||||
|  | ||||
|     class SendMsgBot(slixmpp.ClientXMPP): | ||||
|  | ||||
|     class SendMsgBot(sleekxmpp.ClientXMPP): | ||||
|          | ||||
|         def __init__(self, jid, password, recipient, msg): | ||||
|             super(SendMsgBot, self).__init__(jid, password) | ||||
|  | ||||
| @@ -38,7 +38,7 @@ for the JID that will receive our message, and the string content of the message | ||||
|             self.get_roster() | ||||
|  | ||||
| Note that as in :ref:`echobot`, we need to include send an initial presence and request | ||||
| the roster. Next, we want to send our message, and to do that we will use :meth:`send_message <slixmpp.basexmpp.BaseXMPP.send_message>`. | ||||
| the roster. Next, we want to send our message, and to do that we will use :meth:`send_message <sleekxmpp.basexmpp.BaseXMPP.send_message>`. | ||||
|  | ||||
| .. code-block:: python | ||||
|  | ||||
| @@ -48,12 +48,12 @@ the roster. Next, we want to send our message, and to do that we will use :meth: | ||||
|  | ||||
|         self.send_message(mto=self.recipient, mbody=self.msg) | ||||
|  | ||||
| Finally, we need to disconnect the client using :meth:`disconnect <slixmpp.xmlstream.XMLStream.disconnect>`. | ||||
| Finally, we need to disconnect the client using :meth:`disconnect <sleekxmpp.xmlstream.XMLStream.disconnect>`. | ||||
| Now, sent stanzas are placed in a queue to pass them to the send thread. If we were to call | ||||
| :meth:`disconnect <slixmpp.xmlstream.XMLStream.disconnect>` without any parameters, then it is possible | ||||
| :meth:`disconnect <sleekxmpp.xmlstream.XMLStream.disconnect>` without any parameters, then it is possible | ||||
| for the client to disconnect before the send queue is processed and the message is actually | ||||
| sent on the wire. To ensure that our message is processed, we use | ||||
| :meth:`disconnect(wait=True) <slixmpp.xmlstream.XMLStream.disconnect>`. | ||||
| sent on the wire. To ensure that our message is processed, we use  | ||||
| :meth:`disconnect(wait=True) <sleekxmpp.xmlstream.XMLStream.disconnect>`. | ||||
|  | ||||
| .. code-block:: python | ||||
|  | ||||
| @@ -68,7 +68,7 @@ sent on the wire. To ensure that our message is processed, we use | ||||
| .. warning:: | ||||
|  | ||||
|     If you happen to be adding stanzas to the send queue faster than the send thread | ||||
|     can process them, then :meth:`disconnect(wait=True) <slixmpp.xmlstream.XMLStream.disconnect>` | ||||
|     can process them, then :meth:`disconnect(wait=True) <sleekxmpp.xmlstream.XMLStream.disconnect>` | ||||
|     will block and not disconnect. | ||||
|  | ||||
| Final Product | ||||
|   | ||||
| @@ -18,7 +18,7 @@ Working with service discovery is about creating and querying these nodes. | ||||
| According to XEP-0030, a node may contain three types of information: | ||||
| identities, features, and items. (Further, extensible, information types are | ||||
| defined in `XEP-0128 <http://xmpp.org/extensions/xep-0128.html>`_, but they are | ||||
| not yet implemented by Slixmpp.) Slixmpp provides methods to configure each | ||||
| not yet implemented by SleekXMPP.) SleekXMPP provides methods to configure each | ||||
| of these node attributes. | ||||
|  | ||||
| Configuring Service Discovery | ||||
| @@ -119,7 +119,7 @@ the same order as expected using positional arguments. | ||||
|  | ||||
|     xmpp['xep_0030'].add_identity(category='client', | ||||
|                                   itype='bot', | ||||
|                                   name='Slixmpp', | ||||
|                                   name='Sleek', | ||||
|                                   node='foo', | ||||
|                                   jid=xmpp.boundjid.full, | ||||
|                                   lang='no') | ||||
| @@ -159,7 +159,7 @@ item itself, and the JID and node that will own the item. | ||||
| .. note:: | ||||
|  | ||||
|     In this case, the owning JID and node are provided with the | ||||
|     parameters ``ijid`` and ``node``. | ||||
|     parameters ``ijid`` and ``node``.  | ||||
|  | ||||
| Peforming Disco Queries | ||||
| ----------------------- | ||||
| @@ -197,5 +197,5 @@ a full Iq stanza. | ||||
|  | ||||
|     info = self['xep_0030'].get_info(node='foo', local=True) | ||||
|     items = self['xep_0030'].get_items(jid='somejid@mycomponent.example.com', | ||||
|                                        node='bar', | ||||
|                                        node='bar',  | ||||
|                                        local=True) | ||||
|   | ||||
| @@ -1,49 +1,49 @@ | ||||
| Slixmpp | ||||
| SleekXMPP | ||||
| ######### | ||||
|  | ||||
| .. sidebar:: Get the Code | ||||
|  | ||||
|     .. code-block:: sh | ||||
|  | ||||
|         pip install slixmpp | ||||
|         pip install sleekxmpp | ||||
|  | ||||
|     The latest source code for Slixmpp may be found on `Github | ||||
|     <http://github.com/fritzy/Slixmpp>`_. Releases can be found in the | ||||
|     The latest source code for SleekXMPP may be found on `Github | ||||
|     <http://github.com/fritzy/SleekXMPP>`_. Releases can be found in the | ||||
|     ``master`` branch, while the latest development version is in the | ||||
|     ``develop`` branch. | ||||
|  | ||||
|     **Latest Stable Release** | ||||
|         - `1.0 <http://github.com/fritzy/Slixmpp/zipball/1.0>`_ | ||||
|         - `1.0 <http://github.com/fritzy/SleekXMPP/zipball/1.0>`_ | ||||
|  | ||||
|     **Develop Releases** | ||||
|         - `Latest Develop Version <http://github.com/fritzy/Slixmpp/zipball/develop>`_ | ||||
|         - `Latest Develop Version <http://github.com/fritzy/SleekXMPP/zipball/develop>`_ | ||||
|  | ||||
|  | ||||
|     A mailing list and XMPP chat room are available for discussing and getting | ||||
|     help with Slixmpp. | ||||
|     help with SleekXMPP. | ||||
|  | ||||
|     **Mailing List** | ||||
|         `Slixmpp Discussion on Google Groups <http://groups.google.com/group/slixmpp-discussion>`_ | ||||
|         `SleekXMPP Discussion on Google Groups <http://groups.google.com/group/sleekxmpp-discussion>`_ | ||||
|  | ||||
|     **Chat** | ||||
|         `sleek@conference.jabber.org <xmpp:sleek@conference.jabber.org?join>`_ | ||||
|  | ||||
|  | ||||
| Slixmpp is an :ref:`MIT licensed <license>` XMPP library for Python 2.6/3.1+, | ||||
| SleekXMPP is an :ref:`MIT licensed <license>` XMPP library for Python 2.6/3.1+, | ||||
| and is featured in examples in | ||||
| `XMPP: The Definitive Guide <http://oreilly.com/catalog/9780596521271>`_ | ||||
| `XMPP: The Definitive Guide <http://oreilly.com/catalog/9780596521271>`_  | ||||
| by Kevin Smith, Remko Tronçon, and Peter Saint-Andre. If you've arrived | ||||
| here from reading the Definitive Guide, please see the notes on updating | ||||
| the examples to the latest version of Slixmpp. | ||||
| the examples to the latest version of SleekXMPP. | ||||
|  | ||||
| Slixmpp's design goals and philosphy are: | ||||
| SleekXMPP's design goals and philosphy are: | ||||
|  | ||||
| **Low number of dependencies** | ||||
|     Installing and using Slixmpp should be as simple as possible, without | ||||
|     Installing and using SleekXMPP should be as simple as possible, without | ||||
|     having to deal with long dependency chains. | ||||
|  | ||||
|     As part of reducing the number of dependencies, some third party | ||||
|     modules are included with Slixmpp in the ``thirdparty`` directory. | ||||
|     modules are included with SleekXMPP in the ``thirdparty`` directory. | ||||
|     Imports from this module first try to import an existing installed | ||||
|     version before loading the packaged version, when possible. | ||||
|  | ||||
| @@ -55,19 +55,19 @@ Slixmpp's design goals and philosphy are: | ||||
|     XEPs. | ||||
|  | ||||
| **Rewarding to work with** | ||||
|     As much as possible, Slixmpp should allow things to "just work" using | ||||
|     As much as possible, SleekXMPP should allow things to "just work" using | ||||
|     sensible defaults and appropriate abstractions. XML can be ugly to work | ||||
|     with, but it doesn't have to be that way. | ||||
|  | ||||
| Here's your first Slixmpp Bot: | ||||
| Here's your first SleekXMPP Bot: | ||||
| -------------------------------- | ||||
|  | ||||
| .. code-block:: python | ||||
|  | ||||
|     import logging | ||||
|  | ||||
|     from slixmpp import ClientXMPP | ||||
|     from slixmpp.exceptions import IqError, IqTimeout | ||||
|     from sleekxmpp import ClientXMPP | ||||
|     from sleekxmpp.exceptions import IqError, IqTimeout | ||||
|  | ||||
|  | ||||
|     class EchoBot(ClientXMPP): | ||||
| @@ -113,7 +113,7 @@ Here's your first Slixmpp Bot: | ||||
|  | ||||
|  | ||||
|     if __name__ == '__main__': | ||||
|         # Ideally use optparse or argparse to get JID, | ||||
|         # Ideally use optparse or argparse to get JID,  | ||||
|         # password, and log level. | ||||
|  | ||||
|         logging.basicConfig(level=logging.DEBUG, | ||||
| @@ -129,7 +129,7 @@ Getting Started (with Examples) | ||||
| ------------------------------- | ||||
| .. toctree:: | ||||
|     :maxdepth: 1 | ||||
|  | ||||
|      | ||||
|     getting_started/echobot | ||||
|     getting_started/sendlogout | ||||
|     getting_started/component | ||||
| @@ -144,7 +144,7 @@ Tutorials, FAQs, and How To Guides | ||||
| ---------------------------------- | ||||
| .. toctree:: | ||||
|     :maxdepth: 1 | ||||
|  | ||||
|     | ||||
|     faq | ||||
|     xeps | ||||
|     xmpp_tdg | ||||
| @@ -156,12 +156,12 @@ Tutorials, FAQs, and How To Guides | ||||
|  | ||||
| Plugin Guides | ||||
| ~~~~~~~~~~~~~ | ||||
| .. toctree:: | ||||
| .. toctree::  | ||||
|     :maxdepth: 1 | ||||
|  | ||||
|     guide_xep_0030 | ||||
|  | ||||
| Slixmpp Architecture and Design | ||||
| SleekXMPP Architecture and Design | ||||
| --------------------------------- | ||||
| .. toctree:: | ||||
|     :maxdepth: 3 | ||||
| @@ -173,7 +173,7 @@ API Reference | ||||
| ------------- | ||||
| .. toctree:: | ||||
|     :maxdepth: 2 | ||||
|  | ||||
|      | ||||
|     event_index | ||||
|     api/clientxmpp | ||||
|     api/componentxmpp | ||||
|   | ||||
| @@ -1,4 +1,4 @@ | ||||
| .. _license: | ||||
| .. _license:  | ||||
|  | ||||
| License (MIT) | ||||
| ============= | ||||
|   | ||||
| @@ -95,9 +95,9 @@ if "%1" == "qthelp" ( | ||||
| 	echo. | ||||
| 	echo.Build finished; now you can run "qcollectiongenerator" with the ^ | ||||
| .qhcp project file in %BUILDDIR%/qthelp, like this: | ||||
| 	echo.^> qcollectiongenerator %BUILDDIR%\qthelp\Slixmpp.qhcp | ||||
| 	echo.^> qcollectiongenerator %BUILDDIR%\qthelp\SleekXMPP.qhcp | ||||
| 	echo.To view the help file: | ||||
| 	echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Slixmpp.ghc | ||||
| 	echo.^> assistant -collectionFile %BUILDDIR%\qthelp\SleekXMPP.ghc | ||||
| 	goto end | ||||
| ) | ||||
|  | ||||
|   | ||||
| @@ -4,9 +4,9 @@ Supported XEPS | ||||
| ======= ============================= ================ | ||||
| XEP     Description                   Notes | ||||
| ======= ============================= ================ | ||||
| `0004`_ Data forms | ||||
| `0009`_ Jabber RPC | ||||
| `0012`_ Last Activity | ||||
| `0004`_ Data forms                    | ||||
| `0009`_ Jabber RPC                    | ||||
| `0012`_ Last Activity              | ||||
| `0030`_ Service Discovery | ||||
| `0033`_ Extended Stanza Addressing | ||||
| `0045`_ Multi-User Chat (MUC)         Client-side only | ||||
|   | ||||
| @@ -1,20 +1,20 @@ | ||||
| Following *XMPP: The Definitive Guide* | ||||
| ====================================== | ||||
|  | ||||
| Slixmpp was featured in the first edition of the O'Reilly book | ||||
| SleekXMPP was featured in the first edition of the O'Reilly book  | ||||
| `XMPP: The Definitive Guide <http://oreilly.com/catalog/9780596521271/>`_ | ||||
| by Peter Saint-Andre, Kevin Smith, and Remko Tronçon. The original source code | ||||
| for the book's examples can be found at http://github.com/remko/xmpp-tdg. An | ||||
| updated version of the source code, maintained to stay current with the latest | ||||
| Slixmpp release, is available at http://github.com/legastero/xmpp-tdg. | ||||
| SleekXMPP release, is available at http://github.com/legastero/xmpp-tdg. | ||||
|  | ||||
| However, since publication, Slixmpp has advanced from version 0.2.1 to version | ||||
| However, since publication, SleekXMPP has advanced from version 0.2.1 to version | ||||
| 1.0 and there have been several major API changes. The most notable is the | ||||
| introduction of :term:`stanza objects <stanza object>` which have simplified and | ||||
| standardized interactions with the XMPP XML stream. | ||||
|  | ||||
| What follows is a walk-through of *The Definitive Guide* highlighting the | ||||
| changes needed to make the code examples work with version 1.0 of Slixmpp. | ||||
| changes needed to make the code examples work with version 1.0 of SleekXMPP. | ||||
| These changes have been kept to a minimum to preserve the correlation with | ||||
| the book's explanations, so be aware that some code may not use current best | ||||
| practices. | ||||
| @@ -36,7 +36,7 @@ Updated Code | ||||
| .. code-block:: python | ||||
|  | ||||
|     def handleIncomingMessage(self, message): | ||||
|         self.xmpp.send_message(message["from"], message["body"]) | ||||
|         self.xmpp.sendMessage(message["from"], message["body"]) | ||||
|  | ||||
| `View full source <http://github.com/legastero/xmpp-tdg/blob/master/code/EchoBot/EchoBot.py>`_ | | ||||
| `View original code <http://github.com/remko/xmpp-tdg/blob/master/code/EchoBot/EchoBot.py>`_ | ||||
| @@ -47,7 +47,7 @@ Example 14-1. (Page 215) | ||||
| **CheshiR IM bot implementation.** | ||||
|  | ||||
| The main event handling method in the Bot class is meant to process both message | ||||
| events and presence update events. With the new changes in Slixmpp 1.0, | ||||
| events and presence update events. With the new changes in SleekXMPP 1.0, | ||||
| extracting a CheshiR status "message" from both types of stanzas | ||||
| requires accessing different attributes. In the case of a message stanza, the | ||||
| ``"body"`` attribute would contain the CheshiR message. For a presence event, | ||||
| @@ -72,21 +72,21 @@ Updated Code | ||||
| .. code-block:: python | ||||
|  | ||||
|   def handleIncomingXMPPEvent(self, event): | ||||
|     msgLocations = {slixmpp.stanza.presence.Presence: "status", | ||||
|                     slixmpp.stanza.message.Message: "body"} | ||||
|     msgLocations = {sleekxmpp.stanza.presence.Presence: "status", | ||||
|                     sleekxmpp.stanza.message.Message: "body"} | ||||
|  | ||||
|     message = event[msgLocations[type(event)]] | ||||
|     user = self.backend.getUserFromJID(event["from"].jid) | ||||
|     if user is not None: | ||||
|       self.backend.addMessageFromUser(message, user) | ||||
|  | ||||
|    | ||||
|   def handleMessageAddedToBackend(self, message) : | ||||
|     body = message.user + ": " + message.text | ||||
|     htmlBody = "<p><a href='%(uri)s'>%(user)s</a>: %(message)s</p>" % { | ||||
|       "uri": self.url + "/" + message.user, | ||||
|       "user" : message.user, "message" : message.text } | ||||
|     for subscriberJID in self.backend.getSubscriberJIDs(message.user) : | ||||
|       self.xmpp.send_message(subscriberJID, body, mhtml=htmlBody) | ||||
|       self.xmpp.sendMessage(subscriberJID, body, mhtml=htmlBody) | ||||
|  | ||||
| `View full source <http://github.com/legastero/xmpp-tdg/blob/master/code/CheshiR/Bot.py>`_ | | ||||
| `View original code <http://github.com/remko/xmpp-tdg/blob/master/code/CheshiR/Bot.py>`_ | ||||
| @@ -102,7 +102,7 @@ Example 14-3. (Page 217) | ||||
|  | ||||
| The main difference for the configurable IM bot is the handling for the | ||||
| data form in ``handleConfigurationCommand``. The test for equality | ||||
| with the string ``"1"`` is no longer required; Slixmpp converts | ||||
| with the string ``"1"`` is no longer required; SleekXMPP converts | ||||
| boolean data form fields to the values ``True`` and ``False`` | ||||
| automatically. | ||||
|  | ||||
| @@ -145,7 +145,7 @@ Example 14-4. (Page 220) | ||||
|  | ||||
| Like several previous examples, a needed change is to replace | ||||
| ``subscription["from"]`` with ``subscription["from"].jid`` because the | ||||
| ``BaseXMPP`` method ``make_presence`` requires the JID to be a string. | ||||
| ``BaseXMPP`` method ``makePresence`` requires the JID to be a string. | ||||
|  | ||||
| A correction needs to be made in ``handleXMPPPresenceProbe`` because a line was | ||||
| left out of the original implementation; the variable ``user`` is undefined. The | ||||
| @@ -154,7 +154,7 @@ JID of the user can be extracted from the presence stanza's ``from`` attribute. | ||||
| Since this implementation of CheshiR uses an XMPP component, it must | ||||
| include a ``from`` attribute in all messages that it sends. Adding the | ||||
| ``from`` attribute is done by including ``mfrom=self.xmpp.jid`` in calls to | ||||
| ``self.xmpp.send_message``. | ||||
| ``self.xmpp.sendMessage``. | ||||
|  | ||||
| Updated Code | ||||
| ~~~~~~~~~~~~ | ||||
| @@ -162,19 +162,19 @@ Updated Code | ||||
| .. code-block:: python | ||||
|  | ||||
|   def handleXMPPPresenceProbe(self, event) : | ||||
|     self.xmpp.send_presence(pto = event["from"]) | ||||
|     self.xmpp.sendPresence(pto = event["from"]) | ||||
|  | ||||
|   def handleXMPPPresenceSubscription(self, subscription) : | ||||
|     if subscription["type"] == "subscribe" : | ||||
|       userJID = subscription["from"].jid | ||||
|       self.xmpp.send_presence_subscription(pto=userJID, ptype="subscribed") | ||||
|       self.xmpp.send_presence(pto = userJID) | ||||
|       self.xmpp.send_presence_subscription(pto=userJID, ptype="subscribe") | ||||
|       self.xmpp.sendPresenceSubscription(pto=userJID, ptype="subscribed") | ||||
|       self.xmpp.sendPresence(pto = userJID) | ||||
|       self.xmpp.sendPresenceSubscription(pto=userJID, ptype="subscribe") | ||||
|  | ||||
|   def handleMessageAddedToBackend(self, message) : | ||||
|     body = message.user + ": " + message.text | ||||
|     for subscriberJID in self.backend.getSubscriberJIDs(message.user) : | ||||
|       self.xmpp.send_message(subscriberJID, body, mfrom=self.xmpp.jid) | ||||
|       self.xmpp.sendMessage(subscriberJID, body, mfrom=self.xmpp.jid) | ||||
|  | ||||
| `View full source <http://github.com/legastero/xmpp-tdg/blob/master/code/CheshiR/SimpleComponent.py>`_ | | ||||
| `View original code <http://github.com/remko/xmpp-tdg/blob/master/code/CheshiR/SimpleComponent.py>`_ | ||||
| @@ -192,7 +192,7 @@ After applying the changes from Example 14-4 above, the registrable component | ||||
| implementation should work correctly. | ||||
|  | ||||
| .. tip:: | ||||
|     To see how to implement in-band registration as a Slixmpp plugin, | ||||
|     To see how to implement in-band registration as a SleekXMPP plugin, | ||||
|     see the tutorial :ref:`tutorial-create-plugin`. | ||||
|  | ||||
| `View full source <http://github.com/legastero/xmpp-tdg/blob/master/code/CheshiR/RegistrableComponent.py>`_ | | ||||
| @@ -203,13 +203,13 @@ Example 14-7. (Page 225) | ||||
| **Extended CheshiR IM server component implementation.** | ||||
|  | ||||
| .. note:: | ||||
|     Since the CheshiR examples build on each other, see previous | ||||
|     Since the CheshiR examples build on each other, see previous  | ||||
|     sections for corrections to code that is not marked as new in the book | ||||
|     example. | ||||
|  | ||||
| While the final code example can look daunting with all of the changes | ||||
| made, it requires very few modifications to work with the latest version of | ||||
| Slixmpp. Most differences are the result of CheshiR's backend functions | ||||
| SleekXMPP. Most differences are the result of CheshiR's backend functions | ||||
| expecting JIDs to be strings so that they can be stripped to bare JIDs. To | ||||
| resolve these, use the ``jid`` attribute of the JID objects. Also, | ||||
| references to ``"message"`` and ``"jid"`` attributes need to | ||||
| @@ -239,11 +239,11 @@ Updated Code | ||||
|       userJID = subscription["from"].jid | ||||
|       user = self.backend.getUserFromJID(userJID) | ||||
|       contactJID = subscription["to"] | ||||
|       self.xmpp.send_presence_subscription( | ||||
|       self.xmpp.sendPresenceSubscription( | ||||
|           pfrom=contactJID, pto=userJID, ptype="subscribed", pnick=user) | ||||
|       self.sendPresenceOfContactToUser(contactJID=contactJID, userJID=userJID) | ||||
|       if contactJID == self.componentDomain : | ||||
|         self.sendAllContactSubscriptionRequestsToUser(userJID) | ||||
|  | ||||
| `View full source <http://github.com/legastero/xmpp-tdg/blob/master/code/CheshiR/Component.py>`_ | | ||||
| `View original code <http://github.com/remko/xmpp-tdg/blob/master/code/CheshiR/Component.py>`_ | ||||
| `View original code <http://github.com/remko/xmpp-tdg/blob/master/code/CheshiR/Component.py>`_  | ||||
|   | ||||
| @@ -1,190 +0,0 @@ | ||||
| #!/usr/bin/env python3 | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     Implementation of xeps for Internet of Things | ||||
|     http://wiki.xmpp.org/web/Tech_pages/IoT_systems | ||||
|     Copyright (C) 2013 Sustainable Innovation, Joachim.lindborg@sust.se | ||||
|     This file is part of Slixmpp. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| import os | ||||
| import sys | ||||
| # This can be used when you are in a test environment and need to make paths right | ||||
| sys.path=['/Users/jocke/Dropbox/06_dev/Slixmpp']+sys.path | ||||
|  | ||||
| import logging | ||||
| import unittest | ||||
| import distutils.core | ||||
| import datetime | ||||
|  | ||||
| from glob import glob | ||||
| from os.path import splitext, basename, join as pjoin | ||||
| from argparse import ArgumentParser | ||||
| from urllib import urlopen | ||||
|  | ||||
| import slixmpp | ||||
| from slixmpp.plugins.xep_0323.device import Device | ||||
|  | ||||
| #from slixmpp.exceptions import IqError, IqTimeout | ||||
|  | ||||
| class IoT_TestDevice(slixmpp.ClientXMPP): | ||||
|  | ||||
|     """ | ||||
|     A simple IoT device that can act as server or client | ||||
|     """ | ||||
|     def __init__(self, jid, password): | ||||
|         slixmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         self.add_event_handler("session_start", self.session_start) | ||||
|         self.add_event_handler("message", self.message) | ||||
|         self.device=None | ||||
|         self.releaseMe=False | ||||
|         self.beServer=True | ||||
|         self.clientJID=None | ||||
|  | ||||
|     def datacallback(self,from_jid,result,nodeId=None,timestamp=None,fields=None,error_msg=None): | ||||
|         """ | ||||
|         This method will be called when you ask another IoT device for data with the xep_0323 | ||||
|         se script below for the registration of the callback | ||||
|         """ | ||||
|         logging.debug("we got data %s from %s",str(result),from_jid) | ||||
|  | ||||
|     def beClientOrServer(self,server=True,clientJID=None ): | ||||
|         if server: | ||||
|             self.beServer=True | ||||
|             self.clientJID=None | ||||
|         else: | ||||
|             self.beServer=False | ||||
|             self.clientJID=clientJID | ||||
|  | ||||
|     def testForRelease(self): | ||||
|         # todo thread safe | ||||
|         return self.releaseMe | ||||
|  | ||||
|     def doReleaseMe(self): | ||||
|         # todo thread safe | ||||
|         self.releaseMe=True | ||||
|  | ||||
|     def addDevice(self, device): | ||||
|         self.device=device | ||||
|  | ||||
|     def session_start(self, event): | ||||
|         self.send_presence() | ||||
|         self.get_roster() | ||||
|         # tell your preffered friend that you are alive | ||||
|         self.send_message(mto='jocke@jabber.sust.se', mbody=self.boundjid.bare +' is now online use xep_323 stanza to talk to me') | ||||
|  | ||||
|         if not(self.beServer): | ||||
|             session=self['xep_0323'].request_data(self.boundjid.full,self.clientJID,self.datacallback) | ||||
|  | ||||
|     def message(self, msg): | ||||
|         if msg['type'] in ('chat', 'normal'): | ||||
|             logging.debug("got normal chat message" + str(msg)) | ||||
|             ip=urlopen('http://icanhazip.com').read() | ||||
|             msg.reply("Hi I am " + self.boundjid.full + " and I am on IP " + ip).send() | ||||
|         else: | ||||
|             logging.debug("got unknown message type %s", str(msg['type'])) | ||||
|  | ||||
| class TheDevice(Device): | ||||
|     """ | ||||
|     This is the actual device object that you will use to get information from your real hardware | ||||
|     You will be called in the refresh method when someone is requesting information from you | ||||
|     """ | ||||
|     def __init__(self,nodeId): | ||||
|         Device.__init__(self,nodeId) | ||||
|         self.counter=0 | ||||
|  | ||||
|     def refresh(self,fields): | ||||
|         """ | ||||
|         the implementation of the refresh method | ||||
|         """ | ||||
|         self._set_momentary_timestamp(self._get_timestamp()) | ||||
|         self.counter+=self.counter | ||||
|         self._add_field_momentary_data(self, "Temperature", self.counter) | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|  | ||||
|     # Setup the command line arguments. | ||||
|     # | ||||
|     # This script can act both as | ||||
|     #   "server" an IoT device that can provide sensorinformation | ||||
|     #   python IoT_TestDevice.py -j "serverjid@yourdomain.com" -p "password" -n "TestIoT" --debug | ||||
|     # | ||||
|     #   "client" an IoT device or other party that would like to get data from another device | ||||
|  | ||||
|     parser = ArgumentParser() | ||||
|  | ||||
|     # Output verbosity options. | ||||
|     parser.add_argument("-q", "--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.ERROR, default=logging.INFO) | ||||
|     parser.add_argument("-d", "--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.DEBUG, default=logging.INFO) | ||||
|     parser.add_argument("-t", "--pingto", help="set jid to ping", | ||||
|                         action="store", type="string", dest="pingjid", | ||||
|                         default=None) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|  | ||||
|     # IoT test | ||||
|     parser.add_argument("-c", "--sensorjid", dest="sensorjid", | ||||
|                         help="Another device to call for data on", default=None) | ||||
|     parser.add_argument("-n", "--nodeid", dest="nodeid", | ||||
|                         help="I am a device get ready to be called", default=None) | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|  | ||||
|      # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|  | ||||
|  | ||||
|     xmpp = IoT_TestDevice(args.jid,args.password) | ||||
|     xmpp.register_plugin('xep_0030') | ||||
|     #xmpp['xep_0030'].add_feature(feature='urn:xmpp:iot:sensordata', | ||||
|     #                             node=None, | ||||
|     #    jid=None) | ||||
|     xmpp.register_plugin('xep_0323') | ||||
|     xmpp.register_plugin('xep_0325') | ||||
|  | ||||
|     if args.nodeid: | ||||
|  | ||||
|         # xmpp['xep_0030'].add_feature(feature='urn:xmpp:sn', | ||||
|         # node=args.nodeid, | ||||
|         # jid=xmpp.boundjid.full) | ||||
|  | ||||
|         myDevice = TheDevice(args.nodeid); | ||||
|         # myDevice._add_field(name="Relay", typename="numeric", unit="Bool"); | ||||
|         myDevice._add_field(name="Temperature", typename="numeric", unit="C"); | ||||
|         myDevice._set_momentary_timestamp("2013-03-07T16:24:30") | ||||
|         myDevice._add_field_momentary_data("Temperature", "23.4", flags={"automaticReadout": "true"}); | ||||
|  | ||||
|         xmpp['xep_0323'].register_node(nodeId=args.nodeid, device=myDevice, commTimeout=10); | ||||
|         xmpp.beClientOrServer(server=True) | ||||
|         while not(xmpp.testForRelease()): | ||||
|             xmpp.connect() | ||||
|             xmpp.process(block=True) | ||||
|             logging.debug("lost connection") | ||||
|     if args.sensorjid: | ||||
|         logging.debug("will try to call another device for data") | ||||
|         xmpp.beClientOrServer(server=False,clientJID=args.sensorjid) | ||||
|         xmpp.connect() | ||||
|         xmpp.process(block=True) | ||||
|         logging.debug("ready ending") | ||||
|  | ||||
|     else: | ||||
|        print "noopp didn't happen" | ||||
|  | ||||
| @@ -1,30 +1,41 @@ | ||||
| #!/usr/bin/env python3 | ||||
| #!/usr/bin/env python | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2010  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| from argparse import ArgumentParser | ||||
| import getpass | ||||
| from optparse import OptionParser | ||||
|  | ||||
| import slixmpp | ||||
| import sleekxmpp | ||||
|  | ||||
| # Python versions before 3.0 do not use UTF-8 encoding | ||||
| # by default. To ensure that Unicode is handled properly | ||||
| # throughout SleekXMPP, we will set the default encoding | ||||
| # ourselves to UTF-8. | ||||
| if sys.version_info < (3, 0): | ||||
|     from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|     setdefaultencoding('utf8') | ||||
| else: | ||||
|     raw_input = input | ||||
|  | ||||
|  | ||||
| class CommandBot(slixmpp.ClientXMPP): | ||||
| class CommandBot(sleekxmpp.ClientXMPP): | ||||
|  | ||||
|     """ | ||||
|     A simple Slixmpp bot that provides a basic | ||||
|     A simple SleekXMPP bot that provides a basic | ||||
|     adhoc command. | ||||
|     """ | ||||
|  | ||||
|     def __init__(self, jid, password): | ||||
|         slixmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         sleekxmpp.ClientXMPP.__init__(self, jid, password) | ||||
|  | ||||
|         # The session_start event will be triggered when | ||||
|         # the bot establishes its connection with the server | ||||
| @@ -132,42 +143,62 @@ class CommandBot(slixmpp.ClientXMPP): | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser() | ||||
|     optp = OptionParser() | ||||
|  | ||||
|     # Output verbosity options. | ||||
|     parser.add_argument("-q", "--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.ERROR, default=logging.INFO) | ||||
|     parser.add_argument("-d", "--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-q', '--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.ERROR, default=logging.INFO) | ||||
|     optp.add_option('-d', '--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-v', '--verbose', help='set logging to COMM', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=5, default=logging.INFO) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|     opts, args = optp.parse_args() | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Username: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|  | ||||
|     # Setup the CommandBot and register plugins. Note that while plugins may | ||||
|     # have interdependencies, the order in which you register them does | ||||
|     # not matter. | ||||
|     xmpp = CommandBot(args.jid, args.password) | ||||
|     xmpp = CommandBot(opts.jid, opts.password) | ||||
|     xmpp.register_plugin('xep_0030') # Service Discovery | ||||
|     xmpp.register_plugin('xep_0004') # Data Forms | ||||
|     xmpp.register_plugin('xep_0050') # Adhoc Commands | ||||
|     xmpp.register_plugin('xep_0199', {'keepalive': True, 'frequency':15}) | ||||
|  | ||||
|     # If you are working with an OpenFire server, you may need | ||||
|     # to adjust the SSL version used: | ||||
|     # xmpp.ssl_version = ssl.PROTOCOL_SSLv3 | ||||
|  | ||||
|     # If you want to verify the SSL certificates offered by a server: | ||||
|     # xmpp.ca_certs = "path/to/ca/cert" | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(): | ||||
|         # If you do not have the dnspython library installed, you will need | ||||
|         # to manually specify the name of the server if it does not match | ||||
|         # the one in the JID. For example, to use Google Talk you would | ||||
|         # need to use: | ||||
|         # | ||||
|         # if xmpp.connect(('talk.google.com', 5222)): | ||||
|         #     ... | ||||
|         xmpp.process(block=True) | ||||
|         print("Done") | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|   | ||||
| @@ -1,30 +1,41 @@ | ||||
| #!/usr/bin/env python3 | ||||
| #!/usr/bin/env python | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2010  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| from argparse import ArgumentParser | ||||
| import getpass | ||||
| from optparse import OptionParser | ||||
|  | ||||
| import slixmpp | ||||
| import sleekxmpp | ||||
|  | ||||
| # Python versions before 3.0 do not use UTF-8 encoding | ||||
| # by default. To ensure that Unicode is handled properly | ||||
| # throughout SleekXMPP, we will set the default encoding | ||||
| # ourselves to UTF-8. | ||||
| if sys.version_info < (3, 0): | ||||
|     from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|     setdefaultencoding('utf8') | ||||
| else: | ||||
|     raw_input = input | ||||
|  | ||||
|  | ||||
| class CommandUserBot(slixmpp.ClientXMPP): | ||||
| class CommandUserBot(sleekxmpp.ClientXMPP): | ||||
|  | ||||
|     """ | ||||
|     A simple Slixmpp bot that uses the adhoc command | ||||
|     A simple SleekXMPP bot that uses the adhoc command | ||||
|     provided by the adhoc_provider.py example. | ||||
|     """ | ||||
|  | ||||
|     def __init__(self, jid, password, other, greeting): | ||||
|         slixmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         sleekxmpp.ClientXMPP.__init__(self, jid, password) | ||||
|  | ||||
|         self.command_provider = other | ||||
|         self.greeting = greeting | ||||
| @@ -131,49 +142,69 @@ class CommandUserBot(slixmpp.ClientXMPP): | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser() | ||||
|     optp = OptionParser() | ||||
|  | ||||
|     # Output verbosity options. | ||||
|     parser.add_argument("-q", "--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.ERROR, default=logging.INFO) | ||||
|     parser.add_argument("-d", "--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-q', '--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.ERROR, default=logging.INFO) | ||||
|     optp.add_option('-d', '--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-v', '--verbose', help='set logging to COMM', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=5, default=logging.INFO) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|     parser.add_argument("-o", "--other", dest="other", | ||||
|                         help="JID providing commands") | ||||
|     parser.add_argument("-g", "--greeting", dest="greeting", | ||||
|                         help="Greeting") | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|     optp.add_option("-o", "--other", dest="other", | ||||
|                     help="JID providing commands") | ||||
|     optp.add_option("-g", "--greeting", dest="greeting", | ||||
|                     help="Greeting") | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|     opts, args = optp.parse_args() | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|     if args.other is None: | ||||
|         args.other = input("JID Providing Commands: ") | ||||
|     if args.greeting is None: | ||||
|         args.greeting = input("Greeting: ") | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Username: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|     if opts.other is None: | ||||
|         opts.other = raw_input("JID Providing Commands: ") | ||||
|     if opts.greeting is None: | ||||
|         opts.greeting = raw_input("Greeting: ") | ||||
|  | ||||
|     # Setup the CommandBot and register plugins. Note that while plugins may | ||||
|     # have interdependencies, the order in which you register them does | ||||
|     # not matter. | ||||
|     xmpp = CommandUserBot(args.jid, args.password, args.other, args.greeting) | ||||
|     xmpp = CommandUserBot(opts.jid, opts.password, opts.other, opts.greeting) | ||||
|     xmpp.register_plugin('xep_0030') # Service Discovery | ||||
|     xmpp.register_plugin('xep_0004') # Data Forms | ||||
|     xmpp.register_plugin('xep_0050') # Adhoc Commands | ||||
|  | ||||
|     # If you are working with an OpenFire server, you may need | ||||
|     # to adjust the SSL version used: | ||||
|     # xmpp.ssl_version = ssl.PROTOCOL_SSLv3 | ||||
|  | ||||
|     # If you want to verify the SSL certificates offered by a server: | ||||
|     # xmpp.ca_certs = "path/to/ca/cert" | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(): | ||||
|         # If you do not have the dnspython library installed, you will need | ||||
|         # to manually specify the name of the server if it does not match | ||||
|         # the one in the JID. For example, to use Google Talk you would | ||||
|         # need to use: | ||||
|         # | ||||
|         # if xmpp.connect(('talk.google.com', 5222)): | ||||
|         #     ... | ||||
|         xmpp.process(block=True) | ||||
|         print("Done") | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|   | ||||
| @@ -1,30 +1,41 @@ | ||||
| #!/usr/bin/env python3 | ||||
| #!/usr/bin/env python | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2010  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| from argparse import ArgumentParser | ||||
| import getpass | ||||
| from optparse import OptionParser | ||||
|  | ||||
| import slixmpp | ||||
| import sleekxmpp | ||||
|  | ||||
| # Python versions before 3.0 do not use UTF-8 encoding | ||||
| # by default. To ensure that Unicode is handled properly | ||||
| # throughout SleekXMPP, we will set the default encoding | ||||
| # ourselves to UTF-8. | ||||
| if sys.version_info < (3, 0): | ||||
|     from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|     setdefaultencoding('utf8') | ||||
| else: | ||||
|     raw_input = input | ||||
|  | ||||
|  | ||||
| class AdminCommands(slixmpp.ClientXMPP): | ||||
| class AdminCommands(sleekxmpp.ClientXMPP): | ||||
|  | ||||
|     """ | ||||
|     A simple Slixmpp bot that uses admin commands to | ||||
|     A simple SleekXMPP bot that uses admin commands to | ||||
|     add a new user to a server. | ||||
|     """ | ||||
|  | ||||
|     def __init__(self, jid, password, command): | ||||
|         slixmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         sleekxmpp.ClientXMPP.__init__(self, jid, password) | ||||
|  | ||||
|         self.command = command | ||||
|  | ||||
| @@ -70,13 +81,13 @@ class AdminCommands(slixmpp.ClientXMPP): | ||||
|             for var, field in form['fields'].items(): | ||||
|                 if var != 'FORM_TYPE': | ||||
|                     if field['type'] == 'boolean': | ||||
|                         answers[var] = input('%s (y/n): ' % field['label']) | ||||
|                         answers[var] = raw_input('%s (y/n): ' % field['label']) | ||||
|                         if answers[var].lower() in ('1', 'true', 'y', 'yes'): | ||||
|                             answers[var] = '1' | ||||
|                         else: | ||||
|                             answers[var] = '0' | ||||
|                     else: | ||||
|                         answers[var] = input('%s: ' % field['label']) | ||||
|                         answers[var] = raw_input('%s: ' % field['label']) | ||||
|                 else: | ||||
|                     answers['FORM_TYPE'] = field['value'] | ||||
|             form['type'] = 'submit' | ||||
| @@ -105,43 +116,63 @@ class AdminCommands(slixmpp.ClientXMPP): | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser() | ||||
|     optp = OptionParser() | ||||
|  | ||||
|     # Output verbosity options. | ||||
|     parser.add_argument("-q", "--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.ERROR, default=logging.INFO) | ||||
|     parser.add_argument("-d", "--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-q', '--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.ERROR, default=logging.INFO) | ||||
|     optp.add_option('-d', '--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-v', '--verbose', help='set logging to COMM', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=5, default=logging.INFO) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|     parser.add_argument("-c", "--command", dest="command", | ||||
|                         help="admin command to use") | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|     optp.add_option("-c", "--command", dest="command", | ||||
|                     help="admin command to use") | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|     opts, args = optp.parse_args() | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|     if args.command is None: | ||||
|         args.command = input("Admin command: ") | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Username: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|     if opts.command is None: | ||||
|         opts.command = raw_input("Admin command: ") | ||||
|  | ||||
|     # Setup the CommandBot and register plugins. Note that while plugins may | ||||
|     # have interdependencies, the order in which you register them does | ||||
|     # not matter. | ||||
|     xmpp = AdminCommands(args.jid, args.password, args.command) | ||||
|     xmpp = AdminCommands(opts.jid, opts.password, opts.command) | ||||
|     xmpp.register_plugin('xep_0133') # Service Administration | ||||
|  | ||||
|     # If you are working with an OpenFire server, you may need | ||||
|     # to adjust the SSL version used: | ||||
|     # xmpp.ssl_version = ssl.PROTOCOL_SSLv3 | ||||
|  | ||||
|     # If you want to verify the SSL certificates offered by a server: | ||||
|     # xmpp.ca_certs = "path/to/ca/cert" | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(): | ||||
|         # If you do not have the dnspython library installed, you will need | ||||
|         # to manually specify the name of the server if it does not match | ||||
|         # the one in the JID. For example, to use Google Talk you would | ||||
|         # need to use: | ||||
|         # | ||||
|         # if xmpp.connect(('talk.google.com', 5222)): | ||||
|         #     ... | ||||
|         xmpp.process(block=True) | ||||
|         print("Done") | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|   | ||||
| @@ -1,37 +1,48 @@ | ||||
| #!/usr/bin/env python3 | ||||
| #!/usr/bin/env python | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2010  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| from argparse import ArgumentParser | ||||
| import getpass | ||||
| from optparse import OptionParser | ||||
|  | ||||
| import slixmpp | ||||
| import sleekxmpp | ||||
|  | ||||
| from slixmpp import ClientXMPP, Iq | ||||
| from slixmpp.exceptions import IqError, IqTimeout, XMPPError | ||||
| from slixmpp.xmlstream import register_stanza_plugin | ||||
| from slixmpp.xmlstream.handler import Callback | ||||
| from slixmpp.xmlstream.matcher import StanzaPath | ||||
| from sleekxmpp import ClientXMPP, Iq | ||||
| from sleekxmpp.exceptions import IqError, IqTimeout, XMPPError | ||||
| from sleekxmpp.xmlstream import register_stanza_plugin | ||||
| from sleekxmpp.xmlstream.handler import Callback | ||||
| from sleekxmpp.xmlstream.matcher import StanzaPath | ||||
| from stanza import Action | ||||
|  | ||||
| # Python versions before 3.0 do not use UTF-8 encoding | ||||
| # by default. To ensure that Unicode is handled properly | ||||
| # throughout SleekXMPP, we will set the default encoding | ||||
| # ourselves to UTF-8. | ||||
| if sys.version_info < (3, 0): | ||||
|     from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|     setdefaultencoding('utf8') | ||||
| else: | ||||
|     raw_input = input | ||||
|  | ||||
| class ActionBot(slixmpp.ClientXMPP): | ||||
|  | ||||
| class ActionBot(sleekxmpp.ClientXMPP): | ||||
|  | ||||
|     """ | ||||
|     A simple Slixmpp bot that receives a custom stanza | ||||
|     A simple SleekXMPP bot that receives a custom stanza | ||||
|     from another client. | ||||
|     """ | ||||
|  | ||||
|     def __init__(self, jid, password): | ||||
|         slixmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         sleekxmpp.ClientXMPP.__init__(self, jid, password) | ||||
|  | ||||
|         # The session_start event will be triggered when | ||||
|         # the bot establishes its connection with the server | ||||
| @@ -40,13 +51,14 @@ class ActionBot(slixmpp.ClientXMPP): | ||||
|         # our roster. | ||||
|         self.add_event_handler("session_start", self.start) | ||||
|  | ||||
|         self.register_handler( | ||||
|         self.registerHandler( | ||||
|           Callback('Some custom iq', | ||||
|             StanzaPath('iq@type=set/action'), | ||||
|             self._handle_action)) | ||||
|  | ||||
|         self.add_event_handler('custom_action', | ||||
|                 self._handle_action_event) | ||||
|                 self._handle_action_event, | ||||
|                 threaded=True) | ||||
|  | ||||
|         register_stanza_plugin(Iq, Action) | ||||
|  | ||||
| @@ -76,6 +88,10 @@ class ActionBot(slixmpp.ClientXMPP): | ||||
|     def _handle_action_event(self, iq): | ||||
|         """ | ||||
|         Respond to the custom action event. | ||||
|  | ||||
|         Since one of the actions is to disconnect, this | ||||
|         event handler needs to be run in threaded mode, by | ||||
|         using `threaded=True` in the `add_event_handler` call. | ||||
|         """ | ||||
|         method = iq['action']['method'] | ||||
|         param = iq['action']['param'] | ||||
| @@ -96,42 +112,62 @@ class ActionBot(slixmpp.ClientXMPP): | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser() | ||||
|     optp = OptionParser() | ||||
|  | ||||
|     # Output verbosity options. | ||||
|     parser.add_argument("-q", "--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.ERROR, default=logging.INFO) | ||||
|     parser.add_argument("-d", "--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-q', '--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.ERROR, default=logging.INFO) | ||||
|     optp.add_option('-d', '--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-v', '--verbose', help='set logging to COMM', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=5, default=logging.INFO) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|     opts, args = optp.parse_args() | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Username: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|  | ||||
|     # Setup the CommandBot and register plugins. Note that while plugins may | ||||
|     # have interdependencies, the order in which you register them does | ||||
|     # not matter. | ||||
|     xmpp = ActionBot(args.jid, args.password) | ||||
|     xmpp = ActionBot(opts.jid, opts.password) | ||||
|     xmpp.register_plugin('xep_0030') # Service Discovery | ||||
|     xmpp.register_plugin('xep_0004') # Data Forms | ||||
|     xmpp.register_plugin('xep_0050') # Adhoc Commands | ||||
|     xmpp.register_plugin('xep_0199', {'keepalive': True, 'frequency':15}) | ||||
|  | ||||
|     # If you are working with an OpenFire server, you may need | ||||
|     # to adjust the SSL version used: | ||||
|     # xmpp.ssl_version = ssl.PROTOCOL_SSLv3 | ||||
|  | ||||
|     # If you want to verify the SSL certificates offered by a server: | ||||
|     # xmpp.ca_certs = "path/to/ca/cert" | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(): | ||||
|         # If you do not have the dnspython library installed, you will need | ||||
|         # to manually specify the name of the server if it does not match | ||||
|         # the one in the JID. For example, to use Google Talk you would | ||||
|         # need to use: | ||||
|         # | ||||
|         # if xmpp.connect(('talk.google.com', 5222)): | ||||
|         #     ... | ||||
|         xmpp.process(block=True) | ||||
|         print("Done") | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|   | ||||
| @@ -1,35 +1,46 @@ | ||||
| #!/usr/bin/env python3 | ||||
| #!/usr/bin/env python | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2010  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| from argparse import ArgumentParser | ||||
| import getpass | ||||
| from optparse import OptionParser | ||||
|  | ||||
| import slixmpp | ||||
| from slixmpp import Iq | ||||
| from slixmpp.exceptions import XMPPError | ||||
| from slixmpp.xmlstream import register_stanza_plugin | ||||
| import sleekxmpp | ||||
| from sleekxmpp import Iq | ||||
| from sleekxmpp.exceptions import XMPPError | ||||
| from sleekxmpp.xmlstream import register_stanza_plugin | ||||
|  | ||||
| from stanza import Action | ||||
|  | ||||
| # Python versions before 3.0 do not use UTF-8 encoding | ||||
| # by default. To ensure that Unicode is handled properly | ||||
| # throughout SleekXMPP, we will set the default encoding | ||||
| # ourselves to UTF-8. | ||||
| if sys.version_info < (3, 0): | ||||
|     from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|     setdefaultencoding('utf8') | ||||
| else: | ||||
|     raw_input = input | ||||
|  | ||||
| class ActionUserBot(slixmpp.ClientXMPP): | ||||
|  | ||||
| class ActionUserBot(sleekxmpp.ClientXMPP): | ||||
|  | ||||
|     """ | ||||
|     A simple Slixmpp bot that sends a custom action stanza | ||||
|     A simple SleekXMPP bot that sends a custom action stanza | ||||
|     to another client. | ||||
|     """ | ||||
|  | ||||
|     def __init__(self, jid, password, other): | ||||
|         slixmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         sleekxmpp.ClientXMPP.__init__(self, jid, password) | ||||
|  | ||||
|         self.action_provider = other | ||||
|  | ||||
| @@ -38,7 +49,7 @@ class ActionUserBot(slixmpp.ClientXMPP): | ||||
|         # and the XML streams are ready for use. We want to | ||||
|         # listen for this event so that we we can initialize | ||||
|         # our roster. | ||||
|         self.add_event_handler("session_start", self.start) | ||||
|         self.add_event_handler("session_start", self.start, threaded=True) | ||||
|         self.add_event_handler("message", self.message) | ||||
|  | ||||
|         register_stanza_plugin(Iq, Action) | ||||
| @@ -82,8 +93,10 @@ class ActionUserBot(slixmpp.ClientXMPP): | ||||
|                 iq2['type'] = 'set' | ||||
|                 iq2['action']['method'] = 'bye' | ||||
|                 iq2.send(block=False) | ||||
|  | ||||
|                 self.disconnect() | ||||
|              | ||||
|                 # The wait=True delays the disconnect until the queue | ||||
|                 # of stanzas to be sent becomes empty. | ||||
|                 self.disconnect(wait=True) | ||||
|         except XMPPError: | ||||
|             print('There was an error sending the custom action.') | ||||
|  | ||||
| @@ -98,45 +111,65 @@ class ActionUserBot(slixmpp.ClientXMPP): | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser() | ||||
|     optp = OptionParser() | ||||
|  | ||||
|     # Output verbosity options. | ||||
|     parser.add_argument("-q", "--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.ERROR, default=logging.INFO) | ||||
|     parser.add_argument("-d", "--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-q', '--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.ERROR, default=logging.INFO) | ||||
|     optp.add_option('-d', '--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-v', '--verbose', help='set logging to COMM', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=5, default=logging.INFO) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|     parser.add_argument("-o", "--other", dest="other", | ||||
|                         help="JID providing custom stanza") | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|     optp.add_option("-o", "--other", dest="other", | ||||
|                     help="JID providing custom stanza") | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|     opts, args = optp.parse_args() | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|     if args.other is None: | ||||
|         args.other = input("JID Providing custom stanza: ") | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Username: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|     if opts.other is None: | ||||
|         opts.other = raw_input("JID Providing custom stanza: ") | ||||
|  | ||||
|     # Setup the CommandBot and register plugins. Note that while plugins may | ||||
|     # have interdependencies, the order in which you register them does | ||||
|     # not matter. | ||||
|     xmpp = ActionUserBot(args.jid, args.password, args.other) | ||||
|     xmpp = ActionUserBot(opts.jid, opts.password, opts.other) | ||||
|     xmpp.register_plugin('xep_0030') # Service Discovery | ||||
|     xmpp.register_plugin('xep_0004') # Data Forms | ||||
|     xmpp.register_plugin('xep_0050') # Adhoc Commands | ||||
|  | ||||
|     # If you are working with an OpenFire server, you may need | ||||
|     # to adjust the SSL version used: | ||||
|     # xmpp.ssl_version = ssl.PROTOCOL_SSLv3 | ||||
|  | ||||
|     # If you want to verify the SSL certificates offered by a server: | ||||
|     # xmpp.ca_certs = "path/to/ca/cert" | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(): | ||||
|         # If you do not have the dnspython library installed, you will need | ||||
|         # to manually specify the name of the server if it does not match | ||||
|         # the one in the JID. For example, to use Google Talk you would | ||||
|         # need to use: | ||||
|         # | ||||
|         # if xmpp.connect(('talk.google.com', 5222)): | ||||
|         #     ... | ||||
|         xmpp.process(block=True) | ||||
|         print("Done") | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|   | ||||
| @@ -1,30 +1,30 @@ | ||||
| from slixmpp.xmlstream import ElementBase | ||||
| from sleekxmpp.xmlstream import ElementBase | ||||
|  | ||||
| class Action(ElementBase): | ||||
|  | ||||
|     """ | ||||
|     A stanza class for XML content of the form: | ||||
|  | ||||
|     <action xmlns="slixmpp:custom:actions"> | ||||
|     <action xmlns="sleekxmpp:custom:actions"> | ||||
|       <method>X</method> | ||||
|       <param>X</param> | ||||
|       <status>X</status> | ||||
|     </action> | ||||
|     """ | ||||
|  | ||||
|     | ||||
|     #: The `name` field refers to the basic XML tag name of the | ||||
|     #: stanza. Here, the tag name will be 'action'. | ||||
|     name = 'action' | ||||
|  | ||||
|     #: The namespace of the main XML tag. | ||||
|     namespace = 'slixmpp:custom:actions' | ||||
|     namespace = 'sleekxmpp:custom:actions' | ||||
|  | ||||
|     #: The `plugin_attrib` value is the name that can be used | ||||
|     #: with a parent stanza to access this stanza. For example | ||||
|     #: from an Iq stanza object, accessing: | ||||
|     #: | ||||
|     #:  | ||||
|     #:     iq['action'] | ||||
|     #: | ||||
|     #:  | ||||
|     #: would reference an Action object, and will even create | ||||
|     #: an Action object and append it to the Iq stanza if | ||||
|     #: one doesn't already exist. | ||||
| @@ -49,8 +49,8 @@ class Action(ElementBase): | ||||
|     #: the sub_interfaces set. For example, here all interfaces | ||||
|     #: are marked as sub_interfaces, and so the XML produced will | ||||
|     #: look like: | ||||
|     #: | ||||
|     #:     <action xmlns="slixmpp:custom:actions"> | ||||
|     #:  | ||||
|     #:     <action xmlns="sleekxmpp:custom:actions"> | ||||
|     #:       <method>foo</method> | ||||
|     #:     </action> | ||||
|     sub_interfaces = interfaces | ||||
|   | ||||
| @@ -1,23 +1,35 @@ | ||||
| #!/usr/bin/env python3 | ||||
| #!/usr/bin/env python | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2010  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| from argparse import ArgumentParser | ||||
| import getpass | ||||
| from optparse import OptionParser | ||||
|  | ||||
| import slixmpp | ||||
| from slixmpp.exceptions import IqError, IqTimeout | ||||
| import sleekxmpp | ||||
| from sleekxmpp.exceptions import IqError, IqTimeout | ||||
|  | ||||
|  | ||||
| class Disco(slixmpp.ClientXMPP): | ||||
| # Python versions before 3.0 do not use UTF-8 encoding | ||||
| # by default. To ensure that Unicode is handled properly | ||||
| # throughout SleekXMPP, we will set the default encoding | ||||
| # ourselves to UTF-8. | ||||
| if sys.version_info < (3, 0): | ||||
|     from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|     setdefaultencoding('utf8') | ||||
| else: | ||||
|     raw_input = input | ||||
|  | ||||
|  | ||||
| class Disco(sleekxmpp.ClientXMPP): | ||||
|  | ||||
|     """ | ||||
|     A demonstration for using basic service discovery. | ||||
| @@ -30,7 +42,7 @@ class Disco(slixmpp.ClientXMPP): | ||||
|     """ | ||||
|  | ||||
|     def __init__(self, jid, password, target_jid, target_node='', get=''): | ||||
|         slixmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         sleekxmpp.ClientXMPP.__init__(self, jid, password) | ||||
|  | ||||
|         # Using service discovery requires the XEP-0030 plugin. | ||||
|         self.register_plugin('xep_0030') | ||||
| @@ -51,7 +63,7 @@ class Disco(slixmpp.ClientXMPP): | ||||
|         # and the XML streams are ready for use. We want to | ||||
|         # listen for this event so that we we can initialize | ||||
|         # our roster. | ||||
|         self.add_event_handler("session_start", self.start) | ||||
|         self.add_event_handler("session_start", self.start, threaded=True) | ||||
|  | ||||
|     def start(self, event): | ||||
|         """ | ||||
| @@ -124,42 +136,69 @@ class Disco(slixmpp.ClientXMPP): | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser(description=Disco.__doc__) | ||||
|     optp = OptionParser() | ||||
|     optp.version = '%%prog 0.1' | ||||
|     optp.usage = "Usage: %%prog [options] %s <jid> [<node>]" % \ | ||||
|                              'all|info|items|identities|features' | ||||
|  | ||||
|     parser.add_argument("-q","--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", | ||||
|                         dest="loglevel", | ||||
|                         const=logging.ERROR, | ||||
|                         default=logging.ERROR) | ||||
|     parser.add_argument("-d","--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", | ||||
|                         dest="loglevel", | ||||
|                         const=logging.DEBUG, | ||||
|                         default=logging.ERROR) | ||||
|     optp.add_option('-q','--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', | ||||
|                     dest='loglevel', | ||||
|                     const=logging.ERROR, | ||||
|                     default=logging.ERROR) | ||||
|     optp.add_option('-d','--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', | ||||
|                     dest='loglevel', | ||||
|                     const=logging.DEBUG, | ||||
|                     default=logging.ERROR) | ||||
|     optp.add_option('-v','--verbose', help='set logging to COMM', | ||||
|                     action='store_const', | ||||
|                     dest='loglevel', | ||||
|                     const=5, | ||||
|                     default=logging.ERROR) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|     parser.add_argument("query", choices=["all", "info", "items", "identities", "features"]) | ||||
|     parser.add_argument("target-jid") | ||||
|     parser.add_argument("node", nargs='?') | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|     opts,args = optp.parse_args() | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|     if len(args) < 2: | ||||
|         optp.print_help() | ||||
|         exit() | ||||
|  | ||||
|     if len(args) == 2: | ||||
|         args = (args[0], args[1], '') | ||||
|  | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Username: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|  | ||||
|     # Setup the Disco browser. | ||||
|     xmpp = Disco(args.jid, args.password, args.target_jid, args.node, args.query) | ||||
|     xmpp = Disco(opts.jid, opts.password, args[1], args[2], args[0]) | ||||
|  | ||||
|     # If you are working with an OpenFire server, you may need | ||||
|     # to adjust the SSL version used: | ||||
|     # xmpp.ssl_version = ssl.PROTOCOL_SSLv3 | ||||
|  | ||||
|     # If you want to verify the SSL certificates offered by a server: | ||||
|     # xmpp.ca_certs = "path/to/ca/cert" | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(): | ||||
|         # If you do not have the dnspython library installed, you will need | ||||
|         # to manually specify the name of the server if it does not match | ||||
|         # the one in the JID. For example, to use Google Talk you would | ||||
|         # need to use: | ||||
|         # | ||||
|         # if xmpp.connect(('talk.google.com', 5222)): | ||||
|         #     ... | ||||
|         xmpp.process(block=True) | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|   | ||||
							
								
								
									
										104
									
								
								examples/download_avatars.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							
							
						
						
									
										104
									
								
								examples/download_avatars.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							| @@ -1,21 +1,33 @@ | ||||
| #!/usr/bin/env python3 | ||||
| #!/usr/bin/env python | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2012  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| import getpass | ||||
| import threading | ||||
| from argparse import ArgumentParser | ||||
| from optparse import OptionParser | ||||
|  | ||||
| import slixmpp | ||||
| from slixmpp.exceptions import XMPPError | ||||
| import sleekxmpp | ||||
| from sleekxmpp.exceptions import XMPPError | ||||
|  | ||||
|  | ||||
| # Python versions before 3.0 do not use UTF-8 encoding | ||||
| # by default. To ensure that Unicode is handled properly | ||||
| # throughout SleekXMPP, we will set the default encoding | ||||
| # ourselves to UTF-8. | ||||
| if sys.version_info < (3, 0): | ||||
|     from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|     setdefaultencoding('utf8') | ||||
| else: | ||||
|     raw_input = input | ||||
|  | ||||
|  | ||||
| FILE_TYPES = { | ||||
| @@ -25,15 +37,15 @@ FILE_TYPES = { | ||||
| } | ||||
|  | ||||
|  | ||||
| class AvatarDownloader(slixmpp.ClientXMPP): | ||||
| class AvatarDownloader(sleekxmpp.ClientXMPP): | ||||
|  | ||||
|     """ | ||||
|     A basic script for downloading the avatars for a user's contacts. | ||||
|     """ | ||||
|  | ||||
|     def __init__(self, jid, password): | ||||
|         slixmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         self.add_event_handler("session_start", self.start) | ||||
|         sleekxmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         self.add_event_handler("session_start", self.start, threaded=True) | ||||
|         self.add_event_handler("changed_status", self.wait_for_presences) | ||||
|  | ||||
|         self.add_event_handler('vcard_avatar_update', self.on_vcard_avatar) | ||||
| @@ -60,7 +72,7 @@ class AvatarDownloader(slixmpp.ClientXMPP): | ||||
|  | ||||
|         print('Waiting for presence updates...\n') | ||||
|         self.presences_received.wait(15) | ||||
|         self.disconnect() | ||||
|         self.disconnect(wait=True) | ||||
|  | ||||
|     def on_vcard_avatar(self, pres): | ||||
|         print("Received vCard avatar update from %s" % pres['from'].bare) | ||||
| @@ -113,40 +125,60 @@ class AvatarDownloader(slixmpp.ClientXMPP): | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser() | ||||
|     parser.add_argument("-q","--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", | ||||
|                         dest="loglevel", | ||||
|                         const=logging.ERROR, | ||||
|                         default=logging.ERROR) | ||||
|     parser.add_argument("-d","--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", | ||||
|                         dest="loglevel", | ||||
|                         const=logging.DEBUG, | ||||
|                         default=logging.ERROR) | ||||
|     optp = OptionParser() | ||||
|     optp.add_option('-q','--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', | ||||
|                     dest='loglevel', | ||||
|                     const=logging.ERROR, | ||||
|                     default=logging.ERROR) | ||||
|     optp.add_option('-d','--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', | ||||
|                     dest='loglevel', | ||||
|                     const=logging.DEBUG, | ||||
|                     default=logging.ERROR) | ||||
|     optp.add_option('-v','--verbose', help='set logging to COMM', | ||||
|                     action='store_const', | ||||
|                     dest='loglevel', | ||||
|                     const=5, | ||||
|                     default=logging.ERROR) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|     opts,args = optp.parse_args() | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Username: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|  | ||||
|     xmpp = AvatarDownloader(args.jid, args.password) | ||||
|     xmpp = AvatarDownloader(opts.jid, opts.password) | ||||
|     xmpp.register_plugin('xep_0054') | ||||
|     xmpp.register_plugin('xep_0153') | ||||
|     xmpp.register_plugin('xep_0084') | ||||
|  | ||||
|     # If you are working with an OpenFire server, you may need | ||||
|     # to adjust the SSL version used: | ||||
|     # xmpp.ssl_version = ssl.PROTOCOL_SSLv3 | ||||
|  | ||||
|     # If you want to verify the SSL certificates offered by a server: | ||||
|     # xmpp.ca_certs = "path/to/ca/cert" | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(): | ||||
|         # If you do not have the dnspython library installed, you will need | ||||
|         # to manually specify the name of the server if it does not match | ||||
|         # the one in the JID. For example, to use Google Talk you would | ||||
|         # need to use: | ||||
|         # | ||||
|         # if xmpp.connect(('talk.google.com', 5222)): | ||||
|         #     ... | ||||
|         xmpp.process(block=True) | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|   | ||||
| @@ -1,30 +1,41 @@ | ||||
| #!/usr/bin/env python3 | ||||
| #!/usr/bin/env python | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2010  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| from argparse import ArgumentParser | ||||
| import getpass | ||||
| from optparse import OptionParser | ||||
|  | ||||
| import slixmpp | ||||
| import sleekxmpp | ||||
|  | ||||
| # Python versions before 3.0 do not use UTF-8 encoding | ||||
| # by default. To ensure that Unicode is handled properly | ||||
| # throughout SleekXMPP, we will set the default encoding | ||||
| # ourselves to UTF-8. | ||||
| if sys.version_info < (3, 0): | ||||
|     from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|     setdefaultencoding('utf8') | ||||
| else: | ||||
|     raw_input = input | ||||
|  | ||||
|  | ||||
| class EchoBot(slixmpp.ClientXMPP): | ||||
| class EchoBot(sleekxmpp.ClientXMPP): | ||||
|  | ||||
|     """ | ||||
|     A simple Slixmpp bot that will echo messages it | ||||
|     A simple SleekXMPP bot that will echo messages it | ||||
|     receives, along with a short thank you message. | ||||
|     """ | ||||
|  | ||||
|     def __init__(self, jid, password): | ||||
|         slixmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         sleekxmpp.ClientXMPP.__init__(self, jid, password) | ||||
|  | ||||
|         # The session_start event will be triggered when | ||||
|         # the bot establishes its connection with the server | ||||
| @@ -72,42 +83,75 @@ class EchoBot(slixmpp.ClientXMPP): | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser(description=EchoBot.__doc__) | ||||
|     optp = OptionParser() | ||||
|  | ||||
|     # Output verbosity options. | ||||
|     parser.add_argument("-q", "--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.ERROR, default=logging.INFO) | ||||
|     parser.add_argument("-d", "--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-q', '--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.ERROR, default=logging.INFO) | ||||
|     optp.add_option('-d', '--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-v', '--verbose', help='set logging to COMM', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=5, default=logging.INFO) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|     opts, args = optp.parse_args() | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Username: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|  | ||||
|     # Setup the EchoBot and register plugins. Note that while plugins may | ||||
|     # have interdependencies, the order in which you register them does | ||||
|     # not matter. | ||||
|     xmpp = EchoBot(args.jid, args.password) | ||||
|     xmpp = EchoBot(opts.jid, opts.password) | ||||
|     xmpp.register_plugin('xep_0030') # Service Discovery | ||||
|     xmpp.register_plugin('xep_0004') # Data Forms | ||||
|     xmpp.register_plugin('xep_0060') # PubSub | ||||
|     xmpp.register_plugin('xep_0199') # XMPP Ping | ||||
|  | ||||
|     # If you are connecting to Facebook and wish to use the | ||||
|     # X-FACEBOOK-PLATFORM authentication mechanism, you will need | ||||
|     # your API key and an access token. Then you'll set: | ||||
|     # xmpp.credentials['api_key'] = 'THE_API_KEY' | ||||
|     # xmpp.credentials['access_token'] = 'THE_ACCESS_TOKEN' | ||||
|  | ||||
|     # If you are connecting to MSN, then you will need an | ||||
|     # access token, and it does not matter what JID you | ||||
|     # specify other than that the domain is 'messenger.live.com', | ||||
|     # so '_@messenger.live.com' will work. You can specify | ||||
|     # the access token as so: | ||||
|     # xmpp.credentials['access_token'] = 'THE_ACCESS_TOKEN' | ||||
|  | ||||
|     # If you are working with an OpenFire server, you may need | ||||
|     # to adjust the SSL version used: | ||||
|     # xmpp.ssl_version = ssl.PROTOCOL_SSLv3 | ||||
|  | ||||
|     # If you want to verify the SSL certificates offered by a server: | ||||
|     # xmpp.ca_certs = "path/to/ca/cert" | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(): | ||||
|         # If you do not have the dnspython library installed, you will need | ||||
|         # to manually specify the name of the server if it does not match | ||||
|         # the one in the JID. For example, to use Google Talk you would | ||||
|         # need to use: | ||||
|         # | ||||
|         # if xmpp.connect(('talk.google.com', 5222)): | ||||
|         #     ... | ||||
|         xmpp.process(block=True) | ||||
|         print("Done") | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|   | ||||
| @@ -1,26 +1,37 @@ | ||||
| #!/usr/bin/env python3 | ||||
| #!/usr/bin/env python | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2010  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| from argparse import ArgumentParser | ||||
| import getpass | ||||
| from optparse import OptionParser | ||||
|  | ||||
| import slixmpp | ||||
| from slixmpp.componentxmpp import ComponentXMPP | ||||
| import sleekxmpp | ||||
| from sleekxmpp.componentxmpp import ComponentXMPP | ||||
|  | ||||
| # Python versions before 3.0 do not use UTF-8 encoding | ||||
| # by default. To ensure that Unicode is handled properly | ||||
| # throughout SleekXMPP, we will set the default encoding | ||||
| # ourselves to UTF-8. | ||||
| if sys.version_info < (3, 0): | ||||
|     from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|     setdefaultencoding('utf8') | ||||
| else: | ||||
|     raw_input = input | ||||
|  | ||||
|  | ||||
| class EchoComponent(ComponentXMPP): | ||||
|  | ||||
|     """ | ||||
|     A simple Slixmpp component that echoes messages. | ||||
|     A simple SleekXMPP component that echoes messages. | ||||
|     """ | ||||
|  | ||||
|     def __init__(self, jid, secret, server, port): | ||||
| @@ -56,50 +67,56 @@ class EchoComponent(ComponentXMPP): | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser(description=EchoComponent.__doc__) | ||||
|     optp = OptionParser() | ||||
|  | ||||
|     # Output verbosity options. | ||||
|     parser.add_argument("-q", "--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.ERROR, default=logging.INFO) | ||||
|     parser.add_argument("-d", "--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-q', '--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.ERROR, default=logging.INFO) | ||||
|     optp.add_option('-d', '--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-v', '--verbose', help='set logging to COMM', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=5, default=logging.INFO) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|     parser.add_argument("-s", "--server", dest="server", | ||||
|                         help="server to connect to") | ||||
|     parser.add_argument("-P", "--port", dest="port", | ||||
|                         help="port to connect to") | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|     optp.add_option("-s", "--server", dest="server", | ||||
|                     help="server to connect to") | ||||
|     optp.add_option("-P", "--port", dest="port", | ||||
|                     help="port to connect to") | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|     opts, args = optp.parse_args() | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Component JID: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|     if args.server is None: | ||||
|         args.server = input("Server: ") | ||||
|     if args.port is None: | ||||
|         args.port = int(input("Port: ")) | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Component JID: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|     if opts.server is None: | ||||
|         opts.server = raw_input("Server: ") | ||||
|     if opts.port is None: | ||||
|         opts.port = int(raw_input("Port: ")) | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     # Setup the EchoComponent and register plugins. Note that while plugins | ||||
|     # may have interdependencies, the order in which you register them does | ||||
|     # not matter. | ||||
|     xmpp = EchoComponent(args.jid, args.password, args.server, args.port) | ||||
|     xmpp.register_plugin('xep_0030') # Service Discovery | ||||
|     xmpp.register_plugin('xep_0004') # Data Forms | ||||
|     xmpp.register_plugin('xep_0060') # PubSub | ||||
|     xmpp.register_plugin('xep_0199') # XMPP Ping | ||||
|     xmpp = EchoComponent(opts.jid, opts.password, opts.server, opts.port) | ||||
|     xmpp.registerPlugin('xep_0030') # Service Discovery | ||||
|     xmpp.registerPlugin('xep_0004') # Data Forms | ||||
|     xmpp.registerPlugin('xep_0060') # PubSub | ||||
|     xmpp.registerPlugin('xep_0199') # XMPP Ping | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(): | ||||
|         xmpp.process(block=True) | ||||
|         print("Done") | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|   | ||||
| @@ -1,34 +1,46 @@ | ||||
| #!/usr/bin/env python3 | ||||
| #!/usr/bin/env python | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2010  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| from argparse import ArgumentParser | ||||
| import getpass | ||||
| from optparse import OptionParser | ||||
|  | ||||
| import slixmpp | ||||
| import sleekxmpp | ||||
|  | ||||
| import ssl | ||||
| from slixmpp.xmlstream import cert | ||||
| from sleekxmpp.xmlstream import cert | ||||
|  | ||||
|  | ||||
| class GTalkBot(slixmpp.ClientXMPP): | ||||
| # Python versions before 3.0 do not use UTF-8 encoding | ||||
| # by default. To ensure that Unicode is handled properly | ||||
| # throughout SleekXMPP, we will set the default encoding | ||||
| # ourselves to UTF-8. | ||||
| if sys.version_info < (3, 0): | ||||
|     from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|     setdefaultencoding('utf8') | ||||
| else: | ||||
|     raw_input = input | ||||
|  | ||||
|  | ||||
| class GTalkBot(sleekxmpp.ClientXMPP): | ||||
|  | ||||
|     """ | ||||
|     A demonstration of using Slixmpp with accounts from a Google Apps | ||||
|     A demonstration of using SleekXMPP with accounts from a Google Apps | ||||
|     account with a custom domain, because it requires custom certificate | ||||
|     validation. | ||||
|     """ | ||||
|  | ||||
|     def __init__(self, jid, password): | ||||
|         slixmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         sleekxmpp.ClientXMPP.__init__(self, jid, password) | ||||
|  | ||||
|         # The session_start event will be triggered when | ||||
|         # the bot establishes its connection with the server | ||||
| @@ -92,42 +104,62 @@ class GTalkBot(slixmpp.ClientXMPP): | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser() | ||||
|     optp = OptionParser() | ||||
|  | ||||
|     # Output verbosity options. | ||||
|     parser.add_argument("-q", "--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.ERROR, default=logging.INFO) | ||||
|     parser.add_argument("-d", "--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-q', '--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.ERROR, default=logging.INFO) | ||||
|     optp.add_option('-d', '--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-v', '--verbose', help='set logging to COMM', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=5, default=logging.INFO) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|     opts, args = optp.parse_args() | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Username: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|  | ||||
|     # Setup the GTalkBot and register plugins. Note that while plugins may | ||||
|     # have interdependencies, the order in which you register them does | ||||
|     # not matter. | ||||
|     xmpp = GTalkBot(args.jid, args.password) | ||||
|     xmpp = GTalkBot(opts.jid, opts.password) | ||||
|     xmpp.register_plugin('xep_0030') # Service Discovery | ||||
|     xmpp.register_plugin('xep_0004') # Data Forms | ||||
|     xmpp.register_plugin('xep_0060') # PubSub | ||||
|     xmpp.register_plugin('xep_0199') # XMPP Ping | ||||
|  | ||||
|     # If you are working with an OpenFire server, you may need | ||||
|     # to adjust the SSL version used: | ||||
|     # xmpp.ssl_version = ssl.PROTOCOL_SSLv3 | ||||
|  | ||||
|     # If you want to verify the SSL certificates offered by a server: | ||||
|     # xmpp.ca_certs = "path/to/ca/cert" | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(): | ||||
|         # If you do not have the dnspython library installed, you will need | ||||
|         # to manually specify the name of the server if it does not match | ||||
|         # the one in the JID. For example, to use Google Talk you would | ||||
|         # need to use: | ||||
|         # | ||||
|         # if xmpp.connect(('talk.google.com', 5222)): | ||||
|         #     ... | ||||
|         xmpp.process(block=True) | ||||
|         print("Done") | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|   | ||||
| @@ -1,33 +1,44 @@ | ||||
| #!/usr/bin/env python3 | ||||
| #!/usr/bin/env python | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2010  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| from argparse import ArgumentParser | ||||
| import getpass | ||||
| from optparse import OptionParser | ||||
|  | ||||
| import slixmpp | ||||
| import sleekxmpp | ||||
|  | ||||
| # Python versions before 3.0 do not use UTF-8 encoding | ||||
| # by default. To ensure that Unicode is handled properly | ||||
| # throughout SleekXMPP, we will set the default encoding | ||||
| # ourselves to UTF-8. | ||||
| if sys.version_info < (3, 0): | ||||
|     from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|     setdefaultencoding('utf8') | ||||
| else: | ||||
|     raw_input = input | ||||
|  | ||||
|  | ||||
| class IBBReceiver(slixmpp.ClientXMPP): | ||||
| class IBBReceiver(sleekxmpp.ClientXMPP): | ||||
|  | ||||
|     """ | ||||
|     A basic example of creating and using an in-band bytestream. | ||||
|     """ | ||||
|  | ||||
|     def __init__(self, jid, password): | ||||
|         slixmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         sleekxmpp.ClientXMPP.__init__(self, jid, password) | ||||
|  | ||||
|         self.register_plugin('xep_0030') # Service Discovery | ||||
|         self.register_plugin('xep_0047', { | ||||
|             'auto_accept': True | ||||
|             'accept_stream': self.accept_stream | ||||
|         }) # In-band Bytestreams | ||||
|  | ||||
|         # The session_start event will be triggered when | ||||
| @@ -58,7 +69,7 @@ class IBBReceiver(slixmpp.ClientXMPP): | ||||
|  | ||||
|     def accept_stream(self, iq): | ||||
|         """ | ||||
|         Check that it is ok to accept a stream request. | ||||
|         Check that it is ok to accept a stream request.  | ||||
|  | ||||
|         Controlling stream acceptance can be done via either: | ||||
|             - setting 'auto_accept' to False in the plugin | ||||
| @@ -72,7 +83,9 @@ class IBBReceiver(slixmpp.ClientXMPP): | ||||
|         return True | ||||
|  | ||||
|     def stream_opened(self, stream): | ||||
|         print('Stream opened: %s from %s' % (stream.sid, stream.peer_jid)) | ||||
|         # NOTE: IBB streams are bi-directional, so the original sender is | ||||
|         # now the opened stream's receiver. | ||||
|         print('Stream opened: %s from %s' % (stream.sid, stream.receiver)) | ||||
|  | ||||
|         # You could run a loop reading from the stream using stream.recv(), | ||||
|         # or use the ibb_stream_data event. | ||||
| @@ -82,35 +95,55 @@ class IBBReceiver(slixmpp.ClientXMPP): | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser() | ||||
|     optp = OptionParser() | ||||
|  | ||||
|     # Output verbosity options. | ||||
|     parser.add_argument("-q", "--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.ERROR, default=logging.INFO) | ||||
|     parser.add_argument("-d", "--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-q', '--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.ERROR, default=logging.INFO) | ||||
|     optp.add_option('-d', '--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-v', '--verbose', help='set logging to COMM', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=5, default=logging.INFO) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|     opts, args = optp.parse_args() | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Username: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|  | ||||
|     xmpp = IBBReceiver(args.jid, args.password) | ||||
|     xmpp = IBBReceiver(opts.jid, opts.password) | ||||
|  | ||||
|     # If you are working with an OpenFire server, you may need | ||||
|     # to adjust the SSL version used: | ||||
|     # xmpp.ssl_version = ssl.PROTOCOL_SSLv3 | ||||
|  | ||||
|     # If you want to verify the SSL certificates offered by a server: | ||||
|     # xmpp.ca_certs = "path/to/ca/cert" | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(): | ||||
|         # If you do not have the dnspython library installed, you will need | ||||
|         # to manually specify the name of the server if it does not match | ||||
|         # the one in the JID. For example, to use Google Talk you would | ||||
|         # need to use: | ||||
|         # | ||||
|         # if xmpp.connect(('talk.google.com', 5222)): | ||||
|         #     ... | ||||
|         xmpp.process(block=True) | ||||
|         print("Done") | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|   | ||||
| @@ -1,29 +1,40 @@ | ||||
| #!/usr/bin/env python3 | ||||
| #!/usr/bin/env python | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2010  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| from argparse import ArgumentParser | ||||
| import getpass | ||||
| from optparse import OptionParser | ||||
|  | ||||
| import slixmpp | ||||
| import sleekxmpp | ||||
|  | ||||
| # Python versions before 3.0 do not use UTF-8 encoding | ||||
| # by default. To ensure that Unicode is handled properly | ||||
| # throughout SleekXMPP, we will set the default encoding | ||||
| # ourselves to UTF-8. | ||||
| if sys.version_info < (3, 0): | ||||
|     from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|     setdefaultencoding('utf8') | ||||
| else: | ||||
|     raw_input = input | ||||
|  | ||||
|  | ||||
| class IBBSender(slixmpp.ClientXMPP): | ||||
| class IBBSender(sleekxmpp.ClientXMPP): | ||||
|  | ||||
|     """ | ||||
|     A basic example of creating and using an in-band bytestream. | ||||
|     """ | ||||
|  | ||||
|     def __init__(self, jid, password, receiver, filename): | ||||
|         slixmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         sleekxmpp.ClientXMPP.__init__(self, jid, password) | ||||
|  | ||||
|         self.receiver = receiver | ||||
|         self.filename = filename | ||||
| @@ -64,51 +75,71 @@ class IBBSender(slixmpp.ClientXMPP): | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser() | ||||
|     optp = OptionParser() | ||||
|  | ||||
|     # Output verbosity options. | ||||
|     parser.add_argument("-q", "--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.ERROR, default=logging.INFO) | ||||
|     parser.add_argument("-d", "--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-q', '--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.ERROR, default=logging.INFO) | ||||
|     optp.add_option('-d', '--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-v', '--verbose', help='set logging to COMM', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=5, default=logging.INFO) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|     parser.add_argument("-r", "--receiver", dest="receiver", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-f", "--file", dest="filename", | ||||
|                         help="JID to use") | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|     optp.add_option("-r", "--receiver", dest="receiver", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-f", "--file", dest="filename", | ||||
|                     help="JID to use") | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|     opts, args = optp.parse_args() | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|     if args.receiver is None: | ||||
|         args.receiver = input("Receiver: ") | ||||
|     if args.filename is None: | ||||
|         args.filename = input("File path: ") | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Username: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|     if opts.receiver is None: | ||||
|         opts.receiver = raw_input("Receiver: ") | ||||
|     if opts.filename is None: | ||||
|         opts.filename = raw_input("File path: ") | ||||
|  | ||||
|     # Setup the EchoBot and register plugins. Note that while plugins may | ||||
|     # have interdependencies, the order in which you register them does | ||||
|     # not matter. | ||||
|     xmpp = IBBSender(args.jid, args.password, args.receiver, args.filename) | ||||
|     xmpp = IBBSender(opts.jid, opts.password, opts.receiver, opts.filename) | ||||
|     xmpp.register_plugin('xep_0030') # Service Discovery | ||||
|     xmpp.register_plugin('xep_0004') # Data Forms | ||||
|     xmpp.register_plugin('xep_0047') # In-band Bytestreams | ||||
|     xmpp.register_plugin('xep_0060') # PubSub | ||||
|     xmpp.register_plugin('xep_0199') # XMPP Ping | ||||
|  | ||||
|     # If you are working with an OpenFire server, you may need | ||||
|     # to adjust the SSL version used: | ||||
|     # xmpp.ssl_version = ssl.PROTOCOL_SSLv3 | ||||
|  | ||||
|     # If you want to verify the SSL certificates offered by a server: | ||||
|     # xmpp.ca_certs = "path/to/ca/cert" | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(): | ||||
|         # If you do not have the dnspython library installed, you will need | ||||
|         # to manually specify the name of the server if it does not match | ||||
|         # the one in the JID. For example, to use Google Talk you would | ||||
|         # need to use: | ||||
|         # | ||||
|         # if xmpp.connect(('talk.google.com', 5222)): | ||||
|         #     ... | ||||
|         xmpp.process(block=True) | ||||
|         print("Done") | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|   | ||||
| @@ -1,107 +0,0 @@ | ||||
| #!/usr/bin/env python3 | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| from argparse import ArgumentParser | ||||
|  | ||||
| import slixmpp | ||||
|  | ||||
|  | ||||
| # Setup the command line arguments. | ||||
| parser = ArgumentParser() | ||||
|  | ||||
| # Output verbosity options. | ||||
| parser.add_argument("-q", "--quiet", help="set logging to ERROR", | ||||
|                     action="store_const", dest="loglevel", | ||||
|                     const=logging.ERROR, default=logging.INFO) | ||||
| parser.add_argument("-d", "--debug", help="set logging to DEBUG", | ||||
|                     action="store_const", dest="loglevel", | ||||
|                     const=logging.DEBUG, default=logging.INFO) | ||||
|  | ||||
| # JID and password options. | ||||
| parser.add_argument("--oldjid", dest="old_jid", | ||||
|                     help="JID of the old account") | ||||
| parser.add_argument("--oldpassword", dest="old_password", | ||||
|                     help="password of the old account") | ||||
|  | ||||
| parser.add_argument("--newjid", dest="new_jid", | ||||
|                     help="JID of the old account") | ||||
| parser.add_argument("--newpassword", dest="new_password", | ||||
|                     help="password of the old account") | ||||
|  | ||||
|  | ||||
| args = parser.parse_args() | ||||
|  | ||||
| # Setup logging. | ||||
| logging.basicConfig(level=args.loglevel, | ||||
|                     format='%(levelname)-8s %(message)s') | ||||
|  | ||||
| if args.old_jid is None: | ||||
|     args.old_jid = input("Old JID: ") | ||||
| if args.old_password is None: | ||||
|     args.old_password = getpass("Old Password: ") | ||||
|  | ||||
| if args.new_jid is None: | ||||
|     args.new_jid = input("New JID: ") | ||||
| if args.new_password is None: | ||||
|     args.new_password = getpass("New Password: ") | ||||
|  | ||||
|  | ||||
| old_xmpp = slixmpp.ClientXMPP(args.old_jid, args.old_password) | ||||
|  | ||||
| # If you are connecting to Facebook and wish to use the | ||||
| # X-FACEBOOK-PLATFORM authentication mechanism, you will need | ||||
| # your API key and an access token. Then you'll set: | ||||
| # xmpp.credentials['api_key'] = 'THE_API_KEY' | ||||
| # xmpp.credentials['access_token'] = 'THE_ACCESS_TOKEN' | ||||
|  | ||||
| # If you are connecting to MSN, then you will need an | ||||
| # access token, and it does not matter what JID you | ||||
| # specify other than that the domain is 'messenger.live.com', | ||||
| # so '_@messenger.live.com' will work. You can specify | ||||
| # the access token as so: | ||||
| # xmpp.credentials['access_token'] = 'THE_ACCESS_TOKEN' | ||||
|  | ||||
| # If you are working with an OpenFire server, you may need | ||||
| # to adjust the SSL version used: | ||||
| # xmpp.ssl_version = ssl.PROTOCOL_SSLv3 | ||||
|  | ||||
| # If you want to verify the SSL certificates offered by a server: | ||||
| # xmpp.ca_certs = "path/to/ca/cert" | ||||
|  | ||||
| roster = [] | ||||
|  | ||||
| def on_session(event): | ||||
|     roster.append(old_xmpp.get_roster()) | ||||
|     old_xmpp.disconnect() | ||||
| old_xmpp.add_event_handler('session_start', on_session) | ||||
|  | ||||
| if old_xmpp.connect(): | ||||
|     old_xmpp.process(block=True) | ||||
|  | ||||
| if not roster: | ||||
|     print('No roster to migrate') | ||||
|     sys.exit() | ||||
|  | ||||
| new_xmpp = slixmpp.ClientXMPP(args.new_jid, args.new_password) | ||||
| def on_session2(event): | ||||
|     new_xmpp.get_roster() | ||||
|     new_xmpp.send_presence() | ||||
|  | ||||
|     logging.info(roster[0]) | ||||
|     data = roster[0]['roster']['items'] | ||||
|     logging.info(data) | ||||
|  | ||||
|     for jid, item in data.items(): | ||||
|         if item['subscription'] != 'none': | ||||
|             new_xmpp.send_presence(ptype='subscribe', pto=jid) | ||||
|         new_xmpp.update_roster(jid, | ||||
|                 name = item['name'], | ||||
|                 groups = item['groups']) | ||||
|         new_xmpp.disconnect() | ||||
| new_xmpp.add_event_handler('session_start', on_session2) | ||||
|  | ||||
| if new_xmpp.connect(): | ||||
|     new_xmpp.process(block=True) | ||||
| @@ -1,31 +1,42 @@ | ||||
| #!/usr/bin/env python3 | ||||
| #!/usr/bin/env python | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2010  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| from argparse import ArgumentParser | ||||
| import getpass | ||||
| from optparse import OptionParser | ||||
|  | ||||
| import slixmpp | ||||
| import sleekxmpp | ||||
|  | ||||
| # Python versions before 3.0 do not use UTF-8 encoding | ||||
| # by default. To ensure that Unicode is handled properly | ||||
| # throughout SleekXMPP, we will set the default encoding | ||||
| # ourselves to UTF-8. | ||||
| if sys.version_info < (3, 0): | ||||
|     from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|     setdefaultencoding('utf8') | ||||
| else: | ||||
|     raw_input = input | ||||
|  | ||||
|  | ||||
| class MUCBot(slixmpp.ClientXMPP): | ||||
| class MUCBot(sleekxmpp.ClientXMPP): | ||||
|  | ||||
|     """ | ||||
|     A simple Slixmpp bot that will greets those | ||||
|     A simple SleekXMPP bot that will greets those | ||||
|     who enter the room, and acknowledge any messages | ||||
|     that mentions the bot's nickname. | ||||
|     """ | ||||
|  | ||||
|     def __init__(self, jid, password, room, nick): | ||||
|         slixmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         sleekxmpp.ClientXMPP.__init__(self, jid, password) | ||||
|  | ||||
|         self.room = room | ||||
|         self.nick = nick | ||||
| @@ -121,49 +132,62 @@ class MUCBot(slixmpp.ClientXMPP): | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser() | ||||
|     optp = OptionParser() | ||||
|  | ||||
|     # Output verbosity options. | ||||
|     parser.add_argument("-q", "--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.ERROR, default=logging.INFO) | ||||
|     parser.add_argument("-d", "--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-q', '--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.ERROR, default=logging.INFO) | ||||
|     optp.add_option('-d', '--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-v', '--verbose', help='set logging to COMM', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=5, default=logging.INFO) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|     parser.add_argument("-r", "--room", dest="room", | ||||
|                         help="MUC room to join") | ||||
|     parser.add_argument("-n", "--nick", dest="nick", | ||||
|                         help="MUC nickname") | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|     optp.add_option("-r", "--room", dest="room", | ||||
|                     help="MUC room to join") | ||||
|     optp.add_option("-n", "--nick", dest="nick", | ||||
|                     help="MUC nickname") | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|     opts, args = optp.parse_args() | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|     if args.room is None: | ||||
|         args.room = input("MUC room: ") | ||||
|     if args.nick is None: | ||||
|         args.nick = input("MUC nickname: ") | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Username: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|     if opts.room is None: | ||||
|         opts.room = raw_input("MUC room: ") | ||||
|     if opts.nick is None: | ||||
|         opts.nick = raw_input("MUC nickname: ") | ||||
|  | ||||
|     # Setup the MUCBot and register plugins. Note that while plugins may | ||||
|     # have interdependencies, the order in which you register them does | ||||
|     # not matter. | ||||
|     xmpp = MUCBot(args.jid, args.password, args.room, args.nick) | ||||
|     xmpp = MUCBot(opts.jid, opts.password, opts.room, opts.nick) | ||||
|     xmpp.register_plugin('xep_0030') # Service Discovery | ||||
|     xmpp.register_plugin('xep_0045') # Multi-User Chat | ||||
|     xmpp.register_plugin('xep_0199') # XMPP Ping | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(): | ||||
|         # If you do not have the dnspython library installed, you will need | ||||
|         # to manually specify the name of the server if it does not match | ||||
|         # the one in the JID. For example, to use Google Talk you would | ||||
|         # need to use: | ||||
|         # | ||||
|         # if xmpp.connect(('talk.google.com', 5222)): | ||||
|         #     ... | ||||
|         xmpp.process(block=True) | ||||
|         print("Done") | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|   | ||||
							
								
								
									
										121
									
								
								examples/ping.py
									
									
									
									
									
								
							
							
						
						
									
										121
									
								
								examples/ping.py
									
									
									
									
									
								
							| @@ -1,32 +1,43 @@ | ||||
| #!/usr/bin/env python3 | ||||
| #!/usr/bin/env python | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2010  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| from argparse import ArgumentParser | ||||
| import getpass | ||||
| from optparse import OptionParser | ||||
|  | ||||
| import slixmpp | ||||
| import sleekxmpp | ||||
|  | ||||
| # Python versions before 3.0 do not use UTF-8 encoding | ||||
| # by default. To ensure that Unicode is handled properly | ||||
| # throughout SleekXMPP, we will set the default encoding | ||||
| # ourselves to UTF-8. | ||||
| if sys.version_info < (3, 0): | ||||
|     from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|     setdefaultencoding('utf8') | ||||
| else: | ||||
|     raw_input = input | ||||
|  | ||||
|  | ||||
| class PingTest(slixmpp.ClientXMPP): | ||||
| class PingTest(sleekxmpp.ClientXMPP): | ||||
|  | ||||
|     """ | ||||
|     A simple Slixmpp bot that will send a ping request | ||||
|     A simple SleekXMPP bot that will send a ping request | ||||
|     to a given JID. | ||||
|     """ | ||||
|  | ||||
|     def __init__(self, jid, password, pingjid): | ||||
|         slixmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         sleekxmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         if pingjid is None: | ||||
|             pingjid = self.boundjid.bare | ||||
|             pingjid = self.jid | ||||
|         self.pingjid = pingjid | ||||
|  | ||||
|         # The session_start event will be triggered when | ||||
| @@ -34,7 +45,7 @@ class PingTest(slixmpp.ClientXMPP): | ||||
|         # and the XML streams are ready for use. We want to | ||||
|         # listen for this event so that we we can initialize | ||||
|         # our roster. | ||||
|         self.add_event_handler("session_start", self.start) | ||||
|         self.add_event_handler("session_start", self.start, threaded=True) | ||||
|  | ||||
|     def start(self, event): | ||||
|         """ | ||||
| @@ -51,62 +62,80 @@ class PingTest(slixmpp.ClientXMPP): | ||||
|         """ | ||||
|         self.send_presence() | ||||
|         self.get_roster() | ||||
|  | ||||
|         try: | ||||
|             rtt = self['xep_0199'].ping(self.pingjid, | ||||
|                                         timeout=10) | ||||
|             logging.info("Success! RTT: %s", rtt) | ||||
|         except IqError as e: | ||||
|             logging.info("Error pinging %s: %s", | ||||
|                     self.pingjid, | ||||
|                     e.iq['error']['condition']) | ||||
|         except IqTimeout: | ||||
|             logging.info("No response from %s", self.pingjid) | ||||
|         finally: | ||||
|         result = self['xep_0199'].send_ping(self.pingjid, | ||||
|                                             timeout=10, | ||||
|                                             errorfalse=True) | ||||
|         logging.info("Pinging...") | ||||
|         if result is False: | ||||
|             logging.info("Couldn't ping.") | ||||
|             self.disconnect() | ||||
|             sys.exit(1) | ||||
|         else: | ||||
|             logging.info("Success! RTT: %s", str(result)) | ||||
|             self.disconnect() | ||||
|  | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser() | ||||
|     optp = OptionParser() | ||||
|  | ||||
|     # Output verbosity options. | ||||
|     parser.add_argument("-q", "--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.ERROR, default=logging.INFO) | ||||
|     parser.add_argument("-d", "--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.DEBUG, default=logging.INFO) | ||||
|     parser.add_argument("-t", "--pingto", help="set jid to ping", | ||||
|                         action="store", type="string", dest="pingjid", | ||||
|                         default=None) | ||||
|     optp.add_option('-q', '--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.ERROR, default=logging.INFO) | ||||
|     optp.add_option('-d', '--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-v', '--verbose', help='set logging to COMM', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=5, default=logging.INFO) | ||||
|     optp.add_option('-t', '--pingto', help='set jid to ping', | ||||
|                     action='store', type='string', dest='pingjid', | ||||
|                     default=None) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|     opts, args = optp.parse_args() | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Username: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|  | ||||
|     # Setup the PingTest and register plugins. Note that while plugins may | ||||
|     # have interdependencies, the order in which you register them does | ||||
|     # not matter. | ||||
|     xmpp = PingTest(args.jid, args.password, args.pingjid) | ||||
|     xmpp = PingTest(opts.jid, opts.password, opts.pingjid) | ||||
|     xmpp.register_plugin('xep_0030')  # Service Discovery | ||||
|     xmpp.register_plugin('xep_0004')  # Data Forms | ||||
|     xmpp.register_plugin('xep_0060')  # PubSub | ||||
|     xmpp.register_plugin('xep_0199')  # XMPP Ping | ||||
|  | ||||
|     # If you are working with an OpenFire server, you may need | ||||
|     # to adjust the SSL version used: | ||||
|     # xmpp.ssl_version = ssl.PROTOCOL_SSLv3 | ||||
|  | ||||
|     # If you want to verify the SSL certificates offered by a server: | ||||
|     # xmpp.ca_certs = "path/to/ca/cert" | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(): | ||||
|         # If you do not have the dnspython library installed, you will need | ||||
|         # to manually specify the name of the server if it does not match | ||||
|         # the one in the JID. For example, to use Google Talk you would | ||||
|         # need to use: | ||||
|         # | ||||
|         # if xmpp.connect(('talk.google.com', 5222)): | ||||
|         #     ... | ||||
|         xmpp.process(block=True) | ||||
|         print("Done") | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|   | ||||
| @@ -1,30 +1,41 @@ | ||||
| #!/usr/bin/env python3 | ||||
| #!/usr/bin/env python | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2010  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| from argparse import ArgumentParser | ||||
| import getpass | ||||
| from optparse import OptionParser | ||||
|  | ||||
| import slixmpp | ||||
| import sleekxmpp | ||||
|  | ||||
| # Python versions before 3.0 do not use UTF-8 encoding | ||||
| # by default. To ensure that Unicode is handled properly | ||||
| # throughout SleekXMPP, we will set the default encoding | ||||
| # ourselves to UTF-8. | ||||
| if sys.version_info < (3, 0): | ||||
|     from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|     setdefaultencoding('utf8') | ||||
| else: | ||||
|     raw_input = input | ||||
|  | ||||
|  | ||||
| class EchoBot(slixmpp.ClientXMPP): | ||||
| class EchoBot(sleekxmpp.ClientXMPP): | ||||
|  | ||||
|     """ | ||||
|     A simple Slixmpp bot that will echo messages it | ||||
|     A simple SleekXMPP bot that will echo messages it | ||||
|     receives, along with a short thank you message. | ||||
|     """ | ||||
|  | ||||
|     def __init__(self, jid, password): | ||||
|         slixmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         sleekxmpp.ClientXMPP.__init__(self, jid, password) | ||||
|  | ||||
|         # The session_start event will be triggered when | ||||
|         # the bot establishes its connection with the server | ||||
| @@ -71,65 +82,87 @@ class EchoBot(slixmpp.ClientXMPP): | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser() | ||||
|     optp = OptionParser() | ||||
|  | ||||
|     # Output verbosity options. | ||||
|     parser.add_argument("-q", "--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.ERROR, default=logging.INFO) | ||||
|     parser.add_argument("-d", "--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-q', '--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.ERROR, default=logging.INFO) | ||||
|     optp.add_option('-d', '--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-v', '--verbose', help='set logging to COMM', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=5, default=logging.INFO) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|     parser.add_argument("--phost", dest="proxy_host", | ||||
|                         help="Proxy hostname") | ||||
|     parser.add_argument("--pport", dest="proxy_port", | ||||
|                         help="Proxy port") | ||||
|     parser.add_argument("--puser", dest="proxy_user", | ||||
|                         help="Proxy username") | ||||
|     parser.add_argument("--ppass", dest="proxy_pass", | ||||
|                         help="Proxy password") | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|     optp.add_option("--phost", dest="proxy_host", | ||||
|                     help="Proxy hostname") | ||||
|     optp.add_option("--pport", dest="proxy_port", | ||||
|                     help="Proxy port") | ||||
|     optp.add_option("--puser", dest="proxy_user", | ||||
|                     help="Proxy username") | ||||
|     optp.add_option("--ppass", dest="proxy_pass", | ||||
|                     help="Proxy password") | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|  | ||||
|  | ||||
|     opts, args = optp.parse_args() | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|     if args.proxy_host is None: | ||||
|         args.proxy_host = input("Proxy host: ") | ||||
|     if args.proxy_port is None: | ||||
|         args.proxy_port = input("Proxy port: ") | ||||
|     if args.proxy_user is None: | ||||
|         args.proxy_user = input("Proxy username: ") | ||||
|     if args.proxy_pass is None and args.proxy_user: | ||||
|         args.proxy_pass = getpass("Proxy password: ") | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Username: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|     if opts.proxy_host is None: | ||||
|         opts.proxy_host = raw_input("Proxy host: ") | ||||
|     if opts.proxy_port is None: | ||||
|         opts.proxy_port = raw_input("Proxy port: ") | ||||
|     if opts.proxy_user is None: | ||||
|         opts.proxy_user = raw_input("Proxy username: ") | ||||
|     if opts.proxy_pass is None and opts.proxy_user: | ||||
|         opts.proxy_pass = getpass.getpass("Proxy password: ") | ||||
|  | ||||
|     # Setup the EchoBot and register plugins. Note that while plugins may | ||||
|     # have interdependencies, the order in which you register them does | ||||
|     # not matter. | ||||
|     xmpp = EchoBot(args.jid, args.password) | ||||
|     xmpp = EchoBot(opts.jid, opts.password) | ||||
|     xmpp.register_plugin('xep_0030') # Service Discovery | ||||
|     xmpp.register_plugin('xep_0004') # Data Forms | ||||
|     xmpp.register_plugin('xep_0060') # PubSub | ||||
|     xmpp.register_plugin('xep_0199') # XMPP Ping | ||||
|  | ||||
|     # If you are working with an OpenFire server, you may need | ||||
|     # to adjust the SSL version used: | ||||
|     # xmpp.ssl_version = ssl.PROTOCOL_SSLv3 | ||||
|  | ||||
|     # If you want to verify the SSL certificates offered by a server: | ||||
|     # xmpp.ca_certs = "path/to/ca/cert" | ||||
|  | ||||
|     xmpp.use_proxy = True | ||||
|     xmpp.proxy_config = { | ||||
|         'host': args.proxy_host, | ||||
|         'port': int(args.proxy_port), | ||||
|         'username': args.proxy_user, | ||||
|         'password': args.proxy_pass} | ||||
|         'host': opts.proxy_host, | ||||
|         'port': int(opts.proxy_port), | ||||
|         'username': opts.proxy_user, | ||||
|         'password': opts.proxy_pass} | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(): | ||||
|         # If you do not have the dnspython library installed, you will need | ||||
|         # to manually specify the name of the server if it does not match | ||||
|         # the one in the JID. For example, to use Google Talk you would | ||||
|         # need to use: | ||||
|         # | ||||
|         # if xmpp.connect(('talk.google.com', 5222)): | ||||
|         #     ... | ||||
|         xmpp.process(block=True) | ||||
|         print("Done") | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|   | ||||
							
								
								
									
										130
									
								
								examples/pubsub_client.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							
							
						
						
									
										130
									
								
								examples/pubsub_client.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							| @@ -1,17 +1,26 @@ | ||||
| #!/usr/bin/env python3 | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| from argparse import ArgumentParser | ||||
| import getpass | ||||
| from optparse import OptionParser | ||||
|  | ||||
| import slixmpp | ||||
| from slixmpp.xmlstream import ET, tostring | ||||
| import sleekxmpp | ||||
| from sleekxmpp.xmlstream import ET, tostring | ||||
|  | ||||
|  | ||||
| class PubsubClient(slixmpp.ClientXMPP): | ||||
| # Python versions before 3.0 do not use UTF-8 encoding | ||||
| # by default. To ensure that Unicode is handled properly | ||||
| # throughout SleekXMPP, we will set the default encoding | ||||
| # ourselves to UTF-8. | ||||
| if sys.version_info < (3, 0): | ||||
|     from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|     setdefaultencoding('utf8') | ||||
| else: | ||||
|     raw_input = input | ||||
|  | ||||
|     def __init__(self, jid, password, server, | ||||
|  | ||||
| class PubsubClient(sleekxmpp.ClientXMPP): | ||||
|  | ||||
|     def __init__(self, jid, password, server,  | ||||
|                        node=None, action='list', data=''): | ||||
|         super(PubsubClient, self).__init__(jid, password) | ||||
|  | ||||
| @@ -19,7 +28,7 @@ class PubsubClient(slixmpp.ClientXMPP): | ||||
|         self.register_plugin('xep_0059') | ||||
|         self.register_plugin('xep_0060') | ||||
|  | ||||
|         self.actions = ['nodes', 'create', 'delete', | ||||
|         self.actions = ['nodes', 'create', 'delete',  | ||||
|                         'publish', 'get', 'retract', | ||||
|                         'purge', 'subscribe', 'unsubscribe'] | ||||
|  | ||||
| @@ -28,7 +37,7 @@ class PubsubClient(slixmpp.ClientXMPP): | ||||
|         self.data = data | ||||
|         self.pubsub_server = server | ||||
|  | ||||
|         self.add_event_handler('session_start', self.start) | ||||
|         self.add_event_handler('session_start', self.start, threaded=True) | ||||
|  | ||||
|     def start(self, event): | ||||
|         self.get_roster() | ||||
| @@ -111,52 +120,79 @@ class PubsubClient(slixmpp.ClientXMPP): | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser() | ||||
|     parser.version = '%%prog 0.1' | ||||
|     parser.usage = "Usage: %%prog [options] <jid> " + \ | ||||
|     optp = OptionParser() | ||||
|     optp.version = '%%prog 0.1' | ||||
|     optp.usage = "Usage: %%prog [options] <jid> " + \ | ||||
|                              'nodes|create|delete|purge|subscribe|unsubscribe|publish|retract|get' + \ | ||||
|                              ' [<node> <data>]' | ||||
|  | ||||
|     parser.add_argument("-q","--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", | ||||
|                         dest="loglevel", | ||||
|                         const=logging.ERROR, | ||||
|                         default=logging.ERROR) | ||||
|     parser.add_argument("-d","--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", | ||||
|                         dest="loglevel", | ||||
|                         const=logging.DEBUG, | ||||
|                         default=logging.ERROR) | ||||
|     optp.add_option('-q','--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', | ||||
|                     dest='loglevel', | ||||
|                     const=logging.ERROR, | ||||
|                     default=logging.ERROR) | ||||
|     optp.add_option('-d','--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', | ||||
|                     dest='loglevel', | ||||
|                     const=logging.DEBUG, | ||||
|                     default=logging.ERROR) | ||||
|     optp.add_option('-v','--verbose', help='set logging to COMM', | ||||
|                     action='store_const', | ||||
|                     dest='loglevel', | ||||
|                     const=5, | ||||
|                     default=logging.ERROR) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|  | ||||
|     parser.add_argument("server") | ||||
|     parser.add_argument("action", choice=["nodes", "create", "delete", "purge", "subscribe", "unsubscribe", "publish", "retract", "get"]) | ||||
|     parser.add_argument("node", nargs='?') | ||||
|     parser.add_argument("data", nargs='?') | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|     opts,args = optp.parse_args() | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|     if len(args) < 2: | ||||
|         optp.print_help() | ||||
|         exit() | ||||
|  | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Username: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|  | ||||
|     if len(args) == 2: | ||||
|         args = (args[0], args[1], '', '', '') | ||||
|     elif len(args) == 3: | ||||
|         args = (args[0], args[1], args[2], '', '') | ||||
|     elif len(args) == 4: | ||||
|         args = (args[0], args[1], args[2], args[3], '') | ||||
|  | ||||
|  | ||||
|     # Setup the Pubsub client | ||||
|     xmpp = PubsubClient(args.jid, args.password, | ||||
|                         server=args.server, | ||||
|                         node=args.node, | ||||
|                         action=args.action, | ||||
|                         data=args.data) | ||||
|     xmpp = PubsubClient(opts.jid, opts.password, | ||||
|                         server=args[0], | ||||
|                         node=args[2], | ||||
|                         action=args[1], | ||||
|                         data=args[3]) | ||||
|  | ||||
|     # If you are working with an OpenFire server, you may need | ||||
|     # to adjust the SSL version used: | ||||
|     # xmpp.ssl_version = ssl.PROTOCOL_SSLv3 | ||||
|  | ||||
|     # If you want to verify the SSL certificates offered by a server: | ||||
|     # xmpp.ca_certs = "path/to/ca/cert" | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(): | ||||
|         # If you do not have the dnspython library installed, you will need | ||||
|         # to manually specify the name of the server if it does not match | ||||
|         # the one in the JID. For example, to use Google Talk you would | ||||
|         # need to use: | ||||
|         # | ||||
|         # if xmpp.connect(('talk.google.com', 5222)): | ||||
|         #     ... | ||||
|         xmpp.process(block=True) | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|   | ||||
							
								
								
									
										91
									
								
								examples/pubsub_events.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							
							
						
						
									
										91
									
								
								examples/pubsub_events.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							| @@ -1,17 +1,26 @@ | ||||
| #!/usr/bin/env python3 | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| from argparse import ArgumentParser | ||||
| import getpass | ||||
| from optparse import OptionParser | ||||
|  | ||||
| import slixmpp | ||||
| from slixmpp.xmlstream import ET, tostring | ||||
| from slixmpp.xmlstream.matcher import StanzaPath | ||||
| from slixmpp.xmlstream.handler import Callback | ||||
| import sleekxmpp | ||||
| from sleekxmpp.xmlstream import ET, tostring | ||||
| from sleekxmpp.xmlstream.matcher import StanzaPath | ||||
| from sleekxmpp.xmlstream.handler import Callback | ||||
|  | ||||
|  | ||||
| class PubsubEvents(slixmpp.ClientXMPP): | ||||
| # Python versions before 3.0 do not use UTF-8 encoding | ||||
| # by default. To ensure that Unicode is handled properly | ||||
| # throughout SleekXMPP, we will set the default encoding | ||||
| # ourselves to UTF-8. | ||||
| if sys.version_info < (3, 0): | ||||
|     from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|     setdefaultencoding('utf8') | ||||
| else: | ||||
|     raw_input = input | ||||
|  | ||||
|  | ||||
| class PubsubEvents(sleekxmpp.ClientXMPP): | ||||
|  | ||||
|     def __init__(self, jid, password): | ||||
|         super(PubsubEvents, self).__init__(jid, password) | ||||
| @@ -68,7 +77,7 @@ class PubsubEvents(slixmpp.ClientXMPP): | ||||
|         """Handle receiving a node deletion event.""" | ||||
|         print('Deleted node %s' % ( | ||||
|            msg['pubsub_event']['delete']['node'])) | ||||
|  | ||||
|   | ||||
|     def _config(self, msg): | ||||
|         """Handle receiving a node configuration event.""" | ||||
|         print('Configured node %s:' % ( | ||||
| @@ -84,39 +93,59 @@ class PubsubEvents(slixmpp.ClientXMPP): | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser() | ||||
|     optp = OptionParser() | ||||
|  | ||||
|     # Output verbosity options. | ||||
|     parser.add_argument("-q", "--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.ERROR, default=logging.INFO) | ||||
|     parser.add_argument("-d", "--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-q', '--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.ERROR, default=logging.INFO) | ||||
|     optp.add_option('-d', '--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-v', '--verbose', help='set logging to COMM', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=5, default=logging.INFO) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|     opts, args = optp.parse_args() | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Username: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|  | ||||
|     logging.info("Run this in conjunction with the pubsub_client.py " + \ | ||||
|                  "example to watch events happen as you give commands.") | ||||
|  | ||||
|     # Setup the PubsubEvents listener | ||||
|     xmpp = PubsubEvents(args.jid, args.password) | ||||
|     xmpp = PubsubEvents(opts.jid, opts.password) | ||||
|  | ||||
|     # If you are working with an OpenFire server, you may need | ||||
|     # to adjust the SSL version used: | ||||
|     # xmpp.ssl_version = ssl.PROTOCOL_SSLv3 | ||||
|  | ||||
|     # If you want to verify the SSL certificates offered by a server: | ||||
|     # xmpp.ca_certs = "path/to/ca/cert" | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(): | ||||
|         # If you do not have the dnspython library installed, you will need | ||||
|         # to manually specify the name of the server if it does not match | ||||
|         # the one in the JID. For example, to use Google Talk you would | ||||
|         # need to use: | ||||
|         # | ||||
|         # if xmpp.connect(('talk.google.com', 5222)): | ||||
|         #     ... | ||||
|         xmpp.process(block=True) | ||||
|         print("Done") | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|   | ||||
							
								
								
									
										103
									
								
								examples/register_account.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							
							
						
						
									
										103
									
								
								examples/register_account.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							| @@ -1,23 +1,34 @@ | ||||
| #!/usr/bin/env python3 | ||||
| #!/usr/bin/env python | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2010  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| from argparse import ArgumentParser | ||||
| import getpass | ||||
| from optparse import OptionParser | ||||
|  | ||||
| import slixmpp | ||||
| from slixmpp.exceptions import IqError, IqTimeout | ||||
| import sleekxmpp | ||||
| from sleekxmpp.exceptions import IqError, IqTimeout | ||||
|  | ||||
| # Python versions before 3.0 do not use UTF-8 encoding | ||||
| # by default. To ensure that Unicode is handled properly | ||||
| # throughout SleekXMPP, we will set the default encoding | ||||
| # ourselves to UTF-8. | ||||
| if sys.version_info < (3, 0): | ||||
|     from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|     setdefaultencoding('utf8') | ||||
| else: | ||||
|     raw_input = input | ||||
|  | ||||
|  | ||||
| class RegisterBot(slixmpp.ClientXMPP): | ||||
| class RegisterBot(sleekxmpp.ClientXMPP): | ||||
|  | ||||
|     """ | ||||
|     A basic bot that will attempt to register an account | ||||
| @@ -29,23 +40,23 @@ class RegisterBot(slixmpp.ClientXMPP): | ||||
|     """ | ||||
|  | ||||
|     def __init__(self, jid, password): | ||||
|         slixmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         sleekxmpp.ClientXMPP.__init__(self, jid, password) | ||||
|  | ||||
|         # The session_start event will be triggered when | ||||
|         # the bot establishes its connection with the server | ||||
|         # and the XML streams are ready for use. We want to | ||||
|         # listen for this event so that we we can initialize | ||||
|         # our roster. | ||||
|         self.add_event_handler("session_start", self.start) | ||||
|         self.add_event_handler("session_start", self.start, threaded=True) | ||||
|  | ||||
|         # The register event provides an Iq result stanza with | ||||
|         # a registration form from the server. This may include | ||||
|         # the basic registration fields, a data form, an | ||||
|         # the basic registration fields, a data form, an  | ||||
|         # out-of-band URL, or any combination. For more advanced | ||||
|         # cases, you will need to examine the fields provided | ||||
|         # and respond accordingly. Slixmpp provides plugins | ||||
|         # and respond accordingly. SleekXMPP provides plugins | ||||
|         # for data forms and OOB links that will make that easier. | ||||
|         self.add_event_handler("register", self.register) | ||||
|         self.add_event_handler("register", self.register, threaded=True) | ||||
|  | ||||
|     def start(self, event): | ||||
|         """ | ||||
| @@ -90,10 +101,10 @@ class RegisterBot(slixmpp.ClientXMPP): | ||||
|         resp['register']['password'] = self.password | ||||
|  | ||||
|         try: | ||||
|             resp.send() | ||||
|             resp.send(now=True) | ||||
|             logging.info("Account created for %s!" % self.boundjid) | ||||
|         except IqError as e: | ||||
|             logging.error("Could not register account: %s" % | ||||
|             logging.error("Could not register account: %s" %  | ||||
|                     e.iq['error']['text']) | ||||
|             self.disconnect() | ||||
|         except IqTimeout: | ||||
| @@ -103,46 +114,62 @@ class RegisterBot(slixmpp.ClientXMPP): | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser() | ||||
|     optp = OptionParser() | ||||
|  | ||||
|     # Output verbosity options. | ||||
|     parser.add_argument("-q", "--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.ERROR, default=logging.INFO) | ||||
|     parser.add_argument("-d", "--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-q', '--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.ERROR, default=logging.INFO) | ||||
|     optp.add_option('-d', '--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-v', '--verbose', help='set logging to COMM', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=5, default=logging.INFO) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|     opts, args = optp.parse_args() | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Username: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|  | ||||
|     # Setup the RegisterBot and register plugins. Note that while plugins may | ||||
|     # have interdependencies, the order in which you register them does | ||||
|     # not matter. | ||||
|     xmpp = RegisterBot(args.jid, args.password) | ||||
|     xmpp = RegisterBot(opts.jid, opts.password) | ||||
|     xmpp.register_plugin('xep_0030') # Service Discovery | ||||
|     xmpp.register_plugin('xep_0004') # Data forms | ||||
|     xmpp.register_plugin('xep_0066') # Out-of-band Data | ||||
|     xmpp.register_plugin('xep_0077') # In-band Registration | ||||
|  | ||||
|     # Some servers don't advertise support for inband registration, even | ||||
|     # though they allow it. If this applies to your server, use: | ||||
|     xmpp['xep_0077'].force_registration = True | ||||
|     # If you are working with an OpenFire server, you may need | ||||
|     # to adjust the SSL version used: | ||||
|     # xmpp.ssl_version = ssl.PROTOCOL_SSLv3 | ||||
|  | ||||
|     # If you want to verify the SSL certificates offered by a server: | ||||
|     # xmpp.ca_certs = "path/to/ca/cert" | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(): | ||||
|         # If you do not have the dnspython library installed, you will need | ||||
|         # to manually specify the name of the server if it does not match | ||||
|         # the one in the JID. For example, to use Google Talk you would | ||||
|         # need to use: | ||||
|         # | ||||
|         # if xmpp.connect(('talk.google.com', 5222)): | ||||
|         #     ... | ||||
|         xmpp.process(block=True) | ||||
|         print("Done") | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|   | ||||
							
								
								
									
										107
									
								
								examples/roster_browser.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							
							
						
						
									
										107
									
								
								examples/roster_browser.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							| @@ -1,24 +1,36 @@ | ||||
| #!/usr/bin/env python3 | ||||
| #!/usr/bin/env python | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| import getpass | ||||
| import threading | ||||
| from argparse import ArgumentParser | ||||
| from optparse import OptionParser | ||||
|  | ||||
| import slixmpp | ||||
| from slixmpp.exceptions import IqError, IqTimeout | ||||
| import sleekxmpp | ||||
| from sleekxmpp.exceptions import IqError, IqTimeout | ||||
|  | ||||
|  | ||||
| class RosterBrowser(slixmpp.ClientXMPP): | ||||
| # Python versions before 3.0 do not use UTF-8 encoding | ||||
| # by default. To ensure that Unicode is handled properly | ||||
| # throughout SleekXMPP, we will set the default encoding | ||||
| # ourselves to UTF-8. | ||||
| if sys.version_info < (3, 0): | ||||
|     from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|     setdefaultencoding('utf8') | ||||
| else: | ||||
|     raw_input = input | ||||
|  | ||||
|  | ||||
| class RosterBrowser(sleekxmpp.ClientXMPP): | ||||
|  | ||||
|     """ | ||||
|     A basic script for dumping a client's roster to | ||||
| @@ -26,13 +38,15 @@ class RosterBrowser(slixmpp.ClientXMPP): | ||||
|     """ | ||||
|  | ||||
|     def __init__(self, jid, password): | ||||
|         slixmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         sleekxmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         # The session_start event will be triggered when | ||||
|         # the bot establishes its connection with the server | ||||
|         # and the XML streams are ready for use. We want to | ||||
|         # listen for this event so that we we can initialize | ||||
|         # our roster. | ||||
|         self.add_event_handler("session_start", self.start) | ||||
|         # our roster. We need threaded=True so that the | ||||
|         # session_start handler doesn't block event processing | ||||
|         # while we wait for presence stanzas to arrive. | ||||
|         self.add_event_handler("session_start", self.start, threaded=True) | ||||
|         self.add_event_handler("changed_status", self.wait_for_presences) | ||||
|  | ||||
|         self.received = set() | ||||
| @@ -101,37 +115,58 @@ class RosterBrowser(slixmpp.ClientXMPP): | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser() | ||||
|     parser.add_argument("-q","--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", | ||||
|                         dest="loglevel", | ||||
|                         const=logging.ERROR, | ||||
|                         default=logging.ERROR) | ||||
|     parser.add_argument("-d","--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", | ||||
|                         dest="loglevel", | ||||
|                         const=logging.DEBUG, | ||||
|                         default=logging.ERROR) | ||||
|     optp = OptionParser() | ||||
|     optp.add_option('-q','--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', | ||||
|                     dest='loglevel', | ||||
|                     const=logging.ERROR, | ||||
|                     default=logging.ERROR) | ||||
|     optp.add_option('-d','--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', | ||||
|                     dest='loglevel', | ||||
|                     const=logging.DEBUG, | ||||
|                     default=logging.ERROR) | ||||
|     optp.add_option('-v','--verbose', help='set logging to COMM', | ||||
|                     action='store_const', | ||||
|                     dest='loglevel', | ||||
|                     const=5, | ||||
|                     default=logging.ERROR) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|     opts,args = optp.parse_args() | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Username: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|  | ||||
|     xmpp = RosterBrowser(args.jid, args.password) | ||||
|     xmpp = RosterBrowser(opts.jid, opts.password) | ||||
|  | ||||
|     # If you are working with an OpenFire server, you may need | ||||
|     # to adjust the SSL version used: | ||||
|     # xmpp.ssl_version = ssl.PROTOCOL_SSLv3 | ||||
|  | ||||
|     # If you want to verify the SSL certificates offered by a server: | ||||
|     # xmpp.ca_certs = "path/to/ca/cert" | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(): | ||||
|         # If you do not have the dnspython library installed, you will need | ||||
|         # to manually specify the name of the server if it does not match | ||||
|         # the one in the JID. For example, to use Google Talk you would | ||||
|         # need to use: | ||||
|         # | ||||
|         # if xmpp.connect(('talk.google.com', 5222)): | ||||
|         #     ... | ||||
|         xmpp.process(block=True) | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|  | ||||
|   | ||||
							
								
								
									
										35
									
								
								examples/rpc_async.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							
							
						
						
									
										35
									
								
								examples/rpc_async.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							| @@ -1,47 +1,44 @@ | ||||
| #!/usr/bin/env python3 | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Dann Martens | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| from slixmpp.plugins.xep_0009.remote import Endpoint, remote, Remote, \ | ||||
| from sleekxmpp.plugins.xep_0009.remote import Endpoint, remote, Remote, \ | ||||
|     ANY_ALL, Future | ||||
| import time | ||||
|  | ||||
| class Boomerang(Endpoint): | ||||
|  | ||||
|      | ||||
|     def FQN(self): | ||||
|         return 'boomerang' | ||||
|  | ||||
|            | ||||
|     @remote | ||||
|     def throw(self): | ||||
|         print "Duck!" | ||||
|  | ||||
|              | ||||
|  | ||||
|  | ||||
| def main(): | ||||
|  | ||||
|     session = Remote.new_session('kangaroo@xmpp.org/rpc', '*****') | ||||
|  | ||||
|     session.new_handler(ANY_ALL, Boomerang) | ||||
|  | ||||
|     session.new_handler(ANY_ALL, Boomerang)     | ||||
|      | ||||
|     boomerang = session.new_proxy('kangaroo@xmpp.org/rpc', Boomerang) | ||||
|  | ||||
|          | ||||
|     callback = Future() | ||||
|  | ||||
|          | ||||
|     boomerang.async(callback).throw() | ||||
|  | ||||
|      | ||||
|     time.sleep(10) | ||||
|  | ||||
|      | ||||
|     session.close() | ||||
|  | ||||
|  | ||||
|  | ||||
|      | ||||
|      | ||||
|      | ||||
| if __name__ == '__main__': | ||||
|     main() | ||||
|  | ||||
|      | ||||
							
								
								
									
										35
									
								
								examples/rpc_client_side.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							
							
						
						
									
										35
									
								
								examples/rpc_client_side.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							| @@ -1,32 +1,29 @@ | ||||
| #!/usr/bin/env python3 | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Dann Martens | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| from slixmpp.plugins.xep_0009.remote import Endpoint, remote, Remote, \ | ||||
| from sleekxmpp.plugins.xep_0009.remote import Endpoint, remote, Remote, \ | ||||
|     ANY_ALL | ||||
| import threading | ||||
| import time | ||||
|  | ||||
| class Thermostat(Endpoint): | ||||
|  | ||||
|      | ||||
|     def FQN(self): | ||||
|         return 'thermostat' | ||||
|  | ||||
|      | ||||
|     def __init__(self, initial_temperature): | ||||
|         self._temperature = initial_temperature | ||||
|         self._event = threading.Event() | ||||
|  | ||||
|         self._event = threading.Event()         | ||||
|      | ||||
|     @remote | ||||
|     def set_temperature(self, temperature): | ||||
|         return NotImplemented | ||||
|  | ||||
|      | ||||
|     @remote | ||||
|     def get_temperature(self): | ||||
|         return NotImplemented | ||||
| @@ -34,23 +31,23 @@ class Thermostat(Endpoint): | ||||
|     @remote(False) | ||||
|     def release(self): | ||||
|         return NotImplemented | ||||
|  | ||||
|          | ||||
|  | ||||
|  | ||||
| def main(): | ||||
|  | ||||
|     session = Remote.new_session('operator@xmpp.org/rpc', '*****') | ||||
|  | ||||
|      | ||||
|     thermostat = session.new_proxy('thermostat@xmpp.org/rpc', Thermostat) | ||||
|  | ||||
|      | ||||
|     print("Current temperature is %s" % thermostat.get_temperature()) | ||||
|  | ||||
|      | ||||
|     thermostat.set_temperature(20) | ||||
|  | ||||
|      | ||||
|     time.sleep(10) | ||||
|  | ||||
|      | ||||
|     session.close() | ||||
|  | ||||
|      | ||||
| if __name__ == '__main__': | ||||
|     main() | ||||
|  | ||||
|      | ||||
|   | ||||
							
								
								
									
										37
									
								
								examples/rpc_server_side.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							
							
						
						
									
										37
									
								
								examples/rpc_server_side.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							| @@ -1,55 +1,52 @@ | ||||
| #!/usr/bin/env python3 | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Dann Martens | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| from slixmpp.plugins.xep_0009.remote import Endpoint, remote, Remote, \ | ||||
| from sleekxmpp.plugins.xep_0009.remote import Endpoint, remote, Remote, \ | ||||
|     ANY_ALL | ||||
| import threading | ||||
|  | ||||
| class Thermostat(Endpoint): | ||||
|  | ||||
|      | ||||
|     def FQN(self): | ||||
|         return 'thermostat' | ||||
|  | ||||
|      | ||||
|     def __init__(self, initial_temperature): | ||||
|         self._temperature = initial_temperature | ||||
|         self._event = threading.Event() | ||||
|  | ||||
|         self._event = threading.Event()         | ||||
|      | ||||
|     @remote | ||||
|     def set_temperature(self, temperature): | ||||
|         print("Setting temperature to %s" % temperature) | ||||
|         self._temperature = temperature | ||||
|  | ||||
|      | ||||
|     @remote | ||||
|     def get_temperature(self): | ||||
|         return self._temperature | ||||
|  | ||||
|     @remote(False) | ||||
|     def release(self): | ||||
|         self._event.set() | ||||
|  | ||||
|         self._event.set()  | ||||
|          | ||||
|     def wait_for_release(self): | ||||
|         self._event.wait() | ||||
|  | ||||
|         self._event.wait()         | ||||
|      | ||||
|  | ||||
|  | ||||
| def main(): | ||||
|  | ||||
|     session = Remote.new_session('sleek@xmpp.org/rpc', '*****') | ||||
|  | ||||
|      | ||||
|     thermostat = session.new_handler(ANY_ALL, Thermostat, 18) | ||||
|  | ||||
|      | ||||
|     thermostat.wait_for_release() | ||||
|  | ||||
|      | ||||
|     session.close() | ||||
|  | ||||
|      | ||||
| if __name__ == '__main__': | ||||
|     main() | ||||
|  | ||||
|      | ||||
|   | ||||
| @@ -1,30 +1,41 @@ | ||||
| #!/usr/bin/env python3 | ||||
| #!/usr/bin/env python | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2010  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| from argparse import ArgumentParser | ||||
| import getpass | ||||
| from optparse import OptionParser | ||||
|  | ||||
| import slixmpp | ||||
| import sleekxmpp | ||||
|  | ||||
| # Python versions before 3.0 do not use UTF-8 encoding | ||||
| # by default. To ensure that Unicode is handled properly | ||||
| # throughout SleekXMPP, we will set the default encoding | ||||
| # ourselves to UTF-8. | ||||
| if sys.version_info < (3, 0): | ||||
|     from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|     setdefaultencoding('utf8') | ||||
| else: | ||||
|     raw_input = input | ||||
|  | ||||
|  | ||||
| class SendMsgBot(slixmpp.ClientXMPP): | ||||
| class SendMsgBot(sleekxmpp.ClientXMPP): | ||||
|  | ||||
|     """ | ||||
|     A basic Slixmpp bot that will log in, send a message, | ||||
|     A basic SleekXMPP bot that will log in, send a message, | ||||
|     and then log out. | ||||
|     """ | ||||
|  | ||||
|     def __init__(self, jid, password, recipient, message): | ||||
|         slixmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         sleekxmpp.ClientXMPP.__init__(self, jid, password) | ||||
|  | ||||
|         # The message we wish to send, and the JID that | ||||
|         # will receive it. | ||||
| @@ -36,7 +47,7 @@ class SendMsgBot(slixmpp.ClientXMPP): | ||||
|         # and the XML streams are ready for use. We want to | ||||
|         # listen for this event so that we we can initialize | ||||
|         # our roster. | ||||
|         self.add_event_handler("session_start", self.start) | ||||
|         self.add_event_handler("session_start", self.start, threaded=True) | ||||
|  | ||||
|     def start(self, event): | ||||
|         """ | ||||
| @@ -58,53 +69,75 @@ class SendMsgBot(slixmpp.ClientXMPP): | ||||
|                           mbody=self.msg, | ||||
|                           mtype='chat') | ||||
|  | ||||
|         self.disconnect() | ||||
|         # Using wait=True ensures that the send queue will be | ||||
|         # emptied before ending the session. | ||||
|         self.disconnect(wait=True) | ||||
|  | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser(description=SendMsgBot.__doc__) | ||||
|     optp = OptionParser() | ||||
|  | ||||
|     # Output verbosity options. | ||||
|     parser.add_argument("-q", "--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.ERROR, default=logging.INFO) | ||||
|     parser.add_argument("-d", "--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-q', '--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.ERROR, default=logging.INFO) | ||||
|     optp.add_option('-d', '--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-v', '--verbose', help='set logging to COMM', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=5, default=logging.INFO) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|     parser.add_argument("-t", "--to", dest="to", | ||||
|                         help="JID to send the message to") | ||||
|     parser.add_argument("-m", "--message", dest="message", | ||||
|                         help="message to send") | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|     optp.add_option("-t", "--to", dest="to", | ||||
|                     help="JID to send the message to") | ||||
|     optp.add_option("-m", "--message", dest="message", | ||||
|                     help="message to send") | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|     opts, args = optp.parse_args() | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|     if args.to is None: | ||||
|         args.to = input("Send To: ") | ||||
|     if args.message is None: | ||||
|         args.message = input("Message: ") | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Username: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|     if opts.to is None: | ||||
|         opts.to = raw_input("Send To: ") | ||||
|     if opts.message is None: | ||||
|         opts.message = raw_input("Message: ") | ||||
|  | ||||
|     # Setup the EchoBot and register plugins. Note that while plugins may | ||||
|     # have interdependencies, the order in which you register them does | ||||
|     # not matter. | ||||
|     xmpp = SendMsgBot(args.jid, args.password, args.to, args.message) | ||||
|     xmpp = SendMsgBot(opts.jid, opts.password, opts.to, opts.message) | ||||
|     xmpp.register_plugin('xep_0030') # Service Discovery | ||||
|     xmpp.register_plugin('xep_0199') # XMPP Ping | ||||
|  | ||||
|     # If you are working with an OpenFire server, you may need | ||||
|     # to adjust the SSL version used: | ||||
|     # xmpp.ssl_version = ssl.PROTOCOL_SSLv3 | ||||
|  | ||||
|     # If you want to verify the SSL certificates offered by a server: | ||||
|     # xmpp.ca_certs = "path/to/ca/cert" | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(): | ||||
|         # If you do not have the dnspython library installed, you will need | ||||
|         # to manually specify the name of the server if it does not match | ||||
|         # the one in the JID. For example, to use Google Talk you would | ||||
|         # need to use: | ||||
|         # | ||||
|         # if xmpp.connect(('talk.google.com', 5222)): | ||||
|         #     ... | ||||
|         xmpp.process(block=True) | ||||
|         print("Done") | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|   | ||||
							
								
								
									
										110
									
								
								examples/set_avatar.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							
							
						
						
									
										110
									
								
								examples/set_avatar.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							| @@ -1,35 +1,47 @@ | ||||
| #!/usr/bin/env python3 | ||||
| #!/usr/bin/env python | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2012  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| import os | ||||
| import sys | ||||
| import imghdr | ||||
| import logging | ||||
| from getpass import getpass | ||||
| import getpass | ||||
| import threading | ||||
| from argparse import ArgumentParser | ||||
| from optparse import OptionParser | ||||
|  | ||||
| import slixmpp | ||||
| from slixmpp.exceptions import XMPPError | ||||
| import sleekxmpp | ||||
| from sleekxmpp.exceptions import XMPPError | ||||
|  | ||||
|  | ||||
| class AvatarSetter(slixmpp.ClientXMPP): | ||||
| # Python versions before 3.0 do not use UTF-8 encoding | ||||
| # by default. To ensure that Unicode is handled properly | ||||
| # throughout SleekXMPP, we will set the default encoding | ||||
| # ourselves to UTF-8. | ||||
| if sys.version_info < (3, 0): | ||||
|     from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|     setdefaultencoding('utf8') | ||||
| else: | ||||
|     raw_input = input | ||||
|  | ||||
|  | ||||
| class AvatarSetter(sleekxmpp.ClientXMPP): | ||||
|  | ||||
|     """ | ||||
|     A basic script for downloading the avatars for a user's contacts. | ||||
|     """ | ||||
|  | ||||
|     def __init__(self, jid, password, filepath): | ||||
|         slixmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         sleekxmpp.ClientXMPP.__init__(self, jid, password) | ||||
|  | ||||
|         self.add_event_handler("session_start", self.start) | ||||
|         self.add_event_handler("session_start", self.start, threaded=True) | ||||
|  | ||||
|         self.filepath = filepath | ||||
|  | ||||
| @@ -99,44 +111,64 @@ class AvatarSetter(slixmpp.ClientXMPP): | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser() | ||||
|     parser.add_argument("-q","--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", | ||||
|                         dest="loglevel", | ||||
|                         const=logging.ERROR, | ||||
|                         default=logging.ERROR) | ||||
|     parser.add_argument("-d","--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", | ||||
|                         dest="loglevel", | ||||
|                         const=logging.DEBUG, | ||||
|                         default=logging.ERROR) | ||||
|     optp = OptionParser() | ||||
|     optp.add_option('-q','--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', | ||||
|                     dest='loglevel', | ||||
|                     const=logging.ERROR, | ||||
|                     default=logging.ERROR) | ||||
|     optp.add_option('-d','--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', | ||||
|                     dest='loglevel', | ||||
|                     const=logging.DEBUG, | ||||
|                     default=logging.ERROR) | ||||
|     optp.add_option('-v','--verbose', help='set logging to COMM', | ||||
|                     action='store_const', | ||||
|                     dest='loglevel', | ||||
|                     const=5, | ||||
|                     default=logging.ERROR) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|     parser.add_argument("-f", "--file", dest="filepath", | ||||
|                         help="path to the avatar file") | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|     optp.add_option("-f", "--file", dest="filepath", | ||||
|                     help="path to the avatar file") | ||||
|     opts,args = optp.parse_args() | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|     if args.filepath is None: | ||||
|         args.filepath = input("Avatar file location: ") | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Username: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|     if opts.filepath is None: | ||||
|         opts.filepath = raw_input("Avatar file location: ") | ||||
|  | ||||
|     xmpp = AvatarSetter(args.jid, args.password, args.filepath) | ||||
|     xmpp = AvatarSetter(opts.jid, opts.password, opts.filepath) | ||||
|     xmpp.register_plugin('xep_0054') | ||||
|     xmpp.register_plugin('xep_0153') | ||||
|     xmpp.register_plugin('xep_0084') | ||||
|  | ||||
|     # If you are working with an OpenFire server, you may need | ||||
|     # to adjust the SSL version used: | ||||
|     # xmpp.ssl_version = ssl.PROTOCOL_SSLv3 | ||||
|  | ||||
|     # If you want to verify the SSL certificates offered by a server: | ||||
|     # xmpp.ca_certs = "path/to/ca/cert" | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(): | ||||
|         # If you do not have the dnspython library installed, you will need | ||||
|         # to manually specify the name of the server if it does not match | ||||
|         # the one in the JID. For example, to use Google Talk you would | ||||
|         # need to use: | ||||
|         # | ||||
|         # if xmpp.connect(('talk.google.com', 5222)): | ||||
|         #     ... | ||||
|         xmpp.process(block=True) | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|   | ||||
							
								
								
									
										97
									
								
								examples/thirdparty_auth.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							
							
						
						
									
										97
									
								
								examples/thirdparty_auth.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							| @@ -1,18 +1,18 @@ | ||||
| #!/usr/bin/env python3 | ||||
| #!/usr/bin/env python | ||||
| # -*- coding: utf-8 -*- | ||||
|  | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2010  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| from argparse import ArgumentParser | ||||
| import getpass | ||||
| from optparse import OptionParser | ||||
|  | ||||
| try: | ||||
|     from httplib import HTTPSConnection | ||||
| @@ -21,14 +21,24 @@ except ImportError: | ||||
|     from urllib.parse import urlencode | ||||
|     from http.client import HTTPSConnection | ||||
|  | ||||
| import slixmpp | ||||
| from slixmpp.xmlstream import JID | ||||
| import sleekxmpp | ||||
| from sleekxmpp.xmlstream import JID | ||||
|  | ||||
| # Python versions before 3.0 do not use UTF-8 encoding | ||||
| # by default. To ensure that Unicode is handled properly | ||||
| # throughout SleekXMPP, we will set the default encoding | ||||
| # ourselves to UTF-8. | ||||
| if sys.version_info < (3, 0): | ||||
|     from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|     setdefaultencoding('utf8') | ||||
| else: | ||||
|     raw_input = input | ||||
|  | ||||
|  | ||||
| class ThirdPartyAuthBot(slixmpp.ClientXMPP): | ||||
| class ThirdPartyAuthBot(sleekxmpp.ClientXMPP): | ||||
|  | ||||
|     """ | ||||
|     A simple Slixmpp bot that will echo messages it | ||||
|     A simple SleekXMPP bot that will echo messages it | ||||
|     receives, along with a short thank you message. | ||||
|  | ||||
|     This version uses a thirdpary service for authentication, | ||||
| @@ -36,7 +46,7 @@ class ThirdPartyAuthBot(slixmpp.ClientXMPP): | ||||
|     """ | ||||
|  | ||||
|     def __init__(self, jid, password): | ||||
|         slixmpp.ClientXMPP.__init__(self, jid, password) | ||||
|         sleekxmpp.ClientXMPP.__init__(self, jid, password) | ||||
|  | ||||
|         # The X-GOOGLE-TOKEN mech is ranked lower than PLAIN | ||||
|         # due to Google only allowing a single SASL attempt per | ||||
| @@ -45,7 +55,7 @@ class ThirdPartyAuthBot(slixmpp.ClientXMPP): | ||||
|         # X-GOOGLE-TOKEN with a TLS connection, explicitly select | ||||
|         # it using: | ||||
|         # | ||||
|         # slixmpp.ClientXMPP.__init__(self, jid, password, | ||||
|         # sleekxmpp.ClientXMPP.__init__(self, jid, password, | ||||
|         #                               sasl_mech="X-GOOGLE-TOKEN") | ||||
|  | ||||
|         # The session_start event will be triggered when | ||||
| @@ -94,34 +104,37 @@ class ThirdPartyAuthBot(slixmpp.ClientXMPP): | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser() | ||||
|     optp = OptionParser() | ||||
|  | ||||
|     # Output verbosity options. | ||||
|     parser.add_argument("-q", "--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.ERROR, default=logging.INFO) | ||||
|     parser.add_argument("-d", "--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-q', '--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.ERROR, default=logging.INFO) | ||||
|     optp.add_option('-d', '--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-v', '--verbose', help='set logging to COMM', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=5, default=logging.INFO) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|     opts, args = optp.parse_args() | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|  | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Username: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|  | ||||
|      | ||||
|     access_token = None | ||||
|  | ||||
|     # Since documentation on how to work with Google tokens | ||||
| @@ -143,11 +156,11 @@ if __name__ == '__main__': | ||||
|     params = urlencode({ | ||||
|         'accountType': 'GOOGLE', | ||||
|         'service': 'mail', | ||||
|         'Email': JID(args.jid).bare, | ||||
|         'Passwd': args.password | ||||
|         'Email': JID(opts.jid).bare, | ||||
|         'Passwd': opts.password | ||||
|     }) | ||||
|     headers = { | ||||
|         'Content-Type': 'application/x-www-form-urlencoded' | ||||
|         'Content-Type': 'application/x-www-form-urlencoded'  | ||||
|     } | ||||
|     try: | ||||
|         conn.request('POST', '/accounts/ClientLogin', params, headers) | ||||
| @@ -195,12 +208,12 @@ if __name__ == '__main__': | ||||
|     # We're using an access token instead of a password, so we'll use `''` as | ||||
|     # a password argument filler. | ||||
|  | ||||
|     xmpp = ThirdPartyAuthBot(args.jid, '') | ||||
|     xmpp = ThirdPartyAuthBot(opts.jid, '')   | ||||
|     xmpp.credentials['access_token'] = access_token | ||||
|  | ||||
|     # The credentials dictionary is used to provide additional authentication | ||||
|     # information beyond just a password. | ||||
|  | ||||
|      | ||||
|     xmpp.register_plugin('xep_0030') # Service Discovery | ||||
|     xmpp.register_plugin('xep_0004') # Data Forms | ||||
|     xmpp.register_plugin('xep_0060') # PubSub | ||||
| @@ -218,7 +231,17 @@ if __name__ == '__main__': | ||||
|     # xmpp.ca_certs = "path/to/ca/cert" | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     # Google only allows one SASL attempt per connection, so in order to | ||||
|     # Google only allows one SASL attempt per connection, so in order to  | ||||
|     # enable the X-GOOGLE-TOKEN mechanism, we'll disable TLS. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(use_tls=False): | ||||
|         # If you do not have the dnspython library installed, you will need | ||||
|         # to manually specify the name of the server if it does not match | ||||
|         # the one in the JID. For example, to use Google Talk you would | ||||
|         # need to use: | ||||
|         # | ||||
|         # if xmpp.connect(('talk.google.com', 5222)): | ||||
|         #     ... | ||||
|         xmpp.process(block=True) | ||||
|         print("Done") | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|   | ||||
							
								
								
									
										72
									
								
								examples/user_location.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							
							
						
						
									
										72
									
								
								examples/user_location.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							| @@ -1,9 +1,9 @@ | ||||
| #!/usr/bin/env python3 | ||||
| #!/usr/bin/env python | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| from argparse import ArgumentParser | ||||
| import getpass | ||||
| from optparse import OptionParser | ||||
|  | ||||
| try: | ||||
|     import json | ||||
| @@ -16,7 +16,7 @@ except ImportError: | ||||
|     print('This demo requires the requests package for using HTTP.') | ||||
|     sys.exit() | ||||
|  | ||||
| from slixmpp import ClientXMPP | ||||
| from sleekxmpp import ClientXMPP | ||||
|  | ||||
|  | ||||
| class LocationBot(ClientXMPP): | ||||
| @@ -24,8 +24,8 @@ class LocationBot(ClientXMPP): | ||||
|     def __init__(self, jid, password): | ||||
|         super(LocationBot, self).__init__(jid, password) | ||||
|  | ||||
|         self.add_event_handler('session_start', self.start) | ||||
|         self.add_event_handler('user_location_publish', | ||||
|         self.add_event_handler('session_start', self.start, threaded=True) | ||||
|         self.add_event_handler('user_location_publish',  | ||||
|                                self.user_location_publish) | ||||
|  | ||||
|         self.register_plugin('xep_0004') | ||||
| @@ -71,35 +71,55 @@ class LocationBot(ClientXMPP): | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser() | ||||
|     optp = OptionParser() | ||||
|  | ||||
|     # Output verbosity options. | ||||
|     parser.add_argument("-q", "--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.ERROR, default=logging.INFO) | ||||
|     parser.add_argument("-d", "--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-q', '--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.ERROR, default=logging.INFO) | ||||
|     optp.add_option('-d', '--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-v', '--verbose', help='set logging to COMM', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=5, default=logging.INFO) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|     opts, args = optp.parse_args() | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Username: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|  | ||||
|     xmpp = LocationBot(args.jid, args.password) | ||||
|     xmpp = LocationBot(opts.jid, opts.password) | ||||
|  | ||||
|     # If you are working with an OpenFire server, you may need | ||||
|     # to adjust the SSL version used: | ||||
|     # xmpp.ssl_version = ssl.PROTOCOL_SSLv3 | ||||
|  | ||||
|     # If you want to verify the SSL certificates offered by a server: | ||||
|     # xmpp.ca_certs = "path/to/ca/cert" | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(): | ||||
|         # If you do not have the dnspython library installed, you will need | ||||
|         # to manually specify the name of the server if it does not match | ||||
|         # the one in the JID. For example, to use Google Talk you would | ||||
|         # need to use: | ||||
|         # | ||||
|         # if xmpp.connect(('talk.google.com', 5222)): | ||||
|         #     ... | ||||
|         xmpp.process(block=True) | ||||
|         print("Done") | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|   | ||||
							
								
								
									
										68
									
								
								examples/user_tune.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							
							
						
						
									
										68
									
								
								examples/user_tune.py
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							| @@ -1,9 +1,9 @@ | ||||
| #!/usr/bin/env python3 | ||||
| #!/usr/bin/env python | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| from getpass import getpass | ||||
| from argparse import ArgumentParser | ||||
| import getpass | ||||
| from optparse import OptionParser | ||||
|  | ||||
| try: | ||||
|     from appscript import * | ||||
| @@ -11,7 +11,7 @@ except ImportError: | ||||
|     print('This demo requires the appscript package to interact with iTunes.') | ||||
|     sys.exit() | ||||
|  | ||||
| from slixmpp import ClientXMPP | ||||
| from sleekxmpp import ClientXMPP | ||||
|  | ||||
|  | ||||
| class TuneBot(ClientXMPP): | ||||
| @@ -83,35 +83,55 @@ class TuneBot(ClientXMPP): | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     # Setup the command line arguments. | ||||
|     parser = ArgumentParser() | ||||
|     optp = OptionParser() | ||||
|  | ||||
|     # Output verbosity options. | ||||
|     parser.add_argument("-q", "--quiet", help="set logging to ERROR", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.ERROR, default=logging.INFO) | ||||
|     parser.add_argument("-d", "--debug", help="set logging to DEBUG", | ||||
|                         action="store_const", dest="loglevel", | ||||
|                         const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-q', '--quiet', help='set logging to ERROR', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.ERROR, default=logging.INFO) | ||||
|     optp.add_option('-d', '--debug', help='set logging to DEBUG', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=logging.DEBUG, default=logging.INFO) | ||||
|     optp.add_option('-v', '--verbose', help='set logging to COMM', | ||||
|                     action='store_const', dest='loglevel', | ||||
|                     const=5, default=logging.INFO) | ||||
|  | ||||
|     # JID and password options. | ||||
|     parser.add_argument("-j", "--jid", dest="jid", | ||||
|                         help="JID to use") | ||||
|     parser.add_argument("-p", "--password", dest="password", | ||||
|                         help="password to use") | ||||
|     optp.add_option("-j", "--jid", dest="jid", | ||||
|                     help="JID to use") | ||||
|     optp.add_option("-p", "--password", dest="password", | ||||
|                     help="password to use") | ||||
|  | ||||
|     args = parser.parse_args() | ||||
|     opts, args = optp.parse_args() | ||||
|  | ||||
|     # Setup logging. | ||||
|     logging.basicConfig(level=args.loglevel, | ||||
|     logging.basicConfig(level=opts.loglevel, | ||||
|                         format='%(levelname)-8s %(message)s') | ||||
|  | ||||
|     if args.jid is None: | ||||
|         args.jid = input("Username: ") | ||||
|     if args.password is None: | ||||
|         args.password = getpass("Password: ") | ||||
|     if opts.jid is None: | ||||
|         opts.jid = raw_input("Username: ") | ||||
|     if opts.password is None: | ||||
|         opts.password = getpass.getpass("Password: ") | ||||
|  | ||||
|     xmpp = TuneBot(args.jid, args.password) | ||||
|     xmpp = TuneBot(opts.jid, opts.password) | ||||
|  | ||||
|     # If you are working with an OpenFire server, you may need | ||||
|     # to adjust the SSL version used: | ||||
|     # xmpp.ssl_version = ssl.PROTOCOL_SSLv3 | ||||
|  | ||||
|     # If you want to verify the SSL certificates offered by a server: | ||||
|     # xmpp.ca_certs = "path/to/ca/cert" | ||||
|  | ||||
|     # Connect to the XMPP server and start processing XMPP stanzas. | ||||
|     xmpp.connect() | ||||
|     xmpp.process() | ||||
|     if xmpp.connect(): | ||||
|         # If you do not have the dnspython library installed, you will need | ||||
|         # to manually specify the name of the server if it does not match | ||||
|         # the one in the JID. For example, to use Google Talk you would | ||||
|         # need to use: | ||||
|         # | ||||
|         # if xmpp.connect(('talk.google.com', 5222)): | ||||
|         #     ... | ||||
|         xmpp.process(block=True) | ||||
|         print("Done") | ||||
|     else: | ||||
|         print("Unable to connect.") | ||||
|   | ||||
							
								
								
									
										233
									
								
								ez_setup.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										233
									
								
								ez_setup.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,233 @@ | ||||
| #!python | ||||
| """Bootstrap setuptools installation | ||||
|  | ||||
| If you want to use setuptools in your package's setup.py, just include this | ||||
| file in the same directory with it, and add this to the top of your setup.py:: | ||||
|  | ||||
|     from ez_setup import use_setuptools | ||||
|     use_setuptools() | ||||
|  | ||||
| If you want to require a specific version of setuptools, set a download | ||||
| mirror, or use an alternate download directory, you can do so by supplying | ||||
| the appropriate options to ``use_setuptools()``. | ||||
|  | ||||
| This file can also be run as a script to install or upgrade setuptools. | ||||
| """ | ||||
| import sys | ||||
| DEFAULT_VERSION = "0.6c7" | ||||
| DEFAULT_URL     = "http://pypi.python.org/packages/%s/s/setuptools/" % sys.version[:3] | ||||
|  | ||||
| md5_data = { | ||||
|     'setuptools-0.6b1-py2.3.egg': '8822caf901250d848b996b7f25c6e6ca', | ||||
|     'setuptools-0.6b1-py2.4.egg': 'b79a8a403e4502fbb85ee3f1941735cb', | ||||
|     'setuptools-0.6b2-py2.3.egg': '5657759d8a6d8fc44070a9d07272d99b', | ||||
|     'setuptools-0.6b2-py2.4.egg': '4996a8d169d2be661fa32a6e52e4f82a', | ||||
|     'setuptools-0.6b3-py2.3.egg': 'bb31c0fc7399a63579975cad9f5a0618', | ||||
|     'setuptools-0.6b3-py2.4.egg': '38a8c6b3d6ecd22247f179f7da669fac', | ||||
|     'setuptools-0.6b4-py2.3.egg': '62045a24ed4e1ebc77fe039aa4e6f7e5', | ||||
|     'setuptools-0.6b4-py2.4.egg': '4cb2a185d228dacffb2d17f103b3b1c4', | ||||
|     'setuptools-0.6c1-py2.3.egg': 'b3f2b5539d65cb7f74ad79127f1a908c', | ||||
|     'setuptools-0.6c1-py2.4.egg': 'b45adeda0667d2d2ffe14009364f2a4b', | ||||
|     'setuptools-0.6c2-py2.3.egg': 'f0064bf6aa2b7d0f3ba0b43f20817c27', | ||||
|     'setuptools-0.6c2-py2.4.egg': '616192eec35f47e8ea16cd6a122b7277', | ||||
|     'setuptools-0.6c3-py2.3.egg': 'f181fa125dfe85a259c9cd6f1d7b78fa', | ||||
|     'setuptools-0.6c3-py2.4.egg': 'e0ed74682c998bfb73bf803a50e7b71e', | ||||
|     'setuptools-0.6c3-py2.5.egg': 'abef16fdd61955514841c7c6bd98965e', | ||||
|     'setuptools-0.6c4-py2.3.egg': 'b0b9131acab32022bfac7f44c5d7971f', | ||||
|     'setuptools-0.6c4-py2.4.egg': '2a1f9656d4fbf3c97bf946c0a124e6e2', | ||||
|     'setuptools-0.6c4-py2.5.egg': '8f5a052e32cdb9c72bcf4b5526f28afc', | ||||
|     'setuptools-0.6c5-py2.3.egg': 'ee9fd80965da04f2f3e6b3576e9d8167', | ||||
|     'setuptools-0.6c5-py2.4.egg': 'afe2adf1c01701ee841761f5bcd8aa64', | ||||
|     'setuptools-0.6c5-py2.5.egg': 'a8d3f61494ccaa8714dfed37bccd3d5d', | ||||
|     'setuptools-0.6c6-py2.3.egg': '35686b78116a668847237b69d549ec20', | ||||
|     'setuptools-0.6c6-py2.4.egg': '3c56af57be3225019260a644430065ab', | ||||
|     'setuptools-0.6c6-py2.5.egg': 'b2f8a7520709a5b34f80946de5f02f53', | ||||
| } | ||||
|  | ||||
| import sys, os | ||||
|  | ||||
| def _validate_md5(egg_name, data): | ||||
|     if egg_name in md5_data: | ||||
|         from md5 import md5 | ||||
|         digest = md5(data).hexdigest() | ||||
|         if digest != md5_data[egg_name]: | ||||
|             print >>sys.stderr, ( | ||||
|                 "md5 validation of %s failed!  (Possible download problem?)" | ||||
|                 % egg_name | ||||
|             ) | ||||
|             sys.exit(2) | ||||
|     return data | ||||
|  | ||||
|  | ||||
| def use_setuptools( | ||||
|     version=DEFAULT_VERSION, download_base=DEFAULT_URL, to_dir=os.curdir, min_version=None, | ||||
|     download_delay=15 | ||||
| ): | ||||
|     """Automatically find/download setuptools and make it available on sys.path | ||||
|  | ||||
|     `version` should be a valid setuptools version number that is available | ||||
|     as an egg for download under the `download_base` URL (which should end with | ||||
|     a '/').  `to_dir` is the directory where setuptools will be downloaded, if | ||||
|     it is not already available.  If `download_delay` is specified, it should | ||||
|     be the number of seconds that will be paused before initiating a download, | ||||
|     should one be required.  If an older version of setuptools is installed, | ||||
|     this routine will print a message to ``sys.stderr`` and raise SystemExit in | ||||
|     an attempt to abort the calling script. | ||||
|     """ | ||||
|     try: | ||||
|         import setuptools | ||||
|         if setuptools.__version__ == '0.0.1': | ||||
|             print >>sys.stderr, ( | ||||
|             "You have an obsolete version of setuptools installed.  Please\n" | ||||
|             "remove it from your system entirely before rerunning this script." | ||||
|             ) | ||||
|             sys.exit(2) | ||||
|     except ImportError: | ||||
|         egg = download_setuptools(version, download_base, to_dir, download_delay) | ||||
|         sys.path.insert(0, egg) | ||||
|         import setuptools; setuptools.bootstrap_install_from = egg | ||||
|  | ||||
|     import pkg_resources | ||||
|     try: | ||||
|         if not min_version: | ||||
|             min_version = version | ||||
|         pkg_resources.require("setuptools>="+min_version) | ||||
|  | ||||
|     except pkg_resources.VersionConflict, e: | ||||
|         # XXX could we install in a subprocess here? | ||||
|         print >>sys.stderr, ( | ||||
|             "The required version of setuptools (>=%s) is not available, and\n" | ||||
|             "can't be installed while this script is running. Please install\n" | ||||
|             " a more recent version first.\n\n(Currently using %r)" | ||||
|         ) % (min_version, e.args[0]) | ||||
|         sys.exit(2) | ||||
|  | ||||
| def download_setuptools( | ||||
|     version=DEFAULT_VERSION, download_base=DEFAULT_URL, to_dir=os.curdir, | ||||
|     delay = 15 | ||||
| ): | ||||
|     """Download setuptools from a specified location and return its filename | ||||
|  | ||||
|     `version` should be a valid setuptools version number that is available | ||||
|     as an egg for download under the `download_base` URL (which should end | ||||
|     with a '/'). `to_dir` is the directory where the egg will be downloaded. | ||||
|     `delay` is the number of seconds to pause before an actual download attempt. | ||||
|     """ | ||||
|     import urllib2, shutil | ||||
|     egg_name = "setuptools-%s-py%s.egg" % (version,sys.version[:3]) | ||||
|     url = download_base + egg_name | ||||
|     saveto = os.path.join(to_dir, egg_name) | ||||
|     src = dst = None | ||||
|     if not os.path.exists(saveto):  # Avoid repeated downloads | ||||
|         try: | ||||
|             from distutils import log | ||||
|             if delay: | ||||
|                 log.warn(""" | ||||
| --------------------------------------------------------------------------- | ||||
| This script requires setuptools version %s to run (even to display | ||||
| help).  I will attempt to download it for you (from | ||||
| %s), but | ||||
| you may need to enable firewall access for this script first. | ||||
| I will start the download in %d seconds. | ||||
|  | ||||
| (Note: if this machine does not have network access, please obtain the file | ||||
|  | ||||
|    %s | ||||
|  | ||||
| and place it in this directory before rerunning this script.) | ||||
| ---------------------------------------------------------------------------""", | ||||
|                     version, download_base, delay, url | ||||
|                 ); from time import sleep; sleep(delay) | ||||
|             log.warn("Downloading %s", url) | ||||
|             src = urllib2.urlopen(url) | ||||
|             # Read/write all in one block, so we don't create a corrupt file | ||||
|             # if the download is interrupted. | ||||
|             data = _validate_md5(egg_name, src.read()) | ||||
|             dst = open(saveto,"wb"); dst.write(data) | ||||
|         finally: | ||||
|             if src: src.close() | ||||
|             if dst: dst.close() | ||||
|     return os.path.realpath(saveto) | ||||
|  | ||||
| def main(argv, version=DEFAULT_VERSION): | ||||
|     """Install or upgrade setuptools and EasyInstall""" | ||||
|  | ||||
|     try: | ||||
|         import setuptools | ||||
|     except ImportError: | ||||
|         egg = None | ||||
|         try: | ||||
|             egg = download_setuptools(version, delay=0) | ||||
|             sys.path.insert(0,egg) | ||||
|             from setuptools.command.easy_install import main | ||||
|             return main(list(argv)+[egg])   # we're done here | ||||
|         finally: | ||||
|             if egg and os.path.exists(egg): | ||||
|                 os.unlink(egg) | ||||
|     else: | ||||
|         if setuptools.__version__ == '0.0.1': | ||||
|             # tell the user to uninstall obsolete version | ||||
|             use_setuptools(version) | ||||
|  | ||||
|     req = "setuptools>="+version | ||||
|     import pkg_resources | ||||
|     try: | ||||
|         pkg_resources.require(req) | ||||
|     except pkg_resources.VersionConflict: | ||||
|         try: | ||||
|             from setuptools.command.easy_install import main | ||||
|         except ImportError: | ||||
|             from easy_install import main | ||||
|         main(list(argv)+[download_setuptools(delay=0)]) | ||||
|         sys.exit(0) # try to force an exit | ||||
|     else: | ||||
|         if argv: | ||||
|             from setuptools.command.easy_install import main | ||||
|             main(argv) | ||||
|         else: | ||||
|             print "Setuptools version",version,"or greater has been installed." | ||||
|             print '(Run "ez_setup.py -U setuptools" to reinstall or upgrade.)' | ||||
|  | ||||
|  | ||||
|  | ||||
| def update_md5(filenames): | ||||
|     """Update our built-in md5 registry""" | ||||
|  | ||||
|     import re | ||||
|     from md5 import md5 | ||||
|  | ||||
|     for name in filenames: | ||||
|         base = os.path.basename(name) | ||||
|         f = open(name,'rb') | ||||
|         md5_data[base] = md5(f.read()).hexdigest() | ||||
|         f.close() | ||||
|  | ||||
|     data = ["    %r: %r,\n" % it for it in md5_data.items()] | ||||
|     data.sort() | ||||
|     repl = "".join(data) | ||||
|  | ||||
|     import inspect | ||||
|     srcfile = inspect.getsourcefile(sys.modules[__name__]) | ||||
|     f = open(srcfile, 'rb'); src = f.read(); f.close() | ||||
|  | ||||
|     match = re.search("\nmd5_data = {\n([^}]+)}", src) | ||||
|     if not match: | ||||
|         print >>sys.stderr, "Internal error!" | ||||
|         sys.exit(2) | ||||
|  | ||||
|     src = src[:match.start(1)] + repl + src[match.end(1):] | ||||
|     f = open(srcfile,'w') | ||||
|     f.write(src) | ||||
|     f.close() | ||||
|  | ||||
|  | ||||
| if __name__=='__main__': | ||||
|     if len(sys.argv)>2 and sys.argv[1]=='--md5update': | ||||
|         update_md5(sys.argv[2:]) | ||||
|     else: | ||||
|         main(sys.argv[1:]) | ||||
|  | ||||
|  | ||||
|  | ||||
|  | ||||
|  | ||||
							
								
								
									
										69
									
								
								run_tests.py
									
									
									
									
									
								
							
							
						
						
									
										69
									
								
								run_tests.py
									
									
									
									
									
								
							| @@ -1,69 +0,0 @@ | ||||
| #!/usr/bin/env python3 | ||||
|  | ||||
| import sys | ||||
| import logging | ||||
| import unittest | ||||
|  | ||||
| from argparse import ArgumentParser | ||||
| from distutils.core import Command | ||||
| from importlib import import_module | ||||
| from pathlib import Path | ||||
|  | ||||
|  | ||||
| def run_tests(filenames=None): | ||||
|     """ | ||||
|     Find and run all tests in the tests/ directory. | ||||
|  | ||||
|     Excludes live tests (tests/live_*). | ||||
|     """ | ||||
|     if not filenames: | ||||
|         filenames = [i for i in Path('tests').glob('test_*')] | ||||
|     else: | ||||
|         filenames = [Path(i) for i in filenames] | ||||
|  | ||||
|     modules = ['.'.join(test.parts[:-1] + (test.stem,)) for test in filenames] | ||||
|  | ||||
|     suites = [] | ||||
|     for filename in modules: | ||||
|         module = import_module(filename) | ||||
|         suites.append(module.suite) | ||||
|  | ||||
|     tests = unittest.TestSuite(suites) | ||||
|     runner = unittest.TextTestRunner(verbosity=2) | ||||
|  | ||||
|     # Disable logging output | ||||
|     logging.basicConfig(level=100) | ||||
|     logging.disable(100) | ||||
|  | ||||
|     result = runner.run(tests) | ||||
|     return result | ||||
|  | ||||
|  | ||||
| # Add a 'test' command for setup.py | ||||
|  | ||||
| class TestCommand(Command): | ||||
|  | ||||
|     user_options = [] | ||||
|  | ||||
|     def initialize_options(self): | ||||
|         pass | ||||
|  | ||||
|     def finalize_options(self): | ||||
|         pass | ||||
|  | ||||
|     def run(self): | ||||
|         run_tests() | ||||
|  | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     parser = ArgumentParser(description='Run unit tests.') | ||||
|     parser.add_argument('tests', metavar='TEST', nargs='*', help='list of tests to run, or nothing to run them all') | ||||
|     args = parser.parse_args() | ||||
|  | ||||
|     result = run_tests(args.tests) | ||||
|     print("<tests %s ran='%s' errors='%s' fails='%s' success='%s'/>" % ( | ||||
|         "xmlns='http//andyet.net/protocol/tests'", | ||||
|         result.testsRun, len(result.errors), | ||||
|         len(result.failures), result.wasSuccessful())) | ||||
|  | ||||
|     sys.exit(not result.wasSuccessful()) | ||||
							
								
								
									
										152
									
								
								setup.py
									
									
									
									
									
								
							
							
						
						
									
										152
									
								
								setup.py
									
									
									
									
									
								
							| @@ -1,4 +1,4 @@ | ||||
| #!/usr/bin/env python3 | ||||
| #!/usr/bin/env python | ||||
| # -*- coding: utf-8 -*- | ||||
| # | ||||
| # Copyright (C) 2007-2011 Nathanael C. Fritz | ||||
| @@ -7,43 +7,131 @@ | ||||
| # This software is licensed as described in the README.rst and LICENSE | ||||
| # file, which you should have received as part of this distribution. | ||||
|  | ||||
| from pathlib import Path | ||||
| import sys | ||||
| import codecs | ||||
| try: | ||||
|     from setuptools import setup | ||||
|     from setuptools import setup, Command | ||||
| except ImportError: | ||||
|     from distutils.core import setup | ||||
|     from distutils.core import setup, Command | ||||
| # from ez_setup import use_setuptools | ||||
|  | ||||
| from run_tests import TestCommand | ||||
| from slixmpp.version import __version__ | ||||
| from testall import TestCommand | ||||
| from sleekxmpp.version import __version__ | ||||
| # if 'cygwin' in sys.platform.lower(): | ||||
| #     min_version = '0.6c6' | ||||
| # else: | ||||
| #     min_version = '0.6a9' | ||||
| # | ||||
| # try: | ||||
| #     use_setuptools(min_version=min_version) | ||||
| # except TypeError: | ||||
| #     # locally installed ez_setup won't have min_version | ||||
| #     use_setuptools() | ||||
| # | ||||
| # from setuptools import setup, find_packages, Extension, Feature | ||||
|  | ||||
| VERSION = __version__ | ||||
| DESCRIPTION = ('Slixmpp is an elegant Python library for XMPP (aka Jabber, ' | ||||
|                'Google Talk, etc).') | ||||
| with open('README.rst', encoding='utf8') as readme: | ||||
|     LONG_DESCRIPTION = readme.read() | ||||
| VERSION          = __version__ | ||||
| DESCRIPTION      = 'SleekXMPP is an elegant Python library for XMPP (aka Jabber, Google Talk, etc).' | ||||
| with codecs.open('README.rst', 'r', encoding='UTF-8') as readme: | ||||
|     LONG_DESCRIPTION = ''.join(readme) | ||||
|  | ||||
| CLASSIFIERS = [ | ||||
|     'Intended Audience :: Developers', | ||||
|     'License :: OSI Approved :: MIT License', | ||||
|     'Programming Language :: Python', | ||||
|     'Programming Language :: Python :: 3.4', | ||||
|     'Topic :: Software Development :: Libraries :: Python Modules', | ||||
| ] | ||||
| CLASSIFIERS      = [ 'Intended Audience :: Developers', | ||||
|                      'License :: OSI Approved :: MIT License', | ||||
|                      'Programming Language :: Python', | ||||
|                      'Programming Language :: Python :: 2.6', | ||||
|                      'Programming Language :: Python :: 2.7', | ||||
|                      'Programming Language :: Python :: 3.1', | ||||
|                      'Programming Language :: Python :: 3.2', | ||||
|                      'Topic :: Software Development :: Libraries :: Python Modules', | ||||
|                    ] | ||||
|  | ||||
| packages = [str(mod.parent) for mod in Path('slixmpp').rglob('__init__.py')] | ||||
| packages     = [ 'sleekxmpp', | ||||
|                  'sleekxmpp/stanza', | ||||
|                  'sleekxmpp/test', | ||||
|                  'sleekxmpp/roster', | ||||
|                  'sleekxmpp/util', | ||||
|                  'sleekxmpp/util/sasl', | ||||
|                  'sleekxmpp/xmlstream', | ||||
|                  'sleekxmpp/xmlstream/matcher', | ||||
|                  'sleekxmpp/xmlstream/handler', | ||||
|                  'sleekxmpp/plugins', | ||||
|                  'sleekxmpp/plugins/xep_0004', | ||||
|                  'sleekxmpp/plugins/xep_0004/stanza', | ||||
|                  'sleekxmpp/plugins/xep_0009', | ||||
|                  'sleekxmpp/plugins/xep_0009/stanza', | ||||
|                  'sleekxmpp/plugins/xep_0012', | ||||
|                  'sleekxmpp/plugins/xep_0013', | ||||
|                  'sleekxmpp/plugins/xep_0016', | ||||
|                  'sleekxmpp/plugins/xep_0027', | ||||
|                  'sleekxmpp/plugins/xep_0030', | ||||
|                  'sleekxmpp/plugins/xep_0030/stanza', | ||||
|                  'sleekxmpp/plugins/xep_0033', | ||||
|                  'sleekxmpp/plugins/xep_0047', | ||||
|                  'sleekxmpp/plugins/xep_0049', | ||||
|                  'sleekxmpp/plugins/xep_0050', | ||||
|                  'sleekxmpp/plugins/xep_0054', | ||||
|                  'sleekxmpp/plugins/xep_0059', | ||||
|                  'sleekxmpp/plugins/xep_0060', | ||||
|                  'sleekxmpp/plugins/xep_0060/stanza', | ||||
|                  'sleekxmpp/plugins/xep_0066', | ||||
|                  'sleekxmpp/plugins/xep_0077', | ||||
|                  'sleekxmpp/plugins/xep_0078', | ||||
|                  'sleekxmpp/plugins/xep_0080', | ||||
|                  'sleekxmpp/plugins/xep_0084', | ||||
|                  'sleekxmpp/plugins/xep_0085', | ||||
|                  'sleekxmpp/plugins/xep_0086', | ||||
|                  'sleekxmpp/plugins/xep_0091', | ||||
|                  'sleekxmpp/plugins/xep_0092', | ||||
|                  'sleekxmpp/plugins/xep_0107', | ||||
|                  'sleekxmpp/plugins/xep_0108', | ||||
|                  'sleekxmpp/plugins/xep_0115', | ||||
|                  'sleekxmpp/plugins/xep_0118', | ||||
|                  'sleekxmpp/plugins/xep_0128', | ||||
|                  'sleekxmpp/plugins/xep_0131', | ||||
|                  'sleekxmpp/plugins/xep_0153', | ||||
|                  'sleekxmpp/plugins/xep_0172', | ||||
|                  'sleekxmpp/plugins/xep_0184', | ||||
|                  'sleekxmpp/plugins/xep_0186', | ||||
|                  'sleekxmpp/plugins/xep_0191', | ||||
|                  'sleekxmpp/plugins/xep_0198', | ||||
|                  'sleekxmpp/plugins/xep_0199', | ||||
|                  'sleekxmpp/plugins/xep_0202', | ||||
|                  'sleekxmpp/plugins/xep_0203', | ||||
|                  'sleekxmpp/plugins/xep_0221', | ||||
|                  'sleekxmpp/plugins/xep_0224', | ||||
|                  'sleekxmpp/plugins/xep_0231', | ||||
|                  'sleekxmpp/plugins/xep_0235', | ||||
|                  'sleekxmpp/plugins/xep_0249', | ||||
|                  'sleekxmpp/plugins/xep_0257', | ||||
|                  'sleekxmpp/plugins/xep_0258', | ||||
|                  'sleekxmpp/plugins/xep_0279', | ||||
|                  'sleekxmpp/plugins/xep_0280', | ||||
|                  'sleekxmpp/plugins/xep_0297', | ||||
|                  'sleekxmpp/plugins/xep_0308', | ||||
|                  'sleekxmpp/plugins/xep_0313', | ||||
|                  'sleekxmpp/features', | ||||
|                  'sleekxmpp/features/feature_mechanisms', | ||||
|                  'sleekxmpp/features/feature_mechanisms/stanza', | ||||
|                  'sleekxmpp/features/feature_starttls', | ||||
|                  'sleekxmpp/features/feature_bind', | ||||
|                  'sleekxmpp/features/feature_session', | ||||
|                  'sleekxmpp/features/feature_rosterver', | ||||
|                  'sleekxmpp/features/feature_preapproval', | ||||
|                  'sleekxmpp/thirdparty', | ||||
|                  ] | ||||
|  | ||||
| setup( | ||||
|     name="slixmpp", | ||||
|     version=VERSION, | ||||
|     description=DESCRIPTION, | ||||
|     long_description=LONG_DESCRIPTION, | ||||
|     author='Florent Le Coz', | ||||
|     author_email='louiz@louiz.org', | ||||
|     url='https://dev.louiz.org/projects/slixmpp', | ||||
|     license='MIT', | ||||
|     platforms=['any'], | ||||
|     packages=packages, | ||||
|     requires=['aiodns', 'pyasn1', 'pyasn1_modules'], | ||||
|     classifiers=CLASSIFIERS, | ||||
|     cmdclass={'test': TestCommand} | ||||
|     name             = "sleekxmpp", | ||||
|     version          = VERSION, | ||||
|     description      = DESCRIPTION, | ||||
|     long_description = LONG_DESCRIPTION, | ||||
|     author       = 'Nathanael Fritz', | ||||
|     author_email = 'fritzy [at] netflint.net', | ||||
|     url          = 'http://github.com/fritzy/SleekXMPP', | ||||
|     license      = 'MIT', | ||||
|     platforms    = [ 'any' ], | ||||
|     packages     = packages, | ||||
|     requires     = [ 'dnspython', 'pyasn1', 'pyasn1_modules' ], | ||||
|     classifiers  = CLASSIFIERS, | ||||
|     cmdclass     = {'test': TestCommand} | ||||
| ) | ||||
|   | ||||
							
								
								
									
										19
									
								
								sleekxmpp/__init__.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								sleekxmpp/__init__.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,19 @@ | ||||
| """ | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2010  Nathanael C. Fritz | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| from sleekxmpp.basexmpp import BaseXMPP | ||||
| from sleekxmpp.clientxmpp import ClientXMPP | ||||
| from sleekxmpp.componentxmpp import ComponentXMPP | ||||
| from sleekxmpp.stanza import Message, Presence, Iq | ||||
| from sleekxmpp.jid import JID, InvalidJID | ||||
| from sleekxmpp.xmlstream.handler import * | ||||
| from sleekxmpp.xmlstream import XMLStream, RestartStream | ||||
| from sleekxmpp.xmlstream.matcher import * | ||||
| from sleekxmpp.xmlstream.stanzabase import StanzaBase, ET | ||||
|  | ||||
| from sleekxmpp.version import __version__, __version_info__ | ||||
| @@ -1,4 +1,4 @@ | ||||
| from slixmpp.xmlstream import JID | ||||
| from sleekxmpp.xmlstream import JID | ||||
| 
 | ||||
| 
 | ||||
| class APIWrapper(object): | ||||
| @@ -1,40 +1,52 @@ | ||||
| # -*- coding: utf-8 -*- | ||||
| """ | ||||
|     slixmpp.basexmpp | ||||
|     sleekxmpp.basexmpp | ||||
|     ~~~~~~~~~~~~~~~~~~ | ||||
| 
 | ||||
|     This module provides the common XMPP functionality | ||||
|     for both clients and components. | ||||
| 
 | ||||
|     Part of Slixmpp: The Slick XMPP Library | ||||
|     Part of SleekXMPP: The Sleek XMPP Library | ||||
| 
 | ||||
|     :copyright: (c) 2011 Nathanael C. Fritz | ||||
|     :license: MIT, see LICENSE for more details | ||||
| """ | ||||
| 
 | ||||
| from __future__ import with_statement, unicode_literals | ||||
| 
 | ||||
| import sys | ||||
| import logging | ||||
| import threading | ||||
| 
 | ||||
| from slixmpp import plugins, roster, stanza | ||||
| from slixmpp.api import APIRegistry | ||||
| from slixmpp.exceptions import IqError, IqTimeout | ||||
| import sleekxmpp | ||||
| from sleekxmpp import plugins, features, roster | ||||
| from sleekxmpp.api import APIRegistry | ||||
| from sleekxmpp.exceptions import IqError, IqTimeout | ||||
| 
 | ||||
| from slixmpp.stanza import Message, Presence, Iq, StreamError | ||||
| from slixmpp.stanza.roster import Roster | ||||
| from slixmpp.stanza.nick import Nick | ||||
| from slixmpp.stanza.htmlim import HTMLIM | ||||
| from sleekxmpp.stanza import Message, Presence, Iq, StreamError | ||||
| from sleekxmpp.stanza.roster import Roster | ||||
| from sleekxmpp.stanza.nick import Nick | ||||
| from sleekxmpp.stanza.htmlim import HTMLIM | ||||
| 
 | ||||
| from slixmpp.xmlstream import XMLStream, JID | ||||
| from slixmpp.xmlstream import ET, register_stanza_plugin | ||||
| from slixmpp.xmlstream.matcher import MatchXPath | ||||
| from slixmpp.xmlstream.handler import Callback | ||||
| from slixmpp.xmlstream.stanzabase import XML_NS | ||||
| from sleekxmpp.xmlstream import XMLStream, JID | ||||
| from sleekxmpp.xmlstream import ET, register_stanza_plugin | ||||
| from sleekxmpp.xmlstream.matcher import MatchXPath | ||||
| from sleekxmpp.xmlstream.handler import Callback | ||||
| from sleekxmpp.xmlstream.stanzabase import XML_NS | ||||
| 
 | ||||
| from slixmpp.plugins import PluginManager, load_plugin | ||||
| from sleekxmpp.features import * | ||||
| from sleekxmpp.plugins import PluginManager, register_plugin, load_plugin | ||||
| 
 | ||||
| 
 | ||||
| log = logging.getLogger(__name__) | ||||
| 
 | ||||
| # In order to make sure that Unicode is handled properly | ||||
| # in Python 2.x, reset the default encoding. | ||||
| if sys.version_info < (3, 0): | ||||
|     from sleekxmpp.util.misc_ops import setdefaultencoding | ||||
|     setdefaultencoding('utf8') | ||||
| 
 | ||||
| 
 | ||||
| class BaseXMPP(XMLStream): | ||||
| 
 | ||||
|     """ | ||||
| @@ -134,9 +146,9 @@ class BaseXMPP(XMLStream): | ||||
|         #: behave as expected when sending stanzas. | ||||
|         self.sentpresence = False | ||||
| 
 | ||||
|         #: A reference to :mod:`slixmpp.stanza` to make accessing | ||||
|         #: A reference to :mod:`sleekxmpp.stanza` to make accessing | ||||
|         #: stanza classes easier. | ||||
|         self.stanza = stanza | ||||
|         self.stanza = sleekxmpp.stanza | ||||
| 
 | ||||
|         self.register_handler( | ||||
|             Callback('IM', | ||||
| @@ -189,6 +201,7 @@ class BaseXMPP(XMLStream): | ||||
|         # Initialize a few default stanza plugins. | ||||
|         register_stanza_plugin(Iq, Roster) | ||||
|         register_stanza_plugin(Message, Nick) | ||||
|         register_stanza_plugin(Message, HTMLIM) | ||||
| 
 | ||||
|     def start_stream_handler(self, xml): | ||||
|         """Save the stream ID once the streams have been established. | ||||
| @@ -203,16 +216,37 @@ class BaseXMPP(XMLStream): | ||||
|             log.warning('Legacy XMPP 0.9 protocol detected.') | ||||
|             self.event('legacy_protocol') | ||||
| 
 | ||||
|     def process(self, timeout=None): | ||||
|         self.init_plugins() | ||||
|         XMLStream.process(self, timeout) | ||||
|     def process(self, *args, **kwargs): | ||||
|         """Initialize plugins and begin processing the XML stream. | ||||
| 
 | ||||
|     def init_plugins(self): | ||||
|         The number of threads used for processing stream events is determined | ||||
|         by :data:`HANDLER_THREADS`. | ||||
| 
 | ||||
|         :param bool block: If ``False``, then event dispatcher will run | ||||
|                     in a separate thread, allowing for the stream to be | ||||
|                     used in the background for another application. | ||||
|                     Otherwise, ``process(block=True)`` blocks the current | ||||
|                     thread. Defaults to ``False``. | ||||
|         :param bool threaded: **DEPRECATED** | ||||
|                     If ``True``, then event dispatcher will run | ||||
|                     in a separate thread, allowing for the stream to be | ||||
|                     used in the background for another application. | ||||
|                     Defaults to ``True``. This does **not** mean that no | ||||
|                     threads are used at all if ``threaded=False``. | ||||
| 
 | ||||
|         Regardless of these threading options, these threads will | ||||
|         always exist: | ||||
| 
 | ||||
|         - The event queue processor | ||||
|         - The send queue processor | ||||
|         - The scheduler | ||||
|         """ | ||||
|         for name in self.plugin: | ||||
|             if not hasattr(self.plugin[name], 'post_inited'): | ||||
|                 if hasattr(self.plugin[name], 'post_init'): | ||||
|                     self.plugin[name].post_init() | ||||
|                 self.plugin[name].post_inited = True | ||||
|         return XMLStream.process(self, *args, **kwargs) | ||||
| 
 | ||||
|     def register_plugin(self, plugin, pconfig={}, module=None): | ||||
|         """Register and configure  a plugin for use in this stream. | ||||
| @@ -285,11 +319,11 @@ class BaseXMPP(XMLStream): | ||||
| 
 | ||||
|         :param id: An ideally unique ID value for this stanza thread. | ||||
|                    Defaults to 0. | ||||
|         :param ifrom: The from :class:`~slixmpp.xmlstream.jid.JID` | ||||
|         :param ifrom: The from :class:`~sleekxmpp.xmlstream.jid.JID` | ||||
|                       to use for this stanza. | ||||
|         :param ito: The destination :class:`~slixmpp.xmlstream.jid.JID` | ||||
|         :param ito: The destination :class:`~sleekxmpp.xmlstream.jid.JID` | ||||
|                     for this stanza. | ||||
|         :param itype: The :class:`~slixmpp.stanza.iq.Iq`'s type, | ||||
|         :param itype: The :class:`~sleekxmpp.stanza.iq.Iq`'s type, | ||||
|                       one of: ``'get'``, ``'set'``, ``'result'``, | ||||
|                       or ``'error'``. | ||||
|         :param iquery: Optional namespace for adding a query element. | ||||
| @@ -303,14 +337,14 @@ class BaseXMPP(XMLStream): | ||||
|         return iq | ||||
| 
 | ||||
|     def make_iq_get(self, queryxmlns=None, ito=None, ifrom=None, iq=None): | ||||
|         """Create an :class:`~slixmpp.stanza.iq.Iq` stanza of type ``'get'``. | ||||
|         """Create an :class:`~sleekxmpp.stanza.iq.Iq` stanza of type ``'get'``. | ||||
| 
 | ||||
|         Optionally, a query element may be added. | ||||
| 
 | ||||
|         :param queryxmlns: The namespace of the query to use. | ||||
|         :param ito: The destination :class:`~slixmpp.xmlstream.jid.JID` | ||||
|         :param ito: The destination :class:`~sleekxmpp.xmlstream.jid.JID` | ||||
|                     for this stanza. | ||||
|         :param ifrom: The ``'from'`` :class:`~slixmpp.xmlstream.jid.JID` | ||||
|         :param ifrom: The ``'from'`` :class:`~sleekxmpp.xmlstream.jid.JID` | ||||
|                       to use for this stanza. | ||||
|         :param iq: Optionally use an existing stanza instead | ||||
|                    of generating a new one. | ||||
| @@ -327,13 +361,13 @@ class BaseXMPP(XMLStream): | ||||
| 
 | ||||
|     def make_iq_result(self, id=None, ito=None, ifrom=None, iq=None): | ||||
|         """ | ||||
|         Create an :class:`~slixmpp.stanza.iq.Iq` stanza of type | ||||
|         Create an :class:`~sleekxmpp.stanza.iq.Iq` stanza of type | ||||
|         ``'result'`` with the given ID value. | ||||
| 
 | ||||
|         :param id: An ideally unique ID value. May use :meth:`new_id()`. | ||||
|         :param ito: The destination :class:`~slixmpp.xmlstream.jid.JID` | ||||
|         :param ito: The destination :class:`~sleekxmpp.xmlstream.jid.JID` | ||||
|                     for this stanza. | ||||
|         :param ifrom: The ``'from'`` :class:`~slixmpp.xmlstream.jid.JID` | ||||
|         :param ifrom: The ``'from'`` :class:`~sleekxmpp.xmlstream.jid.JID` | ||||
|                       to use for this stanza. | ||||
|         :param iq: Optionally use an existing stanza instead | ||||
|                    of generating a new one. | ||||
| @@ -352,19 +386,19 @@ class BaseXMPP(XMLStream): | ||||
| 
 | ||||
|     def make_iq_set(self, sub=None, ito=None, ifrom=None, iq=None): | ||||
|         """ | ||||
|         Create an :class:`~slixmpp.stanza.iq.Iq` stanza of type ``'set'``. | ||||
|         Create an :class:`~sleekxmpp.stanza.iq.Iq` stanza of type ``'set'``. | ||||
| 
 | ||||
|         Optionally, a substanza may be given to use as the | ||||
|         stanza's payload. | ||||
| 
 | ||||
|         :param sub: Either an | ||||
|                     :class:`~slixmpp.xmlstream.stanzabase.ElementBase` | ||||
|                     :class:`~sleekxmpp.xmlstream.stanzabase.ElementBase` | ||||
|                     stanza object or an | ||||
|                     :class:`~xml.etree.ElementTree.Element` XML object | ||||
|                     to use as the :class:`~slixmpp.stanza.iq.Iq`'s payload. | ||||
|         :param ito: The destination :class:`~slixmpp.xmlstream.jid.JID` | ||||
|                     to use as the :class:`~sleekxmpp.stanza.iq.Iq`'s payload. | ||||
|         :param ito: The destination :class:`~sleekxmpp.xmlstream.jid.JID` | ||||
|                     for this stanza. | ||||
|         :param ifrom: The ``'from'`` :class:`~slixmpp.xmlstream.jid.JID` | ||||
|         :param ifrom: The ``'from'`` :class:`~sleekxmpp.xmlstream.jid.JID` | ||||
|                       to use for this stanza. | ||||
|         :param iq: Optionally use an existing stanza instead | ||||
|                    of generating a new one. | ||||
| @@ -384,7 +418,7 @@ class BaseXMPP(XMLStream): | ||||
|                       condition='feature-not-implemented', | ||||
|                       text=None, ito=None, ifrom=None, iq=None): | ||||
|         """ | ||||
|         Create an :class:`~slixmpp.stanza.iq.Iq` stanza of type ``'error'``. | ||||
|         Create an :class:`~sleekxmpp.stanza.iq.Iq` stanza of type ``'error'``. | ||||
| 
 | ||||
|         :param id: An ideally unique ID value. May use :meth:`new_id()`. | ||||
|         :param type: The type of the error, such as ``'cancel'`` or | ||||
| @@ -392,9 +426,9 @@ class BaseXMPP(XMLStream): | ||||
|         :param condition: The error condition. Defaults to | ||||
|                           ``'feature-not-implemented'``. | ||||
|         :param text: A message describing the cause of the error. | ||||
|         :param ito: The destination :class:`~slixmpp.xmlstream.jid.JID` | ||||
|         :param ito: The destination :class:`~sleekxmpp.xmlstream.jid.JID` | ||||
|                     for this stanza. | ||||
|         :param ifrom: The ``'from'`` :class:`~slixmpp.xmlstream.jid.JID` | ||||
|         :param ifrom: The ``'from'`` :class:`~sleekxmpp.xmlstream.jid.JID` | ||||
|                       to use for this stanza. | ||||
|         :param iq: Optionally use an existing stanza instead | ||||
|                    of generating a new one. | ||||
| @@ -413,15 +447,15 @@ class BaseXMPP(XMLStream): | ||||
| 
 | ||||
|     def make_iq_query(self, iq=None, xmlns='', ito=None, ifrom=None): | ||||
|         """ | ||||
|         Create or modify an :class:`~slixmpp.stanza.iq.Iq` stanza | ||||
|         Create or modify an :class:`~sleekxmpp.stanza.iq.Iq` stanza | ||||
|         to use the given query namespace. | ||||
| 
 | ||||
|         :param iq: Optionally use an existing stanza instead | ||||
|                    of generating a new one. | ||||
|         :param xmlns: The query's namespace. | ||||
|         :param ito: The destination :class:`~slixmpp.xmlstream.jid.JID` | ||||
|         :param ito: The destination :class:`~sleekxmpp.xmlstream.jid.JID` | ||||
|                     for this stanza. | ||||
|         :param ifrom: The ``'from'`` :class:`~slixmpp.xmlstream.jid.JID` | ||||
|         :param ifrom: The ``'from'`` :class:`~sleekxmpp.xmlstream.jid.JID` | ||||
|                       to use for this stanza. | ||||
|         """ | ||||
|         if not iq: | ||||
| @@ -447,7 +481,7 @@ class BaseXMPP(XMLStream): | ||||
|                      mhtml=None, mfrom=None, mnick=None): | ||||
|         """ | ||||
|         Create and initialize a new | ||||
|         :class:`~slixmpp.stanza.message.Message` stanza. | ||||
|         :class:`~sleekxmpp.stanza.message.Message` stanza. | ||||
| 
 | ||||
|         :param mto: The recipient of the message. | ||||
|         :param mbody: The main contents of the message. | ||||
| @@ -473,7 +507,7 @@ class BaseXMPP(XMLStream): | ||||
|                       pto=None, ptype=None, pfrom=None, pnick=None): | ||||
|         """ | ||||
|         Create and initialize a new | ||||
|         :class:`~slixmpp.stanza.presence.Presence` stanza. | ||||
|         :class:`~sleekxmpp.stanza.presence.Presence` stanza. | ||||
| 
 | ||||
|         :param pshow: The presence's show value. | ||||
|         :param pstatus: The presence's status message. | ||||
| @@ -497,7 +531,7 @@ class BaseXMPP(XMLStream): | ||||
|                      mhtml=None, mfrom=None, mnick=None): | ||||
|         """ | ||||
|         Create, initialize, and send a new | ||||
|         :class:`~slixmpp.stanza.message.Message` stanza. | ||||
|         :class:`~sleekxmpp.stanza.message.Message` stanza. | ||||
| 
 | ||||
|         :param mto: The recipient of the message. | ||||
|         :param mbody: The main contents of the message. | ||||
| @@ -517,7 +551,7 @@ class BaseXMPP(XMLStream): | ||||
|                       pto=None, pfrom=None, ptype=None, pnick=None): | ||||
|         """ | ||||
|         Create, initialize, and send a new | ||||
|         :class:`~slixmpp.stanza.presence.Presence` stanza. | ||||
|         :class:`~sleekxmpp.stanza.presence.Presence` stanza. | ||||
| 
 | ||||
|         :param pshow: The presence's show value. | ||||
|         :param pstatus: The presence's status message. | ||||
| @@ -534,7 +568,7 @@ class BaseXMPP(XMLStream): | ||||
|                                    ptype='subscribe', pnick=None): | ||||
|         """ | ||||
|         Create, initialize, and send a new | ||||
|         :class:`~slixmpp.stanza.presence.Presence` stanza of | ||||
|         :class:`~sleekxmpp.stanza.presence.Presence` stanza of | ||||
|         type ``'subscribe'``. | ||||
| 
 | ||||
|         :param pto: The recipient of a directed presence. | ||||
| @@ -758,8 +792,8 @@ class BaseXMPP(XMLStream): | ||||
| 
 | ||||
|     def exception(self, exception): | ||||
|         """Process any uncaught exceptions, notably | ||||
|         :class:`~slixmpp.exceptions.IqError` and | ||||
|         :class:`~slixmpp.exceptions.IqTimeout` exceptions. | ||||
|         :class:`~sleekxmpp.exceptions.IqError` and | ||||
|         :class:`~sleekxmpp.exceptions.IqTimeout` exceptions. | ||||
| 
 | ||||
|         :param exception: An unhandled :class:`Exception` object. | ||||
|         """ | ||||
| @@ -779,3 +813,23 @@ class BaseXMPP(XMLStream): | ||||
|             pass | ||||
|         else: | ||||
|             log.exception(exception) | ||||
| 
 | ||||
| 
 | ||||
| # Restore the old, lowercased name for backwards compatibility. | ||||
| basexmpp = BaseXMPP | ||||
| 
 | ||||
| # To comply with PEP8, method names now use underscores. | ||||
| # Deprecated method names are re-mapped for backwards compatibility. | ||||
| BaseXMPP.registerPlugin = BaseXMPP.register_plugin | ||||
| BaseXMPP.makeIq = BaseXMPP.make_iq | ||||
| BaseXMPP.makeIqGet = BaseXMPP.make_iq_get | ||||
| BaseXMPP.makeIqResult = BaseXMPP.make_iq_result | ||||
| BaseXMPP.makeIqSet = BaseXMPP.make_iq_set | ||||
| BaseXMPP.makeIqError = BaseXMPP.make_iq_error | ||||
| BaseXMPP.makeIqQuery = BaseXMPP.make_iq_query | ||||
| BaseXMPP.makeQueryRoster = BaseXMPP.make_query_roster | ||||
| BaseXMPP.makeMessage = BaseXMPP.make_message | ||||
| BaseXMPP.makePresence = BaseXMPP.make_presence | ||||
| BaseXMPP.sendMessage = BaseXMPP.send_message | ||||
| BaseXMPP.sendPresence = BaseXMPP.send_presence | ||||
| BaseXMPP.sendPresenceSubscription = BaseXMPP.send_presence_subscription | ||||
| @@ -1,25 +1,27 @@ | ||||
| # -*- coding: utf-8 -*- | ||||
| """ | ||||
|     slixmpp.clientxmpp | ||||
|     sleekxmpp.clientxmpp | ||||
|     ~~~~~~~~~~~~~~~~~~~~ | ||||
| 
 | ||||
|     This module provides XMPP functionality that | ||||
|     is specific to client connections. | ||||
| 
 | ||||
|     Part of Slixmpp: The Slick XMPP Library | ||||
|     Part of SleekXMPP: The Sleek XMPP Library | ||||
| 
 | ||||
|     :copyright: (c) 2011 Nathanael C. Fritz | ||||
|     :license: MIT, see LICENSE for more details | ||||
| """ | ||||
| 
 | ||||
| from __future__ import absolute_import, unicode_literals | ||||
| 
 | ||||
| import logging | ||||
| 
 | ||||
| from slixmpp.stanza import StreamFeatures | ||||
| from slixmpp.basexmpp import BaseXMPP | ||||
| from slixmpp.exceptions import XMPPError | ||||
| from slixmpp.xmlstream import XMLStream | ||||
| from slixmpp.xmlstream.matcher import StanzaPath, MatchXPath | ||||
| from slixmpp.xmlstream.handler import Callback | ||||
| from sleekxmpp.stanza import StreamFeatures | ||||
| from sleekxmpp.basexmpp import BaseXMPP | ||||
| from sleekxmpp.exceptions import XMPPError | ||||
| from sleekxmpp.xmlstream import XMLStream | ||||
| from sleekxmpp.xmlstream.matcher import StanzaPath, MatchXPath | ||||
| from sleekxmpp.xmlstream.handler import Callback | ||||
| 
 | ||||
| # Flag indicating if DNS SRV records are available for use. | ||||
| try: | ||||
| @@ -36,7 +38,7 @@ log = logging.getLogger(__name__) | ||||
| class ClientXMPP(BaseXMPP): | ||||
| 
 | ||||
|     """ | ||||
|     Slixmpp's client class. (Use only for good, not for evil.) | ||||
|     SleekXMPP's client class. (Use only for good, not for evil.) | ||||
| 
 | ||||
|     Typical use pattern: | ||||
| 
 | ||||
| @@ -54,7 +56,7 @@ class ClientXMPP(BaseXMPP): | ||||
|     :param plugin_config: A dictionary of plugin configurations. | ||||
|     :param plugin_whitelist: A list of approved plugins that | ||||
|                     will be loaded when calling | ||||
|                     :meth:`~slixmpp.basexmpp.BaseXMPP.register_plugins()`. | ||||
|                     :meth:`~sleekxmpp.basexmpp.BaseXMPP.register_plugins()`. | ||||
|     :param escape_quotes: **Deprecated.** | ||||
|     """ | ||||
| 
 | ||||
| @@ -94,7 +96,6 @@ class ClientXMPP(BaseXMPP): | ||||
| 
 | ||||
|         self.add_event_handler('connected', self._reset_connection_state) | ||||
|         self.add_event_handler('session_bind', self._handle_session_bind) | ||||
|         self.add_event_handler('roster_update', self._handle_roster) | ||||
| 
 | ||||
|         self.register_stanza(StreamFeatures) | ||||
| 
 | ||||
| @@ -105,7 +106,7 @@ class ClientXMPP(BaseXMPP): | ||||
|         self.register_handler( | ||||
|                 Callback('Roster Update', | ||||
|                          StanzaPath('iq@type=set/roster'), | ||||
|                          lambda iq: self.event('roster_update', iq))) | ||||
|                          self._handle_roster)) | ||||
| 
 | ||||
|         # Setup default stream features | ||||
|         self.register_plugin('feature_starttls') | ||||
| @@ -113,10 +114,8 @@ class ClientXMPP(BaseXMPP): | ||||
|         self.register_plugin('feature_session') | ||||
|         self.register_plugin('feature_rosterver') | ||||
|         self.register_plugin('feature_preapproval') | ||||
|         self.register_plugin('feature_mechanisms') | ||||
| 
 | ||||
|         if sasl_mech: | ||||
|             self['feature_mechanisms'].use_mech = sasl_mech | ||||
|         self.register_plugin('feature_mechanisms', | ||||
|                 pconfig={'use_mech': sasl_mech} if sasl_mech else None) | ||||
| 
 | ||||
|     @property | ||||
|     def password(self): | ||||
| @@ -126,15 +125,15 @@ class ClientXMPP(BaseXMPP): | ||||
|     def password(self, value): | ||||
|         self.credentials['password'] = value | ||||
| 
 | ||||
|     def connect(self, address=tuple(), use_ssl=False, | ||||
|                 force_starttls=True, disable_starttls=False): | ||||
|     def connect(self, address=tuple(), reattempt=True, | ||||
|                 use_tls=True, use_ssl=False): | ||||
|         """Connect to the XMPP server. | ||||
| 
 | ||||
|         When no address is given, a SRV lookup for the server will | ||||
|         be attempted. If that fails, the server user in the JID | ||||
|         will be used. | ||||
| 
 | ||||
|         :param address: A tuple containing the server's host and port. | ||||
|         :param address   -- A tuple containing the server's host and port. | ||||
|         :param reattempt: If ``True``, repeat attempting to connect if an | ||||
|                          error occurs. Defaults to ``True``. | ||||
|         :param use_tls: Indicates if TLS should be used for the | ||||
| @@ -142,6 +141,7 @@ class ClientXMPP(BaseXMPP): | ||||
|         :param use_ssl: Indicates if the older SSL connection method | ||||
|                         should be used. Defaults to ``False``. | ||||
|         """ | ||||
|         self.session_started_event.clear() | ||||
| 
 | ||||
|         # If an address was provided, disable using DNS SRV lookup; | ||||
|         # otherwise, use the domain from the client JID with the standard | ||||
| @@ -152,8 +152,11 @@ class ClientXMPP(BaseXMPP): | ||||
|             address = (self.boundjid.host, 5222) | ||||
|             self.dns_service = 'xmpp-client' | ||||
| 
 | ||||
|         return XMLStream.connect(self, address[0], address[1], use_ssl=use_ssl, | ||||
|                                  force_starttls=force_starttls, disable_starttls=disable_starttls) | ||||
|         self._expected_server_name = self.boundjid.host | ||||
| 
 | ||||
|         return XMLStream.connect(self, address[0], address[1], | ||||
|                                  use_tls=use_tls, use_ssl=use_ssl, | ||||
|                                  reattempt=reattempt) | ||||
| 
 | ||||
|     def register_feature(self, name, handler, restart=False, order=5000): | ||||
|         """Register a stream feature handler. | ||||
| @@ -186,10 +189,13 @@ class ClientXMPP(BaseXMPP): | ||||
|                              ``'none'``. If set to ``'remove'``, | ||||
|                              the entry will be deleted. | ||||
|         :param groups: The roster groups that contain this item. | ||||
|         :param block: Specify if the roster request will block | ||||
|                       until a response is received, or a timeout | ||||
|                       occurs. Defaults to ``True``. | ||||
|         :param timeout: The length of time (in seconds) to wait | ||||
|                         for a response before continuing if blocking | ||||
|                         is used. Defaults to | ||||
|             :attr:`~slixmpp.xmlstream.xmlstream.XMLStream.response_timeout`. | ||||
|             :attr:`~sleekxmpp.xmlstream.xmlstream.XMLStream.response_timeout`. | ||||
|         :param callback: Optional reference to a stream handler function. | ||||
|                          Will be executed when the roster is received. | ||||
|                          Implies ``block=False``. | ||||
| @@ -200,11 +206,12 @@ class ClientXMPP(BaseXMPP): | ||||
|         subscription = kwargs.get('subscription', current['subscription']) | ||||
|         groups = kwargs.get('groups', current['groups']) | ||||
| 
 | ||||
|         block = kwargs.get('block', True) | ||||
|         timeout = kwargs.get('timeout', None) | ||||
|         callback = kwargs.get('callback', None) | ||||
| 
 | ||||
|         return self.client_roster.update(jid, name, subscription, groups, | ||||
|                                          timeout, callback) | ||||
|                                          block, timeout, callback) | ||||
| 
 | ||||
|     def del_roster_item(self, jid): | ||||
|         """Remove an item from the roster. | ||||
| @@ -215,11 +222,19 @@ class ClientXMPP(BaseXMPP): | ||||
|         """ | ||||
|         return self.client_roster.remove(jid) | ||||
| 
 | ||||
|     def get_roster(self, callback=None, timeout=None, timeout_callback=None): | ||||
|     def get_roster(self, block=True, timeout=None, callback=None): | ||||
|         """Request the roster from the server. | ||||
| 
 | ||||
|         :param callback: Reference to a stream handler function. Will | ||||
|         :param block: Specify if the roster request will block until a | ||||
|                       response is received, or a timeout occurs. | ||||
|                       Defaults to ``True``. | ||||
|         :param timeout: The length of time (in seconds) to wait for a response | ||||
|                         before continuing if blocking is used. | ||||
|                         Defaults to | ||||
|             :attr:`~sleekxmpp.xmlstream.xmlstream.XMLStream.response_timeout`. | ||||
|         :param callback: Optional reference to a stream handler function. Will | ||||
|                          be executed when the roster is received. | ||||
|                          Implies ``block=False``. | ||||
|         """ | ||||
|         iq = self.Iq() | ||||
|         iq['type'] = 'get' | ||||
| @@ -227,16 +242,15 @@ class ClientXMPP(BaseXMPP): | ||||
|         if 'rosterver' in self.features: | ||||
|             iq['roster']['ver'] = self.client_roster.version | ||||
| 
 | ||||
|         if callback is None: | ||||
|             callback = lambda resp: self.event('roster_update', resp) | ||||
|         else: | ||||
|             orig_cb = callback | ||||
|             def wrapped(resp): | ||||
|                 self.event('roster_update', resp) | ||||
|                 orig_cb(resp) | ||||
|             callback = wrapped | ||||
|         if not block and callback is None: | ||||
|             callback = lambda resp: self._handle_roster(resp) | ||||
| 
 | ||||
|         iq.send(callback, timeout, timeout_callback) | ||||
|         response = iq.send(block, timeout, callback) | ||||
|         self.event('roster_received', response) | ||||
| 
 | ||||
|         if block: | ||||
|             self._handle_roster(response) | ||||
|             return response | ||||
| 
 | ||||
|     def _reset_connection_state(self, event=None): | ||||
|         #TODO: Use stream state here | ||||
| @@ -286,6 +300,7 @@ class ClientXMPP(BaseXMPP): | ||||
| 
 | ||||
|                 roster[jid].save(remove=(item['subscription'] == 'remove')) | ||||
| 
 | ||||
|         self.event("roster_update", iq) | ||||
|         if iq['type'] == 'set': | ||||
|             resp = self.Iq(stype='result', | ||||
|                            sto=iq['from'], | ||||
| @@ -296,7 +311,15 @@ class ClientXMPP(BaseXMPP): | ||||
|     def _handle_session_bind(self, jid): | ||||
|         """Set the client roster to the JID set by the server. | ||||
| 
 | ||||
|         :param :class:`slixmpp.xmlstream.jid.JID` jid: The bound JID as | ||||
|         :param :class:`sleekxmpp.xmlstream.jid.JID` jid: The bound JID as | ||||
|             dictated by the server. The same as :attr:`boundjid`. | ||||
|         """ | ||||
|         self.client_roster = self.roster[jid] | ||||
| 
 | ||||
| 
 | ||||
| # To comply with PEP8, method names now use underscores. | ||||
| # Deprecated method names are re-mapped for backwards compatibility. | ||||
| ClientXMPP.updateRoster = ClientXMPP.update_roster | ||||
| ClientXMPP.delRosterItem = ClientXMPP.del_roster_item | ||||
| ClientXMPP.getRoster = ClientXMPP.get_roster | ||||
| ClientXMPP.registerFeature = ClientXMPP.register_feature | ||||
| @@ -1,25 +1,28 @@ | ||||
| # -*- coding: utf-8 -*- | ||||
| """ | ||||
|     slixmpp.clientxmpp | ||||
|     sleekxmpp.clientxmpp | ||||
|     ~~~~~~~~~~~~~~~~~~~~ | ||||
| 
 | ||||
|     This module provides XMPP functionality that | ||||
|     is specific to external server component connections. | ||||
| 
 | ||||
|     Part of Slixmpp: The Slick XMPP Library | ||||
|     Part of SleekXMPP: The Sleek XMPP Library | ||||
| 
 | ||||
|     :copyright: (c) 2011 Nathanael C. Fritz | ||||
|     :license: MIT, see LICENSE for more details | ||||
| """ | ||||
| 
 | ||||
| from __future__ import absolute_import | ||||
| 
 | ||||
| import logging | ||||
| import sys | ||||
| import hashlib | ||||
| 
 | ||||
| from slixmpp.basexmpp import BaseXMPP | ||||
| from slixmpp.xmlstream import XMLStream | ||||
| from slixmpp.xmlstream import ET | ||||
| from slixmpp.xmlstream.matcher import MatchXPath | ||||
| from slixmpp.xmlstream.handler import Callback | ||||
| from sleekxmpp.basexmpp import BaseXMPP | ||||
| from sleekxmpp.xmlstream import XMLStream | ||||
| from sleekxmpp.xmlstream import ET | ||||
| from sleekxmpp.xmlstream.matcher import MatchXPath | ||||
| from sleekxmpp.xmlstream.handler import Callback | ||||
| 
 | ||||
| 
 | ||||
| log = logging.getLogger(__name__) | ||||
| @@ -28,7 +31,7 @@ log = logging.getLogger(__name__) | ||||
| class ComponentXMPP(BaseXMPP): | ||||
| 
 | ||||
|     """ | ||||
|     Slixmpp's basic XMPP server component. | ||||
|     SleekXMPP's basic XMPP server component. | ||||
| 
 | ||||
|     Use only for good, not for evil. | ||||
| 
 | ||||
| @@ -39,7 +42,7 @@ class ComponentXMPP(BaseXMPP): | ||||
|     :param plugin_config: A dictionary of plugin configurations. | ||||
|     :param plugin_whitelist: A list of approved plugins that | ||||
|                     will be loaded when calling | ||||
|                     :meth:`~slixmpp.basexmpp.BaseXMPP.register_plugins()`. | ||||
|                     :meth:`~sleekxmpp.basexmpp.BaseXMPP.register_plugins()`. | ||||
|     :param use_jc_ns: Indicates if the ``'jabber:client'`` namespace | ||||
|                       should be used instead of the standard | ||||
|                       ``'jabber:component:accept'`` namespace. | ||||
| @@ -120,6 +123,12 @@ class ComponentXMPP(BaseXMPP): | ||||
|         """ | ||||
|         if xml.tag.startswith('{jabber:client}'): | ||||
|             xml.tag = xml.tag.replace('jabber:client', self.default_ns) | ||||
| 
 | ||||
|         # The incoming_filter call is only made on top level stanza | ||||
|         # elements. So we manually continue filtering on sub-elements. | ||||
|         for sub in xml: | ||||
|             self.incoming_filter(sub) | ||||
| 
 | ||||
|         return xml | ||||
| 
 | ||||
|     def start_stream_handler(self, xml): | ||||
| @@ -133,11 +142,14 @@ class ComponentXMPP(BaseXMPP): | ||||
| 
 | ||||
|         # Construct a hash of the stream ID and the component secret. | ||||
|         sid = xml.get('id', '') | ||||
|         pre_hash = bytes('%s%s' % (sid, self.secret), 'utf-8') | ||||
|         pre_hash = '%s%s' % (sid, self.secret) | ||||
|         if sys.version_info >= (3, 0): | ||||
|             # Handle Unicode byte encoding in Python 3. | ||||
|             pre_hash = bytes(pre_hash, 'utf-8') | ||||
| 
 | ||||
|         handshake = ET.Element('{jabber:component:accept}handshake') | ||||
|         handshake.text = hashlib.sha1(pre_hash).hexdigest().lower() | ||||
|         self.send_xml(handshake) | ||||
|         self.send_xml(handshake, now=True) | ||||
| 
 | ||||
|     def _handle_handshake(self, xml): | ||||
|         """The handshake has been accepted. | ||||
| @@ -146,8 +158,8 @@ class ComponentXMPP(BaseXMPP): | ||||
|         """ | ||||
|         self.session_bind_event.set() | ||||
|         self.session_started_event.set() | ||||
|         self.event('session_bind', self.boundjid) | ||||
|         self.event('session_start') | ||||
|         self.event("session_bind", self.boundjid, direct=True) | ||||
|         self.event("session_start") | ||||
| 
 | ||||
|     def _handle_probe(self, pres): | ||||
|         self.roster[pres['to']][pres['from']].handle_probe(pres) | ||||
| @@ -1,9 +1,9 @@ | ||||
| # -*- coding: utf-8 -*- | ||||
| """ | ||||
|     slixmpp.exceptions | ||||
|     sleekxmpp.exceptions | ||||
|     ~~~~~~~~~~~~~~~~~~~~ | ||||
| 
 | ||||
|     Part of Slixmpp: The Slick XMPP Library | ||||
|     Part of SleekXMPP: The Sleek XMPP Library | ||||
| 
 | ||||
|     :copyright: (c) 2011 Nathanael C. Fritz | ||||
|     :license: MIT, see LICENSE for more details | ||||
| @@ -17,11 +17,11 @@ class XMPPError(Exception): | ||||
|     to indicate that an error response stanza should be sent. | ||||
| 
 | ||||
|     The exception method for stanza objects extending | ||||
|     :class:`~slixmpp.stanza.rootstanza.RootStanza` will create an error | ||||
|     :class:`~sleekxmpp.stanza.rootstanza.RootStanza` will create an error | ||||
|     stanza and initialize any additional substanzas using the extension | ||||
|     information included in the exception. | ||||
| 
 | ||||
|     Meant for use in Slixmpp plugins and applications using Slixmpp. | ||||
|     Meant for use in SleekXMPP plugins and applications using SleekXMPP. | ||||
| 
 | ||||
|     Extension information can be included to add additional XML elements | ||||
|     to the generated error stanza. | ||||
| @@ -42,7 +42,7 @@ class XMPPError(Exception): | ||||
|                   Defaults to ``True``. | ||||
|     """ | ||||
| 
 | ||||
|     def __init__(self, condition='undefined-condition', text='', | ||||
|     def __init__(self, condition='undefined-condition', text=None, | ||||
|                 etype='cancel', extension=None, extension_ns=None, | ||||
|                 extension_args=None, clear=True): | ||||
|         if extension_args is None: | ||||
| @@ -69,7 +69,7 @@ class IqTimeout(XMPPError): | ||||
|                 condition='remote-server-timeout', | ||||
|                 etype='cancel') | ||||
| 
 | ||||
|         #: The :class:`~slixmpp.stanza.iq.Iq` stanza whose response | ||||
|         #: The :class:`~sleekxmpp.stanza.iq.Iq` stanza whose response | ||||
|         #: did not arrive before the timeout expired. | ||||
|         self.iq = iq | ||||
| 
 | ||||
| @@ -87,5 +87,5 @@ class IqError(XMPPError): | ||||
|                 text=iq['error']['text'], | ||||
|                 etype=iq['error']['type']) | ||||
| 
 | ||||
|         #: The :class:`~slixmpp.stanza.iq.Iq` error result stanza. | ||||
|         #: The :class:`~sleekxmpp.stanza.iq.Iq` error result stanza. | ||||
|         self.iq = iq | ||||
| @@ -1,7 +1,7 @@ | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
| 
 | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
							
								
								
									
										19
									
								
								sleekxmpp/features/feature_bind/__init__.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								sleekxmpp/features/feature_bind/__init__.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,19 @@ | ||||
| """ | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Nathanael C. Fritz | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| from sleekxmpp.plugins.base import register_plugin | ||||
|  | ||||
| from sleekxmpp.features.feature_bind.bind import FeatureBind | ||||
| from sleekxmpp.features.feature_bind.stanza import Bind | ||||
|  | ||||
|  | ||||
| register_plugin(FeatureBind) | ||||
|  | ||||
|  | ||||
| # Retain some backwards compatibility | ||||
| feature_bind = FeatureBind | ||||
| @@ -1,18 +1,18 @@ | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
| 
 | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
| 
 | ||||
| import logging | ||||
| 
 | ||||
| from slixmpp.jid import JID | ||||
| from slixmpp.stanza import Iq, StreamFeatures | ||||
| from slixmpp.features.feature_bind import stanza | ||||
| from slixmpp.xmlstream import register_stanza_plugin | ||||
| from slixmpp.plugins import BasePlugin | ||||
| from sleekxmpp.jid import JID | ||||
| from sleekxmpp.stanza import Iq, StreamFeatures | ||||
| from sleekxmpp.features.feature_bind import stanza | ||||
| from sleekxmpp.xmlstream import register_stanza_plugin | ||||
| from sleekxmpp.plugins import BasePlugin, register_plugin | ||||
| 
 | ||||
| 
 | ||||
| log = logging.getLogger(__name__) | ||||
| @@ -41,27 +41,25 @@ class FeatureBind(BasePlugin): | ||||
|         Arguments: | ||||
|             features -- The stream features stanza. | ||||
|         """ | ||||
|         log.debug("Requesting resource: %s", self.xmpp.requested_jid.resource) | ||||
|         self.features = features | ||||
|         log.debug("Requesting resource: %s", self.xmpp.boundjid.resource) | ||||
|         iq = self.xmpp.Iq() | ||||
|         iq['type'] = 'set' | ||||
|         iq.enable('bind') | ||||
|         if self.xmpp.requested_jid.resource: | ||||
|             iq['bind']['resource'] = self.xmpp.requested_jid.resource | ||||
|         if self.xmpp.boundjid.resource: | ||||
|             iq['bind']['resource'] = self.xmpp.boundjid.resource | ||||
|         response = iq.send(now=True) | ||||
| 
 | ||||
|         iq.send(callback=self._on_bind_response) | ||||
| 
 | ||||
|     def _on_bind_response(self, response): | ||||
|         self.xmpp.boundjid = JID(response['bind']['jid'], cache_lock=True) | ||||
|         self.xmpp.bound = True | ||||
|         self.xmpp.event('session_bind', self.xmpp.boundjid) | ||||
|         self.xmpp.event('session_bind', self.xmpp.boundjid, direct=True) | ||||
|         self.xmpp.session_bind_event.set() | ||||
| 
 | ||||
|         self.xmpp.features.add('bind') | ||||
| 
 | ||||
|         log.info("JID set to: %s", self.xmpp.boundjid.full) | ||||
|         log.info("Node set to: %s", self.xmpp.boundjid.full) | ||||
| 
 | ||||
|         if 'session' not in self.features['features']: | ||||
|         if 'session' not in features['features']: | ||||
|             log.debug("Established Session") | ||||
|             self.xmpp.sessionstarted = True | ||||
|             self.xmpp.event('session_start') | ||||
|             self.xmpp.session_started_event.set() | ||||
|             self.xmpp.event("session_start") | ||||
| @@ -1,12 +1,12 @@ | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
| 
 | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
| 
 | ||||
| from slixmpp.xmlstream import ElementBase | ||||
| from sleekxmpp.xmlstream import ElementBase | ||||
| 
 | ||||
| 
 | ||||
| class Bind(ElementBase): | ||||
							
								
								
									
										22
									
								
								sleekxmpp/features/feature_mechanisms/__init__.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								sleekxmpp/features/feature_mechanisms/__init__.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,22 @@ | ||||
| """ | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Nathanael C. Fritz | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| from sleekxmpp.plugins.base import register_plugin | ||||
|  | ||||
| from sleekxmpp.features.feature_mechanisms.mechanisms import FeatureMechanisms | ||||
| from sleekxmpp.features.feature_mechanisms.stanza import Mechanisms | ||||
| from sleekxmpp.features.feature_mechanisms.stanza import Auth | ||||
| from sleekxmpp.features.feature_mechanisms.stanza import Success | ||||
| from sleekxmpp.features.feature_mechanisms.stanza import Failure | ||||
|  | ||||
|  | ||||
| register_plugin(FeatureMechanisms) | ||||
|  | ||||
|  | ||||
| # Retain some backwards compatibility | ||||
| feature_mechanisms = FeatureMechanisms | ||||
| @@ -1,22 +1,23 @@ | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
| 
 | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
| 
 | ||||
| import sys | ||||
| import ssl | ||||
| import logging | ||||
| 
 | ||||
| from slixmpp.util import sasl | ||||
| from slixmpp.util.stringprep_profiles import StringPrepError | ||||
| from slixmpp.stanza import StreamFeatures | ||||
| from slixmpp.xmlstream import register_stanza_plugin | ||||
| from slixmpp.plugins import BasePlugin | ||||
| from slixmpp.xmlstream.matcher import MatchXPath | ||||
| from slixmpp.xmlstream.handler import Callback | ||||
| from slixmpp.features.feature_mechanisms import stanza | ||||
| from sleekxmpp.util import sasl | ||||
| from sleekxmpp.util.stringprep_profiles import StringPrepError | ||||
| from sleekxmpp.stanza import StreamFeatures | ||||
| from sleekxmpp.xmlstream import RestartStream, register_stanza_plugin | ||||
| from sleekxmpp.plugins import BasePlugin | ||||
| from sleekxmpp.xmlstream.matcher import MatchXPath | ||||
| from sleekxmpp.xmlstream.handler import Callback | ||||
| from sleekxmpp.features.feature_mechanisms import stanza | ||||
| 
 | ||||
| 
 | ||||
| log = logging.getLogger(__name__) | ||||
| @@ -43,16 +44,15 @@ class FeatureMechanisms(BasePlugin): | ||||
|     } | ||||
| 
 | ||||
|     def plugin_init(self): | ||||
|         if not self.use_mech and not self.xmpp.requested_jid.user: | ||||
|             self.use_mech = 'ANONYMOUS' | ||||
| 
 | ||||
|         if self.sasl_callback is None: | ||||
|             self.sasl_callback = self._default_credentials | ||||
| 
 | ||||
|         if self.security_callback is None: | ||||
|             self.security_callback = self._default_security | ||||
| 
 | ||||
|         creds = self.sasl_callback(set(['username']), set()) | ||||
|         if not self.use_mech and not creds['username']: | ||||
|             self.use_mech = 'ANONYMOUS' | ||||
| 
 | ||||
|         self.mech = None | ||||
|         self.mech_list = set() | ||||
|         self.attempted_mechs = set() | ||||
| @@ -92,26 +92,27 @@ class FeatureMechanisms(BasePlugin): | ||||
|         values = required_values.union(optional_values) | ||||
|         for value in values: | ||||
|             if value == 'username': | ||||
|                 result[value] = creds.get('username', self.xmpp.requested_jid.user) | ||||
|                 result[value] = self.xmpp.requested_jid.user | ||||
|             elif value == 'password': | ||||
|                 result[value] = creds['password'] | ||||
|             elif value == 'authzid': | ||||
|                 result[value] = creds.get('authzid', '') | ||||
|             elif value == 'email': | ||||
|                 jid = self.xmpp.requested_jid.bare | ||||
|                 result[value] = creds.get('email', jid) | ||||
|             elif value == 'channel_binding': | ||||
|                 if hasattr(self.xmpp.socket, 'get_channel_binding'): | ||||
|                 if sys.version_info >= (3, 3): | ||||
|                     result[value] = self.xmpp.socket.get_channel_binding() | ||||
|                 else: | ||||
|                     log.debug("Channel binding not supported.") | ||||
|                     log.debug("Use Python 3.3+ for channel binding and " + \ | ||||
|                               "SCRAM-SHA-1-PLUS support") | ||||
|                     result[value] = None | ||||
|             elif value == 'host': | ||||
|                 result[value] = creds.get('host', self.xmpp.requested_jid.domain) | ||||
|                 result[value] = self.xmpp.requested_jid.domain | ||||
|             elif value == 'realm': | ||||
|                 result[value] = creds.get('realm', self.xmpp.requested_jid.domain) | ||||
|                 result[value] = self.xmpp.requested_jid.domain | ||||
|             elif value == 'service-name': | ||||
|                 result[value] = creds.get('service-name', self.xmpp._service_name) | ||||
|                 result[value] = self.xmpp._service_name | ||||
|             elif value == 'service': | ||||
|                 result[value] = creds.get('service', 'xmpp') | ||||
|                 result[value] = 'xmpp' | ||||
|             elif value in creds: | ||||
|                 result[value] = creds[value] | ||||
|         return result | ||||
| @@ -172,16 +173,9 @@ class FeatureMechanisms(BasePlugin): | ||||
|                                     min_mech=self.min_mech) | ||||
|         except sasl.SASLNoAppropriateMechanism: | ||||
|             log.error("No appropriate login method.") | ||||
|             self.xmpp.event("failed_all_auth") | ||||
|             if not self.attempted_mechs: | ||||
|                 # Only trigger this event if we didn't try at least one | ||||
|                 # method | ||||
|                 self.xmpp.event("no_auth") | ||||
|             self.xmpp.event("no_auth", direct=True) | ||||
|             self.attempted_mechs = set() | ||||
|             return self.xmpp.disconnect() | ||||
|         except StringPrepError: | ||||
|             log.exception("A credential value did not pass SASLprep.") | ||||
|             self.xmpp.disconnect() | ||||
| 
 | ||||
|         resp = stanza.Auth(self.xmpp) | ||||
|         resp['mechanism'] = self.mech.name | ||||
| @@ -198,8 +192,11 @@ class FeatureMechanisms(BasePlugin): | ||||
|                       "A security breach is possible.") | ||||
|             self.attempted_mechs.add(self.mech.name) | ||||
|             self.xmpp.disconnect() | ||||
|         except StringPrepError: | ||||
|             log.exception("A credential value did not pass SASLprep.") | ||||
|             self.xmpp.disconnect() | ||||
|         else: | ||||
|             resp.send() | ||||
|             resp.send(now=True) | ||||
| 
 | ||||
|         return True | ||||
| 
 | ||||
| @@ -218,9 +215,7 @@ class FeatureMechanisms(BasePlugin): | ||||
|             self.attempted_mechs.add(self.mech.name) | ||||
|             self.xmpp.disconnect() | ||||
|         else: | ||||
|             if resp.get_value() == '': | ||||
|                 resp.del_value() | ||||
|             resp.send() | ||||
|             resp.send(now=True) | ||||
| 
 | ||||
|     def _handle_success(self, stanza): | ||||
|         """SASL authentication succeeded. Restart the stream.""" | ||||
| @@ -235,15 +230,13 @@ class FeatureMechanisms(BasePlugin): | ||||
|             self.attempted_mechs = set() | ||||
|             self.xmpp.authenticated = True | ||||
|             self.xmpp.features.add('mechanisms') | ||||
|             self.xmpp.event('auth_success', stanza) | ||||
|             # Restart the stream | ||||
|             self.xmpp.init_parser() | ||||
|             self.xmpp.send_raw(self.xmpp.stream_header) | ||||
|             self.xmpp.event('auth_success', stanza, direct=True) | ||||
|             raise RestartStream() | ||||
| 
 | ||||
|     def _handle_fail(self, stanza): | ||||
|         """SASL authentication failed. Disconnect and shutdown.""" | ||||
|         self.attempted_mechs.add(self.mech.name) | ||||
|         log.info("Authentication failed: %s", stanza['condition']) | ||||
|         self.xmpp.event("failed_auth", stanza) | ||||
|         self.xmpp.event("failed_auth", stanza, direct=True) | ||||
|         self._send_auth() | ||||
|         return True | ||||
							
								
								
									
										16
									
								
								sleekxmpp/features/feature_mechanisms/stanza/__init__.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								sleekxmpp/features/feature_mechanisms/stanza/__init__.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,16 @@ | ||||
| """ | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Nathanael C. Fritz | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
|  | ||||
| from sleekxmpp.features.feature_mechanisms.stanza.mechanisms import Mechanisms | ||||
| from sleekxmpp.features.feature_mechanisms.stanza.auth import Auth | ||||
| from sleekxmpp.features.feature_mechanisms.stanza.success import Success | ||||
| from sleekxmpp.features.feature_mechanisms.stanza.failure import Failure | ||||
| from sleekxmpp.features.feature_mechanisms.stanza.challenge import Challenge | ||||
| from sleekxmpp.features.feature_mechanisms.stanza.response import Response | ||||
| from sleekxmpp.features.feature_mechanisms.stanza.abort import Abort | ||||
| @@ -1,12 +1,12 @@ | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
| 
 | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
| 
 | ||||
| from slixmpp.xmlstream import StanzaBase | ||||
| from sleekxmpp.xmlstream import StanzaBase | ||||
| 
 | ||||
| 
 | ||||
| class Abort(StanzaBase): | ||||
| @@ -1,15 +1,15 @@ | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
| 
 | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
| 
 | ||||
| import base64 | ||||
| 
 | ||||
| from slixmpp.util import bytes | ||||
| from slixmpp.xmlstream import StanzaBase | ||||
| from sleekxmpp.util import bytes | ||||
| from sleekxmpp.xmlstream import StanzaBase | ||||
| 
 | ||||
| 
 | ||||
| class Auth(StanzaBase): | ||||
| @@ -40,7 +40,7 @@ class Auth(StanzaBase): | ||||
|         if not self['mechanism'] in self.plain_mechs: | ||||
|             if values: | ||||
|                 self.xml.text = bytes(base64.b64encode(values)).decode('utf-8') | ||||
|             elif values == b'': | ||||
|             else: | ||||
|                 self.xml.text = '=' | ||||
|         else: | ||||
|             self.xml.text = bytes(values).decode('utf-8') | ||||
| @@ -1,15 +1,15 @@ | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
| 
 | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
| 
 | ||||
| import base64 | ||||
| 
 | ||||
| from slixmpp.util import bytes | ||||
| from slixmpp.xmlstream import StanzaBase | ||||
| from sleekxmpp.util import bytes | ||||
| from sleekxmpp.xmlstream import StanzaBase | ||||
| 
 | ||||
| 
 | ||||
| class Challenge(StanzaBase): | ||||
| @@ -1,12 +1,12 @@ | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
| 
 | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
| 
 | ||||
| from slixmpp.xmlstream import StanzaBase, ET | ||||
| from sleekxmpp.xmlstream import StanzaBase, ET | ||||
| 
 | ||||
| 
 | ||||
| class Failure(StanzaBase): | ||||
| @@ -1,12 +1,12 @@ | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
| 
 | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
| 
 | ||||
| from slixmpp.xmlstream import ElementBase, ET | ||||
| from sleekxmpp.xmlstream import ElementBase, ET | ||||
| 
 | ||||
| 
 | ||||
| class Mechanisms(ElementBase): | ||||
| @@ -1,15 +1,15 @@ | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
| 
 | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
| 
 | ||||
| import base64 | ||||
| 
 | ||||
| from slixmpp.util import bytes | ||||
| from slixmpp.xmlstream import StanzaBase | ||||
| from sleekxmpp.util import bytes | ||||
| from sleekxmpp.xmlstream import StanzaBase | ||||
| 
 | ||||
| 
 | ||||
| class Response(StanzaBase): | ||||
| @@ -1,15 +1,15 @@ | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
| 
 | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
| 
 | ||||
| import base64 | ||||
| 
 | ||||
| from slixmpp.util import bytes | ||||
| from slixmpp.xmlstream import StanzaBase | ||||
| from sleekxmpp.util import bytes | ||||
| from sleekxmpp.xmlstream import StanzaBase | ||||
| 
 | ||||
| class Success(StanzaBase): | ||||
| 
 | ||||
							
								
								
									
										15
									
								
								sleekxmpp/features/feature_preapproval/__init__.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								sleekxmpp/features/feature_preapproval/__init__.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,15 @@ | ||||
| """ | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2012  Nathanael C. Fritz | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| from sleekxmpp.plugins.base import register_plugin | ||||
|  | ||||
| from sleekxmpp.features.feature_preapproval.preapproval import FeaturePreApproval | ||||
| from sleekxmpp.features.feature_preapproval.stanza import PreApproval | ||||
|  | ||||
|  | ||||
| register_plugin(FeaturePreApproval) | ||||
| @@ -1,17 +1,17 @@ | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2012  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
| 
 | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
| 
 | ||||
| import logging | ||||
| 
 | ||||
| from slixmpp.stanza import StreamFeatures | ||||
| from slixmpp.features.feature_preapproval import stanza | ||||
| from slixmpp.xmlstream import register_stanza_plugin | ||||
| from slixmpp.plugins.base import BasePlugin | ||||
| from sleekxmpp.stanza import Iq, StreamFeatures | ||||
| from sleekxmpp.features.feature_preapproval import stanza | ||||
| from sleekxmpp.xmlstream import register_stanza_plugin | ||||
| from sleekxmpp.plugins.base import BasePlugin | ||||
| 
 | ||||
| 
 | ||||
| log = logging.getLogger(__name__) | ||||
| @@ -1,12 +1,12 @@ | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2012  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
| 
 | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
| 
 | ||||
| from slixmpp.xmlstream import ElementBase | ||||
| from sleekxmpp.xmlstream import ElementBase | ||||
| 
 | ||||
| 
 | ||||
| class PreApproval(ElementBase): | ||||
							
								
								
									
										19
									
								
								sleekxmpp/features/feature_rosterver/__init__.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								sleekxmpp/features/feature_rosterver/__init__.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,19 @@ | ||||
| """ | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2012  Nathanael C. Fritz | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| from sleekxmpp.plugins.base import register_plugin | ||||
|  | ||||
| from sleekxmpp.features.feature_rosterver.rosterver import FeatureRosterVer | ||||
| from sleekxmpp.features.feature_rosterver.stanza import RosterVer | ||||
|  | ||||
|  | ||||
| register_plugin(FeatureRosterVer) | ||||
|  | ||||
|  | ||||
| # Retain some backwards compatibility | ||||
| feature_rosterver = FeatureRosterVer | ||||
| @@ -1,17 +1,17 @@ | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2012  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
| 
 | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
| 
 | ||||
| import logging | ||||
| 
 | ||||
| from slixmpp.stanza import StreamFeatures | ||||
| from slixmpp.features.feature_rosterver import stanza | ||||
| from slixmpp.xmlstream import register_stanza_plugin | ||||
| from slixmpp.plugins.base import BasePlugin | ||||
| from sleekxmpp.stanza import Iq, StreamFeatures | ||||
| from sleekxmpp.features.feature_rosterver import stanza | ||||
| from sleekxmpp.xmlstream import register_stanza_plugin | ||||
| from sleekxmpp.plugins.base import BasePlugin | ||||
| 
 | ||||
| 
 | ||||
| log = logging.getLogger(__name__) | ||||
| @@ -1,12 +1,12 @@ | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2012  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
| 
 | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
| 
 | ||||
| from slixmpp.xmlstream import ElementBase | ||||
| from sleekxmpp.xmlstream import ElementBase | ||||
| 
 | ||||
| 
 | ||||
| class RosterVer(ElementBase): | ||||
							
								
								
									
										19
									
								
								sleekxmpp/features/feature_session/__init__.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								sleekxmpp/features/feature_session/__init__.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,19 @@ | ||||
| """ | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Nathanael C. Fritz | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| from sleekxmpp.plugins.base import register_plugin | ||||
|  | ||||
| from sleekxmpp.features.feature_session.session import FeatureSession | ||||
| from sleekxmpp.features.feature_session.stanza import Session | ||||
|  | ||||
|  | ||||
| register_plugin(FeatureSession) | ||||
|  | ||||
|  | ||||
| # Retain some backwards compatibility | ||||
| feature_session = FeatureSession | ||||
| @@ -1,18 +1,18 @@ | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
| 
 | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
| 
 | ||||
| import logging | ||||
| 
 | ||||
| from slixmpp.stanza import Iq, StreamFeatures | ||||
| from slixmpp.xmlstream import register_stanza_plugin | ||||
| from slixmpp.plugins import BasePlugin | ||||
| from sleekxmpp.stanza import Iq, StreamFeatures | ||||
| from sleekxmpp.xmlstream import register_stanza_plugin | ||||
| from sleekxmpp.plugins import BasePlugin | ||||
| 
 | ||||
| from slixmpp.features.feature_session import stanza | ||||
| from sleekxmpp.features.feature_session import stanza | ||||
| 
 | ||||
| 
 | ||||
| log = logging.getLogger(__name__) | ||||
| @@ -44,11 +44,11 @@ class FeatureSession(BasePlugin): | ||||
|         iq = self.xmpp.Iq() | ||||
|         iq['type'] = 'set' | ||||
|         iq.enable('session') | ||||
|         iq.send(callback=self._on_start_session_response) | ||||
|         iq.send(now=True) | ||||
| 
 | ||||
|     def _on_start_session_response(self, response): | ||||
|         self.xmpp.features.add('session') | ||||
| 
 | ||||
|         log.debug("Established Session") | ||||
|         self.xmpp.sessionstarted = True | ||||
|         self.xmpp.event('session_start') | ||||
|         self.xmpp.session_started_event.set() | ||||
|         self.xmpp.event("session_start") | ||||
| @@ -1,12 +1,12 @@ | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
| 
 | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
| 
 | ||||
| from slixmpp.xmlstream import ElementBase | ||||
| from sleekxmpp.xmlstream import ElementBase | ||||
| 
 | ||||
| 
 | ||||
| class Session(ElementBase): | ||||
							
								
								
									
										19
									
								
								sleekxmpp/features/feature_starttls/__init__.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								sleekxmpp/features/feature_starttls/__init__.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,19 @@ | ||||
| """ | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Nathanael C. Fritz | ||||
|     This file is part of SleekXMPP. | ||||
|  | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
|  | ||||
| from sleekxmpp.plugins.base import register_plugin | ||||
|  | ||||
| from sleekxmpp.features.feature_starttls.starttls import FeatureSTARTTLS | ||||
| from sleekxmpp.features.feature_starttls.stanza import * | ||||
|  | ||||
|  | ||||
| register_plugin(FeatureSTARTTLS) | ||||
|  | ||||
|  | ||||
| # Retain some backwards compatibility | ||||
| feature_starttls = FeatureSTARTTLS | ||||
| @@ -1,12 +1,12 @@ | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
| 
 | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
| 
 | ||||
| from slixmpp.xmlstream import StanzaBase, ElementBase | ||||
| from sleekxmpp.xmlstream import StanzaBase, ElementBase | ||||
| 
 | ||||
| 
 | ||||
| class STARTTLS(ElementBase): | ||||
| @@ -1,19 +1,19 @@ | ||||
| """ | ||||
|     Slixmpp: The Slick XMPP Library | ||||
|     SleekXMPP: The Sleek XMPP Library | ||||
|     Copyright (C) 2011  Nathanael C. Fritz | ||||
|     This file is part of Slixmpp. | ||||
|     This file is part of SleekXMPP. | ||||
| 
 | ||||
|     See the file LICENSE for copying permission. | ||||
| """ | ||||
| 
 | ||||
| import logging | ||||
| 
 | ||||
| from slixmpp.stanza import StreamFeatures | ||||
| from slixmpp.xmlstream import register_stanza_plugin | ||||
| from slixmpp.plugins import BasePlugin | ||||
| from slixmpp.xmlstream.matcher import MatchXPath | ||||
| from slixmpp.xmlstream.handler import Callback | ||||
| from slixmpp.features.feature_starttls import stanza | ||||
| from sleekxmpp.stanza import StreamFeatures | ||||
| from sleekxmpp.xmlstream import RestartStream, register_stanza_plugin | ||||
| from sleekxmpp.plugins import BasePlugin | ||||
| from sleekxmpp.xmlstream.matcher import MatchXPath | ||||
| from sleekxmpp.xmlstream.handler import Callback | ||||
| from sleekxmpp.features.feature_starttls import stanza | ||||
| 
 | ||||
| 
 | ||||
| log = logging.getLogger(__name__) | ||||
| @@ -52,10 +52,10 @@ class FeatureSTARTTLS(BasePlugin): | ||||
|             # We have already negotiated TLS, but the server is | ||||
|             # offering it again, against spec. | ||||
|             return False | ||||
|         elif self.xmpp.disable_starttls: | ||||
|         elif not self.xmpp.use_tls: | ||||
|             return False | ||||
|         else: | ||||
|             self.xmpp.send(features['starttls']) | ||||
|             self.xmpp.send(features['starttls'], now=True) | ||||
|             return True | ||||
| 
 | ||||
|     def _handle_starttls_proceed(self, proceed): | ||||
| @@ -63,3 +63,4 @@ class FeatureSTARTTLS(BasePlugin): | ||||
|         log.debug("Starting TLS") | ||||
|         if self.xmpp.start_tls(): | ||||
|             self.xmpp.features.add('starttls') | ||||
|             raise RestartStream() | ||||
| @@ -1,11 +1,11 @@ | ||||
| # -*- coding: utf-8 -*- | ||||
| """ | ||||
|     slixmpp.jid | ||||
|     sleekxmpp.jid | ||||
|     ~~~~~~~~~~~~~~~~~~~~~~~ | ||||
| 
 | ||||
|     This module allows for working with Jabber IDs (JIDs). | ||||
| 
 | ||||
|     Part of Slixmpp: The Slick XMPP Library | ||||
|     Part of SleekXMPP: The Sleek XMPP Library | ||||
| 
 | ||||
|     :copyright: (c) 2011 Nathanael C. Fritz | ||||
|     :license: MIT, see LICENSE for more details | ||||
| @@ -19,10 +19,8 @@ import stringprep | ||||
| import threading | ||||
| import encodings.idna | ||||
| 
 | ||||
| from copy import deepcopy | ||||
| 
 | ||||
| from slixmpp.util import stringprep_profiles | ||||
| from collections import OrderedDict | ||||
| from sleekxmpp.util import stringprep_profiles | ||||
| from sleekxmpp.thirdparty import OrderedDict | ||||
| 
 | ||||
| #: These characters are not allowed to appear in a JID. | ||||
| ILLEGAL_CHARS = '\x00\x01\x02\x03\x04\x05\x06\x07\x08\t\n\x0b\x0c\r' + \ | ||||
| @@ -77,7 +75,7 @@ def _cache(key, parts, locked): | ||||
|         with JID_CACHE_LOCK: | ||||
|             while len(JID_CACHE) > JID_CACHE_MAX_SIZE: | ||||
|                 found = None | ||||
|                 for key, item in JID_CACHE.items(): | ||||
|                 for key, item in JID_CACHE.iteritems(): | ||||
|                     if not item[1]: # if not locked | ||||
|                         found = key | ||||
|                         break | ||||
| @@ -204,7 +202,7 @@ def _validate_domain(domain): | ||||
|             socket.inet_pton(socket.AF_INET6, domain.strip('[]')) | ||||
|             domain = '[%s]' % domain.strip('[]') | ||||
|             ip_addr = True | ||||
|         except (socket.error, ValueError): | ||||
|         except socket.error: | ||||
|             pass | ||||
| 
 | ||||
|     if not ip_addr: | ||||
| @@ -230,7 +228,7 @@ def _validate_domain(domain): | ||||
| 
 | ||||
|             for char in label: | ||||
|                 if char in ILLEGAL_CHARS: | ||||
|                     raise InvalidJID('Domain contains illegal characters') | ||||
|                     raise InvalidJID('Domain contains illegar characters') | ||||
| 
 | ||||
|             if '-' in (label[0], label[-1]): | ||||
|                 raise InvalidJID('Domain started or ended with -') | ||||
| @@ -508,100 +506,50 @@ class JID(object): | ||||
|         """ | ||||
|         self._jid = JID(data)._jid | ||||
| 
 | ||||
|     @property | ||||
|     def resource(self): | ||||
|         return self._jid[2] or '' | ||||
|     # pylint: disable=R0911 | ||||
|     def __getattr__(self, name): | ||||
|         """Retrieve the given JID component. | ||||
| 
 | ||||
|     @property | ||||
|     def user(self): | ||||
|         return self._jid[0] or '' | ||||
|         :param name: one of: user, server, domain, resource, | ||||
|                      full, or bare. | ||||
|         """ | ||||
|         if name == 'resource': | ||||
|             return self._jid[2] or '' | ||||
|         elif name in ('user', 'username', 'local', 'node'): | ||||
|             return self._jid[0] or '' | ||||
|         elif name in ('server', 'domain', 'host'): | ||||
|             return self._jid[1] or '' | ||||
|         elif name in ('full', 'jid'): | ||||
|             return _format_jid(*self._jid) | ||||
|         elif name == 'bare': | ||||
|             return _format_jid(self._jid[0], self._jid[1]) | ||||
|         elif name == '_jid': | ||||
|             return getattr(super(JID, self), '_jid') | ||||
|         else: | ||||
|             return None | ||||
| 
 | ||||
|     @property | ||||
|     def local(self): | ||||
|         return self._jid[0] or '' | ||||
| 
 | ||||
|     @property | ||||
|     def node(self): | ||||
|         return self._jid[0] or '' | ||||
| 
 | ||||
|     @property | ||||
|     def username(self): | ||||
|         return self._jid[0] or '' | ||||
| 
 | ||||
|     @property | ||||
|     def bare(self): | ||||
|         return _format_jid(self._jid[0], self._jid[1]) | ||||
| 
 | ||||
|     @property | ||||
|     def server(self): | ||||
|         return self._jid[1] or '' | ||||
| 
 | ||||
|     @property | ||||
|     def domain(self): | ||||
|         return self._jid[1] or '' | ||||
| 
 | ||||
|     @property | ||||
|     def host(self): | ||||
|         return self._jid[1] or '' | ||||
| 
 | ||||
|     @property | ||||
|     def full(self): | ||||
|         return _format_jid(*self._jid) | ||||
| 
 | ||||
|     @property | ||||
|     def jid(self): | ||||
|         return _format_jid(*self._jid) | ||||
| 
 | ||||
|     @property | ||||
|     def bare(self): | ||||
|         return _format_jid(self._jid[0], self._jid[1]) | ||||
| 
 | ||||
| 
 | ||||
|     @resource.setter | ||||
|     def resource(self, value): | ||||
|         self._jid = JID(self, resource=value)._jid | ||||
| 
 | ||||
|     @user.setter | ||||
|     def user(self, value): | ||||
|         self._jid = JID(self, local=value)._jid | ||||
| 
 | ||||
|     @username.setter | ||||
|     def username(self, value): | ||||
|         self._jid = JID(self, local=value)._jid | ||||
| 
 | ||||
|     @local.setter | ||||
|     def local(self, value): | ||||
|         self._jid = JID(self, local=value)._jid | ||||
| 
 | ||||
|     @node.setter | ||||
|     def node(self, value): | ||||
|         self._jid = JID(self, local=value)._jid | ||||
| 
 | ||||
|     @server.setter | ||||
|     def server(self, value): | ||||
|         self._jid = JID(self, domain=value)._jid | ||||
| 
 | ||||
|     @domain.setter | ||||
|     def domain(self, value): | ||||
|         self._jid = JID(self, domain=value)._jid | ||||
| 
 | ||||
|     @host.setter | ||||
|     def host(self, value): | ||||
|         self._jid = JID(self, domain=value)._jid | ||||
| 
 | ||||
|     @full.setter | ||||
|     def full(self, value): | ||||
|         self._jid = JID(value)._jid | ||||
| 
 | ||||
|     @jid.setter | ||||
|     def jid(self, value): | ||||
|         self._jid = JID(value)._jid | ||||
| 
 | ||||
|     @bare.setter | ||||
|     def bare(self, value): | ||||
|         parsed = JID(value)._jid | ||||
|         self._jid = (parsed[0], parsed[1], self._jid[2]) | ||||
|     # pylint: disable=W0212 | ||||
|     def __setattr__(self, name, value): | ||||
|         """Update the given JID component. | ||||
| 
 | ||||
|         :param name: one of: ``user``, ``username``, ``local``, | ||||
|                              ``node``, ``server``, ``domain``, ``host``, | ||||
|                              ``resource``, ``full``, ``jid``, or ``bare``. | ||||
|         :param value: The new string value of the JID component. | ||||
|         """ | ||||
|         if name == '_jid': | ||||
|             super(JID, self).__setattr__('_jid', value) | ||||
|         elif name == 'resource': | ||||
|             self._jid = JID(self, resource=value)._jid | ||||
|         elif name in ('user', 'username', 'local', 'node'): | ||||
|             self._jid = JID(self, local=value)._jid | ||||
|         elif name in ('server', 'domain', 'host'): | ||||
|             self._jid = JID(self, domain=value)._jid | ||||
|         elif name in ('full', 'jid'): | ||||
|             self._jid = JID(value)._jid | ||||
|         elif name == 'bare': | ||||
|             parsed = JID(value)._jid | ||||
|             self._jid = (parsed[0], parsed[1], self._jid[2]) | ||||
| 
 | ||||
|     def __str__(self): | ||||
|         """Use the full JID as the string value.""" | ||||
| @@ -632,7 +580,3 @@ class JID(object): | ||||
|     def __copy__(self): | ||||
|         """Generate a duplicate JID.""" | ||||
|         return JID(self) | ||||
| 
 | ||||
|     def __deepcopy__(self, memo): | ||||
|         """Generate a duplicate JID.""" | ||||
|         return JID(deepcopy(str(self), memo)) | ||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user