1020 lines
26 KiB
C++
1020 lines
26 KiB
C++
/**
|
|
* @file llpanellogin.cpp
|
|
* @brief Login dialog and logo display
|
|
*
|
|
* $LicenseInfo:firstyear=2002&license=viewergpl$
|
|
*
|
|
* Copyright (c) 2002-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$
|
|
*/
|
|
|
|
#include "llviewerprecompiledheaders.h"
|
|
|
|
#include "llpanellogin.h"
|
|
|
|
#include "indra_constants.h" // for key and mask constants
|
|
#include "llfloaterreg.h"
|
|
#include "llfontgl.h"
|
|
#include "llmd5.h"
|
|
#include "llsecondlifeurls.h"
|
|
#include "llversionviewer.h"
|
|
#include "v4color.h"
|
|
|
|
#include "llbutton.h"
|
|
#include "llcheckboxctrl.h"
|
|
#include "llcommandhandler.h" // for secondlife:///app/login/
|
|
#include "llcombobox.h"
|
|
#include "llcurl.h"
|
|
#include "llviewercontrol.h"
|
|
#include "llfloaterpreference.h"
|
|
#include "llfocusmgr.h"
|
|
#include "lllineeditor.h"
|
|
#include "llstartup.h"
|
|
#include "lltextbox.h"
|
|
#include "llui.h"
|
|
#include "lluiconstants.h"
|
|
#include "llurlsimstring.h"
|
|
#include "llviewerbuild.h"
|
|
#include "llviewerhelp.h"
|
|
#include "llviewertexturelist.h"
|
|
#include "llviewermenu.h" // for handle_preferences()
|
|
#include "llviewernetwork.h"
|
|
#include "llviewerwindow.h" // to link into child list
|
|
#include "llnotify.h"
|
|
#include "llurlsimstring.h"
|
|
#include "lluictrlfactory.h"
|
|
#include "llhttpclient.h"
|
|
#include "llweb.h"
|
|
#include "llmediactrl.h"
|
|
#include "llrootview.h"
|
|
|
|
|
|
#include "llfloatertos.h"
|
|
#include "lltrans.h"
|
|
#include "llglheaders.h"
|
|
|
|
#define USE_VIEWER_AUTH 0
|
|
|
|
const S32 BLACK_BORDER_HEIGHT = 160;
|
|
const S32 MAX_PASSWORD = 16;
|
|
|
|
LLPanelLogin *LLPanelLogin::sInstance = NULL;
|
|
BOOL LLPanelLogin::sCapslockDidNotification = FALSE;
|
|
|
|
|
|
class LLLoginRefreshHandler : public LLCommandHandler
|
|
{
|
|
public:
|
|
// don't allow from external browsers
|
|
LLLoginRefreshHandler() : LLCommandHandler("login_refresh", UNTRUSTED_BLOCK) { }
|
|
bool handle(const LLSD& tokens, const LLSD& query_map, LLMediaCtrl* web)
|
|
{
|
|
if (LLStartUp::getStartupState() < STATE_LOGIN_CLEANUP)
|
|
{
|
|
LLPanelLogin::loadLoginPage();
|
|
}
|
|
return true;
|
|
}
|
|
};
|
|
|
|
LLLoginRefreshHandler gLoginRefreshHandler;
|
|
|
|
|
|
|
|
// helper class that trys to download a URL from a web site and calls a method
|
|
// on parent class indicating if the web server is working or not
|
|
class LLIamHereLogin : public LLHTTPClient::Responder
|
|
{
|
|
private:
|
|
LLIamHereLogin( LLPanelLogin* parent ) :
|
|
mParent( parent )
|
|
{}
|
|
|
|
LLPanelLogin* mParent;
|
|
|
|
public:
|
|
static boost::intrusive_ptr< LLIamHereLogin > build( LLPanelLogin* parent )
|
|
{
|
|
return boost::intrusive_ptr< LLIamHereLogin >( new LLIamHereLogin( parent ) );
|
|
};
|
|
|
|
virtual void setParent( LLPanelLogin* parentIn )
|
|
{
|
|
mParent = parentIn;
|
|
};
|
|
|
|
// We don't actually expect LLSD back, so need to override completedRaw
|
|
virtual void completedRaw(U32 status, const std::string& reason,
|
|
const LLChannelDescriptors& channels,
|
|
const LLIOPipe::buffer_ptr_t& buffer)
|
|
{
|
|
completed(status, reason, LLSD()); // will call result() or error()
|
|
}
|
|
|
|
virtual void result( const LLSD& content )
|
|
{
|
|
if ( mParent )
|
|
mParent->setSiteIsAlive( true );
|
|
};
|
|
|
|
virtual void error( U32 status, const std::string& reason )
|
|
{
|
|
if ( mParent )
|
|
mParent->setSiteIsAlive( false );
|
|
};
|
|
};
|
|
|
|
// this is global and not a class member to keep crud out of the header file
|
|
namespace {
|
|
boost::intrusive_ptr< LLIamHereLogin > gResponsePtr = 0;
|
|
};
|
|
|
|
void set_start_location(LLUICtrl* ctrl, void* data)
|
|
{
|
|
LLURLSimString::setString(ctrl->getValue().asString());
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
// Public methods
|
|
//---------------------------------------------------------------------------
|
|
LLPanelLogin::LLPanelLogin(const LLRect &rect,
|
|
BOOL show_server,
|
|
void (*callback)(S32 option, void* user_data),
|
|
void *cb_data)
|
|
: LLPanel(),
|
|
mLogoImage(),
|
|
mCallback(callback),
|
|
mCallbackData(cb_data),
|
|
mHtmlAvailable( TRUE )
|
|
{
|
|
setFocusRoot(TRUE);
|
|
|
|
setBackgroundVisible(FALSE);
|
|
setBackgroundOpaque(TRUE);
|
|
|
|
// instance management
|
|
if (LLPanelLogin::sInstance)
|
|
{
|
|
llwarns << "Duplicate instance of login view deleted" << llendl;
|
|
// Don't leave bad pointer in gFocusMgr
|
|
gFocusMgr.setDefaultKeyboardFocus(NULL);
|
|
|
|
delete LLPanelLogin::sInstance;
|
|
}
|
|
|
|
LLPanelLogin::sInstance = this;
|
|
|
|
// add to front so we are the bottom-most child
|
|
gViewerWindow->getRootView()->addChildInBack(this);
|
|
|
|
// Logo
|
|
mLogoImage = LLUI::getUIImage("startup_logo.j2c");
|
|
|
|
LLUICtrlFactory::getInstance()->buildPanel(this, "panel_login.xml");
|
|
|
|
#if USE_VIEWER_AUTH
|
|
//leave room for the login menu bar
|
|
setRect(LLRect(0, rect.getHeight()-18, rect.getWidth(), 0));
|
|
#endif
|
|
// Legacy login web page is hidden under the menu bar.
|
|
// Adjust reg-in-client web browser widget to not be hidden.
|
|
if (gSavedSettings.getBOOL("RegInClient"))
|
|
{
|
|
reshape(rect.getWidth(), rect.getHeight() - MENU_BAR_HEIGHT);
|
|
}
|
|
else
|
|
{
|
|
reshape(rect.getWidth(), rect.getHeight());
|
|
}
|
|
|
|
#if !USE_VIEWER_AUTH
|
|
childSetPrevalidate("first_name_edit", LLLineEditor::prevalidatePrintableNoSpace);
|
|
childSetPrevalidate("last_name_edit", LLLineEditor::prevalidatePrintableNoSpace);
|
|
|
|
childSetCommitCallback("password_edit", mungePassword, this);
|
|
getChild<LLLineEditor>("password_edit")->setKeystrokeCallback(onPassKey, this);
|
|
|
|
// change z sort of clickable text to be behind buttons
|
|
sendChildToBack(getChildView("channel_text"));
|
|
sendChildToBack(getChildView("forgot_password_text"));
|
|
|
|
LLLineEditor* edit = getChild<LLLineEditor>("password_edit");
|
|
if (edit) edit->setDrawAsterixes(TRUE);
|
|
|
|
LLComboBox* combo = getChild<LLComboBox>("start_location_combo");
|
|
|
|
std::string sim_string = LLURLSimString::sInstance.mSimString;
|
|
if (!sim_string.empty())
|
|
{
|
|
// Replace "<Type region name>" with this region name
|
|
combo->remove(2);
|
|
combo->add( sim_string );
|
|
combo->setTextEntry(sim_string);
|
|
combo->setCurrentByIndex( 2 );
|
|
}
|
|
|
|
combo->setCommitCallback( &set_start_location, NULL );
|
|
|
|
LLComboBox* server_choice_combo = sInstance->getChild<LLComboBox>("server_combo");
|
|
server_choice_combo->setCommitCallback(onSelectServer, NULL);
|
|
server_choice_combo->setFocusLostCallback(boost::bind(onServerComboLostFocus, _1));
|
|
|
|
childSetAction("connect_btn", onClickConnect, this);
|
|
|
|
getChild<LLPanel>("login_widgets")->setDefaultBtn("connect_btn");
|
|
|
|
std::string channel = gSavedSettings.getString("VersionChannelName");
|
|
std::string version = llformat("%d.%d.%d (%d)",
|
|
LL_VERSION_MAJOR,
|
|
LL_VERSION_MINOR,
|
|
LL_VERSION_PATCH,
|
|
LL_VIEWER_BUILD );
|
|
LLTextBox* channel_text = getChild<LLTextBox>("channel_text");
|
|
channel_text->setTextArg("[CHANNEL]", channel); // though not displayed
|
|
channel_text->setTextArg("[VERSION]", version);
|
|
channel_text->setClickedCallback(onClickVersion, this);
|
|
|
|
LLTextBox* forgot_password_text = getChild<LLTextBox>("forgot_password_text");
|
|
forgot_password_text->setClickedCallback(onClickForgotPassword, NULL);
|
|
|
|
LLTextBox* create_new_account_text = getChild<LLTextBox>("create_new_account_text");
|
|
create_new_account_text->setClickedCallback(onClickNewAccount, NULL);
|
|
#endif
|
|
|
|
// get the web browser control
|
|
LLMediaCtrl* web_browser = getChild<LLMediaCtrl>("login_html");
|
|
web_browser->addObserver(this);
|
|
|
|
// Need to handle login secondlife:///app/ URLs
|
|
web_browser->setTrusted( true );
|
|
|
|
// don't make it a tab stop until SL-27594 is fixed
|
|
web_browser->setTabStop(FALSE);
|
|
// web_browser->navigateToLocalPage( "loading", "loading.html" );
|
|
|
|
if (gSavedSettings.getBOOL("RegInClient"))
|
|
{
|
|
// need to follow links in the internal browser
|
|
web_browser->setOpenInExternalBrowser( false );
|
|
|
|
getChild<LLView>("login_widgets")->setVisible(false);
|
|
}
|
|
else
|
|
{
|
|
// make links open in external browser
|
|
web_browser->setOpenInExternalBrowser( true );
|
|
|
|
reshapeBrowser();
|
|
}
|
|
|
|
// kick off a request to grab the url manually
|
|
gResponsePtr = LLIamHereLogin::build( this );
|
|
std::string login_page = gSavedSettings.getString("LoginPage");
|
|
if (login_page.empty())
|
|
{
|
|
login_page = getString( "real_url" );
|
|
}
|
|
LLHTTPClient::head( login_page, gResponsePtr );
|
|
|
|
#if !USE_VIEWER_AUTH
|
|
// Initialize visibility (and don't force visibility - use prefs)
|
|
refreshLocation( false );
|
|
#endif
|
|
|
|
}
|
|
|
|
// force the size to be correct (XML doesn't seem to be sufficient to do this)
|
|
// (with some padding so the other login screen doesn't show through)
|
|
void LLPanelLogin::reshapeBrowser()
|
|
{
|
|
LLMediaCtrl* web_browser = getChild<LLMediaCtrl>("login_html");
|
|
LLRect rect = gViewerWindow->getWindowRectScaled();
|
|
LLRect html_rect;
|
|
#if USE_VIEWER_AUTH
|
|
html_rect.setCenterAndSize(
|
|
rect.getCenterX() - 2, rect.getCenterY(),
|
|
rect.getWidth() + 6, rect.getHeight());
|
|
#else
|
|
html_rect.setCenterAndSize(
|
|
rect.getCenterX() - 2, rect.getCenterY() + 40,
|
|
rect.getWidth() + 6, rect.getHeight() - 78 );
|
|
#endif
|
|
web_browser->setRect( html_rect );
|
|
web_browser->reshape( html_rect.getWidth(), html_rect.getHeight(), TRUE );
|
|
reshape( rect.getWidth(), rect.getHeight(), 1 );
|
|
}
|
|
|
|
void LLPanelLogin::setSiteIsAlive( bool alive )
|
|
{
|
|
LLMediaCtrl* web_browser = getChild<LLMediaCtrl>("login_html");
|
|
// if the contents of the site was retrieved
|
|
if ( alive )
|
|
{
|
|
if ( web_browser )
|
|
{
|
|
loadLoginPage();
|
|
|
|
// mark as available
|
|
mHtmlAvailable = TRUE;
|
|
}
|
|
}
|
|
else
|
|
// the site is not available (missing page, server down, other badness)
|
|
{
|
|
#if !USE_VIEWER_AUTH
|
|
if ( web_browser )
|
|
{
|
|
// hide browser control (revealing default one)
|
|
web_browser->setVisible( FALSE );
|
|
|
|
// mark as unavailable
|
|
mHtmlAvailable = FALSE;
|
|
}
|
|
#else
|
|
|
|
if ( web_browser )
|
|
{
|
|
web_browser->navigateToLocalPage( "loading-error" , "index.html" );
|
|
|
|
// mark as available
|
|
mHtmlAvailable = TRUE;
|
|
}
|
|
#endif
|
|
}
|
|
}
|
|
|
|
void LLPanelLogin::mungePassword(LLUICtrl* caller, void* user_data)
|
|
{
|
|
LLPanelLogin* self = (LLPanelLogin*)user_data;
|
|
LLLineEditor* editor = (LLLineEditor*)caller;
|
|
std::string password = editor->getText();
|
|
|
|
// Re-md5 if we've changed at all
|
|
if (password != self->mIncomingPassword)
|
|
{
|
|
LLMD5 pass((unsigned char *)password.c_str());
|
|
char munged_password[MD5HEX_STR_SIZE];
|
|
pass.hex_digest(munged_password);
|
|
self->mMungedPassword = munged_password;
|
|
}
|
|
}
|
|
|
|
LLPanelLogin::~LLPanelLogin()
|
|
{
|
|
LLPanelLogin::sInstance = NULL;
|
|
|
|
// tell the responder we're not here anymore
|
|
if ( gResponsePtr )
|
|
gResponsePtr->setParent( 0 );
|
|
|
|
//// We know we're done with the image, so be rid of it.
|
|
//gTextureList.deleteImage( mLogoImage );
|
|
}
|
|
|
|
// virtual
|
|
void LLPanelLogin::draw()
|
|
{
|
|
glPushMatrix();
|
|
{
|
|
F32 image_aspect = 1.333333f;
|
|
F32 view_aspect = (F32)getRect().getWidth() / (F32)getRect().getHeight();
|
|
// stretch image to maintain aspect ratio
|
|
if (image_aspect > view_aspect)
|
|
{
|
|
glTranslatef(-0.5f * (image_aspect / view_aspect - 1.f) * getRect().getWidth(), 0.f, 0.f);
|
|
glScalef(image_aspect / view_aspect, 1.f, 1.f);
|
|
}
|
|
|
|
S32 width = getRect().getWidth();
|
|
S32 height = getRect().getHeight();
|
|
|
|
if ( mHtmlAvailable )
|
|
{
|
|
#if !USE_VIEWER_AUTH
|
|
if (getChild<LLView>("login_widgets")->getVisible())
|
|
{
|
|
// draw a background box in black
|
|
gl_rect_2d( 0, height - 264, width, 264, LLColor4::black );
|
|
// draw the bottom part of the background image
|
|
// just the blue background to the native client UI
|
|
mLogoImage->draw(0, -264, width + 8, mLogoImage->getHeight());
|
|
}
|
|
#endif
|
|
}
|
|
else
|
|
{
|
|
// the HTML login page is not available so default to the original screen
|
|
S32 offscreen_part = height / 3;
|
|
mLogoImage->draw(0, -offscreen_part, width, height+offscreen_part);
|
|
};
|
|
}
|
|
glPopMatrix();
|
|
|
|
LLPanel::draw();
|
|
}
|
|
|
|
// virtual
|
|
BOOL LLPanelLogin::handleKeyHere(KEY key, MASK mask)
|
|
{
|
|
if (( KEY_RETURN == key ) && (MASK_ALT == mask))
|
|
{
|
|
gViewerWindow->toggleFullscreen(FALSE);
|
|
return TRUE;
|
|
}
|
|
|
|
if ( KEY_F1 == key )
|
|
{
|
|
LLViewerHelp* vhelp = LLViewerHelp::getInstance();
|
|
vhelp->showTopic(vhelp->getTopicFromFocus());
|
|
return TRUE;
|
|
}
|
|
|
|
return LLPanel::handleKeyHere(key, mask);
|
|
}
|
|
|
|
// virtual
|
|
void LLPanelLogin::setFocus(BOOL b)
|
|
{
|
|
if(b != hasFocus())
|
|
{
|
|
if(b)
|
|
{
|
|
LLPanelLogin::giveFocus();
|
|
}
|
|
else
|
|
{
|
|
LLPanel::setFocus(b);
|
|
}
|
|
}
|
|
}
|
|
|
|
// static
|
|
void LLPanelLogin::giveFocus()
|
|
{
|
|
#if USE_VIEWER_AUTH
|
|
if (sInstance)
|
|
{
|
|
sInstance->setFocus(TRUE);
|
|
}
|
|
#else
|
|
if( sInstance )
|
|
{
|
|
// Grab focus and move cursor to first blank input field
|
|
std::string first = sInstance->childGetText("first_name_edit");
|
|
std::string pass = sInstance->childGetText("password_edit");
|
|
|
|
BOOL have_first = !first.empty();
|
|
BOOL have_pass = !pass.empty();
|
|
|
|
LLLineEditor* edit = NULL;
|
|
if (have_first && !have_pass)
|
|
{
|
|
// User saved his name but not his password. Move
|
|
// focus to password field.
|
|
edit = sInstance->getChild<LLLineEditor>("password_edit");
|
|
}
|
|
else
|
|
{
|
|
// User doesn't have a name, so start there.
|
|
edit = sInstance->getChild<LLLineEditor>("first_name_edit");
|
|
}
|
|
|
|
if (edit)
|
|
{
|
|
edit->setFocus(TRUE);
|
|
edit->selectAll();
|
|
}
|
|
}
|
|
#endif
|
|
}
|
|
|
|
// static
|
|
void LLPanelLogin::showLoginWidgets()
|
|
{
|
|
sInstance->childSetVisible("login_widgets", true);
|
|
LLMediaCtrl* web_browser = sInstance->getChild<LLMediaCtrl>("login_html");
|
|
web_browser->setOpenInExternalBrowser( true );
|
|
sInstance->reshapeBrowser();
|
|
// *TODO: Append all the usual login parameters, like first_login=Y etc.
|
|
std::string splash_screen_url = sInstance->getString("real_url");
|
|
web_browser->navigateTo( splash_screen_url, "text/html" );
|
|
LLUICtrl* first_name_edit = sInstance->getChild<LLUICtrl>("first_name_edit");
|
|
first_name_edit->setFocus(TRUE);
|
|
}
|
|
|
|
// static
|
|
void LLPanelLogin::show(const LLRect &rect,
|
|
BOOL show_server,
|
|
void (*callback)(S32 option, void* user_data),
|
|
void* callback_data)
|
|
{
|
|
new LLPanelLogin(rect, show_server, callback, callback_data);
|
|
|
|
if( !gFocusMgr.getKeyboardFocus() )
|
|
{
|
|
// Grab focus and move cursor to first enabled control
|
|
sInstance->setFocus(TRUE);
|
|
}
|
|
|
|
// Make sure that focus always goes here (and use the latest sInstance that was just created)
|
|
gFocusMgr.setDefaultKeyboardFocus(sInstance);
|
|
}
|
|
|
|
// static
|
|
void LLPanelLogin::setFields(const std::string& firstname,
|
|
const std::string& lastname,
|
|
const std::string& password)
|
|
{
|
|
if (!sInstance)
|
|
{
|
|
llwarns << "Attempted fillFields with no login view shown" << llendl;
|
|
return;
|
|
}
|
|
|
|
sInstance->childSetText("first_name_edit", firstname);
|
|
sInstance->childSetText("last_name_edit", lastname);
|
|
|
|
// Max "actual" password length is 16 characters.
|
|
// Hex digests are always 32 characters.
|
|
if (password.length() == 32)
|
|
{
|
|
// This is a MD5 hex digest of a password.
|
|
// We don't actually use the password input field,
|
|
// fill it with MAX_PASSWORD characters so we get a
|
|
// nice row of asterixes.
|
|
const std::string filler("123456789!123456");
|
|
sInstance->childSetText("password_edit", filler);
|
|
sInstance->mIncomingPassword = filler;
|
|
sInstance->mMungedPassword = password;
|
|
}
|
|
else
|
|
{
|
|
// this is a normal text password
|
|
sInstance->childSetText("password_edit", password);
|
|
sInstance->mIncomingPassword = password;
|
|
LLMD5 pass((unsigned char *)password.c_str());
|
|
char munged_password[MD5HEX_STR_SIZE];
|
|
pass.hex_digest(munged_password);
|
|
sInstance->mMungedPassword = munged_password;
|
|
}
|
|
}
|
|
|
|
|
|
// static
|
|
void LLPanelLogin::addServer(const std::string& server, S32 domain_name)
|
|
{
|
|
if (!sInstance)
|
|
{
|
|
llwarns << "Attempted addServer with no login view shown" << llendl;
|
|
return;
|
|
}
|
|
|
|
LLComboBox* combo = sInstance->getChild<LLComboBox>("server_combo");
|
|
combo->add(server, LLSD(domain_name) );
|
|
combo->setCurrentByIndex(0);
|
|
}
|
|
|
|
// static
|
|
void LLPanelLogin::getFields(std::string *firstname,
|
|
std::string *lastname,
|
|
std::string *password)
|
|
{
|
|
if (!sInstance)
|
|
{
|
|
llwarns << "Attempted getFields with no login view shown" << llendl;
|
|
return;
|
|
}
|
|
|
|
*firstname = sInstance->childGetText("first_name_edit");
|
|
LLStringUtil::trim(*firstname);
|
|
|
|
*lastname = sInstance->childGetText("last_name_edit");
|
|
LLStringUtil::trim(*lastname);
|
|
|
|
*password = sInstance->mMungedPassword;
|
|
}
|
|
|
|
// static
|
|
BOOL LLPanelLogin::isGridComboDirty()
|
|
{
|
|
BOOL user_picked = FALSE;
|
|
if (!sInstance)
|
|
{
|
|
llwarns << "Attempted getServer with no login view shown" << llendl;
|
|
}
|
|
else
|
|
{
|
|
LLComboBox* combo = sInstance->getChild<LLComboBox>("server_combo");
|
|
user_picked = combo->isDirty();
|
|
}
|
|
return user_picked;
|
|
}
|
|
|
|
// static
|
|
void LLPanelLogin::getLocation(std::string &location)
|
|
{
|
|
if (!sInstance)
|
|
{
|
|
llwarns << "Attempted getLocation with no login view shown" << llendl;
|
|
return;
|
|
}
|
|
|
|
LLComboBox* combo = sInstance->getChild<LLComboBox>("start_location_combo");
|
|
location = combo->getValue().asString();
|
|
}
|
|
|
|
// static
|
|
void LLPanelLogin::refreshLocation( bool force_visible )
|
|
{
|
|
if (!sInstance) return;
|
|
|
|
#if USE_VIEWER_AUTH
|
|
loadLoginPage();
|
|
#else
|
|
BOOL show_start = TRUE;
|
|
|
|
if ( ! force_visible )
|
|
{
|
|
// Don't show on first run after install
|
|
// Otherwise ShowStartLocation defaults to true.
|
|
show_start = gSavedSettings.getBOOL("ShowStartLocation")
|
|
&& !gSavedSettings.getBOOL("FirstRunThisInstall");
|
|
}
|
|
|
|
sInstance->childSetVisible("start_location_combo", show_start);
|
|
sInstance->childSetVisible("start_location_text", show_start);
|
|
|
|
#if LL_RELEASE_FOR_DOWNLOAD
|
|
BOOL show_server = gSavedSettings.getBOOL("ForceShowGrid");
|
|
sInstance->childSetVisible("server_combo", show_server);
|
|
#else
|
|
sInstance->childSetVisible("server_combo", TRUE);
|
|
#endif
|
|
|
|
#endif
|
|
}
|
|
|
|
// static
|
|
void LLPanelLogin::closePanel()
|
|
{
|
|
if (sInstance)
|
|
{
|
|
gViewerWindow->getRootView()->removeChild( LLPanelLogin::sInstance );
|
|
|
|
gFocusMgr.setDefaultKeyboardFocus(NULL);
|
|
|
|
delete sInstance;
|
|
sInstance = NULL;
|
|
}
|
|
}
|
|
|
|
// static
|
|
void LLPanelLogin::setAlwaysRefresh(bool refresh)
|
|
{
|
|
if (LLStartUp::getStartupState() >= STATE_LOGIN_CLEANUP) return;
|
|
|
|
LLMediaCtrl* web_browser = sInstance->getChild<LLMediaCtrl>("login_html");
|
|
|
|
if (web_browser)
|
|
{
|
|
web_browser->setAlwaysRefresh(refresh);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
void LLPanelLogin::loadLoginPage()
|
|
{
|
|
if (!sInstance) return;
|
|
|
|
std::ostringstream oStr;
|
|
|
|
std::string login_page = gSavedSettings.getString("LoginPage");
|
|
if (login_page.empty())
|
|
{
|
|
login_page = sInstance->getString( "real_url" );
|
|
}
|
|
oStr << login_page;
|
|
|
|
// Use the right delimeter depending on how LLURI parses the URL
|
|
LLURI login_page_uri = LLURI(login_page);
|
|
std::string first_query_delimiter = "&";
|
|
if (login_page_uri.queryMap().size() == 0)
|
|
{
|
|
first_query_delimiter = "?";
|
|
}
|
|
|
|
// Language
|
|
std::string language = LLUI::getLanguage();
|
|
oStr << first_query_delimiter<<"lang=" << language;
|
|
|
|
// First Login?
|
|
if (gSavedSettings.getBOOL("FirstLoginThisInstall"))
|
|
{
|
|
oStr << "&firstlogin=TRUE";
|
|
}
|
|
|
|
// Channel and Version
|
|
std::string version = llformat("%d.%d.%d (%d)",
|
|
LL_VERSION_MAJOR, LL_VERSION_MINOR, LL_VERSION_PATCH, LL_VIEWER_BUILD);
|
|
|
|
char* curl_channel = curl_escape(gSavedSettings.getString("VersionChannelName").c_str(), 0);
|
|
char* curl_version = curl_escape(version.c_str(), 0);
|
|
|
|
oStr << "&channel=" << curl_channel;
|
|
oStr << "&version=" << curl_version;
|
|
|
|
curl_free(curl_channel);
|
|
curl_free(curl_version);
|
|
|
|
// Grid
|
|
char* curl_grid = curl_escape(LLViewerLogin::getInstance()->getGridLabel().c_str(), 0);
|
|
oStr << "&grid=" << curl_grid;
|
|
curl_free(curl_grid);
|
|
|
|
gViewerWindow->setMenuBackgroundColor(false, !LLViewerLogin::getInstance()->isInProductionGrid());
|
|
gLoginMenuBarView->setBackgroundColor(gMenuBarView->getBackgroundColor());
|
|
|
|
|
|
#if USE_VIEWER_AUTH
|
|
LLURLSimString::sInstance.parse();
|
|
|
|
std::string location;
|
|
std::string region;
|
|
std::string password;
|
|
|
|
if (LLURLSimString::parse())
|
|
{
|
|
std::ostringstream oRegionStr;
|
|
location = "specify";
|
|
oRegionStr << LLURLSimString::sInstance.mSimName << "/" << LLURLSimString::sInstance.mX << "/"
|
|
<< LLURLSimString::sInstance.mY << "/"
|
|
<< LLURLSimString::sInstance.mZ;
|
|
region = oRegionStr.str();
|
|
}
|
|
else
|
|
{
|
|
location = gSavedSettings.getString("LoginLocation");
|
|
}
|
|
|
|
std::string firstname, lastname;
|
|
|
|
if(gSavedSettings.getLLSD("UserLoginInfo").size() == 3)
|
|
{
|
|
LLSD cmd_line_login = gSavedSettings.getLLSD("UserLoginInfo");
|
|
firstname = cmd_line_login[0].asString();
|
|
lastname = cmd_line_login[1].asString();
|
|
password = cmd_line_login[2].asString();
|
|
}
|
|
|
|
if (firstname.empty())
|
|
{
|
|
firstname = gSavedSettings.getString("FirstName");
|
|
}
|
|
|
|
if (lastname.empty())
|
|
{
|
|
lastname = gSavedSettings.getString("LastName");
|
|
}
|
|
|
|
char* curl_region = curl_escape(region.c_str(), 0);
|
|
|
|
oStr <<"firstname=" << firstname <<
|
|
"&lastname=" << lastname << "&location=" << location << "®ion=" << curl_region;
|
|
|
|
curl_free(curl_region);
|
|
|
|
if (!password.empty())
|
|
{
|
|
oStr << "&password=" << password;
|
|
}
|
|
else if (!(password = load_password_from_disk()).empty())
|
|
{
|
|
oStr << "&password=$1$" << password;
|
|
}
|
|
if (gAutoLogin)
|
|
{
|
|
oStr << "&auto_login=TRUE";
|
|
}
|
|
if (gSavedSettings.getBOOL("ShowStartLocation")
|
|
&& !gSavedSettings.getBOOL("FirstRunThisInstall"))
|
|
{
|
|
oStr << "&show_start_location=TRUE";
|
|
}
|
|
if (gSavedSettings.getBOOL("RememberPassword"))
|
|
{
|
|
oStr << "&remember_password=TRUE";
|
|
}
|
|
#ifndef LL_RELEASE_FOR_DOWNLOAD
|
|
oStr << "&show_grid=TRUE";
|
|
#else
|
|
if (gSavedSettings.getBOOL("ForceShowGrid"))
|
|
oStr << "&show_grid=TRUE";
|
|
#endif
|
|
#endif
|
|
|
|
LLMediaCtrl* web_browser = sInstance->getChild<LLMediaCtrl>("login_html");
|
|
|
|
// navigate to the "real" page
|
|
if (gSavedSettings.getBOOL("RegInClient"))
|
|
{
|
|
web_browser->setFocus(TRUE);
|
|
login_page = sInstance->getString("reg_in_client_url");
|
|
web_browser->navigateTo(login_page, "text/html");
|
|
}
|
|
else
|
|
{
|
|
web_browser->navigateTo( oStr.str(), "text/html" );
|
|
}
|
|
}
|
|
|
|
void LLPanelLogin::handleMediaEvent(LLPluginClassMedia* /*self*/, EMediaEvent event)
|
|
{
|
|
if(event == MEDIA_EVENT_NAVIGATE_COMPLETE)
|
|
{
|
|
LLMediaCtrl* web_browser = sInstance->getChild<LLMediaCtrl>("login_html");
|
|
if (web_browser)
|
|
{
|
|
// *HACK HACK HACK HACK!
|
|
/* Stuff a Tab key into the browser now so that the first field will
|
|
** get the focus! The embedded javascript on the page that properly
|
|
** sets the initial focus in a real web browser is not working inside
|
|
** the viewer, so this is an UGLY HACK WORKAROUND for now.
|
|
*/
|
|
// Commented out as it's not reliable
|
|
//web_browser->handleKey(KEY_TAB, MASK_NONE, false);
|
|
}
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
// Protected methods
|
|
//---------------------------------------------------------------------------
|
|
|
|
// static
|
|
void LLPanelLogin::onClickConnect(void *)
|
|
{
|
|
if (sInstance && sInstance->mCallback)
|
|
{
|
|
// tell the responder we're not here anymore
|
|
if ( gResponsePtr )
|
|
gResponsePtr->setParent( 0 );
|
|
|
|
// JC - Make sure the fields all get committed.
|
|
sInstance->setFocus(FALSE);
|
|
|
|
std::string first = sInstance->childGetText("first_name_edit");
|
|
std::string last = sInstance->childGetText("last_name_edit");
|
|
LLComboBox* combo = sInstance->getChild<LLComboBox>("start_location_combo");
|
|
std::string combo_text = combo->getSimple();
|
|
|
|
if (first.empty() || last.empty())
|
|
{
|
|
LLNotifications::instance().add("MustHaveAccountToLogIn");
|
|
}
|
|
else if( (combo_text=="<Type region name>" || combo_text =="")
|
|
&& LLURLSimString::sInstance.mSimString =="")
|
|
{
|
|
LLNotifications::instance().add("StartRegionEmpty");
|
|
}
|
|
else
|
|
{
|
|
// has both first and last name typed
|
|
sInstance->mCallback(0, sInstance->mCallbackData);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
// static
|
|
bool LLPanelLogin::newAccountAlertCallback(const LLSD& notification, const LLSD& response)
|
|
{
|
|
S32 option = LLNotification::getSelectedOption(notification, response);
|
|
if (0 == option)
|
|
{
|
|
llinfos << "Going to account creation URL" << llendl;
|
|
LLWeb::loadURLExternal( LLNotifications::instance().getGlobalString("CREATE_ACCOUNT_URL"));
|
|
}
|
|
else
|
|
{
|
|
sInstance->setFocus(TRUE);
|
|
}
|
|
return false;
|
|
}
|
|
*/
|
|
|
|
// static
|
|
void LLPanelLogin::onClickNewAccount(void*)
|
|
{
|
|
LLWeb::loadURLExternal(sInstance->getString("create_account_url"));
|
|
}
|
|
|
|
|
|
// static
|
|
void LLPanelLogin::onClickVersion(void*)
|
|
{
|
|
LLFloaterReg::showInstance("sl_about");
|
|
}
|
|
|
|
//static
|
|
void LLPanelLogin::onClickForgotPassword(void*)
|
|
{
|
|
if (sInstance )
|
|
{
|
|
LLWeb::loadURLExternal(sInstance->getString( "forgot_password_url" ));
|
|
}
|
|
}
|
|
|
|
// static
|
|
void LLPanelLogin::onPassKey(LLLineEditor* caller, void* user_data)
|
|
{
|
|
if (gKeyboard->getKeyDown(KEY_CAPSLOCK) && sCapslockDidNotification == FALSE)
|
|
{
|
|
LLNotifications::instance().add("CapsKeyOn");
|
|
sCapslockDidNotification = TRUE;
|
|
}
|
|
}
|
|
|
|
// static
|
|
void LLPanelLogin::onSelectServer(LLUICtrl*, void*)
|
|
{
|
|
// *NOTE: The paramters for this method are ignored.
|
|
// LLPanelLogin::onServerComboLostFocus(LLFocusableElement* fe, void*)
|
|
// calls this method.
|
|
|
|
// The user twiddled with the grid choice ui.
|
|
// apply the selection to the grid setting.
|
|
std::string grid_label;
|
|
S32 grid_index;
|
|
|
|
LLComboBox* combo = sInstance->getChild<LLComboBox>("server_combo");
|
|
LLSD combo_val = combo->getValue();
|
|
|
|
if (LLSD::TypeInteger == combo_val.type())
|
|
{
|
|
grid_index = combo->getValue().asInteger();
|
|
|
|
if ((S32)GRID_INFO_OTHER == grid_index)
|
|
{
|
|
// This happens if the user specifies a custom grid
|
|
// via command line.
|
|
grid_label = combo->getSimple();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// no valid selection, return other
|
|
grid_index = (S32)GRID_INFO_OTHER;
|
|
grid_label = combo_val.asString();
|
|
}
|
|
|
|
// This new seelction will override preset uris
|
|
// from the command line.
|
|
LLViewerLogin* vl = LLViewerLogin::getInstance();
|
|
vl->resetURIs();
|
|
if(grid_index != GRID_INFO_OTHER)
|
|
{
|
|
vl->setGridChoice((EGridInfo)grid_index);
|
|
}
|
|
else
|
|
{
|
|
vl->setGridChoice(grid_label);
|
|
}
|
|
|
|
// grid changed so show new splash screen (possibly)
|
|
loadLoginPage();
|
|
}
|
|
|
|
void LLPanelLogin::onServerComboLostFocus(LLFocusableElement* fe)
|
|
{
|
|
if (!sInstance) return;
|
|
|
|
LLComboBox* combo = sInstance->getChild<LLComboBox>("server_combo");
|
|
if(fe == combo)
|
|
{
|
|
onSelectServer(combo, NULL);
|
|
}
|
|
}
|