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
|
|
|
|
|
2006-05-12 08:34:20 +02:00
|
|
|
import os
|
2006-10-16 13:34:43 +02:00
|
|
|
from ConfigParser import ConfigParser
|
2006-08-12 23:35:52 +02:00
|
|
|
|
|
|
|
from sugar import env
|
2006-10-16 13:34:43 +02:00
|
|
|
from sugar.graphics.iconcolor import IconColor
|
|
|
|
|
2006-10-17 14:31:04 +02:00
|
|
|
class _Profile(object):
|
2006-12-04 20:12:24 +01:00
|
|
|
def __init__(self):
|
|
|
|
self.name = None
|
|
|
|
self.color = None
|
|
|
|
self._load()
|
2006-08-12 23:35:52 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def update(self):
|
|
|
|
self._load()
|
2006-10-17 14:31:04 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def _load(self):
|
|
|
|
cp = ConfigParser()
|
|
|
|
config_path = os.path.join(env.get_profile_path(), 'config')
|
|
|
|
parsed = cp.read([config_path])
|
2006-10-17 14:31:04 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
if cp.has_option('Buddy', 'NickName'):
|
|
|
|
self.name = cp.get('Buddy', 'NickName')
|
2006-07-28 01:25:08 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
if cp.has_option('Buddy', 'Color'):
|
|
|
|
self.color = IconColor(cp.get('Buddy', 'Color'))
|
2006-07-12 22:17:57 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
del cp
|
2006-10-17 14:31:04 +02:00
|
|
|
|
|
|
|
def get_nick_name():
|
2006-12-04 20:12:24 +01:00
|
|
|
return _profile.name
|
2006-10-17 14:31:04 +02:00
|
|
|
|
|
|
|
def get_color():
|
2006-12-04 20:12:24 +01:00
|
|
|
return _profile.color
|
2006-08-22 16:15:34 +02:00
|
|
|
|
2006-10-17 14:31:04 +02:00
|
|
|
def update():
|
2006-12-04 20:12:24 +01:00
|
|
|
_profile.update()
|
2006-05-16 22:32:08 +02:00
|
|
|
|
2006-10-17 14:31:04 +02:00
|
|
|
_profile = _Profile()
|