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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
|
/*
* libjingle
* Copyright 2004--2012, Google Inc.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "talk/xmpp/presencereceivetask.h"
#include "talk/base/stringencode.h"
#include "talk/xmpp/constants.h"
namespace buzz {
static bool IsUtf8FirstByte(int c) {
return (((c)&0x80)==0) || // is single byte
((unsigned char)((c)-0xc0)<0x3e); // or is lead byte
}
PresenceReceiveTask::PresenceReceiveTask(XmppTaskParentInterface* parent)
: XmppTask(parent, XmppEngine::HL_TYPE) {
}
PresenceReceiveTask::~PresenceReceiveTask() {
Stop();
}
int PresenceReceiveTask::ProcessStart() {
const XmlElement * stanza = NextStanza();
if (stanza == NULL) {
return STATE_BLOCKED;
}
Jid from(stanza->Attr(QN_FROM));
HandlePresence(from, stanza);
return STATE_START;
}
bool PresenceReceiveTask::HandleStanza(const XmlElement * stanza) {
// Verify that this is a presence stanze
if (stanza->Name() != QN_PRESENCE) {
return false; // not sure if this ever happens.
}
// Queue it up
QueueStanza(stanza);
return true;
}
void PresenceReceiveTask::HandlePresence(const Jid& from,
const XmlElement* stanza) {
if (stanza->Attr(QN_TYPE) == STR_ERROR) {
return;
}
PresenceStatus status;
DecodeStatus(from, stanza, &status);
PresenceUpdate(status);
}
void PresenceReceiveTask::DecodeStatus(const Jid& from,
const XmlElement* stanza,
PresenceStatus* presence_status) {
presence_status->set_jid(from);
if (stanza->Attr(QN_TYPE) == STR_UNAVAILABLE) {
presence_status->set_available(false);
} else {
presence_status->set_available(true);
const XmlElement * status_elem = stanza->FirstNamed(QN_STATUS);
if (status_elem != NULL) {
presence_status->set_status(status_elem->BodyText());
// Truncate status messages longer than 300 bytes
if (presence_status->status().length() > 300) {
size_t len = 300;
// Be careful not to split legal utf-8 chars in half
while (!IsUtf8FirstByte(presence_status->status()[len]) && len > 0) {
len -= 1;
}
std::string truncated(presence_status->status(), 0, len);
presence_status->set_status(truncated);
}
}
const XmlElement * priority = stanza->FirstNamed(QN_PRIORITY);
if (priority != NULL) {
int pri;
if (talk_base::FromString(priority->BodyText(), &pri)) {
presence_status->set_priority(pri);
}
}
const XmlElement * show = stanza->FirstNamed(QN_SHOW);
if (show == NULL || show->FirstChild() == NULL) {
presence_status->set_show(PresenceStatus::SHOW_ONLINE);
} else if (show->BodyText() == "away") {
presence_status->set_show(PresenceStatus::SHOW_AWAY);
} else if (show->BodyText() == "xa") {
presence_status->set_show(PresenceStatus::SHOW_XA);
} else if (show->BodyText() == "dnd") {
presence_status->set_show(PresenceStatus::SHOW_DND);
} else if (show->BodyText() == "chat") {
presence_status->set_show(PresenceStatus::SHOW_CHAT);
} else {
presence_status->set_show(PresenceStatus::SHOW_ONLINE);
}
const XmlElement * caps = stanza->FirstNamed(QN_CAPS_C);
if (caps != NULL) {
std::string node = caps->Attr(QN_NODE);
std::string ver = caps->Attr(QN_VER);
std::string exts = caps->Attr(QN_EXT);
presence_status->set_know_capabilities(true);
presence_status->set_caps_node(node);
presence_status->set_version(ver);
}
const XmlElement* delay = stanza->FirstNamed(kQnDelayX);
if (delay != NULL) {
// Ideally we would parse this according to the Psuedo ISO-8601 rules
// that are laid out in JEP-0082:
// http://www.jabber.org/jeps/jep-0082.html
std::string stamp = delay->Attr(kQnStamp);
presence_status->set_sent_time(stamp);
}
const XmlElement* nick = stanza->FirstNamed(QN_NICKNAME);
if (nick) {
presence_status->set_nick(nick->BodyText());
}
}
}
} // namespace buzz
|