summaryrefslogtreecommitdiff
path: root/src/connection.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2015-08-16 12:22:10 +0200
committermathieui <mathieui@mathieui.net>2015-08-16 12:22:10 +0200
commit37774bc35290089838b671cd4a1b6842bce1842f (patch)
tree933961688b5393498203656cf0a1f47ba03a48c5 /src/connection.py
parent1ce31d927d2a88c52645577033924ef30db0de6d (diff)
downloadpoezio-37774bc35290089838b671cd4a1b6842bce1842f.tar.gz
poezio-37774bc35290089838b671cd4a1b6842bce1842f.tar.bz2
poezio-37774bc35290089838b671cd4a1b6842bce1842f.tar.xz
poezio-37774bc35290089838b671cd4a1b6842bce1842f.zip
Add an 'eval_password' option
to read the password from a secrets store
Diffstat (limited to 'src/connection.py')
-rw-r--r--src/connection.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/connection.py b/src/connection.py
index cd2ccedd..b6d44590 100644
--- a/src/connection.py
+++ b/src/connection.py
@@ -14,6 +14,8 @@ log = logging.getLogger(__name__)
import getpass
+import subprocess
+
import slixmpp
from slixmpp.plugins.xep_0184 import XEP_0184
@@ -43,8 +45,15 @@ class Connection(slixmpp.ClientXMPP):
if resource:
jid = '%s/%s'% (jid, resource)
password = config.get('password')
- if not password and not (keyfile and certfile):
+ eval_password = config.get('eval_password')
+ if not password and not eval_password and not (keyfile and certfile):
password = getpass.getpass()
+ elif not password and not (keyfile and certfile):
+ print("No password or certificates provided, using the eval_password command.")
+ process = subprocess.Popen(['sh', '-c', eval_password], stdin=subprocess.PIPE,
+ stdout=subprocess.PIPE, close_fds=True)
+ process.wait()
+ password = process.stdout.readline().decode('utf-8').strip('\n')
else: # anonymous auth
self.anon = True
jid = config.get('server')