mirror of
https://github.com/moparisthebest/sendxmpp-py
synced 2024-12-21 23:08:54 -05:00
Add custom XEP-0027 OpenPGP support to sendxmpp.py
This commit is contained in:
parent
f88a935fba
commit
31525108f3
78
sendxmpp.py
78
sendxmpp.py
@ -14,7 +14,6 @@
|
|||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import configparser
|
import configparser
|
||||||
import os.path
|
import os.path
|
||||||
@ -22,25 +21,83 @@ import sys
|
|||||||
|
|
||||||
import sleekxmpp
|
import sleekxmpp
|
||||||
|
|
||||||
|
from sleekxmpp.thirdparty import GPG
|
||||||
|
|
||||||
|
from sleekxmpp.stanza import Message
|
||||||
|
from sleekxmpp.xmlstream import register_stanza_plugin, ElementBase
|
||||||
|
|
||||||
|
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']
|
||||||
|
|
||||||
class SendMsgBot(sleekxmpp.ClientXMPP):
|
class SendMsgBot(sleekxmpp.ClientXMPP):
|
||||||
|
|
||||||
def __init__(self, jid, password, recipients, message, subject):
|
def __init__(self, jid, password, recipients, message, subject, force_pgp, attempt_pgp):
|
||||||
sleekxmpp.ClientXMPP.__init__(self, jid, password)
|
sleekxmpp.ClientXMPP.__init__(self, jid, password)
|
||||||
self.recipients = recipients
|
self.recipients = recipients
|
||||||
self.msg = message
|
self.msg = message
|
||||||
self.subject = subject
|
self.subject = subject
|
||||||
|
self.force_pgp = force_pgp
|
||||||
|
self.attempt_pgp = attempt_pgp or force_pgp
|
||||||
self.add_event_handler('session_start', self.start)
|
self.add_event_handler('session_start', self.start)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
def start(self, event):
|
def start(self, event):
|
||||||
self.send_presence()
|
#self.send_presence()
|
||||||
|
#self.get_roster()
|
||||||
for recipient in self.recipients:
|
for recipient in self.recipients:
|
||||||
self.send_message(mto=recipient,
|
message = self.make_message(mto=recipient, msubject=self.subject, mbody=self.msg, mtype='chat')
|
||||||
msubject=self.subject,
|
|
||||||
mbody=self.msg,
|
if self.attempt_pgp:
|
||||||
mtype='normal')
|
#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()
|
||||||
self.disconnect(wait=True)
|
self.disconnect(wait=True)
|
||||||
|
|
||||||
|
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 ''
|
||||||
|
|
||||||
def FirstOf(*types, error='argument "{}" is not valid'):
|
def FirstOf(*types, error='argument "{}" is not valid'):
|
||||||
def f(s):
|
def f(s):
|
||||||
for t in types:
|
for t in types:
|
||||||
@ -60,7 +117,10 @@ if __name__ == '__main__':
|
|||||||
p = argparse.ArgumentParser()
|
p = argparse.ArgumentParser()
|
||||||
p.add_argument('recipients', metavar='<file or JID>', nargs='+', type=file_or_jid, help='file format is one JID per line')
|
p.add_argument('recipients', metavar='<file or JID>', nargs='+', type=file_or_jid, help='file format is one JID per line')
|
||||||
p.add_argument('-c', '--config', nargs='?', default=os.path.expanduser('~/.xmpputils'), type=argparse.FileType('r'))
|
p.add_argument('-c', '--config', nargs='?', default=os.path.expanduser('~/.xmpputils'), type=argparse.FileType('r'))
|
||||||
p.add_argument('-s', '--subject', nargs='?', default='')
|
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')
|
||||||
try:
|
try:
|
||||||
global_args = p.parse_args()
|
global_args = p.parse_args()
|
||||||
except argparse.ArgumentError as e:
|
except argparse.ArgumentError as e:
|
||||||
@ -80,7 +140,7 @@ if __name__ == '__main__':
|
|||||||
|
|
||||||
jid = sleekxmpp.basexmpp.JID(sendxmpp_conf('jid'))
|
jid = sleekxmpp.basexmpp.JID(sendxmpp_conf('jid'))
|
||||||
jid.resource = jid.resource or 'sendxmpp.py'
|
jid.resource = jid.resource or 'sendxmpp.py'
|
||||||
xmpp = SendMsgBot(jid, sendxmpp_conf('password'), global_args.recipients, sys.stdin.read(), global_args.subject)
|
xmpp = SendMsgBot(jid, sendxmpp_conf('password'), global_args.recipients, sys.stdin.read(), global_args.subject, global_args.force_pgp, global_args.attempt_pgp)
|
||||||
|
|
||||||
if xmpp.connect():
|
if xmpp.connect():
|
||||||
xmpp.process(block=True)
|
xmpp.process(block=True)
|
||||||
|
Loading…
Reference in New Issue
Block a user