2006-08-22 16:15:52 +02:00
|
|
|
import os
|
|
|
|
from ConfigParser import ConfigParser
|
2006-08-26 13:35:03 +02:00
|
|
|
|
2006-10-04 00:55:20 +02:00
|
|
|
from sugar.graphics import iconcolor
|
2006-08-26 13:35:03 +02:00
|
|
|
from sugar import env
|
2006-08-22 16:15:52 +02:00
|
|
|
|
2006-09-04 21:34:54 +02:00
|
|
|
class _Profile:
|
2006-08-25 20:12:52 +02:00
|
|
|
def __init__(self,):
|
2006-08-26 13:35:03 +02:00
|
|
|
self._path = env.get_profile_path()
|
2006-08-22 16:15:52 +02:00
|
|
|
self._nick_name = None
|
2006-10-04 00:55:20 +02:00
|
|
|
self._color = iconcolor.IconColor()
|
2006-08-26 13:35:03 +02:00
|
|
|
|
|
|
|
self._ensure_dirs()
|
|
|
|
|
|
|
|
cp = ConfigParser()
|
|
|
|
parsed = cp.read([self._get_config_path()])
|
|
|
|
|
|
|
|
if cp.has_option('Buddy', 'NickName'):
|
|
|
|
self._nick_name = cp.get('Buddy', 'NickName')
|
|
|
|
if cp.has_option('Buddy', 'Color'):
|
2006-09-08 15:09:10 +02:00
|
|
|
color = cp.get('Buddy', 'Color')
|
2006-10-04 00:55:20 +02:00
|
|
|
if iconcolor.is_valid(color):
|
|
|
|
self._color = iconcolor.IconColor(color)
|
2006-08-22 16:15:52 +02:00
|
|
|
|
|
|
|
def _ensure_dirs(self):
|
|
|
|
try:
|
|
|
|
os.makedirs(self._path)
|
|
|
|
except OSError, exc:
|
|
|
|
if exc[0] != 17: # file exists
|
|
|
|
print "Could not create user directory."
|
|
|
|
|
2006-08-23 21:03:17 +02:00
|
|
|
def get_color(self):
|
|
|
|
return self._color
|
|
|
|
|
|
|
|
def set_color(self, color):
|
|
|
|
self._color = color
|
|
|
|
|
2006-08-22 16:15:52 +02:00
|
|
|
def get_nick_name(self):
|
|
|
|
return self._nick_name
|
|
|
|
|
|
|
|
def set_nick_name(self, nick_name):
|
|
|
|
self._nick_name = nick_name
|
|
|
|
|
|
|
|
def get_path(self):
|
|
|
|
return self._path
|
|
|
|
|
|
|
|
def save(self):
|
|
|
|
cp = ConfigParser()
|
|
|
|
|
|
|
|
section = 'Buddy'
|
|
|
|
cp.add_section(section)
|
|
|
|
cp.set(section, 'NickName', self._nick_name)
|
2006-09-08 15:09:10 +02:00
|
|
|
cp.set(section, 'Color', self._color.to_string())
|
2006-08-22 16:15:52 +02:00
|
|
|
|
|
|
|
fileobject = open(self._get_config_path(), 'w')
|
|
|
|
cp.write(fileobject)
|
|
|
|
fileobject.close()
|
|
|
|
|
|
|
|
def _get_config_path(self):
|
|
|
|
return os.path.join(self._path, 'config')
|