summaryrefslogtreecommitdiff
path: root/protocols/FacebookRM/src/channel.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-12-21 23:35:05 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-12-21 23:35:05 +0300
commit50351222fcb270449c1bc452ea590704ee403416 (patch)
treee1dcebde8130f85b1af334d1eeae19220d459f38 /protocols/FacebookRM/src/channel.cpp
parent87694f0fb5d928952c1480a34cb4eb6e13b80259 (diff)
Facebook -> sync MHttpRequest
Diffstat (limited to 'protocols/FacebookRM/src/channel.cpp')
-rw-r--r--protocols/FacebookRM/src/channel.cpp25
1 files changed, 12 insertions, 13 deletions
diff --git a/protocols/FacebookRM/src/channel.cpp b/protocols/FacebookRM/src/channel.cpp
index 68936c44c0..c274623711 100644
--- a/protocols/FacebookRM/src/channel.cpp
+++ b/protocols/FacebookRM/src/channel.cpp
@@ -39,42 +39,41 @@ HttpRequest* facebook_client::channelRequest(facebook_client::Type type)
bool isPing = (type == PING);
- p->Url << CHAR_PARAM("channel", chat_channel_.empty() ? ("p_" + self_.user_id).c_str() : chat_channel_.c_str());
+ p << CHAR_PARAM("channel", chat_channel_.empty() ? ("p_" + self_.user_id).c_str() : chat_channel_.c_str());
if (!isPing)
- p->Url << CHAR_PARAM("seq", chat_sequence_num_.empty() ? "0" : chat_sequence_num_.c_str());
+ p << CHAR_PARAM("seq", chat_sequence_num_.empty() ? "0" : chat_sequence_num_.c_str());
- p->Url
- << CHAR_PARAM("partition", chat_channel_partition_.empty() ? "0" : chat_channel_partition_.c_str())
+ p << CHAR_PARAM("partition", chat_channel_partition_.empty() ? "0" : chat_channel_partition_.c_str())
<< CHAR_PARAM("clientid", chat_clientid_.c_str())
<< CHAR_PARAM("cb", utils::text::rand_string(4, "0123456789abcdefghijklmnopqrstuvwxyz", &random_).c_str());
int idleSeconds = parent->IdleSeconds();
- p->Url << INT_PARAM("idle", idleSeconds); // Browser is sending "idle" always, even if it's "0"
+ p << INT_PARAM("idle", idleSeconds); // Browser is sending "idle" always, even if it's "0"
if (!isPing) {
- p->Url << CHAR_PARAM("qp", "y") << CHAR_PARAM("pws", "fresh") << INT_PARAM("isq", 487632);
- p->Url << INT_PARAM("msgs_recv", chat_msgs_recv_);
+ p << CHAR_PARAM("qp", "y") << CHAR_PARAM("pws", "fresh") << INT_PARAM("isq", 487632);
+ p << INT_PARAM("msgs_recv", chat_msgs_recv_);
// TODO: sometimes there is &tur=1711 and &qpmade=<some actual timestamp> and &isq=487632
// Url << "request_batch=1"; // it somehow batches up more responses to one - then response has special "t=batched" type and "batches" array with the data
// Url << "msgr_region=LLA"; // it was here only for first pull, same as request_batch
}
- p->Url << INT_PARAM("cap", 8) // TODO: what's this item? Sometimes it's 0, sometimes 8
+ p << INT_PARAM("cap", 8) // TODO: what's this item? Sometimes it's 0, sometimes 8
<< CHAR_PARAM("uid", self_.user_id.c_str())
<< CHAR_PARAM("viewer_uid", self_.user_id.c_str());
if (!chat_sticky_num_.empty() && !chat_sticky_pool_.empty()) {
- p->Url << CHAR_PARAM("sticky_token", chat_sticky_num_.c_str());
- p->Url << CHAR_PARAM("sticky_pool", chat_sticky_pool_.c_str());
+ p << CHAR_PARAM("sticky_token", chat_sticky_num_.c_str());
+ p << CHAR_PARAM("sticky_pool", chat_sticky_pool_.c_str());
}
if (!isPing && !chat_traceid_.empty())
- p->Url << CHAR_PARAM("traceid", chat_traceid_.c_str());
+ p << CHAR_PARAM("traceid", chat_traceid_.c_str());
if (parent->isInvisible())
- p->Url << CHAR_PARAM("state", "offline");
+ p << CHAR_PARAM("state", "offline");
else if (isPing || idleSeconds < 60)
- p->Url << CHAR_PARAM("state", "active");
+ p << CHAR_PARAM("state", "active");
return p;
}