summaryrefslogtreecommitdiff
path: root/papyon/service/AddressBook/scenario/contacts/messenger_contact_add.py
blob: dd61961b546cdaf7d1ce819ebd36042081766db6 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# -*- coding: utf-8 -*-
#
# Copyright (C) 2007 Johann Prieur <johann.prieur@gmail.com>
#
# 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
#

from papyon.service.AddressBook.scenario.base import BaseScenario
from papyon.service.AddressBook.scenario.base import Scenario
from contact_find import FindContactScenario

from papyon.service.description.AB.constants import ContactEmailType
from papyon.profile import ContactType, Membership, NetworkID

__all__ = ['MessengerContactAddScenario']

class MessengerContactAddScenario(BaseScenario):
    def __init__(self, ab, callback, errback,
                 account='',
                 network_id=NetworkID.MSN,
                 memberships=Membership.NONE,
                 contact_type=ContactType.REGULAR,
                 contact_info={},
                 invite_display_name='',
                 invite_message=''):
        """Adds a messenger contact and updates the address book.

            @param ab: the address book service
            @param callback: tuple(callable, *args)
            @param errback: tuple(callable, *args)"""
        BaseScenario.__init__(self, Scenario.CONTACT_SAVE, callback, errback)

        self._ab = ab

        self.account = account
        self.network_id = network_id

        self.contact_type = contact_type
        self.contact_info = contact_info

        self.invite_display_name = invite_display_name
        self.invite_message = invite_message
        self.auto_manage_allow_list = True
        self.memberships = memberships

    def execute(self):
        invite_info = { 'display_name' : self.invite_display_name,
                        'invite_message' : self.invite_message }

        if self.network_id == NetworkID.MSN:
            self.contact_info['passport_name'] = self.account
            self.contact_info['contact_type'] = self.contact_type
            self.contact_info['is_messenger_user'] = True
        elif self.network_id == NetworkID.EXTERNAL:
            self.contact_info.setdefault('email', {})[ContactEmailType.EXTERNAL] = self.account
            self.contact_info['capability'] = self.network_id
        else:
            raise NotImplementedError("Network ID '%s' is not implemented" %
                    self.network_id)

        self._ab.ContactAdd((self.__contact_add_callback,),
                            self._errback,
                            self._scenario,
                            self.contact_info,
                            invite_info,
                            self.auto_manage_allow_list)

    def __contact_add_callback(self, contact_guid):
        self.memberships |= Membership.FORWARD

        # ContactAdd automatically added the contact to the allow list if
        # it wasn't already allowed or blocked
        allowed_or_blocked = self.memberships & (Membership.BLOCK | Membership.ALLOW)
        if self.auto_manage_allow_list and not allowed_or_blocked:
            self.memberships |= Membership.ALLOW

        fc = FindContactScenario(self._ab,
                (self.__find_contact_callback,),
                self._errback,
                self._scenario)
        fc.id = contact_guid
        fc()

    def __find_contact_callback(self, contact):
        self.callback(contact, self.memberships)