summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2014-11-17 11:17:08 +0000
committerRobert Pösel <robyer@seznam.cz>2014-11-17 11:17:08 +0000
commitb2a0ad599ee41955d63315113b02e3dbe7d20f0b (patch)
tree8d2a1b722d5f2b583994ee7284638a968ead4c1c
parent03eb88d15e89fcbd4eed39c64b607b0cbb3605fe (diff)
Facebook: Fix receiving user messages and marking them as read for some people; version bump
git-svn-id: http://svn.miranda-ng.org/main/trunk@11002 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--protocols/FacebookRM/src/json.cpp26
-rw-r--r--protocols/FacebookRM/src/messages.cpp7
-rw-r--r--protocols/FacebookRM/src/version.h2
3 files changed, 24 insertions, 11 deletions
diff --git a/protocols/FacebookRM/src/json.cpp b/protocols/FacebookRM/src/json.cpp
index 367eb394fc..c8e69e91b7 100644
--- a/protocols/FacebookRM/src/json.cpp
+++ b/protocols/FacebookRM/src/json.cpp
@@ -294,7 +294,7 @@ bool ignore_duplicits(FacebookProto *proto, std::string mid, std::string text)
return false;
}
-void parseAttachments(FacebookProto *proto, std::string *message_text, JSONNODE *it, std::string thread_id)
+void parseAttachments(FacebookProto *proto, std::string *message_text, JSONNODE *it, std::string thread_id, std::string other_user_fbid)
{
// Process attachements and stickers
JSONNODE *has_attachment = json_get(it, "has_attachment");
@@ -343,9 +343,15 @@ void parseAttachments(FacebookProto *proto, std::string *message_text, JSONNODE
std::string sticker = "[[sticker:" + json_as_pstring(stickerId_) + "]]";
attachments_text += sticker;
+ if (other_user_fbid.empty() && !thread_id.empty()) {
+ other_user_fbid = proto->ThreadIDToContactID(thread_id);
+ }
+
// FIXME: rewrite smileyadd to use custom smileys per protocol and not per contact and then remove this ugliness
- MCONTACT hContact = proto->ContactIDToHContact(proto->ThreadIDToContactID(thread_id));
- proto->StickerAsSmiley(sticker, link, hContact);
+ if (!other_user_fbid.empty()) {
+ MCONTACT hContact = proto->ContactIDToHContact(other_user_fbid);
+ proto->StickerAsSmiley(sticker, link, hContact);
+ }
}
}
}
@@ -497,7 +503,11 @@ int facebook_json_parser::parse_messages(void* data, std::vector< facebook_messa
JSONNODE *sender_fbid = json_get(msg, "sender_fbid");
JSONNODE *sender_name = json_get(msg, "sender_name");
JSONNODE *body = json_get(msg, "body");
+
+ // looks like there is either "tid" or "other_user_fbid" - or "tid" is removed forever?
JSONNODE *tid = json_get(msg, "tid");
+ JSONNODE *other_user_id_ = json_get(msg, "other_user_fbid");
+
JSONNODE *mid = json_get(msg, "mid");
JSONNODE *timestamp = json_get(msg, "timestamp");
JSONNODE *filtered = json_get(it, "is_filtered_content");
@@ -506,12 +516,14 @@ int facebook_json_parser::parse_messages(void* data, std::vector< facebook_messa
continue;
std::string id = json_as_pstring(sender_fbid);
- std::string thread_id = json_as_pstring(tid);
std::string message_id = json_as_pstring(mid);
std::string message_text = json_as_pstring(body);
+ std::string thread_id = (tid != NULL ? json_as_pstring(tid) : "");
+ std::string other_user_id = (other_user_id_ != NULL ? json_as_pstring(other_user_id_) : "");
+
// Process attachements and stickers
- parseAttachments(proto, &message_text, msg, thread_id);
+ parseAttachments(proto, &message_text, msg, thread_id, other_user_id);
// Ignore duplicits or messages sent from miranda
if (body == NULL || ignore_duplicits(proto, message_id, message_text))
@@ -535,7 +547,7 @@ int facebook_json_parser::parse_messages(void* data, std::vector< facebook_messa
message->thread_id = json_as_pstring(tid); // TODO: or if not incomming use my own id from facy.self_ ?
JSONNODE *gthreadinfo = json_get(msg, "group_thread_info");
- message->isChat = (gthreadinfo != NULL);
+ message->isChat = (gthreadinfo != NULL && json_as_pstring(gthreadinfo) != "null");
if (!message->isChat && !message->isIncoming) {
message->sender_name = "";
@@ -916,7 +928,7 @@ int facebook_json_parser::parse_thread_messages(void* data, std::vector< faceboo
author_id = author_id.substr(pos+1);
// Process attachements and stickers
- parseAttachments(proto, &message_text, it, thread_id);
+ parseAttachments(proto, &message_text, it, thread_id, ""); // FIXME: is here supported other_user_fbid ?
if (json_as_bool(filtered) && message_text.empty())
message_text = Translate("This message is no longer available, because it was marked as abusive or spam.");
diff --git a/protocols/FacebookRM/src/messages.cpp b/protocols/FacebookRM/src/messages.cpp
index 72e4e3487c..08b72eab59 100644
--- a/protocols/FacebookRM/src/messages.cpp
+++ b/protocols/FacebookRM/src/messages.cpp
@@ -180,11 +180,12 @@ void FacebookProto::ReadMessageWorker(void *p)
return;
// mark message read (also send seen info)
- ptrA tid( getStringA(hContact, FACEBOOK_KEY_TID));
- if (tid == NULL)
+ const char *value = (isChatRoom(hContact) ? FACEBOOK_KEY_TID : FACEBOOK_KEY_ID);
+ ptrA id( getStringA(hContact, value));
+ if (id == NULL)
return;
- std::string data = "ids[" + utils::url::encode(std::string(tid)) + "]=true";
+ std::string data = "ids[" + utils::url::encode(std::string(id)) + "]=true";
data += "&fb_dtsg=" + facy.dtsg_;
data += "&__user=" + facy.self_.user_id;
data += "&__a=1&__dyn=&__req=&ttstamp=0";
diff --git a/protocols/FacebookRM/src/version.h b/protocols/FacebookRM/src/version.h
index dad9979bf5..470d5e5f2f 100644
--- a/protocols/FacebookRM/src/version.h
+++ b/protocols/FacebookRM/src/version.h
@@ -1,7 +1,7 @@
#define __MAJOR_VERSION 0
#define __MINOR_VERSION 2
#define __RELEASE_NUM 9
-#define __BUILD_NUM 4
+#define __BUILD_NUM 5
#include <stdver.h>