summaryrefslogtreecommitdiff
path: root/indra/viewer_components/login/lllogin.h
blob: 0598b4e45724c3386b6bfb053e29ef966b0e34bc (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
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
/** 
 * @file lllogin.h
 *
 * $LicenseInfo:firstyear=2009&license=viewergpl$
 * 
 * Copyright (c) 2009, Linden Research, Inc.
 * 
 * Second Life Viewer Source Code
 * The source code in this file ("Source Code") is provided by Linden Lab
 * to you under the terms of the GNU General Public License, version 2.0
 * ("GPL"), unless you have obtained a separate licensing agreement
 * ("Other License"), formally executed by you and Linden Lab.  Terms of
 * the GPL can be found in doc/GPL-license.txt in this distribution, or
 * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
 * 
 * There are special exceptions to the terms and conditions of the GPL as
 * it is applied to this Source Code. View the full text of the exception
 * in the file doc/FLOSS-exception.txt in this software distribution, or
 * online at
 * http://secondlifegrid.net/programs/open_source/licensing/flossexception
 * 
 * By copying, modifying or distributing this software, you acknowledge
 * that you have read and understood your obligations described above,
 * and agree to abide by those obligations.
 * 
 * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
 * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
 * COMPLETENESS OR PERFORMANCE.
 * $/LicenseInfo$
 */

#ifndef LL_LLLOGIN_H
#define LL_LLLOGIN_H

#include <boost/scoped_ptr.hpp>

class LLSD;
class LLEventPump;

/**
 * @class LLLogin
 * @brief Class to encapsulate the action and state of grid login.
 */
class LLLogin
{
public:
	LLLogin();
	~LLLogin();

	/** 
	 * Make a connection to a grid.
	 * @param uri The 'well known and published' authentication URL.
	 * @param credentials LLSD data that contians the credentials.
	 * *NOTE:Mani The credential data can vary depending upon the authentication
	 * method used. The current interface matches the values passed to
	 * the XMLRPC login request.
	 {
		method			:	string, 
		first			:	string,
		last			:	string,
		passwd			:	string,
		start			:	string,
		skipoptional	:	bool,
		agree_to_tos	:	bool,
		read_critical	:	bool,
		last_exec_event	:	int,
		version			:	string,
		channel			:	string,
		mac				:	string,
		id0				:	string,
		options			:   [ strings ]
	 }
	 
	 */
	void connect(const std::string& uri, const LLSD& credentials);
	
    /** 
	 * Disconnect from a the current connection.
	 */
	void disconnect();

    /** 
	 * Retrieve the event pump from this login class.
	 */
	LLEventPump& getEventPump();

	/*
	Event API

	LLLogin will issue multiple events to it pump to indicate the 
	progression of states through login. The most important 
	states are "offline" and "online" which indicate auth failure 
	and auth success respectively.

	pump: login (tweaked)
	These are the events posted to the 'login' 
	event pump from the login module.
	{
		state		:	string, // See below for the list of states.
		progress	:   real // for progress bar.
		data		:   LLSD // Dependent upon state.
	}
	
	States for method 'login_to_simulator'
	offline - set initially state and upon failure. data is the server response.
	srvrequest - upon uri rewrite request. no data.
	authenticating - upon auth request. data, 'attempt' number and 'request' llsd.
	downloading - upon ack from auth server, before completion. no data
	online - upon auth success. data is server response.


	Dependencies:
	pump: LLAres 
	LLLogin makes a request for a SRV record from the uri provided by the connect method.
	The following event pump should exist to service that request.
	pump name: LLAres
	request = {
		op : "rewriteURI"
		uri : string
		reply : string

	pump: LLXMLRPCListener
	The request merely passes the credentials LLSD along, with one additional 
	member, 'reply', which is the string name of the event pump to reply on. 
	
	*/

private:
	class Impl;
	boost::scoped_ptr<Impl> mImpl;
};

#endif // LL_LLLOGIN_H