aboutsummaryrefslogtreecommitdiff
path: root/xmpp-vala/src/module/roster/item.vala
blob: 4c9f30ef81cd24e0a703d348ac58d336311eba9e (plain) (blame)
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
using Gee;

namespace Xmpp.Roster {

public class Item {

    public const string SUBSCRIPTION_NONE = "none";
    /** the user has a subscription to the contact's presence, but the contact does not have a subscription to the user's presence */
    public const string SUBSCRIPTION_TO = "to";
    /** the contact has a subscription to the user's presence, but the user does not have a subscription to the contact's presence */
    public const string SUBSCRIPTION_FROM = "from";
    public const string SUBSCRIPTION_BOTH = "both";
    public const string SUBSCRIPTION_REMOVE = "remove";

    public StanzaNode stanza_node;

    private Jid jid_;
    public Jid? jid {
        get {
            try {
                return jid_ ?? (jid_ = new Jid(stanza_node.get_attribute("jid")));
            } catch (InvalidJidError e) {
                warning("Ignoring invalid Jid in roster entry: %s", e.message);
                return null;
            }
        }
        set { stanza_node.set_attribute("jid", value.to_string()); }
    }

    public string? name {
        get { return stanza_node.get_attribute("name"); }
        set { if (value != null) stanza_node.set_attribute("name", value); }
    }

    public string? subscription {
        get { return stanza_node.get_attribute("subscription"); }
        set { if (value != null) stanza_node.set_attribute("subscription", value); }
    }

    public string? ask {
        get { return stanza_node.get_attribute("ask"); }
    }

    public bool subscription_requested {
        get { return this.ask != null; }
    }

    public Item() {
        stanza_node = new StanzaNode.build("item", NS_URI);
    }

    public Item.from_stanza_node(StanzaNode stanza_node) {
        this.stanza_node = stanza_node;
    }
}

}