sugar-toolkit-gtk3/src/sugar/profile.py

227 lines
7.6 KiB
Python
Raw Normal View History

2007-06-24 14:57:57 +02:00
# Copyright (C) 2006-2007, Red Hat, Inc.
2006-10-15 01:24:45 +02:00
#
2007-06-24 14:57:57 +02:00
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
2006-10-15 01:24:45 +02:00
#
2007-06-24 14:57:57 +02:00
# This library is distributed in the hope that it will be useful,
2006-10-15 01:24:45 +02:00
# but WITHOUT ANY WARRANTY; without even the implied warranty of
2007-06-24 14:57:57 +02:00
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
2006-10-15 01:24:45 +02:00
#
2007-06-24 14:57:57 +02:00
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
2006-10-15 01:24:45 +02:00
"""User settings/configuration loading.
DEPRECATED. We are using GConf now to store preferences.
"""
2008-10-11 18:28:40 +02:00
import gconf
import os
2007-02-25 23:53:10 +01:00
import logging
from ConfigParser import ConfigParser
2006-08-12 23:35:52 +02:00
from sugar import env
from sugar import util
2007-02-23 13:09:33 +01:00
from sugar.graphics.xocolor import XoColor
2009-08-25 21:12:40 +02:00
_profile = None
2009-08-25 21:12:40 +02:00
class Profile(object):
"""Local user's current options/profile information
User settings were previously stored in an INI-style
configuration file. We moved to gconf now. The deprected
2008-10-11 18:28:40 +02:00
API is kept around to not break activities still using it.
The profile is also responsible for loading the user's
public and private ssh keys from disk.
Attributes:
pubkey -- public ssh key
privkey_hash -- SHA has of the child's public key
"""
2009-08-25 21:12:40 +02:00
def __init__(self, path):
self._pubkey = None
self._privkey_hash = None
self.pubkey = self._load_pubkey()
self.privkey_hash = self._hash_private_key()
def is_valid(self):
2008-10-11 18:28:40 +02:00
client = gconf.client_get_default()
nick = client.get_string("/desktop/sugar/user/nick")
color = client.get_string("/desktop/sugar/user/color")
return nick is not '' and \
color is not '' and \
self.pubkey is not None and \
self.privkey_hash is not None
2007-02-25 23:53:10 +01:00
def _load_pubkey(self):
key_path = os.path.join(env.get_profile_path(), 'owner.key.pub')
if not os.path.exists(key_path):
return None
2007-02-25 23:53:10 +01:00
try:
f = open(key_path, "r")
lines = f.readlines()
f.close()
2009-08-24 12:54:02 +02:00
except IOError:
logging.exception('Error reading public key')
return None
2007-02-25 23:53:10 +01:00
magic = "ssh-dss "
for l in lines:
l = l.strip()
if not l.startswith(magic):
continue
return l[len(magic):]
else:
2007-02-25 23:53:10 +01:00
logging.error("Error parsing public key.")
return None
def _hash_private_key(self):
key_path = os.path.join(env.get_profile_path(), 'owner.key')
if not os.path.exists(key_path):
return None
try:
f = open(key_path, "r")
lines = f.readlines()
f.close()
2009-08-24 12:54:02 +02:00
except IOError:
logging.exception('Error reading private key')
return None
key = ""
begin_found = False
end_found = False
for l in lines:
l = l.strip()
if l.startswith("-----BEGIN DSA PRIVATE KEY-----"):
begin_found = True
continue
if l.startswith("-----END DSA PRIVATE KEY-----"):
end_found = True
continue
key += l
if not (len(key) and begin_found and end_found):
logging.error("Error parsing public key.")
return None
# hash it
2008-08-11 00:50:29 +02:00
key_hash = util.sha_data(key)
return util.printable_hash(key_hash)
2008-10-11 18:28:40 +02:00
def convert_profile(self):
cp = ConfigParser()
path = os.path.join(env.get_profile_path(), 'config')
cp.read([path])
client = gconf.client_get_default()
if cp.has_option('Buddy', 'NickName'):
name = cp.get('Buddy', 'NickName')
# decode nickname from ascii-safe chars to unicode
nick = name.decode("utf-8")
client.set_string("/desktop/sugar/user/nick", nick)
if cp.has_option('Buddy', 'Color'):
color = cp.get('Buddy', 'Color')
client.set_string("/desktop/sugar/user/color", color)
if cp.has_option('Jabber', 'Server'):
server = cp.get('Jabber', 'Server')
client.set_string("/desktop/sugar/collaboration/jabber_server",
2008-10-11 18:28:40 +02:00
server)
if cp.has_option('Date', 'Timezone'):
timezone = cp.get('Date', 'Timezone')
client.set_string("/desktop/sugar/date/timezone", timezone)
if cp.has_option('Frame', 'HotCorners'):
delay = float(cp.get('Frame', 'HotCorners'))
client.set_int("/desktop/sugar/frame/corner_delay", int(delay))
if cp.has_option('Frame', 'WarmEdges'):
delay = float(cp.get('Frame', 'WarmEdges'))
client.set_int("/desktop/sugar/frame/edge_delay", int(delay))
if cp.has_option('Server', 'Backup1'):
backup1 = cp.get('Server', 'Backup1')
client.set_string("/desktop/sugar/backup_url", backup1)
if cp.has_option('Sound', 'Volume'):
2008-10-13 16:53:30 +02:00
volume = float(cp.get('Sound', 'Volume'))
client.set_int("/desktop/sugar/sound/volume", int(volume))
2008-10-11 18:28:40 +02:00
if cp.has_option('Power', 'AutomaticPM'):
state = cp.get('Power', 'AutomaticPM')
if state.lower() == "true":
client.set_bool("/desktop/sugar/power/automatic", True)
if cp.has_option('Power', 'ExtremePM'):
state = cp.get('Power', 'ExtremePM')
if state.lower() == "true":
client.set_bool("/desktop/sugar/power/extreme", True)
if cp.has_option('Shell', 'FavoritesLayout'):
layout = cp.get('Shell', 'FavoritesLayout')
client.set_string("/desktop/sugar/desktop/favorites_layout",
2008-10-11 18:28:40 +02:00
layout)
del cp
try:
os.unlink(path)
except OSError:
logging.error('Error removing old profile.')
def create_debug_file(self):
path = os.path.join(os.path.expanduser('~/.sugar'), 'debug')
fd = open(path, 'w')
text = '# Uncomment the following lines to turn on many' \
'sugar debugging\n'\
'# log files and features\n'\
'#export LM_DEBUG=net\n' \
'#export GABBLE_DEBUG=all\n' \
'#export GABBLE_LOGFILE=' \
'$HOME/.sugar/$SUGAR_PROFILE/logs/telepathy-gabble.log\n' \
'#export SALUT_DEBUG=all\n' \
'#export SALUT_LOGFILE=' \
'$HOME/.sugar/$SUGAR_PROFILE/logs/telepathy-salut.log\n' \
'#export GIBBER_DEBUG=all\n' \
'#export MC_LOGFILE=' \
'$HOME/.sugar/$SUGAR_PROFILE/logs/mission-control.log\n' \
'#export MC_DEBUG=all\n' \
'#export PRESENCESERVICE_DEBUG=1\n' \
'#export SUGAR_LOGGER_LEVEL=debug\n\n' \
'# Uncomment the following line to enable core dumps\n' \
'#ulimit -c unlimited\n'
fd.write(text)
fd.close()
2009-08-25 21:12:40 +02:00
def get_profile():
global _profile
if not _profile:
path = os.path.join(env.get_profile_path(), 'config')
_profile = Profile(path)
return _profile
2009-08-25 21:12:40 +02:00
def get_nick_name():
2008-10-11 18:28:40 +02:00
client = gconf.client_get_default()
return client.get_string("/desktop/sugar/user/nick")
2009-08-25 21:12:40 +02:00
def get_color():
2008-10-11 18:28:40 +02:00
client = gconf.client_get_default()
color = client.get_string("/desktop/sugar/user/color")
2008-10-11 18:28:40 +02:00
return XoColor(color)
2009-08-25 21:12:40 +02:00
def get_pubkey():
return get_profile().pubkey