Mercurial > eldonilo > lightstring
view plugins/presence.js @ 67:1c8f326fe3ef
Several fixes and comments updated/added.
author | Sonny Piers <sonny.piers@gmail.com> |
---|---|
date | Wed, 01 Feb 2012 22:45:48 +0100 |
parents | a118a7822410 |
children | 03ccf507ecda |
line wrap: on
line source
'use strict'; /** Copyright (c) 2011, Sonny Piers <sonny at fastmail dot net> Copyright (c) 2012, Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ //////////// //Presence// http://xmpp.org/rfcs/rfc6121.html#presence //////////// (function() { var legal_types = ['error', 'probe', 'subscribe', 'subscribed', 'unavailable', 'unsubscribe', 'unsubscribed']; Lightstring.plugins['presence'] = { stanzas: { presence: function(object) { if (object) { var payloads = ""; var attributs = ""; if (object.type && legal_types.indexOf(object.type) !== -1) attributs += " type='" + object.type + "'"; if (object.priority) payloads += "<priority>" + object.priority + "</priority>"; if (object.show) payloads += "<show>" + object.show + "</show>"; if (object.status) payloads += "<status>" + object.status + "</status>"; if (object.payload) payloads += object.payload; if (payloads) return "<presence" + attributs + ">" + payloads + "</presence>"; else return "<presence" + attributs + "/>"; } else return "<presence/>"; }, }, methods: { presence: function(aObject) { this.send(Lightstring.stanzas.presence(aObject)); } } }; })();