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
|
/*
Facebook plugin for Miranda NG
Copyright © 2019 Miranda NG team
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#define FB_HOST_BAPI "https://b-api.facebook.com"
#define FACEBOOK_MESSAGE_LIMIT 100000
#include "../../../miranda-private-keys/Facebook/app_secret.h"
class FacebookProto;
struct AsyncHttpRequest : public MTHttpRequest<FacebookProto>
{
struct Param
{
Param(const char *p1, const char *p2) :
key(p1), val(p2)
{}
CMStringA key, val;
};
OBJLIST<Param> params;
AsyncHttpRequest();
void CalcSig();
};
AsyncHttpRequest *operator<<(AsyncHttpRequest *, const CHAR_PARAM &);
AsyncHttpRequest *operator<<(AsyncHttpRequest *, const INT_PARAM &);
class JsonReply
{
JSONNode *m_root = nullptr;
int m_errorCode = 0;
JSONNode *m_data = nullptr;
public:
JsonReply(NETLIBHTTPREQUEST *);
~JsonReply();
__forceinline JSONNode &data() const { return *m_data; }
__forceinline int error() const { return m_errorCode; }
};
class FacebookProto : public PROTO<FacebookProto>
{
AsyncHttpRequest* CreateRequest(const char *szName, const char *szMethod);
NETLIBHTTPREQUEST* ExecuteRequest(AsyncHttpRequest *pReq);
// MQTT functions
bool MqttConnect();
void MqttOpen();
HNETLIBCONN m_mqttConn;
// internal data
CMStringA m_szDeviceID; // stored, GUID that identifies this miranda's account
CMStringA m_szClientID; // stored, random alphanumeric string of 20 chars
__int64 m_uid; // stored, Facebook user id
__int64 m_iMqttId;
bool m_invisible;
bool m_bOnline;
CMStringA m_szAuthToken; // calculated
void OnLoggedOut();
void __cdecl ServerThread(void *);
public:
FacebookProto(const char *proto_name, const wchar_t *username);
~FacebookProto();
////////////////////////////////////////////////////////////////////////////////////////
// PROTO_INTERFACE
void OnModulesLoaded() override;
INT_PTR GetCaps(int type, MCONTACT hContact) override;
int SetStatus(int iNewStatus) override;
};
struct CMPlugin : public ACCPROTOPLUGIN<FacebookProto>
{
CMPlugin();
int Load() override;
};
|