From f0b21c42d5a84ab9e239feb8a9ed6e63ac56da94 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sat, 27 Oct 2018 23:25:59 +0200 Subject: examples: Add the possibility to use another HTTP File Upload domain. --- examples/http_upload.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'examples/http_upload.py') diff --git a/examples/http_upload.py b/examples/http_upload.py index f2c292a2..2b522a7f 100755 --- a/examples/http_upload.py +++ b/examples/http_upload.py @@ -24,11 +24,12 @@ class HttpUpload(slixmpp.ClientXMPP): A basic client asking an entity if they confirm the access to an HTTP URL. """ - def __init__(self, jid, password, recipient, filename): + def __init__(self, jid, password, recipient, filename, domain=None): slixmpp.ClientXMPP.__init__(self, jid, password) self.recipient = recipient self.filename = filename + self.domain = domain self.add_event_handler("session_start", self.start) @@ -37,7 +38,7 @@ class HttpUpload(slixmpp.ClientXMPP): def timeout_callback(arg): raise TimeoutError("could not send message in time") url = await self['xep_0363'].upload_file( - self.filename, timeout=10, timeout_callback=timeout_callback) + self.filename, domain=self.domain timeout=10, timeout_callback=timeout_callback) log.info('Upload success!') log.info('Sending file to %s', self.recipient) @@ -71,6 +72,8 @@ if __name__ == '__main__': help="Recipient JID") parser.add_argument("-f", "--file", required=True, help="File to send") + parser.add_argument("--domain", + help="Domain to use for HTTP File Upload (leave out for your own server’s)") args = parser.parse_args() @@ -83,7 +86,7 @@ if __name__ == '__main__': if args.password is None: args.password = getpass("Password: ") - xmpp = HttpUpload(args.jid, args.password, args.recipient, args.file) + xmpp = HttpUpload(args.jid, args.password, args.recipient, args.file, args.domain) xmpp.register_plugin('xep_0071') xmpp.register_plugin('xep_0128') xmpp.register_plugin('xep_0363') -- cgit v1.2.3