Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/model/Invites.py
blob: 9ffab443e4d2331ef3418f259b0f0e076b7f2f9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Copyright (C) 2006-2007 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

import gobject
from sugar.presence import presenceservice

class Invite:
    def __init__(self, issuer, bundle_id, activity_id):
        self._issuer = issuer
        self._activity_id = activity_id
        self._bundle_id = bundle_id

    def get_activity_id(self):
        return self._activity_id

    def get_bundle_id(self):
        return self._bundle_id

class Invites(gobject.GObject):
    __gsignals__ = {
        'invite-added':   (gobject.SIGNAL_RUN_FIRST,
                           gobject.TYPE_NONE, ([object])),
        'invite-removed': (gobject.SIGNAL_RUN_FIRST,
                           gobject.TYPE_NONE, ([object])),
    }

    def __init__(self):
        gobject.GObject.__init__(self)

        self._dict = {}

        ps = presenceservice.get_instance()
        owner = ps.get_owner()
        owner.connect('joined-activity', self._owner_joined_cb)

    def add_invite(self, issuer, bundle_id, activity_id):
        if activity_id in self._dict:
            # there is no point to add more than one time
            # an invite for the same activity
            return

        invite = Invite(issuer, bundle_id, activity_id)
        self._dict[activity_id] = invite
        self.emit('invite-added', invite)

    def remove_invite(self, invite):
        self._dict.pop(invite.get_activity_id())
        self.emit('invite-removed', invite)

    def remove_activity(self, activity_id):
        invite = self._dict.get(activity_id)
        if invite is not None:
            self.remove_invite(invite)

    def _owner_joined_cb(self, owner, activity):
        self.remove_activity(activity.props.id)

    def __iter__(self):
        return self._dict.values().__iter__()