~ubuntu-branches/ubuntu/precise/pymsn/precise

« back to all changes in this revision

Viewing changes to pymsn/service/AddressBook/scenario/contacts/contact_update_properties.py

  • Committer: Bazaar Package Importer
  • Author(s): Laurent Bigonville, Sjoerd Simons, Laurent Bigonville, Jonny Lamb
  • Date: 2008-01-17 18:23:14 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080117182314-lwymmpnk2ut3rvr1
Tags: 0.3.1-0ubuntu1
[ Sjoerd Simons ]
* debian/rules: remove dh_python, it's no longer needed

[ Laurent Bigonville ]
* New upstream release (0.3.1)
* debian/control:
  - Add myself as an Uploaders
  - Add python:Provides for binary package
  - Add python-ctypes and python-crypto to build-deps/deps
* debian/rules: remove binary-install rule
* Add watch file
* remove pycompat file, not needed anymore
* Modify Maintainer value to match the DebianMaintainerField
  specification.

[ Jonny Lamb ]
* Added python-adns to build-deps/deps.
* Added python-pyopenssl to build-deps/deps.
* Updated copyright.
* Upped Standards-Version to 3.7.3.
* Added "XS-Dm-Upload-Allowed: yes" under the request of Sjoerd Simons.
* Added myself to Uploaders.
* Added Homepage to control.
* Added Vcs-Bzr to control.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
#
 
3
# Copyright (C) 2007 Johann Prieur <johann.prieur@gmail.com>
 
4
#
 
5
# This program is free software; you can redistribute it and/or modify
 
6
# it under the terms of the GNU General Public License as published by
 
7
# the Free Software Foundation; either version 2 of the License, or
 
8
# (at your option) any later version.
 
9
#
 
10
# This program is distributed in the hope that it will be useful,
 
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
# GNU General Public License for more details.
 
14
#
 
15
# You should have received a copy of the GNU General Public License
 
16
# along with this program; if not, write to the Free Software
 
17
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
18
#
 
19
from pymsn.service.AddressBook.scenario.base import BaseScenario
 
20
from pymsn.service.AddressBook.scenario.base import Scenario
 
21
 
 
22
from pymsn.service.AddressBook.constants import *
 
23
 
 
24
__all__ = ['ContactUpdatePropertiesScenario']
 
25
 
 
26
class ContactUpdatePropertiesScenario(BaseScenario):
 
27
    def __init__(self, ab, callback, errback, contact_guid='',
 
28
                 contact_properties={}):
 
29
        """Updates a contact properties
 
30
 
 
31
            @param ab: the address book service
 
32
            @param callback: tuple(callable, *args)
 
33
            @param errback: tuple(callable, *args)
 
34
            @param contact_guid: the guid of the contact to update"""
 
35
        BaseScenario.__init__(self, Scenario.CONTACT_SAVE, callback, errback)
 
36
        self.__ab = ab
 
37
 
 
38
        self.contact_guid = contact_guid
 
39
        self.contact_properties = contact_properties
 
40
        self.enable_allow_list_management = False
 
41
 
 
42
    def execute(self):
 
43
        self.__ab.ContactUpdate((self.__contact_update_callback,),
 
44
                                (self.__contact_update_errback,),
 
45
                                self._scenario, self.contact_guid,
 
46
                                self.contact_properties,
 
47
                                self.enable_allow_list_management)
 
48
 
 
49
    def __contact_update_callback(self):
 
50
        callback = self._callback
 
51
        callback[0](*callback[1:])
 
52
 
 
53
    def __contact_update_errback(self, error_code):
 
54
        errcode = AddressBookError.UNKNOWN
 
55
        if error_code == 'ContactDoesNotExist':
 
56
            errcode = AddressBookError.CONTACT_DOES_NOT_EXIST
 
57
        errback = self._errback[0]
 
58
        args = self._errback[1:]
 
59
        errback(errcode, *args)