aboutsummaryrefslogtreecommitdiff
path: root/src/mailman_pgp/workflows/key_confirm.py
diff options
context:
space:
mode:
authorJ08nY2017-08-06 02:30:57 +0200
committerJ08nY2017-08-06 02:30:57 +0200
commitb56debf2d3db0732e6fa4a3d22ecaaae78fc5b65 (patch)
tree0fc2ae11bf353d0da9f52f7d7c3dc5100936a51a /src/mailman_pgp/workflows/key_confirm.py
parent66f1510d1a38c10944a13665e1b7f9ecb14a8d8f (diff)
downloadmailman-pgp-b56debf2d3db0732e6fa4a3d22ecaaae78fc5b65.tar.gz
mailman-pgp-b56debf2d3db0732e6fa4a3d22ecaaae78fc5b65.tar.zst
mailman-pgp-b56debf2d3db0732e6fa4a3d22ecaaae78fc5b65.zip
Diffstat (limited to 'src/mailman_pgp/workflows/key_confirm.py')
-rw-r--r--src/mailman_pgp/workflows/key_confirm.py84
1 files changed, 84 insertions, 0 deletions
diff --git a/src/mailman_pgp/workflows/key_confirm.py b/src/mailman_pgp/workflows/key_confirm.py
new file mode 100644
index 0000000..b8ac51e
--- /dev/null
+++ b/src/mailman_pgp/workflows/key_confirm.py
@@ -0,0 +1,84 @@
+# Copyright (C) 2017 Jan Jancar
+#
+# This file is a part of the Mailman PGP plugin.
+#
+# 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/>.
+
+""""""
+from mailman.email.message import UserNotification
+from mailman.interfaces.subscriptions import TokenOwner
+from public import public
+
+from mailman_pgp.database import transaction
+from mailman_pgp.model.address import PGPAddress
+from mailman_pgp.model.list import PGPMailingList
+from mailman_pgp.pgp.wrapper import PGPWrapper
+from mailman_pgp.utils.email import copy_headers
+
+CONFIRM_REQUEST = """\
+----------
+TODO: this is a pgp enabled list.
+Reply to this message with this whole text
+signed with your supplied key, either inline or PGP/MIME.
+
+Fingerprint: {}
+Token: {}
+----------
+"""
+
+
+@public
+class ConfirmPubkeyMixin:
+ def __init__(self, pre_confirmed=False):
+ self.pubkey_confirmed = pre_confirmed
+
+ def _step_pubkey_confirmation(self):
+ pgp_address = PGPAddress.for_address(self.address)
+ assert pgp_address is not None
+
+ if self.pubkey_confirmed:
+ with transaction():
+ pgp_address.key_confirmed = True
+ else:
+ if not pgp_address.key_confirmed:
+ self.push('send_key_confirm_request')
+
+ def _step_send_key_confirm_request(self):
+ self._set_token(TokenOwner.subscriber)
+ self.push('receive_key_confirmation')
+ self.save()
+
+ pgp_address = PGPAddress.for_address(self.address)
+ request_address = self.mlist.request_address
+ email_address = self.address.email
+ msg = UserNotification(email_address, request_address,
+ 'key confirm {}'.format(self.token),
+ CONFIRM_REQUEST.format(
+ pgp_address.key_fingerprint,
+ self.token))
+ pgp_list = PGPMailingList.for_list(self.mlist)
+ wrapped = PGPWrapper(msg)
+ encrypted = wrapped.sign_encrypt(pgp_list.key, pgp_address.key)
+
+ msg.set_payload(encrypted.get_payload())
+ copy_headers(encrypted, msg, True)
+ msg.send(self.mlist)
+ raise StopIteration
+
+ def _step_receive_key_confirmation(self):
+ self._restore_subscriber()
+ self._set_token(TokenOwner.no_one)
+ with transaction():
+ pgp_address = PGPAddress.for_address(self.address)
+ pgp_address.key_confirmed = True