Files
mailnag/keyring.py
Patrick Ulbrich 621d508176 rewritten configuration window
migrated to gintrospection (partially)
set process names to mailnag and mailnag_config
moved keyring class to its own module
added utils module
other changes i don't remember
2011-05-14 16:13:24 +02:00

212 lines
8.3 KiB
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# keyring.py
#
# Copyright 2011 Patrick Ulbrich <zulu99@gmx.net>
# Copyright 2011 Ralf Hersel <ralf.hersel@gmx.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 2 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, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
import gobject
if __builtins__["USE_GTK3"]:
from gi.repository import GLib, GdkPixbuf, Gtk
else:
Gtk = __import__("gtk")
GLib = __import__("glib")
import gettext
import gnomekeyring
gettext.bindtextdomain('mailnag', 'locale')
gettext.textdomain('mailnag')
_ = gettext.gettext
class Keyring:
def __init__(self):
GLib.set_application_name('mailnag')
self.was_locked = False # True if Dialog shown. Required for Sortorder problem
self.keyring_password = ''
self.defaultKeyring = gnomekeyring.get_default_keyring_sync()
if self.defaultKeyring == None:
self.defaultKeyring = 'login'
while gnomekeyring.get_info_sync(self.defaultKeyring).get_is_locked(): # Keyring locked?
self.message_response = 'cancel' # default response for message dialog
try:
try: gnomekeyring.unlock_sync(self.defaultKeyring, \
self.keyring_password)
except gnomekeyring.IOError:
self.show_keyring_dialog() # get keyring password
Gtk.main() # wait until dialog is closed
result = gnomekeyring.unlock_sync(self.defaultKeyring, \
self.keyring_password)
except gnomekeyring.IOError:
self.show_message(_('Failed to unlock Keyring "' + self.defaultKeyring + '".' + \
'\nWrong password.\n\nDo you want to try again?'))
Gtk.main() # wait until dialog is closed
if self.message_response == 'cancel': exit(1) # close application (else: continue getting password)
def get(self, protocol, user, server): # get password for account from Gnome Keyring
if gnomekeyring.list_item_ids_sync(self.defaultKeyring):
displayNameDict = {}
for identity in gnomekeyring.list_item_ids_sync(self.defaultKeyring):
item = gnomekeyring.item_get_info_sync(self.defaultKeyring, identity)
displayNameDict[item.get_display_name()] = identity
if 'Mailnag password for %s://%s@%s' % (protocol, user, server) in displayNameDict:
if gnomekeyring.item_get_info_sync(self.defaultKeyring, \
displayNameDict['Mailnag password for %s://%s@%s' % \
(protocol, user, server)]).get_secret() != '':
return gnomekeyring.item_get_info_sync(self.defaultKeyring, \
displayNameDict['Mailnag password for %s://%s@%s' % \
(protocol, user, server)]).get_secret()
else:
# DEBUG print "Keyring.get(): No Keyring Password for %s://%s@%s." % (protocol, user, server)
return ''
else:
# DEBUG print "Keyring.get(): %s://%s@%s not in Keyring." % (protocol, user, server)
return ''
else:
# DEBUG print "Keyring.get(): Either default- nor 'login'-Keyring available."
return ''
def import_accounts(self, gui): # get email accounts from Gnome-Keyring
accounts = []
if gnomekeyring.list_item_ids_sync(self.defaultKeyring):
displayNameDict = {}
for identity in gnomekeyring.list_item_ids_sync(self.defaultKeyring):
item = gnomekeyring.item_get_info_sync(self.defaultKeyring, identity)
displayNameDict[item.get_display_name()] = identity
for displayName in displayNameDict:
if displayName.startswith('pop://') \
or displayName.startswith('imap://'):
server = displayName.split('@')[1][:-1]
if displayName.startswith('imap://'):
imap = 1
user = displayName.split('@')[0][7:]
else:
imap = 0
user = displayName.split('@')[0][6:]
user = user.replace('%40','@')
if ';' in user:
user = user.split(';')[0]
password = gnomekeyring.item_get_info_sync(self.defaultKeyring, \
displayNameDict[displayName]).get_secret()
accounts.append([server, user, password, imap])
return accounts
def set(self, protocol, user, server, password): # store password in Gnome-Keyring
if password != '':
displayNameDict = {}
for identity in gnomekeyring.list_item_ids_sync(self.defaultKeyring):
item = gnomekeyring.item_get_info_sync(self.defaultKeyring, identity)
displayNameDict[item.get_display_name()] = identity
if 'Mailnag password for %s://%s@%s' % (protocol, user, server) in displayNameDict:
if password != gnomekeyring.item_get_info_sync(self.defaultKeyring, \
displayNameDict['Mailnag password for %s://%s@%s' % \
(protocol, user, server)]).get_secret():
gnomekeyring.item_create_sync(self.defaultKeyring, \
gnomekeyring.ITEM_GENERIC_SECRET, \
'Mailnag password for %s://%s@%s' % (protocol, user, server), \
{'application':'Mailnag', 'protocol':protocol, 'user':user, 'server':server}, \
password, True)
else:
gnomekeyring.item_create_sync(self.defaultKeyring, \
gnomekeyring.ITEM_GENERIC_SECRET, \
'Mailnag password for %s://%s@%s' % (protocol, user, server), \
{'application':'Mailnag', 'protocol':protocol, 'user':user, 'server':server}, password, True)
def remove(self, accounts): # delete obsolete entries from Keyring
defaultKeyring = gnomekeyring.get_default_keyring_sync()
if defaultKeyring == None:
defaultKeyring = 'login'
valid_accounts = []
for acc in accounts: # create list of all valid accounts
protocol = 'imap' if acc.imap else 'pop'
valid_accounts.append('Mailnag password for %s://%s@%s' % \
(protocol, acc.user, acc.server))
if gnomekeyring.list_item_ids_sync(defaultKeyring): # find and delete invalid entries
displayNameDict = {}
for identity in gnomekeyring.list_item_ids_sync(defaultKeyring):
item = gnomekeyring.item_get_info_sync(defaultKeyring, identity)
displayNameDict[item.get_display_name()] = identity
for key in displayNameDict.keys():
if key.startswith('Mailnag password for') \
and key not in valid_accounts:
gnomekeyring.item_delete_sync(defaultKeyring, displayNameDict[key])
def show_keyring_dialog(self): # dialog to get password to unlock keyring
self.was_locked = True
builder = Gtk.Builder()
builder.set_translation_domain('mailnag_config')
builder.add_from_file("mailnag_keyring.glade")
builder.connect_signals({"gtk_main_quit" : self.exit_keyring_dialog, \
"on_button_cancel_clicked" : self.exit_keyring_dialog, \
"on_button_ok_clicked" : self.ok_keyring_dialog, \
"on_entry_password_activate" : self.ok_keyring_dialog}) # hit RETURN in entry field
self.window = builder.get_object("dialog_keyring")
self.password = builder.get_object("entry_password")
self.window.show()
def exit_keyring_dialog(self, widget): # password dialog exit or cancel clicked
self.window.destroy()
Gtk.main_quit() # terminate loop to allow continuation
def ok_keyring_dialog(self, widget): # password dialog ok clicked
self.keyring_password = self.password.get_text() # get text from widget
self.exit_keyring_dialog(widget)
def show_message(self, message): # dialog to show keyring messages
builder = Gtk.Builder()
builder.set_translation_domain('mailnag_config')
builder.add_from_file("mailnag_message.glade")
builder.connect_signals({"gtk_main_quit" : self.exit_message, \
"on_button_cancel_clicked" : self.exit_message, \
"on_button_ok_clicked" : self.ok_message})
self.window = builder.get_object("dialog_message")
self.message = builder.get_object("label_message")
self.message.set_text(message) # put message text into label
self.window.show()
def exit_message(self, widget): # keyring message dialog exit or cancel clicked
self.window.destroy()
Gtk.main_quit() # terminate loop to allow continuation
def ok_message(self, widget): # keyring message dialog ok clicked
self.message_response = 'ok'
self.exit_message(widget)