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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
|
/*
Copyright © 2012-18 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"
#include "twitter.h"
#include "utility.h"
OAuthParameters mir_twitter::BuildSignedOAuthParameters(
const OAuthParameters& requestParameters,
const std::wstring& url,
const std::wstring& httpMethod,
const OAuthParameters *postData,
const std::wstring& consumerKey,
const std::wstring& consumerSecret,
const std::wstring& requestToken = L"",
const std::wstring& requestTokenSecret = L"",
const std::wstring& pin = L"")
{
wstring timestamp = OAuthCreateTimestamp();
wstring nonce = OAuthCreateNonce();
// create oauth requestParameters
OAuthParameters oauthParameters;
oauthParameters[L"oauth_timestamp"] = timestamp;
oauthParameters[L"oauth_nonce"] = nonce;
oauthParameters[L"oauth_version"] = L"1.0";
oauthParameters[L"oauth_signature_method"] = L"HMAC-SHA1";
oauthParameters[L"oauth_consumer_key"] = consumerKey;
oauthParameters[L"oauth_callback"] = L"oob";
// add the request token if found
if (!requestToken.empty())
oauthParameters[L"oauth_token"] = requestToken;
// add the authorization pin if found
if (!pin.empty()) {
oauthParameters[L"oauth_verifier"] = pin;
}
// create a parameter list containing both oauth and original parameters
// this will be used to create the parameter signature
OAuthParameters allParameters = requestParameters;
if (Compare(httpMethod, L"POST", false) && postData)
allParameters.insert(postData->begin(), postData->end());
allParameters.insert(oauthParameters.begin(), oauthParameters.end());
// prepare a signature base, a carefully formatted string containing
// all of the necessary information needed to generate a valid signature
wstring normalUrl = OAuthNormalizeUrl(url);
wstring normalizedParameters = OAuthNormalizeRequestParameters(allParameters);
wstring signatureBase = OAuthConcatenateRequestElements(httpMethod, normalUrl, normalizedParameters);
// obtain a signature and add it to header requestParameters
wstring signature = OAuthCreateSignature(signatureBase, consumerSecret, requestTokenSecret);
oauthParameters[L"oauth_signature"] = signature;
return oauthParameters;
}
wstring mir_twitter::UrlGetQuery(const wstring& url)
{
map<wstring, wstring> brokenURL = CrackURL(url);
wstring query = brokenURL[L"extraInfo"];
wstring::size_type q = query.find_first_of(L'?');
if (q != wstring::npos)
query = query.substr(q + 1);
wstring::size_type h = query.find_first_of(L'#');
if (h != wstring::npos)
query = query.substr(0, h);
return query;
}
// OAuthWebRequest used for all OAuth related queries
//
// consumerKey and consumerSecret - must be provided for every call, they identify the application
// oauthToken and oauthTokenSecret - need to be provided for every call, except for the first token request before authorizing
// pin - only used during authorization, when the user enters the PIN they received from the twitter website
wstring mir_twitter::OAuthWebRequestSubmit(
const wstring& url,
const wstring& httpMethod,
const OAuthParameters *postData,
const wstring& consumerKey,
const wstring& consumerSecret,
const wstring& oauthToken,
const wstring& oauthTokenSecret,
const wstring& pin)
{
wstring query = UrlGetQuery(url);
OAuthParameters originalParameters = ParseQueryString(query);
OAuthParameters oauthSignedParameters = BuildSignedOAuthParameters(
originalParameters,
url,
httpMethod, postData,
consumerKey, consumerSecret,
oauthToken, oauthTokenSecret,
pin);
return OAuthWebRequestSubmit(oauthSignedParameters, url);
}
wstring mir_twitter::OAuthWebRequestSubmit(const OAuthParameters ¶meters, const wstring&)
{
wstring oauthHeader = L"OAuth ";
for (auto &it : parameters) {
if (it != *parameters.begin())
oauthHeader += L",";
wstring pair;
pair += it.first + L"=\"" + it.second + L"\"";
oauthHeader += pair;
}
return oauthHeader;
}
// parameters must already be URL encoded before calling BuildQueryString
std::wstring mir_twitter::BuildQueryString(const OAuthParameters ¶meters)
{
wstring query;
for (auto &it : parameters) {
if (it != *parameters.begin())
query += L"&";
wstring pair;
pair += it.first + L"=" + it.second + L"";
query += pair;
}
return query;
}
wstring mir_twitter::OAuthConcatenateRequestElements(const wstring& httpMethod, wstring url, const wstring& parameters)
{
wstring escapedUrl = UrlEncode(url);
wstring escapedParameters = UrlEncode(parameters);
wstring ret = httpMethod + L"&" + escapedUrl + L"&" + escapedParameters;
return ret;
}
// CrackURL.. just basically pulls apart a url into a map of wstrings:
// scheme, domain, port, path, extraInfo, explicitPort
// explicitPort will be 0 or 1, 0 if there was no actual port in the url,
// and 1 if it was explicitely specified.
// eg "http://twitter.com/blah.htm" will give:
// http, twitter.com, 80, blah.htm, "", 0
// "https://twitter.com:989/blah.htm?boom" will give:
// https, twitter.com, 989, blah.htm?boom, ?boom, 1
map<wstring, wstring> mir_twitter::CrackURL(wstring url)
{
wstring scheme1, domain1, port1, path1, extraInfo, explicitPort;
vector<wstring> urlToks, urlToks2, extraInfoToks;
Split(url, urlToks, L':', false);
scheme1 = urlToks[0];
if (urlToks.size() == 2) { // if there is only 1 ":" in the url
if (Compare(scheme1, L"http", false)) {
port1 = L"80";
}
else {
port1 = L"443";
}
Split(urlToks[1], urlToks2, L'/', false);
domain1 = urlToks2[0];
explicitPort = L"0";
}
else if (urlToks.size() == 3) { // if there are 2 ":"s in the URL, ie a port is explicitly set
domain1 = urlToks[1].substr(2, urlToks[1].size());
Split(urlToks[2], urlToks2, L'/', false);
port1 = urlToks2[0];
explicitPort = L"1";
}
else ppro_->debugLogW(L"**CRACK - not a proper URL? doesn't have a colon. URL is %s", url.c_str());
for (size_t i = 1; i < urlToks2.size(); ++i) {
if (i > 1) {
path1 += L"/";
}
path1 += urlToks2[i];
}
wstring::size_type foundHash = path1.find(L"#");
wstring::size_type foundQ = path1.find(L"?");
if ((foundHash != wstring::npos) || (foundQ != wstring::npos)) { // if we've found a # or a ?...
if (foundHash == wstring::npos) { // if we didn't find a #, we must have found a ?
extraInfo = path1.substr(foundQ);
}
else if (foundQ == wstring::npos) { // if we didn't find a ?, we must have found a #
extraInfo = path1.substr(foundHash);
}
else { // we found both a # and a ?, whichever came first we grab the sub string from there
if (foundQ < foundHash) {
extraInfo = path1.substr(foundQ);
}
else {
extraInfo = path1.substr(foundHash);
}
}
}
else { // we have no # or ? in the path...
extraInfo = L"";
}
map<wstring, wstring> result;
result[L"scheme"] = scheme1;
result[L"domain"] = domain1;
result[L"port"] = port1;
result[L"path"] = path1;
result[L"extraInfo"] = extraInfo;
result[L"explicitPort"] = explicitPort;
return result;
}
wstring mir_twitter::OAuthNormalizeUrl(const wstring& url)
{
wstring normalUrl = url;
map<wstring, wstring> brokenURL = CrackURL(url);
wchar_t port[10] = {};
// The port number must only be included if it is non-standard
if (Compare(brokenURL[L"scheme"], L"http", false) && !(Compare(brokenURL[L"port"], L"80", false)) ||
(Compare(brokenURL[L"scheme"], L"https", false) && !(Compare(brokenURL[L"port"], L"443", false))))
{
mir_snwprintf(port, _countof(port), L":%s", brokenURL[L"port"].c_str());
}
// InternetCrackUrl includes ? and # elements in the path,
// which we need to strip off
wstring pathOnly = brokenURL[L"path"];
wstring::size_type q = pathOnly.find_first_of(L"#?");
if (q != wstring::npos)
pathOnly = pathOnly.substr(0, q);
return brokenURL[L"scheme"] + L"://" + brokenURL[L"domain"] + port + L"/" + pathOnly;
}
wstring mir_twitter::OAuthNormalizeRequestParameters(const OAuthParameters& requestParameters)
{
list<wstring> sorted;
for (OAuthParameters::const_iterator it = requestParameters.begin();
it != requestParameters.end();
++it) {
wstring param = it->first + L"=" + it->second;
sorted.push_back(param);
}
sorted.sort();
wstring params;
for (list<wstring>::iterator it = sorted.begin(); it != sorted.end(); ++it) {
if (params.size() > 0)
params += L"&";
params += *it;
}
return params;
}
OAuthParameters mir_twitter::ParseQueryString(const wstring& url)
{
OAuthParameters ret;
vector<wstring> queryParams;
Split(url, queryParams, L'&', false);
for (size_t i = 0; i < queryParams.size(); ++i) {
vector<wstring> paramElements;
Split(queryParams[i], paramElements, L'=', true);
_ASSERTE(paramElements.size() == 2);
if (paramElements.size() == 2)
ret[paramElements[0]] = paramElements[1];
}
return ret;
}
wstring mir_twitter::OAuthCreateNonce()
{
wchar_t ALPHANUMERIC[] = L"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
wstring nonce;
for (int i = 0; i <= 16; ++i)
nonce += ALPHANUMERIC[rand() % (_countof(ALPHANUMERIC) - 1)]; // don't count null terminator in array
return nonce;
}
wstring mir_twitter::OAuthCreateTimestamp()
{
__time64_t utcNow;
_time64(&utcNow);
_ASSERTE(utcNow != -1);
wchar_t buf[100] = {};
mir_snwprintf(buf, _countof(buf), L"%I64u", utcNow);
return buf;
}
wstring mir_twitter::OAuthCreateSignature(const wstring& signatureBase, const wstring& consumerSecret, const wstring& requestTokenSecret)
{
// URL encode key elements
wstring escapedConsumerSecret = UrlEncode(consumerSecret);
wstring escapedTokenSecret = UrlEncode(requestTokenSecret);
wstring key = escapedConsumerSecret + L"&" + escapedTokenSecret;
string keyBytes = WideToUTF8(key);
BYTE digest[MIR_SHA1_HASH_SIZE];
unsigned int len = sizeof(digest);
string data = WideToUTF8(signatureBase);
HMAC(EVP_sha1(), keyBytes.c_str(), keyBytes.size(), (PBYTE)data.c_str(), data.size(), digest, &len);
ptrA encoded(mir_base64_encode(digest, sizeof(digest)));
return UrlEncode((wchar_t*)_A2T(encoded));
}
|