2006-10-06 01:48:54 +02:00
|
|
|
##
|
|
|
|
## Copyright (C) 2006 Gustavo J. A. M. Carneiro <gjcarneiro@gmail.com>
|
|
|
|
## Copyright (C) 2006 Nikos Kouremenos <kourem@gmail.com>
|
|
|
|
##
|
|
|
|
## 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; version 2 only.
|
|
|
|
##
|
|
|
|
## 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.
|
|
|
|
##
|
|
|
|
|
|
|
|
__all__ = ['get_password', 'save_password']
|
|
|
|
|
|
|
|
import gobject
|
|
|
|
|
|
|
|
from common import gajim
|
|
|
|
|
|
|
|
try:
|
|
|
|
import gnomekeyring
|
|
|
|
except ImportError:
|
|
|
|
USER_HAS_GNOMEKEYRING = False
|
|
|
|
else:
|
|
|
|
USER_HAS_GNOMEKEYRING = True
|
|
|
|
|
2006-10-11 22:38:23 +02:00
|
|
|
class PasswordStorage(object):
|
|
|
|
def get_password(self, account_name):
|
|
|
|
raise NotImplementedError
|
|
|
|
def save_password(self, account_name, password):
|
|
|
|
raise NotImplementedError
|
|
|
|
|
2006-10-06 01:48:54 +02:00
|
|
|
|
2006-10-11 22:38:23 +02:00
|
|
|
class SimplePasswordStorage(PasswordStorage):
|
2006-10-06 01:48:54 +02:00
|
|
|
def get_password(self, account_name):
|
|
|
|
return gajim.config.get_per('accounts', account_name, 'password')
|
|
|
|
|
|
|
|
def save_password(self, account_name, password):
|
2006-10-09 12:17:53 +02:00
|
|
|
gajim.config.set_per('accounts', account_name, 'password', password)
|
2006-10-06 01:48:54 +02:00
|
|
|
gajim.connections[account_name].password = password
|
|
|
|
|
|
|
|
|
2006-10-11 22:38:23 +02:00
|
|
|
class GnomePasswordStorage(PasswordStorage):
|
2006-10-06 01:48:54 +02:00
|
|
|
def __init__(self):
|
|
|
|
self.keyring = gnomekeyring.get_default_keyring_sync()
|
|
|
|
|
|
|
|
def get_password(self, account_name):
|
|
|
|
conf = gajim.config.get_per('accounts', account_name, 'password')
|
2006-10-07 13:35:44 +02:00
|
|
|
if conf is None:
|
|
|
|
return None
|
2006-10-06 01:48:54 +02:00
|
|
|
try:
|
2006-10-06 01:54:37 +02:00
|
|
|
unused, auth_token = conf.split('gnomekeyring:')
|
2006-10-06 01:48:54 +02:00
|
|
|
auth_token = int(auth_token)
|
|
|
|
except ValueError:
|
|
|
|
password = conf
|
|
|
|
## migrate the password over to keyring
|
2006-10-11 22:38:23 +02:00
|
|
|
try:
|
|
|
|
self.save_password(account_name, password, update=False)
|
|
|
|
except gnomekeyring.NoKeyringDaemonError:
|
|
|
|
## no keyring daemon: in the future, stop using it
|
|
|
|
set_storage(SimplePasswordStorage())
|
2006-10-06 01:48:54 +02:00
|
|
|
return password
|
|
|
|
try:
|
2006-10-06 01:54:37 +02:00
|
|
|
return gnomekeyring.item_get_info_sync(self.keyring,
|
|
|
|
auth_token).get_secret()
|
2006-10-06 01:48:54 +02:00
|
|
|
except gnomekeyring.DeniedError:
|
|
|
|
return None
|
2006-10-11 22:38:23 +02:00
|
|
|
except gnomekeyring.NoKeyringDaemonError:
|
|
|
|
## no keyring daemon: in the future, stop using it
|
|
|
|
set_storage(SimplePasswordStorage())
|
|
|
|
return None
|
2006-10-06 01:48:54 +02:00
|
|
|
|
|
|
|
def save_password(self, account_name, password, update=True):
|
2006-10-06 01:54:37 +02:00
|
|
|
display_name = _('Gajim account %s') % account_name
|
2006-10-06 01:48:54 +02:00
|
|
|
attributes = dict(account_name=str(account_name), gajim=1)
|
|
|
|
auth_token = gnomekeyring.item_create_sync(
|
|
|
|
self.keyring, gnomekeyring.ITEM_GENERIC_SECRET,
|
|
|
|
display_name, attributes, password, update)
|
2006-10-06 02:04:07 +02:00
|
|
|
token = 'gnomekeyring:%i' % auth_token
|
2006-10-06 01:48:54 +02:00
|
|
|
gajim.config.set_per('accounts', account_name, 'password', token)
|
|
|
|
|
|
|
|
|
|
|
|
storage = None
|
|
|
|
def get_storage():
|
|
|
|
global storage
|
2006-10-06 02:04:07 +02:00
|
|
|
if storage is None: # None is only in first time get_storage is called
|
2006-10-17 23:48:10 +02:00
|
|
|
if USER_HAS_GNOMEKEYRING and gnomekeyring.is_available():
|
2006-10-11 22:38:23 +02:00
|
|
|
try:
|
|
|
|
storage = GnomePasswordStorage()
|
|
|
|
except gnomekeyring.NoKeyringDaemonError:
|
|
|
|
storage = SimplePasswordStorage()
|
2006-10-06 01:48:54 +02:00
|
|
|
else:
|
|
|
|
storage = SimplePasswordStorage()
|
|
|
|
return storage
|
|
|
|
|
2006-10-11 22:38:23 +02:00
|
|
|
def set_storage(storage_):
|
|
|
|
global storage
|
|
|
|
assert isinstance(storage, PasswordStorage)
|
|
|
|
storage = storage_
|
|
|
|
|
|
|
|
|
2006-10-06 01:48:54 +02:00
|
|
|
def get_password(account_name):
|
|
|
|
return get_storage().get_password(account_name)
|
|
|
|
|
|
|
|
def save_password(account_name, password):
|
|
|
|
return get_storage().save_password(account_name, password)
|