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
|
/*
msnsecureloginhandler.cpp - SSL login for MSN protocol
Copyright (c) 2005 by Michaƫl Larouche <[email protected]>
Kopete (c) 2002-2005 by the Kopete developers <[email protected]>
*************************************************************************
* *
* 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. *
* *
*************************************************************************
*/
#include "msnsecureloginhandler.h"
// Qt includes
#include <qregexp.h>
// KDE includes
#include <kio/job.h>
#include <kurl.h>
#include <kdebug.h>
MSNSecureLoginHandler::MSNSecureLoginHandler(const QString &accountId, const QString &password, const QString &authParameters)
: m_password(password), m_accountId(accountId), m_authentification(authParameters)
{
}
MSNSecureLoginHandler::~MSNSecureLoginHandler()
{
// kdDebug(14140) << k_funcinfo << endl;
}
void MSNSecureLoginHandler::login()
{
// Retrive the login server.
// Do a reload and don't show the progress.
KIO::Job *getLoginServer = KIO::get(KURL("https://nexus.passport.com/rdr/pprdr.asp"), true, false);
getLoginServer->addMetaData("cookies", "manual");
getLoginServer->addMetaData("cache", "reload");
getLoginServer->addMetaData("PropagateHttpHeader", "true");
connect(getLoginServer, SIGNAL(result(KIO::Job *)), this, SLOT(slotLoginServerReceived(KIO::Job* )));
}
void MSNSecureLoginHandler::slotLoginServerReceived(KIO::Job *loginJob)
{
if(!loginJob->error())
{
// Retrive the HTTP header
QString httpHeaders = loginJob->queryMetaData("HTTP-Headers");
// Get the login URL using QRegExp
QRegExp rx("PassportURLs: DARealm=(.*),DALogin=(.*),DAReg=");
rx.search(httpHeaders);
// Set the loginUrl and loginServer
QString loginUrl = rx.cap(2);
QString loginServer = loginUrl.section('/', 0, 0);
kdDebug(14140) << k_funcinfo << loginServer << endl;
QString authURL = "https://" + loginUrl;
KIO::Job *authJob = KIO::get(KURL(authURL), true, false);
authJob->addMetaData("cookies", "manual");
QString authRequest = "Authorization: Passport1.4 "
"OrgVerb=GET,"
"OrgURL=http%3A%2F%2Fmessenger%2Emsn%2Ecom,"
"sign-in=" + KURL::encode_string(m_accountId) +
",pwd=" + KURL::encode_string( m_password ).replace(',',"%2C") +
"," + m_authentification + "\r\n";
// warning, this debug contains the password
// kdDebug(14140) << k_funcinfo << "Auth request: " << authRequest << endl;
authJob->addMetaData("customHTTPHeader", authRequest);
authJob->addMetaData("SendLanguageSettings", "false");
authJob->addMetaData("PropagateHttpHeader", "true");
authJob->addMetaData("cookies", "manual");
authJob->addMetaData("cache", "reload");
connect(authJob, SIGNAL(result(KIO::Job *)), this, SLOT(slotTweenerReceived(KIO::Job* )));
}
else
{
kdDebug(14140) << k_funcinfo << loginJob->errorString() << endl;
emit loginFailed();
}
}
void MSNSecureLoginHandler::slotTweenerReceived(KIO::Job *authJob)
{
if(!authJob->error())
{
QString httpHeaders = authJob->queryMetaData("HTTP-Headers");
// kdDebug(14140) << k_funcinfo << "HTTP headers: " << httpHeaders << endl;
// Check if we get "401 Unauthorized", thats means it's a bad password.
if(httpHeaders.contains(QString::fromUtf8("401 Unauthorized")))
{
// kdDebug(14140) << k_funcinfo << "MSN Login Bad password." << endl;
emit loginBadPassword();
}
else
{
QRegExp rx("from-PP='(.*)'");
rx.search(httpHeaders);
QString ticket = rx.cap(1);
// kdDebug(14140) << k_funcinfo << "Received ticket: " << ticket << endl;
emit loginSuccesful(ticket);
}
}
else
{
kdDebug(14140) << k_funcinfo << authJob->errorString() << endl;
emit loginFailed();
}
}
#include "msnsecureloginhandler.moc"
|