summaryrefslogtreecommitdiff
path: root/plugins/gpg
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2011-11-13 18:16:38 +0100
committerFlorent Le Coz <louiz@louiz.org>2011-11-13 18:16:38 +0100
commitfed695214075db0cdcd57c23fa4a3678c4b6874a (patch)
tree0510fb3ba5016f8fcd7e4f634421fa65fe1a2eee /plugins/gpg
parent6af593f44b2f9326fa18f4c09f8580941b8acc00 (diff)
downloadpoezio-fed695214075db0cdcd57c23fa4a3678c4b6874a.tar.gz
poezio-fed695214075db0cdcd57c23fa4a3678c4b6874a.tar.bz2
poezio-fed695214075db0cdcd57c23fa4a3678c4b6874a.tar.xz
poezio-fed695214075db0cdcd57c23fa4a3678c4b6874a.zip
/gpg command lets you disable or force encryption.
Diffstat (limited to 'plugins/gpg')
-rw-r--r--plugins/gpg/__init__.py40
1 files changed, 35 insertions, 5 deletions
diff --git a/plugins/gpg/__init__.py b/plugins/gpg/__init__.py
index 5662bd4f..7151b8ff 100644
--- a/plugins/gpg/__init__.py
+++ b/plugins/gpg/__init__.py
@@ -1,4 +1,6 @@
from gpg import gnupg
+from sleekxmpp.xmlstream.stanzabase import JID
+
from xml.etree import cElementTree as ET
import xml.sax.saxutils
@@ -54,7 +56,7 @@ class Plugin(BasePlugin):
self.add_event_handler('conversation_say_after', self.on_conversation_say)
self.add_event_handler('conversation_msg', self.on_conversation_msg)
- self.add_tab_command(ConversationTab, 'gpg', self.command_gpg, "Usage: /gpg <force|disable>\nGpg: Force or disable gpg encryption with this fulljid.", lambda the_input: the_input.auto_completion(['force', 'disable']))
+ self.add_command('gpg', self.command_gpg, "Usage: /gpg <force|disable>\nGpg: Force or disable gpg encryption with this fulljid.", self.gpg_completion)
ConversationTab.add_information_element('gpg', self.display_encryption_status)
def cleanup(self):
@@ -121,7 +123,7 @@ class Plugin(BasePlugin):
return
signed = to.full in self.contacts.keys()
if signed:
- veryfied = self.contacts[to.full] == 'valid'
+ veryfied = self.contacts[to.full] in ('valid', 'forced')
else:
veryfied = False
if veryfied:
@@ -155,11 +157,39 @@ class Plugin(BasePlugin):
"""
if jid.full not in self.contacts.keys():
return ''
- return ' GPG Key: %s' % self.contacts[jid.full]
+ status = self.contacts[jid.full]
+ self.core.information('%s' % (status,))
+ if status in ('valid', 'invalid'):
+ return ' GPG Key: %s (%s)' % (status, 'encrypted' if status == 'valid' else 'NOT encrypted',)
+ else:
+ return ' GPG: Encryption %s' % (status,)
def command_gpg(self, args):
- # TODO
- return
+ """
+ A command to force or disable the encryption, or to assign a keyid to a JID
+ """
+ args = args.split()
+ if not args:
+ return self.core.command_help("gpg")
+ if len(args) >= 2:
+ jid = JID(args[1])
+ else:
+ if isinstance(self.core.current_tab(), ConversationTab):
+ jid = JID(self.core.current_tab().get_name())
+ command = args[0]
+ if command == 'force':
+ # we can force encryption only with contact having an associated
+ # key, otherwise we cannot encrypt at all
+ if self.config.has_section('keys') and jid.bare in self.config.options('keys'):
+ self.contacts[JID(jid).full] = 'forced'
+ else:
+ self.core.information('Cannot force encryption: no key associated with %s' % (jid.bare), 'Info')
+ elif command == 'disable':
+ self.contacts[JID(jid).full] = 'disabled'
+ self.core.refresh_window()
+
+ def gpg_completion(self, args):
+ pass
def remove_gpg_headers(self, text):
lines = text.splitlines()