2012-04-15 12:09:55 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
import configparser
|
|
|
|
import os.path
|
|
|
|
import sys
|
|
|
|
|
2019-05-07 09:22:59 -04:00
|
|
|
import slixmpp
|
2012-04-15 12:09:55 -04:00
|
|
|
|
2019-05-07 09:22:59 -04:00
|
|
|
from slixmpp.thirdparty import GPG
|
|
|
|
from slixmpp.stanza import Message
|
|
|
|
from slixmpp.xmlstream import register_stanza_plugin, ElementBase
|
2016-01-21 00:47:24 -05:00
|
|
|
|
|
|
|
class PGPEncrypted(ElementBase):
|
|
|
|
name = 'x'
|
|
|
|
namespace = 'jabber:x:encrypted'
|
|
|
|
plugin_attrib = 'encrypted'
|
|
|
|
interfaces = set(['encrypted'])
|
|
|
|
lang_interfaces = interfaces
|
|
|
|
|
|
|
|
def set_encrypted(self, data):
|
|
|
|
parent = self.parent()
|
|
|
|
if data:
|
|
|
|
self.xml.text = data
|
|
|
|
#parent['body'] = 'This is a XEP-0027 OpenPGP Encrypted Message'
|
|
|
|
# shorter
|
|
|
|
parent['body'] = 'pgp'
|
|
|
|
else:
|
|
|
|
del parent['encrypted']
|
2012-04-15 12:09:55 -04:00
|
|
|
|
2019-05-07 09:22:59 -04:00
|
|
|
class SendMsgBot(slixmpp.ClientXMPP):
|
2012-04-15 12:09:55 -04:00
|
|
|
|
2016-01-21 00:47:24 -05:00
|
|
|
def __init__(self, jid, password, recipients, message, subject, force_pgp, attempt_pgp):
|
2019-05-07 09:22:59 -04:00
|
|
|
slixmpp.ClientXMPP.__init__(self, jid, password)
|
2012-04-15 12:09:55 -04:00
|
|
|
self.recipients = recipients
|
|
|
|
self.msg = message
|
|
|
|
self.subject = subject
|
2016-01-21 00:47:24 -05:00
|
|
|
self.force_pgp = force_pgp
|
|
|
|
self.attempt_pgp = attempt_pgp or force_pgp
|
2012-04-15 12:09:55 -04:00
|
|
|
self.add_event_handler('session_start', self.start)
|
|
|
|
|
2016-01-21 00:47:24 -05:00
|
|
|
if self.attempt_pgp:
|
|
|
|
#self.register_plugin('xep_0027') # Current Jabber OpenPGP Usage
|
|
|
|
|
|
|
|
self.gpg = GPG(gnupghome='',
|
|
|
|
gpgbinary='gpg',
|
|
|
|
use_agent=True,
|
|
|
|
keyring=None)
|
|
|
|
|
|
|
|
register_stanza_plugin(Message, PGPEncrypted)
|
|
|
|
|
2012-04-15 12:09:55 -04:00
|
|
|
def start(self, event):
|
2016-01-21 00:47:24 -05:00
|
|
|
#self.send_presence()
|
|
|
|
#self.get_roster()
|
2012-04-15 12:09:55 -04:00
|
|
|
for recipient in self.recipients:
|
2016-01-21 00:47:24 -05:00
|
|
|
message = self.make_message(mto=recipient, msubject=self.subject, mbody=self.msg, mtype='chat')
|
|
|
|
|
|
|
|
if self.attempt_pgp:
|
|
|
|
#message['encrypted'].set_encrypted(self.msg)
|
|
|
|
enc = self.strip_headers(self.gpg.encrypt(self.msg, recipient))
|
|
|
|
message['encrypted'].set_encrypted(enc)
|
|
|
|
if self.force_pgp and not enc:
|
|
|
|
print('Error: --force-pgp enabled but encryption to %s failed, does gpg have and trust the key? Aborting...' % recipient)
|
|
|
|
continue
|
|
|
|
|
|
|
|
message.send()
|
2012-04-15 12:09:55 -04:00
|
|
|
self.disconnect(wait=True)
|
|
|
|
|
2016-01-21 00:47:24 -05:00
|
|
|
def strip_headers(self, data):
|
|
|
|
stripped = []
|
|
|
|
begin_headers = False
|
|
|
|
begin_data = False
|
|
|
|
for line in str(data).splitlines():
|
|
|
|
if not begin_headers and 'BEGIN PGP MESSAGE' in line:
|
|
|
|
begin_headers = True
|
|
|
|
continue
|
|
|
|
if begin_headers and line.strip() == '':
|
|
|
|
begin_data = True
|
|
|
|
continue
|
|
|
|
if 'END PGP MESSAGE' in line:
|
|
|
|
return '\n'.join(stripped)
|
|
|
|
if begin_data:
|
|
|
|
stripped.append(line)
|
|
|
|
return ''
|
|
|
|
|
2012-04-15 12:09:55 -04:00
|
|
|
def FirstOf(*types, error='argument "{}" is not valid'):
|
|
|
|
def f(s):
|
|
|
|
for t in types:
|
|
|
|
try:
|
|
|
|
return t(s)
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
raise argparse.ArgumentTypeError(error.format(s))
|
|
|
|
return f
|
|
|
|
|
|
|
|
file_or_jid = FirstOf(argparse.FileType('r'),
|
2019-05-07 09:22:59 -04:00
|
|
|
slixmpp.basexmpp.JID,
|
2012-04-15 12:09:55 -04:00
|
|
|
error='"{}" is neither a file nor a valid JID')
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
2017-01-09 22:53:18 -05:00
|
|
|
p = argparse.ArgumentParser(description='Send a message with XMPP.')
|
2012-04-15 12:09:55 -04:00
|
|
|
p.add_argument('recipients', metavar='<file or JID>', nargs='+', type=file_or_jid, help='file format is one JID per line')
|
2017-01-09 22:53:18 -05:00
|
|
|
p.add_argument('-c', '--config', nargs='?', help='path to config file. default: /etc/sendxmpp/sendxmpp.cfg and ~/.config/sendxmpp.cfg')
|
|
|
|
p.add_argument('-a', '--account', nargs='?', default='sendxmpp', help='account to use in config file. default: sendxmpp')
|
2016-01-21 00:47:24 -05:00
|
|
|
p.add_argument('-s', '--subject', nargs='?', default='', help='WARNING: subject never encrypted')
|
|
|
|
group = p.add_mutually_exclusive_group()
|
|
|
|
group.add_argument("-e", "--force-pgp", action="store_true", help='Force OpenPGP encryption for all recipients')
|
|
|
|
group.add_argument("-ea", "--attempt-pgp", action="store_true", help='Attempt OpenPGP encryption for all recipients')
|
2012-04-15 12:09:55 -04:00
|
|
|
try:
|
|
|
|
global_args = p.parse_args()
|
|
|
|
except argparse.ArgumentError as e:
|
|
|
|
print(e)
|
|
|
|
exit(1)
|
2017-01-09 22:53:18 -05:00
|
|
|
|
|
|
|
# do nothing for empty messages
|
|
|
|
msg = sys.stdin.read().strip()
|
|
|
|
if not msg:
|
|
|
|
exit(0)
|
|
|
|
|
|
|
|
jid_conf = None
|
|
|
|
pass_conf = None
|
|
|
|
|
|
|
|
try:
|
|
|
|
conf = configparser.ConfigParser()
|
|
|
|
files_read = None
|
|
|
|
if global_args.config:
|
|
|
|
files_read = conf.read([global_args.config])
|
|
|
|
else:
|
|
|
|
files_read = conf.read([ '/etc/sendxmpp/sendxmpp.cfg', os.path.expanduser('~/.config/sendxmpp.cfg') ])
|
|
|
|
if len(files_read) == 0:
|
|
|
|
raise argparse.ArgumentTypeError("missing config files")
|
|
|
|
sendxmpp_conf = lambda key: conf.get(global_args.account, key)
|
|
|
|
jid_conf = sendxmpp_conf('jid')
|
|
|
|
pass_conf = sendxmpp_conf('password')
|
|
|
|
except Exception as e:
|
|
|
|
print(e)
|
|
|
|
exit(1)
|
|
|
|
|
2012-04-15 12:09:55 -04:00
|
|
|
r = []
|
|
|
|
for recipient in global_args.recipients:
|
2019-05-07 09:22:59 -04:00
|
|
|
if isinstance(recipient, slixmpp.basexmpp.JID):
|
2012-04-15 12:09:55 -04:00
|
|
|
r.append(recipient)
|
|
|
|
else:
|
2019-05-07 09:22:59 -04:00
|
|
|
r.extend(map(slixmpp.basexmpp.JID, filter(None, recipient.read().split('\n'))))
|
2012-04-15 12:09:55 -04:00
|
|
|
global_args.recipients = r
|
|
|
|
|
2019-05-07 09:22:59 -04:00
|
|
|
jid = slixmpp.basexmpp.JID(jid_conf)
|
2012-04-15 12:09:55 -04:00
|
|
|
jid.resource = jid.resource or 'sendxmpp.py'
|
2017-01-09 22:53:18 -05:00
|
|
|
xmpp = SendMsgBot(jid, pass_conf, global_args.recipients, msg, global_args.subject, global_args.force_pgp, global_args.attempt_pgp)
|
2012-04-15 12:09:55 -04:00
|
|
|
|
2019-05-07 09:22:59 -04:00
|
|
|
# Connect to the XMPP server and start processing XMPP stanzas.
|
|
|
|
xmpp.connect()
|
|
|
|
xmpp.process(forever=False)
|