summaryrefslogtreecommitdiff
path: root/sunshine/aliasing.py
blob: d5fd250494a458d1e20cc5d24e09a46e2b21e018 (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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# telepathy-sunshine is the GaduGadu connection manager for Telepathy
#
# Copyright (C) 2007 Ali Sabil <ali.sabil@gmail.com>
# Copyright (C) 2010 Krzysztof Klinikowski <kkszysiu@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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

import logging

import telepathy
import telepathy.constants

from sunshine.handle import SunshineHandleFactory
from sunshine.util.decorator import async

__all__ = ['SunshineAliasing']

logger = logging.getLogger('Sunshine.Aliasing')

class SunshineAliasing(telepathy.server.ConnectionInterfaceAliasing):

    def __init__(self):
        telepathy.server.ConnectionInterfaceAliasing.__init__(self)
        self.aliases = {}

    def GetAliasFlags(self):
        return telepathy.constants.CONNECTION_ALIAS_FLAG_USER_SET

    def RequestAliases(self, contacts):
        logger.debug("Called RequestAliases")
        return [self._get_alias(handle_id) for handle_id in contacts]

    def GetAliases(self, contacts):
        logger.debug("Called GetAliases")

        result = {}
        for contact in contacts:
            result[contact] = self._get_alias(contact)
        return result

    def SetAliases(self, aliases):
        for handle_id, alias in aliases.iteritems():
            handle = self.handle(telepathy.HANDLE_TYPE_CONTACT, handle_id)
            if handle != SunshineHandleFactory(self, 'self'):
                logger.debug("Called SetAliases for handle: %s, alias: %s" % (handle.name, alias))

                if alias == handle.name:
                    alias = ''

                new_alias = alias

                try:
                    handle.contact.updateName(new_alias)
                except:
                    pass
                
                #alias = unicode(alias, 'utf-8')
                logger.info("Contact %s alias changed to '%s'" % (unicode(handle.name), alias))
                self.aliases[handle.name] = alias
                self.AliasesChanged([(handle, alias)])
            else:
                logger.info("Self alias changed to '%s'" % alias)
                self.AliasesChanged(((SunshineHandleFactory(self, 'self'), alias), ))

#    # papyon.event.ContactEventInterface
#    def on_contact_display_name_changed(self, contact):
#        self._contact_alias_changed(contact)
#
#    # papyon.event.ContactEventInterface
#    def on_contact_infos_changed(self, contact, updated_infos):
#        alias = updated_infos.get(ContactGeneral.ANNOTATIONS, {}).\
#            get(ContactAnnotations.NICKNAME, None)
#
#        if alias is not None or alias != "":
#            self._contact_alias_changed(contact)
#
#    # papyon.event.ContactEventInterface
#    def on_contact_memberships_changed(self, contact):
#        handle = ButterflyHandleFactory(self, 'contact',
#                contact.account, contact.network_id)
#        if contact.is_member(papyon.Membership.FORWARD):
#            alias = handle.pending_alias
#            if alias is not None:
#                infos = {ContactGeneral.ANNOTATIONS : \
#                            {ContactAnnotations.NICKNAME : alias.encode('utf-8')}
#                        }
#                self.msn_client.address_book.\
#                    update_contact_infos(contact, infos)
#                handle.pending_alias = None

    def _get_alias(self, handle_id):
        """Get the alias from one handle id"""
        handle = self.handle(telepathy.HANDLE_TYPE_CONTACT, handle_id)
        if handle == SunshineHandleFactory(self, 'self'):
            alias = 'Ja'
        else:
            contact = handle.contact
            #print str(self.aliases)
            if self.aliases.has_key(handle.name):
                alias = self.aliases[handle.name]
                #del self.aliases[handle.name]
            elif contact is None:
                alias = handle.name
            else:
                alias = contact.ShowName
                if alias == '' or alias is None:
                     alias = contact.uin
        return alias

#    @async
#    def _contact_alias_changed(self, contact):
#        handle = GaduHandleFactory(self, 'contact',
#                contact.account, None)
#
#        alias = contact.infos.get(ContactGeneral.ANNOTATIONS, {}).\
#            get(ContactAnnotations.NICKNAME, None)
#
#        if alias == "" or alias is None:
#            alias = contact.display_name
#
#        alias = unicode(alias, 'utf-8')
#        logger.info("Contact %s alias changed to '%s'" % (unicode(handle), alias))
#        self.AliasesChanged([(handle, alias)])
#