aboutsummaryrefslogtreecommitdiff
path: root/xmpp-vala/src/module/presence/stanza.vala
blob: 78ec97e4d8b0fc46b2e47ffc2bdf9153dfc896c9 (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
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
namespace Xmpp.Presence {

public class Stanza : Xmpp.Stanza {

    public const string NODE_PRIORITY = "priority";
    public const string NODE_STATUS = "status";
    public const string NODE_SHOW = "show";

    public const string SHOW_ONLINE = "online";
    public const string SHOW_AWAY = "away";
    public const string SHOW_CHAT = "chat";
    public const string SHOW_DND = "dnd";
    public const string SHOW_XA = "xa";

    public const string TYPE_AVAILABLE = "available";
    public const string TYPE_PROBE = "probe";
    public const string TYPE_SUBSCRIBE = "subscribe";
    public const string TYPE_SUBSCRIBED = "subscribed";
    public const string TYPE_UNAVAILABLE = "unavailable";
    public const string TYPE_UNSUBSCRIBE = "unsubscribe";
    public const string TYPE_UNSUBSCRIBED = "unsubscribed";

    public int priority {
        get {
            StanzaNode? priority_node = stanza.get_subnode(NODE_PRIORITY);
            if (priority_node == null) {
                return 0;
            } else {
                return int.parse(priority_node.get_string_content());
            }
        }
        set {
            StanzaNode? priority_node = stanza.get_subnode(NODE_PRIORITY);
            if (priority_node == null) {
                priority_node = new StanzaNode.build(NODE_PRIORITY);
                stanza.put_node(priority_node);
            }
            priority_node.val = value.to_string();
        }
    }

    public string? status {
        get {
            StanzaNode? status_node = stanza.get_subnode(NODE_STATUS);
            return status_node != null ? status_node.get_string_content() : null;
        }
        set {
            StanzaNode? status_node = stanza.get_subnode(NODE_STATUS);
            if (status_node == null) {
                status_node = new StanzaNode.build(NODE_STATUS);
                stanza.put_node(status_node);
            }
            status_node.val = value;
        }
    }

    public string show {
        get {
            StanzaNode? show_node = stanza.get_subnode(NODE_SHOW);
            if (show_node == null) {
                return SHOW_ONLINE;
            }
            return show_node.get_string_content() ?? SHOW_ONLINE;
        }
        set {
            if (value != SHOW_ONLINE) {
                StanzaNode? show_node = stanza.get_subnode(NODE_SHOW);
                if (show_node == null) {
                    show_node = new StanzaNode.build(NODE_SHOW);
                    stanza.put_node(show_node);
                }
                show_node.val = value;
            }
        }
    }

    public override string? type_ {
        get {
            return base.type_ ?? TYPE_AVAILABLE;
        }
        set { base.type_ = value; }
    }

    public Stanza(string? id = null) {
        stanza = new StanzaNode.build("presence");
        this.id = id ?? random_uuid();
    }

    public Stanza.from_stanza(StanzaNode stanza_node, Jid my_jid) {
        base.incoming(stanza_node, my_jid);
    }
}

}