2006-08-30 13:04:12 +02:00
|
|
|
import os
|
|
|
|
from ConfigParser import ConfigParser
|
|
|
|
|
2006-08-30 12:22:01 +02:00
|
|
|
import gobject
|
|
|
|
|
2006-08-30 11:46:14 +02:00
|
|
|
from sugar.canvas.IconColor import IconColor
|
2006-08-30 13:04:12 +02:00
|
|
|
from sugar import env
|
2006-08-30 11:46:14 +02:00
|
|
|
|
|
|
|
class Friend:
|
|
|
|
def __init__(self, name, color):
|
|
|
|
self._name = name
|
|
|
|
self._color = color
|
|
|
|
|
|
|
|
def get_name(self):
|
2006-08-30 12:22:01 +02:00
|
|
|
return self._name
|
2006-08-30 11:46:14 +02:00
|
|
|
|
|
|
|
def get_color(self):
|
|
|
|
return IconColor(self._color)
|
|
|
|
|
2006-08-30 12:22:01 +02:00
|
|
|
class Friends(gobject.GObject):
|
|
|
|
__gsignals__ = {
|
|
|
|
'friend-added': (gobject.SIGNAL_RUN_FIRST,
|
|
|
|
gobject.TYPE_NONE, ([object])),
|
|
|
|
'friend-removed': (gobject.SIGNAL_RUN_FIRST,
|
|
|
|
gobject.TYPE_NONE, ([object])),
|
|
|
|
}
|
|
|
|
|
2006-08-30 11:46:14 +02:00
|
|
|
def __init__(self):
|
2006-08-30 12:22:01 +02:00
|
|
|
gobject.GObject.__init__(self)
|
|
|
|
|
|
|
|
self._list = []
|
2006-08-30 13:04:12 +02:00
|
|
|
self._path = os.path.join(env.get_profile_path(), 'friends')
|
|
|
|
|
|
|
|
self.load()
|
2006-08-30 12:22:01 +02:00
|
|
|
|
|
|
|
def has_buddy(self, buddy):
|
|
|
|
for friend in self:
|
|
|
|
if friend.get_name() == buddy.get_name():
|
|
|
|
return True
|
|
|
|
return False
|
2006-08-30 11:46:14 +02:00
|
|
|
|
2006-08-30 13:04:12 +02:00
|
|
|
def add_friend(self, name, color):
|
|
|
|
friend = Friend(name, color)
|
|
|
|
self._list.append(friend)
|
|
|
|
|
|
|
|
self.emit('friend-added', friend)
|
|
|
|
|
2006-08-30 11:46:14 +02:00
|
|
|
def add_buddy(self, buddy):
|
2006-08-30 12:22:01 +02:00
|
|
|
if not self.has_buddy(buddy):
|
2006-08-30 13:04:12 +02:00
|
|
|
self.add_friend(buddy.get_name(), buddy.get_color())
|
|
|
|
self.save()
|
2006-08-30 12:22:01 +02:00
|
|
|
|
|
|
|
def __iter__(self):
|
|
|
|
return self._list.__iter__()
|
2006-08-30 13:04:12 +02:00
|
|
|
|
|
|
|
def load(self):
|
|
|
|
cp = ConfigParser()
|
|
|
|
|
|
|
|
if cp.read([self._path]):
|
|
|
|
for name in cp.sections():
|
|
|
|
self.add_friend(name, cp.get(name, 'color'))
|
|
|
|
|
|
|
|
def save(self):
|
|
|
|
cp = ConfigParser()
|
|
|
|
|
|
|
|
for friend in self:
|
|
|
|
section = friend.get_name()
|
|
|
|
cp.add_section(section)
|
|
|
|
cp.set(section, 'color', friend.get_color().get_fill_color())
|
|
|
|
|
|
|
|
fileobject = open(self._path, 'w')
|
|
|
|
cp.write(fileobject)
|
|
|
|
fileobject.close()
|