summaryrefslogtreecommitdiff
path: root/src/contact.py
blob: 435251a7dc1bd5558999ed21fe42554275c0e74a (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
# Copyright 2010 Le Coz Florent <louizatakk@fedoraproject.org>
#
# This file is part of Poezio.
#
# Poezio 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, version 3 of the License.
#
# Poezio 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 Poezio.  If not, see <http://www.gnu.org/licenses/>.

from sleekxmpp.xmlstream.jid import JID

class Contact(object):
    """
    Defines a roster item
    """
    def __init__(self, jid):
        self._jid = JID(jid)         # a SleekXMPP jid object
        self._display_name = None
        self._subscription = 'none'
        self._ask = None
        self._status = ''
        self._presence = 'unavailable'
        self._priority = 0
        self._groups = []       # a list of groups the contact is in

    def set_ask(self, ask):
        self._ask = ask

    def get_ask(self):
        return self._ask

    def set_subscription(self, sub):
        self._subscription = sub

    def get_subscription(self, sub):
        return self._subscription

    def get_jid(self):
        return self._jid

    def __repr__(self):
        return '%s' % self._jid

    def set_priority(self, priority):
        assert isinstance(priority, int)
        self._priority = priority

    def set_presence(self, pres):
        self._presence = pres

    def get_presence(self):
        return self._presence

    def get_status(self):
        return self._status

    def set__status(self, s):
        self._status = s

    def set_name(self, name):
        self._display_name = name

    def get_name(self):
        return self._display_name