2008-08-15 19:31:51 +02:00
|
|
|
# -*- coding:utf-8 -*-
|
2008-08-15 05:20:23 +02:00
|
|
|
## src/common/passwords.py
|
2006-10-06 01:48:54 +02:00
|
|
|
##
|
2008-08-15 05:20:23 +02:00
|
|
|
## Copyright (C) 2006 Gustavo J. A. M. Carneiro <gjcarneiro AT gmail.com>
|
|
|
|
## Nikos Kouremenos <kourem AT gmail.com>
|
|
|
|
## Copyright (C) 2006-2008 Yann Leboulanger <asterix AT lagaule.org>
|
|
|
|
## Copyright (C) 2007 Jean-Marie Traissard <jim AT lapin.org>
|
|
|
|
## Julien Pivotto <roidelapluie AT gmail.com>
|
2008-08-15 19:31:51 +02:00
|
|
|
## Copyright (C) 2008 Stephan Erb <steve-e AT h3c.de>
|
2006-10-06 01:48:54 +02:00
|
|
|
##
|
2007-10-22 13:13:13 +02:00
|
|
|
## This file is part of Gajim.
|
|
|
|
##
|
|
|
|
## Gajim is free software; you can redistribute it and/or modify
|
2006-10-06 01:48:54 +02:00
|
|
|
## it under the terms of the GNU General Public License as published
|
2007-10-22 13:13:13 +02:00
|
|
|
## by the Free Software Foundation; version 3 only.
|
2006-10-06 01:48:54 +02:00
|
|
|
##
|
2007-10-22 13:13:13 +02:00
|
|
|
## Gajim is distributed in the hope that it will be useful,
|
2006-10-06 01:48:54 +02:00
|
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2008-08-15 05:20:23 +02:00
|
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2006-10-06 01:48:54 +02:00
|
|
|
## GNU General Public License for more details.
|
|
|
|
##
|
2007-10-22 13:13:13 +02:00
|
|
|
## You should have received a copy of the GNU General Public License
|
2008-08-15 05:20:23 +02:00
|
|
|
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
|
2007-10-22 13:13:13 +02:00
|
|
|
##
|
2006-10-06 01:48:54 +02:00
|
|
|
|
|
|
|
__all__ = ['get_password', 'save_password']
|
|
|
|
|
2009-01-19 23:19:43 +01:00
|
|
|
import warnings
|
2006-10-06 01:48:54 +02:00
|
|
|
from common import gajim
|
|
|
|
|
2006-12-29 19:30:18 +01:00
|
|
|
USER_HAS_GNOMEKEYRING = False
|
|
|
|
USER_USES_GNOMEKEYRING = False
|
2007-01-21 16:13:57 +01:00
|
|
|
gnomekeyring = None
|
2006-10-06 01:48:54 +02:00
|
|
|
|
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-11-01 17:49:49 +01:00
|
|
|
|
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):
|
2006-12-27 22:13:42 +01:00
|
|
|
passwd = gajim.config.get_per('accounts', account_name, 'password')
|
2006-12-28 20:03:55 +01:00
|
|
|
if passwd and passwd.startswith('gnomekeyring:'):
|
2006-12-27 22:13:42 +01:00
|
|
|
return None # this is not a real password, it's a gnome keyring token
|
|
|
|
else:
|
|
|
|
return passwd
|
2006-10-06 01:48:54 +02:00
|
|
|
|
|
|
|
def save_password(self, account_name, password):
|
2006-10-09 12:17:53 +02:00
|
|
|
gajim.config.set_per('accounts', account_name, 'password', password)
|
2007-11-05 23:41:12 +01:00
|
|
|
if account_name in gajim.connections:
|
|
|
|
gajim.connections[account_name].password = password
|
2006-10-06 01:48:54 +02:00
|
|
|
|
|
|
|
|
2006-10-11 22:38:23 +02:00
|
|
|
class GnomePasswordStorage(PasswordStorage):
|
2006-12-27 22:13:42 +01:00
|
|
|
def __init__(self):
|
2008-05-05 02:05:20 +02:00
|
|
|
self.keyring = gnomekeyring.get_default_keyring_sync()
|
|
|
|
if self.keyring is None:
|
2008-05-04 23:44:05 +02:00
|
|
|
self.keyring = 'default'
|
2006-12-27 22:13:42 +01:00
|
|
|
try:
|
|
|
|
gnomekeyring.create_sync(self.keyring, None)
|
|
|
|
except gnomekeyring.AlreadyExistsError:
|
2006-11-01 17:49:49 +01:00
|
|
|
pass
|
2006-10-06 01:48:54 +02:00
|
|
|
|
|
|
|
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
|
2009-01-19 23:19:43 +01:00
|
|
|
if not conf.startswith('gnomekeyring:'):
|
2006-10-06 01:48:54 +02:00
|
|
|
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:
|
2009-01-19 23:19:43 +01:00
|
|
|
attributes = dict(account_name=str(account_name), gajim=1)
|
|
|
|
try:
|
|
|
|
items = gnomekeyring.find_items_sync(
|
|
|
|
gnomekeyring.ITEM_GENERIC_SECRET,
|
|
|
|
attributes)
|
|
|
|
except gnomekeyring.Error:
|
|
|
|
items = []
|
|
|
|
if len(items) > 1:
|
|
|
|
warnings.warn("multiple gnome keyring items found for account %s;"
|
|
|
|
" trying to use the first one..."
|
|
|
|
% account_name)
|
|
|
|
if items:
|
|
|
|
return items[0].secret
|
|
|
|
else:
|
|
|
|
return None
|
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-11-01 17:49:49 +01:00
|
|
|
|
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)
|
2007-08-08 18:10:38 +02:00
|
|
|
try:
|
|
|
|
auth_token = gnomekeyring.item_create_sync(
|
|
|
|
self.keyring, gnomekeyring.ITEM_GENERIC_SECRET,
|
|
|
|
display_name, attributes, password, update)
|
|
|
|
except gnomekeyring.DeniedError:
|
|
|
|
set_storage(SimplePasswordStorage())
|
|
|
|
storage.save_password(account_name, password)
|
|
|
|
return
|
2009-01-19 23:19:43 +01:00
|
|
|
gajim.config.set_per('accounts', account_name, 'password',
|
|
|
|
'gnomekeyring:')
|
2008-10-07 22:41:59 +02:00
|
|
|
if account_name in gajim.connections:
|
2007-07-24 10:20:06 +02:00
|
|
|
gajim.connections[account_name].password = password
|
2006-10-06 01:48:54 +02:00
|
|
|
|
|
|
|
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
|
2007-01-21 16:13:57 +01:00
|
|
|
if gajim.config.get('use_gnomekeyring'):
|
|
|
|
global gnomekeyring
|
|
|
|
try:
|
|
|
|
import gnomekeyring
|
|
|
|
except ImportError:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
global USER_HAS_GNOMEKEYRING
|
|
|
|
global USER_USES_GNOMEKEYRING
|
|
|
|
USER_HAS_GNOMEKEYRING = True
|
|
|
|
if gnomekeyring.is_available():
|
|
|
|
USER_USES_GNOMEKEYRING = True
|
|
|
|
else:
|
|
|
|
USER_USES_GNOMEKEYRING = False
|
2006-10-20 12:14:15 +02:00
|
|
|
if USER_USES_GNOMEKEYRING:
|
2006-10-11 22:38:23 +02:00
|
|
|
try:
|
|
|
|
storage = GnomePasswordStorage()
|
|
|
|
except gnomekeyring.NoKeyringDaemonError:
|
|
|
|
storage = SimplePasswordStorage()
|
2007-07-14 15:24:27 +02:00
|
|
|
except gnomekeyring.DeniedError:
|
|
|
|
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
|
|
|
|
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)
|
2008-07-29 21:49:31 +02:00
|
|
|
|
2008-08-15 05:20:23 +02:00
|
|
|
# vim: se ts=3:
|