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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
|
/*
Copyright © 2012-24 Miranda NG team
Copyright © 2009 Jim Porter
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/>.
*/
#include "stdafx.h"
void CTwitterProto::AddToListWorker(void *pArg)
{
// TODO: what happens if there is an error?
if (pArg == nullptr)
return;
char *name = static_cast<char*>(pArg);
twitter_user user;
if (add_friend(name, user)) {
MCONTACT hContact = UsernameToHContact(name);
UpdateAvatar(hContact, user.profile_image_url.c_str());
}
mir_free(name);
}
MCONTACT CTwitterProto::AddToList(int, PROTOSEARCHRESULT *psr)
{
if (m_iStatus != ID_STATUS_ONLINE)
return 0;
ForkThread(&CTwitterProto::AddToListWorker, mir_utf8encodeW(psr->nick.w));
return AddToClientList(_T2A(psr->nick.w), "");
}
/////////////////////////////////////////////////////////////////////////////////////////
void CTwitterProto::UpdateInfoWorker(void *arg)
{
MCONTACT hContact = (MCONTACT)(DWORD_PTR)arg;
twitter_user user;
ptrA username(getStringA(hContact, TWITTER_KEY_UN));
if (username == NULL)
return;
{
mir_cslock s(twitter_lock_);
get_info(CMStringA(username), &user);
}
UpdateAvatar(hContact, user.profile_image_url.c_str(), true);
ProtoBroadcastAck(hContact, ACKTYPE_GETINFO, ACKRESULT_SUCCESS, nullptr);
}
int CTwitterProto::GetInfo(MCONTACT hContact, int info_type)
{
if (m_iStatus != ID_STATUS_ONLINE)
return 1;
if (!IsMyContact(hContact)) // Do nothing for chat rooms
return 1;
if (info_type == 0) { // From clicking "Update" in the Userinfo dialog
ForkThread(&CTwitterProto::UpdateInfoWorker, (void*)hContact);
return 0;
}
return 1;
}
/////////////////////////////////////////////////////////////////////////////////////////
struct search_query
{
search_query(const CMStringA &_query, bool _by_email) : query(_query), by_email(_by_email)
{
}
CMStringW query;
bool by_email;
};
void CTwitterProto::DoSearch(void *pArg)
{
if (pArg == nullptr)
return;
search_query *query = static_cast<search_query*>(pArg);
twitter_user info;
bool found ;
T2Utf p(query->query.c_str());
mir_cslock s(twitter_lock_);
if (query->by_email)
found = get_info_by_email(p.get(), &info);
else
found = get_info(p.get(), &info);
if (found) {
PROTOSEARCHRESULT psr = { sizeof(psr) };
psr.flags = PSR_UNICODE;
psr.nick.w = mir_a2u(info.username.c_str());
psr.firstName.w = mir_a2u(info.real_name.c_str());
ProtoBroadcastAck(0, ACKTYPE_SEARCH, ACKRESULT_DATA, (HANDLE)1, (LPARAM)&psr);
ProtoBroadcastAck(0, ACKTYPE_SEARCH, ACKRESULT_SUCCESS, (HANDLE)1, 0);
mir_free(psr.nick.w);
mir_free(psr.firstName.w);
}
else ProtoBroadcastAck(0, ACKTYPE_SEARCH, ACKRESULT_SUCCESS, (HANDLE)1, 0);
delete query;
}
HANDLE CTwitterProto::SearchBasic(const wchar_t *username)
{
ForkThread(&CTwitterProto::DoSearch, new search_query(username, false));
return (HANDLE)1;
}
HANDLE CTwitterProto::SearchByEmail(const wchar_t *email)
{
ForkThread(&CTwitterProto::DoSearch, new search_query(email, true));
return (HANDLE)1;
}
/////////////////////////////////////////////////////////////////////////////////////////
void CTwitterProto::GetAwayMsgWorker(void *arg)
{
MCONTACT hContact = (MCONTACT)(DWORD_PTR)arg;
if (hContact == 0)
return;
ptrW wszMsg(db_get_wsa(hContact, "CList", "StatusMsg"));
ProtoBroadcastAck(hContact, ACKTYPE_AWAYMSG, ACKRESULT_SUCCESS, (HANDLE)1, wszMsg);
}
HANDLE CTwitterProto::GetAwayMsg(MCONTACT hContact)
{
ForkThread(&CTwitterProto::GetAwayMsgWorker, (void*)hContact);
return (HANDLE)1;
}
bool CTwitterProto::OnContactDeleted(MCONTACT hContact, uint32_t)
{
if (m_iStatus != ID_STATUS_ONLINE)
return false;
ptrA szId(getStringA(hContact, TWITTER_KEY_UN));
if (szId) {
if (m_si)
DeleteChatContact(szId);
mir_cslock s(twitter_lock_);
remove_friend(szId.get()); // Be careful about this until Miranda is fixed
}
return true;
}
void CTwitterProto::OnMarkRead(MCONTACT hContact, MEVENT hDbEvent)
{
auto *pMark = (m_arChatMarks.find((CChatMark *)&hDbEvent));
if (pMark) {
mark_read(hContact, pMark->szId);
m_arChatMarks.remove(pMark);
}
}
/////////////////////////////////////////////////////////////////////////////////////////
bool CTwitterProto::IsMyContact(MCONTACT hContact, bool include_chat)
{
char *proto = Proto_GetBaseAccountName(hContact);
if (proto && mir_strcmp(m_szModuleName, proto) == 0) {
if (include_chat)
return true;
return !isChatRoom(hContact);
}
else return false;
}
MCONTACT CTwitterProto::UsernameToHContact(const char *name)
{
for (auto &hContact : AccContacts()) {
if (Contact::IsGroupChat(hContact))
continue;
if (getMStringA(hContact, TWITTER_KEY_UN) == name)
return hContact;
}
return 0;
}
MCONTACT CTwitterProto::FindContactById(const char *id)
{
for (auto &hContact : AccContacts()) {
if (Contact::IsGroupChat(hContact))
continue;
if (getMStringA(hContact, TWITTER_KEY_ID) == id)
return hContact;
}
return INVALID_CONTACT_ID;
}
MCONTACT CTwitterProto::AddToClientList(const char *name, const char *status)
{
// First, check if this contact exists
MCONTACT hContact = UsernameToHContact(name);
if (hContact)
return hContact;
if (m_si)
AddChatContact(name);
// If not, make a new contact!
hContact = db_add_contact();
Proto_AddToContact(hContact, m_szModuleName);
setString(hContact, TWITTER_KEY_UN, name);
setString(hContact, "Homepage", "https://twitter.com/" + CMStringA(name));
setWord(hContact, "Status", ID_STATUS_ONLINE);
db_set_utf(hContact, "CList", "StatusMsg", status);
Skin_PlaySound("TwitterNewContact");
Clist_SetGroup(hContact, getMStringW(TWITTER_KEY_GROUP));
return hContact;
}
|