summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/msn/msnsecureloginhandler.h
blob: 8f913fc783894b6663d2344dcbb08f0c73db8272 (plain)
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
/*
    msnsecureloginhandler.h - SSL login for MSN protocol

    Copyright (c) 2005      by Michaël Larouche       <michael.larouche@kdemail.net>

    Kopete    (c) 2002-2005 by the Kopete developers  <kopete-devel@kde.org>

    *************************************************************************
    *                                                                       *
    * 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.                                   *
    *                                                                       *
    *************************************************************************
*/
#ifndef MSNSECURELOGINHANDLER_H
#define MSNSECURELOGINHANDLER_H

#include <tqobject.h>

namespace KIO
{
	class Job;
	class MetaData;
}

/**
 * This class handle the login process. It connect to the .NET Password service and retrive the ticket(tweener) to login.
 * Use KIO.
 *
 * @author Michaël Larouche <michael.larouche@kdemail.net>
*/
class MSNSecureLoginHandler : public QObject
{
Q_OBJECT
public:
    MSNSecureLoginHandler(const TQString &accountId, const TQString &password, const TQString &authParameters);

    ~MSNSecureLoginHandler();

	void login();

signals:
	/**
	 * TODO: return to const TQString &
	 */
	void loginSuccesful(TQString ticket);
	void loginBadPassword();
	void loginFailed();

private slots:
	void slotLoginServerReceived(KIO::Job *);
	/**
	 * We have received our ticket to login.
	 */
	void slotTweenerReceived(KIO::Job *);

private:
	/**
	 * Store the password.
	 */
	TQString m_password;
	/**
	 * Store the accountId.
	 */
	TQString m_accountId;
	/**
	 * Store the authentification parameters
	 */
	TQString m_authentification;

	void displayMetaData(KIO::MetaData data);
};

#endif