12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #!/usr/bin/python3
- #
- # Offlineimap authentication using gpg and emacs authinfo.
- #
- # Copyright (C) 2023 Distopico <distopico@riseup.net>
- #
- # 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 re
- import os
- import subprocess
- def set_credentials(repo, user, pw):
- KEYRING_NAME = 'offlineimap'
- attrs = {'repo': repo, 'user': user}
- # TODO: implement save credentials
- def get_credentials(account, port):
- s = 'machine %s ([^ ]*) (.*) port %s password ([^ ]*)\n' \
- % (account, port)
- p = re.compile(s)
- authinfo = os.popen('gpg -q --no-tty -d ~/.authinfo.gpg').read()
- return p.search(authinfo).group(1)
- def get_username(account, port):
- return get_credentials(account, port)
- def get_password(machine, login, port):
- s = 'machine %s login %s port %s password ([^ ]*)\n' \
- % (machine, login, port)
- p = re.compile(s)
- authinfo = os.popen('gpg -q --no-tty -d ~/.authinfo.gpg').read()
- return p.search(authinfo).group(1)
- def get_password_emacs(machine, account, port):
- return get_password(machine, account, port)
- if __name__ == '__main__':
- import sys
- import getpass
- if len(sys.argv) != 3:
- print('Usage: %s <repository> <username>' % (os.path.basename(sys.argv[0])))
- sys.exit(0)
- repo, username = sys.argv[1:]
- password = getpass.getpass('Enter password for user "%s": ' % username)
- password_confirmation = getpass.getpass('Confirm password: ')
-
- if password != password_confirmation:
- print('Error: password confirmation does not match')
- sys.exit(1)
- set_credentials(repo, username, password)
|