sugar-toolkit-gtk3/sugar/profile.py

146 lines
4.0 KiB
Python
Raw Normal View History

2006-10-15 01:24:45 +02:00
# Copyright (C) 2006, Red Hat, Inc.
#
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
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
class _Profile(object):
def __init__(self):
self.name = None
self.color = None
2007-02-22 20:07:53 +01:00
self.pubkey = None
self.privkey_hash = None
self.server = None
self.server_registered = False
self._load()
2006-08-12 23:35:52 +02:00
def update(self):
self._load()
def _load(self):
cp = ConfigParser()
config_path = os.path.join(env.get_profile_path(), 'config')
parsed = cp.read([config_path])
if cp.has_option('Buddy', 'NickName'):
self.name = cp.get('Buddy', 'NickName')
if cp.has_option('Buddy', 'Color'):
2007-02-23 13:09:33 +01:00
self.color = XoColor(cp.get('Buddy', 'Color'))
2006-07-12 22:17:57 +02:00
if cp.has_option('Server', 'Server'):
self.server = cp.get('Server', 'Server')
if cp.has_option('Server', 'Registered'):
registered = cp.get('Server', 'Registered')
if registered.lower() == "true":
self.server_registered = True
del cp
2007-02-25 23:53:10 +01:00
self._load_pubkey()
self._hash_private_key()
2007-02-25 23:53:10 +01:00
def _load_pubkey(self):
self.pubkey = None
key_path = os.path.join(env.get_profile_path(), 'owner.key.pub')
try:
f = open(key_path, "r")
lines = f.readlines()
f.close()
except IOError, e:
logging.error("Error reading public key: %s" % e)
return
magic = "ssh-dss "
for l in lines:
l = l.strip()
if not l.startswith(magic):
continue
self.pubkey = l[len(magic):]
break
if not self.pubkey:
logging.error("Error parsing public key.")
def _hash_private_key(self):
self.privkey_hash = None
key_path = os.path.join(env.get_profile_path(), 'owner.key')
try:
f = open(key_path, "r")
lines = f.readlines()
f.close()
except IOError, e:
logging.error("Error reading private key: %s" % e)
return
key = ""
for l in lines:
l = l.strip()
if l.startswith("-----BEGIN DSA PRIVATE KEY-----"):
continue
if l.startswith("-----END DSA PRIVATE KEY-----"):
continue
key += l
if not len(key):
logging.error("Error parsing public key.")
# hash it
key_hash = util._sha_data(key)
self.privkey_hash = util.printable_hash(key_hash)
2007-02-25 23:53:10 +01:00
def get_nick_name():
return _profile.name
def get_color():
return _profile.color
2007-02-22 20:07:53 +01:00
def get_pubkey():
return _profile.pubkey
def get_private_key_hash():
return _profile.privkey_hash
def get_server():
return _profile.server
def get_server_registered():
return _profile.server_registered
def set_server_registered():
_profile.server_registered = True
cp = ConfigParser()
config_path = os.path.join(env.get_profile_path(), 'config')
cp.read([config_path])
if not cp.has_section('Server'):
cp.add_section('Server')
cp.set('Server', 'Registered', True)
cp.write(open(config_path, 'w'))
def update():
_profile.update()
2006-05-16 22:32:08 +02:00
_profile = _Profile()