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-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-20 12:27:38 +02:00
|
|
|
from model.BuddyModel import BuddyModel
|
2006-08-30 13:04:12 +02:00
|
|
|
from sugar import env
|
2006-09-22 18:50:55 +02:00
|
|
|
import logging
|
2006-08-30 11:46:14 +02:00
|
|
|
|
2006-08-30 12:22:01 +02:00
|
|
|
class Friends(gobject.GObject):
|
2006-12-04 20:12:24 +01:00
|
|
|
__gsignals__ = {
|
|
|
|
'friend-added': (gobject.SIGNAL_RUN_FIRST,
|
|
|
|
gobject.TYPE_NONE, ([object])),
|
|
|
|
'friend-removed': (gobject.SIGNAL_RUN_FIRST,
|
|
|
|
gobject.TYPE_NONE, ([str])),
|
|
|
|
}
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
gobject.GObject.__init__(self)
|
|
|
|
|
|
|
|
self._friends = {}
|
|
|
|
self._path = os.path.join(env.get_profile_path(), 'friends')
|
|
|
|
|
|
|
|
self.load()
|
|
|
|
|
|
|
|
def has_buddy(self, buddy):
|
2007-04-10 21:55:55 +02:00
|
|
|
return self._friends.has_key(buddy.get_key())
|
2006-12-04 20:12:24 +01:00
|
|
|
|
|
|
|
def add_friend(self, buddy_info):
|
2007-04-10 21:55:55 +02:00
|
|
|
self._friends[buddy_info.get_key()] = buddy_info
|
2006-12-04 20:12:24 +01:00
|
|
|
self.emit('friend-added', buddy_info)
|
|
|
|
|
|
|
|
def make_friend(self, buddy):
|
2007-04-13 20:20:05 +02:00
|
|
|
if not self.has_buddy(buddy):
|
|
|
|
self.add_friend(buddy)
|
2006-12-04 20:12:24 +01:00
|
|
|
self.save()
|
|
|
|
|
|
|
|
def remove(self, buddy_info):
|
2007-04-10 21:55:55 +02:00
|
|
|
del self._friends[buddy_info.get_key()]
|
2006-12-04 20:12:24 +01:00
|
|
|
self.save()
|
2007-04-10 21:55:55 +02:00
|
|
|
self.emit('friend-removed', buddy_info.get_key())
|
2006-12-04 20:12:24 +01:00
|
|
|
|
|
|
|
def __iter__(self):
|
|
|
|
return self._friends.values().__iter__()
|
|
|
|
|
|
|
|
def load(self):
|
|
|
|
cp = ConfigParser()
|
|
|
|
|
|
|
|
try:
|
|
|
|
success = cp.read([self._path])
|
|
|
|
if success:
|
2007-04-10 21:55:55 +02:00
|
|
|
for key in cp.sections():
|
|
|
|
# HACK: don't screw up on old friends files
|
|
|
|
if len(key) < 20:
|
|
|
|
continue
|
|
|
|
buddy = BuddyModel(key=key)
|
2006-12-04 20:12:24 +01:00
|
|
|
self.add_friend(buddy)
|
|
|
|
except Exception, exc:
|
|
|
|
logging.error("Error parsing friends file: %s" % exc)
|
|
|
|
|
|
|
|
def save(self):
|
|
|
|
cp = ConfigParser()
|
|
|
|
|
|
|
|
for friend in self:
|
2007-04-10 21:55:55 +02:00
|
|
|
section = friend.get_key()
|
2006-12-04 20:12:24 +01:00
|
|
|
cp.add_section(section)
|
2007-04-10 21:55:55 +02:00
|
|
|
cp.set(section, 'nick', friend.get_nick())
|
2006-12-04 20:12:24 +01:00
|
|
|
cp.set(section, 'color', friend.get_color().to_string())
|
|
|
|
|
|
|
|
fileobject = open(self._path, 'w')
|
|
|
|
cp.write(fileobject)
|
|
|
|
fileobject.close()
|