diff -r 30e048a7b597 -r bad0cc58d154 eapol/eapol_framework/eapol_symbian/am/eap_notifier/src/eap_auth_observer.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eapol/eapol_framework/eapol_symbian/am/eap_notifier/src/eap_auth_observer.cpp Tue Aug 31 15:16:37 2010 +0300 @@ -0,0 +1,274 @@ +/* +* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: Dialog observer implementation +* +*/ + +/* +* %version: 15 % +*/ + +// System include files +#include +#include + +// User include files +#include "eap_auth_notifier.h" +#include "eap_auth_observer.h" + +// External function prototypes + +// Local constants + +// ======== LOCAL FUNCTIONS ======== + +// ======== MEMBER FUNCTIONS ======== + +// --------------------------------------------------------------------------- +// Two-phased constructor. +// --------------------------------------------------------------------------- +// +CEapAuthObserver* CEapAuthObserver::NewL( + CEapAuthNotifier* aNotifier ) + { + RDebug::Print(_L("CEapAuthObserver::NewL") ); + + CEapAuthObserver* self = new ( ELeave ) CEapAuthObserver( aNotifier ); + return self; + } + +// --------------------------------------------------------------------------- +// Constructor +// --------------------------------------------------------------------------- +// +CEapAuthObserver::CEapAuthObserver( + CEapAuthNotifier* aNotifier ): + iNotifier( aNotifier ) + { + RDebug::Print(_L("CEapAuthObserver::CEapAuthObserver") ); + } + +// --------------------------------------------------------------------------- +// Destructor +// --------------------------------------------------------------------------- +// +CEapAuthObserver::~CEapAuthObserver() + { + RDebug::Print(_L("CEapAuthObserver::~CEapAuthObserver") ); + } + +// --------------------------------------------------------------------------- +// Handles the setting of the notifier (dialog) type +// --------------------------------------------------------------------------- +// +void CEapAuthObserver::SetNotifierType( CEapAuthNotifier::EEapNotifierType aType ) + { + RDebug::Print(_L("CEapAuthObserver::setNotifierType") ); + + iType = aType; + } + +// Derived function: +// --------------------------------------------------------------------------- +// From class MHbDeviceDialogObserver. +// Handles the user input received from the dialog +// --------------------------------------------------------------------------- +// +void CEapAuthObserver::DataReceived( CHbSymbianVariantMap& aData ) +{ + RDebug::Print(_L("CEapAuthObserver::DataReceived") ); + + if ( iType == CEapAuthNotifier::EEapNotifierTypeLEapUsernamePasswordDialog ) + { + RDebug::Print(_L("CEapAuthObserver::DataReceived: EEapNotifierTypeLEapUsernamePasswordDialog") ); + UsernamePasswordDlgDataReceived(aData); + } + else if ( iType == CEapAuthNotifier::EEapNotifierTypeGTCUsernamePasswordDialog ) + { + RDebug::Print(_L("CEapAuthObserver::DataReceived: EEapNotifierTypeGTCUsernamePasswordDialog") ); + UsernamePasswordDlgDataReceived(aData); + } + else if ( iType == CEapAuthNotifier::EEapNotifierTypePapUsernamePasswordDialog ) + { + RDebug::Print(_L("CEapAuthObserver::DataReceived: EEapNotifierTypePapUsernamePasswordDialog") ); + UsernamePasswordDlgDataReceived(aData); + } + else if ( iType == CEapAuthNotifier::EEapNotifierTypeEapMsChapV2UsernamePasswordDialog ) + { + RDebug::Print(_L("CEapAuthObserver::DataReceived: EEapNotifierTypeEapMsChapV2UsernamePasswordDialog") ); + UsernamePasswordDlgDataReceived(aData); + } + else if ( iType == CEapAuthNotifier::EEapNotifierTypeMsChapV2UsernamePasswordDialog ) + { + RDebug::Print(_L("CEapAuthObserver::DataReceived: EEapNotifierTypeMsChapV2UsernamePasswordDialog") ); + UsernamePasswordDlgDataReceived(aData); + } + else if ( iType == CEapAuthNotifier::EEapNotifierTypeGTCQueryDialog ) + { + RDebug::Print(_L("CEapAuthObserver::DataReceived: EEapNotifierTypeGTCQueryDialog") ); + PwdQueryDataReceived(aData); + } + else if ( iType == CEapAuthNotifier::EEapNotifierTypePapAuthQueryDialog ) + { + RDebug::Print(_L("CEapAuthObserver::DataReceived: EEapNotifierTypePapAuthQueryDialog") ); + PwdQueryDataReceived(aData); + } + else if ( iType == CEapAuthNotifier::EEapNotifierTypeFastPacStorePwQueryDialog ) + { + RDebug::Print(_L("CEapAuthObserver::DataReceived: EEapNotifierTypeFastPacStorePwQueryDialog") ); + PwdQueryDataReceived(aData); + } + else if ( iType == CEapAuthNotifier::EEapNotifierTypeFastCreateMasterkeyQueryDialog ) + { + RDebug::Print(_L("CEapAuthObserver::DataReceived: EEapNotifierTypeFastCreateMasterkeyQueryDialog") ); + PwdQueryDataReceived(aData); + } + else if ( iType == CEapAuthNotifier::EEapNotifierTypeFastPacFilePwQueryDialog ) + { + RDebug::Print(_L("CEapAuthObserver::DataReceived: EEapNotifierTypeFastPacFilePwQueryDialog") ); + PwdQueryDataReceived(aData); + } + else if ( iType == CEapAuthNotifier::EEapNotifierTypeMsChapV2OldPasswordDialog ) + { + RDebug::Print(_L("CEapAuthObserver::DataReceived: EEapNotifierTypeMsChapV2OldPasswordDialog") ); + OldPwdQueryDataReceived(aData); + } + else if ( iType == CEapAuthNotifier::EEapNotifierTypeMsChapV2NewPasswordDialog ) + { + RDebug::Print(_L("CEapAuthObserver::DataReceived: EEapNotifierTypeMsChapV2NewPasswordDialog") ); + PwdQueryDataReceived(aData); + } + + TInt status = KErrNone; + + TRAP_IGNORE( iNotifier->CompleteL( status )); +} + +// --------------------------------------------------------------------------- +// Handles the user name password input received from the dialog +// --------------------------------------------------------------------------- +// +void CEapAuthObserver::UsernamePasswordDlgDataReceived( + CHbSymbianVariantMap& aData ) +{ + RDebug::Print(_L("CEapAuthObserver::UsernamePasswordDlgDataReceived") ); + + _LIT(KUsername, "username"); + _LIT(KPassword, "password"); + + CEapAuthNotifier::TEapDialogInfo PasswordInfo; + TDesC* Data = NULL; + + PasswordInfo.iIsIdentityQuery = EFalse; + PasswordInfo.iPasswordPromptEnabled = EFalse; + + const CHbSymbianVariant *my_variant = aData.Get(KUsername); + if ( my_variant != NULL ) + { + ASSERT( my_variant->Type() == CHbSymbianVariant::EDes ); + + Data = reinterpret_cast(my_variant->Data()); + PasswordInfo.iUsername.Copy( Data->Ptr(), Data->Length() ); + PasswordInfo.iIsIdentityQuery = ETrue; + RDebug::Print(_L("CEapAuthObserver::DataReceived: PasswordInfo.iUsername = %S\n"), &PasswordInfo.iUsername ); + } + my_variant = aData.Get(KPassword); + if ( my_variant != NULL ) + { + ASSERT( my_variant->Type() == CHbSymbianVariant::EDes ); + + Data = reinterpret_cast(my_variant->Data()); + PasswordInfo.iPassword.Copy( Data->Ptr(), Data->Length() ); + PasswordInfo.iPasswordPromptEnabled = ETrue; + RDebug::Print(_L("CEapAuthObserver::DataReceived: PasswordInfo.iPassword = %S\n"), &PasswordInfo.iPassword ); + } + + iNotifier->SetSelectedUnameAndPwd( PasswordInfo ); +} + +// --------------------------------------------------------------------------- +// Handles the old password query user input received from the dialog +// --------------------------------------------------------------------------- +// +void CEapAuthObserver::OldPwdQueryDataReceived( CHbSymbianVariantMap& aData ) +{ + RDebug::Print(_L("CEapAuthObserver::OldPwdQueryDataReceived") ); + + _LIT(KPassword, "password"); + + CEapAuthNotifier::TEapDialogInfo PasswordInfo; + TDesC* Data = NULL; + + const CHbSymbianVariant *my_variant = aData.Get(KPassword); + if ( my_variant != NULL ) + { + ASSERT( my_variant->Type() == CHbSymbianVariant::EDes ); + + Data = reinterpret_cast(my_variant->Data()); + PasswordInfo.iOldPassword.Copy( Data->Ptr(), Data->Length() ); + + RDebug::Print(_L("CEapAuthObserver::OldPwdQueryDataReceived: PasswordInfo.iOldPassword = %S\n"), &PasswordInfo.iOldPassword ); + } + + iNotifier->SetSelectedOldPassword( PasswordInfo ); +} + +// --------------------------------------------------------------------------- +// Handles the password query user input received from the dialog +// --------------------------------------------------------------------------- +// +void CEapAuthObserver::PwdQueryDataReceived( CHbSymbianVariantMap& aData ) +{ + RDebug::Print(_L("CEapAuthObserver::PwdQueryDataReceived") ); + + _LIT(KPassword, "password"); + + CEapAuthNotifier::TEapDialogInfo PasswordInfo; + TDesC* Data = NULL; + + const CHbSymbianVariant *my_variant = aData.Get(KPassword); + if ( my_variant != NULL ) + { + ASSERT( my_variant->Type() == CHbSymbianVariant::EDes ); + + Data = reinterpret_cast(my_variant->Data()); + PasswordInfo.iPassword.Copy( Data->Ptr(), Data->Length() ); + + RDebug::Print(_L("CEapAuthObserver::PwdQueryDataReceived: PasswordInfo.iPassword = %S\n"), &PasswordInfo.iPassword ); + } + + iNotifier->SetSelectedPassword( PasswordInfo ); +} + +// Derived function: +// --------------------------------------------------------------------------- +// From class MHbDeviceDialogObserver. +// Handles the closing of the dialog +// --------------------------------------------------------------------------- +// +void CEapAuthObserver::DeviceDialogClosed( TInt /*aCompletionCode*/ ) +{ + // Dialog was closed, let's complete with that error code + RDebug::Print(_L("CEapAuthObserver::DeviceDialogClosed")); + + TInt status = KErrCancel; + + if ( iType != CEapAuthNotifier::EEapNotifierTypeFastStartAuthProvWaitNote && + iType != CEapAuthNotifier::EEapNotifierTypeFastStartUnauthProvWaitNote ) + { + TRAP_IGNORE( iNotifier->CompleteL( status )); + } +} + +