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-09-15 15:28:18 +02:00
|
|
|
from model.BuddyInfo import BuddyInfo
|
2006-08-30 13:04:12 +02:00
|
|
|
from sugar import env
|
2006-08-30 11:46:14 +02:00
|
|
|
|
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,
|
2006-09-15 15:28:18 +02:00
|
|
|
gobject.TYPE_NONE, ([str])),
|
2006-08-30 12:22:01 +02:00
|
|
|
}
|
|
|
|
|
2006-08-30 11:46:14 +02:00
|
|
|
def __init__(self):
|
2006-08-30 12:22:01 +02:00
|
|
|
gobject.GObject.__init__(self)
|
|
|
|
|
2006-09-15 15:28:18 +02:00
|
|
|
self._friends = {}
|
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):
|
2006-09-15 15:28:18 +02:00
|
|
|
return self._friends.has_key(buddy.get_name())
|
2006-08-30 11:46:14 +02:00
|
|
|
|
2006-09-15 15:28:18 +02:00
|
|
|
def add_friend(self, buddy_info):
|
|
|
|
self._friends[buddy_info.get_name()] = buddy_info
|
|
|
|
self.emit('friend-added', buddy_info)
|
2006-08-30 13:04:12 +02:00
|
|
|
|
2006-09-15 15:28:18 +02:00
|
|
|
def make_friend(self, buddy):
|
2006-08-30 12:22:01 +02:00
|
|
|
if not self.has_buddy(buddy):
|
2006-09-15 15:28:18 +02:00
|
|
|
self.add_friend(BuddyInfo(buddy))
|
2006-08-30 13:04:12 +02:00
|
|
|
self.save()
|
2006-08-30 12:22:01 +02:00
|
|
|
|
2006-09-15 15:28:18 +02:00
|
|
|
def remove(self, buddy_info):
|
|
|
|
del self._friends[buddy_info.get_name()]
|
|
|
|
self.save()
|
|
|
|
self.emit('friend-removed', buddy_info.get_name())
|
|
|
|
|
2006-08-30 12:22:01 +02:00
|
|
|
def __iter__(self):
|
2006-09-15 15:28:18 +02:00
|
|
|
return self._friends.values().__iter__()
|
2006-08-30 13:04:12 +02:00
|
|
|
|
|
|
|
def load(self):
|
|
|
|
cp = ConfigParser()
|
|
|
|
|
|
|
|
if cp.read([self._path]):
|
|
|
|
for name in cp.sections():
|
2006-09-15 15:28:18 +02:00
|
|
|
buddy = BuddyInfo()
|
|
|
|
buddy.set_name(name)
|
|
|
|
buddy.set_color(cp.get(name, 'color'))
|
|
|
|
self.add_friend(buddy)
|
2006-08-30 13:04:12 +02:00
|
|
|
|
|
|
|
def save(self):
|
|
|
|
cp = ConfigParser()
|
|
|
|
|
|
|
|
for friend in self:
|
|
|
|
section = friend.get_name()
|
|
|
|
cp.add_section(section)
|
2006-09-08 16:27:17 +02:00
|
|
|
cp.set(section, 'color', friend.get_color().to_string())
|
2006-08-30 13:04:12 +02:00
|
|
|
|
|
|
|
fileobject = open(self._path, 'w')
|
|
|
|
cp.write(fileobject)
|
|
|
|
fileobject.close()
|