os/ossrv/genericservices/httputils/Authentication/cauthentication.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// authentication.cpp
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include <e32base.h>
sl@0
    19
sl@0
    20
#include "cauthentication.h"
sl@0
    21
sl@0
    22
sl@0
    23
/**
sl@0
    24
	Creates a new instance of CAuthentication.
sl@0
    25
sl@0
    26
	@param aName The new user name. A local copy of descriptor is created. Can be a null descriptor.
sl@0
    27
	@param aPassword The new password. A local copy of descriptor is created. Can be a null descriptor.
sl@0
    28
	@param aMethod the method type of either basic or digest. Defaults to digest.
sl@0
    29
	@return A pointer to the newly created CAuthentication object.
sl@0
    30
	@leave KErrNoMemory
sl@0
    31
 */
sl@0
    32
EXPORT_C CAuthentication* CAuthentication::NewL(const TDesC8& aName, const TDesC8& aPassword, TMethod aMethod)
sl@0
    33
	{
sl@0
    34
	CAuthentication* me = new (ELeave) CAuthentication(aMethod);
sl@0
    35
	CleanupStack::PushL(me);
sl@0
    36
	me->ConstructL(aName, aPassword);
sl@0
    37
	CleanupStack::Pop(me);
sl@0
    38
	return me;
sl@0
    39
	}
sl@0
    40
sl@0
    41
/**
sl@0
    42
	Creates a new instance of CAuthentication.
sl@0
    43
sl@0
    44
	@param aUri The URI with a userinfo component.
sl@0
    45
	@param aMethod the method type of either basic or digest. Defaults to digest.
sl@0
    46
	@return A pointer to the newly created CAuthentication object.
sl@0
    47
	@leave KErrNotFound If there is no userinfo component.
sl@0
    48
	@leave KErrNoMemory
sl@0
    49
*/
sl@0
    50
EXPORT_C CAuthentication* CAuthentication::NewL(const TUriC8& aUri, TMethod aMethod)
sl@0
    51
	{
sl@0
    52
	CAuthentication* me = new (ELeave) CAuthentication(aMethod);
sl@0
    53
	CleanupStack::PushL(me);
sl@0
    54
	me->ConstructL(aUri);
sl@0
    55
	CleanupStack::Pop(me);
sl@0
    56
	return me;
sl@0
    57
	}
sl@0
    58
sl@0
    59
/**
sl@0
    60
	Constructor.
sl@0
    61
	@param aMethod enum value of type TMethod.
sl@0
    62
 */
sl@0
    63
CAuthentication::CAuthentication(TMethod aMethod):iMethodType(aMethod)
sl@0
    64
	{
sl@0
    65
	}
sl@0
    66
sl@0
    67
/**
sl@0
    68
	Second phase of two-phase construction method. Does any allocations required to fully construct 
sl@0
    69
	the object.
sl@0
    70
	
sl@0
    71
	@param			aName A descriptor to be allocated initialised with.
sl@0
    72
	@param			aPassword A descriptor to be allocated initialised with.
sl@0
    73
	@pre 			First phase of construction is complete.
sl@0
    74
	@post			The object is fully constructed and initialized.
sl@0
    75
 */
sl@0
    76
void CAuthentication::ConstructL(const TDesC8& aName, const TDesC8& aPassword)
sl@0
    77
	{
sl@0
    78
	iName = aName.AllocL();
sl@0
    79
	iPassword = aPassword.AllocL();
sl@0
    80
	}
sl@0
    81
sl@0
    82
/**
sl@0
    83
	Second phase of two-phase construction method. Does any allocations required to fully construct 
sl@0
    84
	the object. Must set both user name and password to at least an empty string.
sl@0
    85
	
sl@0
    86
	@param			aUri The URI with a userinfo component.
sl@0
    87
	@pre 			First phase of construction is complete.
sl@0
    88
	@post			The object is fully constructed and initialized.
sl@0
    89
 */
sl@0
    90
void CAuthentication::ConstructL(const TUriC8& aUri)
sl@0
    91
	{
sl@0
    92
	// Check if user info component present.
sl@0
    93
	if(!aUri.IsPresent(EUriUserinfo))
sl@0
    94
		{
sl@0
    95
		User::Leave(KErrNotFound);
sl@0
    96
		}
sl@0
    97
	// Set name and pwd. Note that these could be empty strings.
sl@0
    98
	TPtrC8 userInfo(aUri.Extract(EUriUserinfo));
sl@0
    99
	TInt colPos = userInfo.Locate(':');
sl@0
   100
	if(KErrNotFound == colPos) // 'name@' or '@' case
sl@0
   101
		{
sl@0
   102
		iName = userInfo.AllocL();
sl@0
   103
		iPassword = KNullDesC8().AllocL();
sl@0
   104
		}	
sl@0
   105
	else // ':' found
sl@0
   106
		{
sl@0
   107
		iName = userInfo.Left(colPos).AllocL();
sl@0
   108
		iPassword = userInfo.Right(userInfo.Length()-colPos-1).AllocL();						
sl@0
   109
		}
sl@0
   110
	}
sl@0
   111
sl@0
   112
/**
sl@0
   113
	Destructor
sl@0
   114
 */
sl@0
   115
EXPORT_C CAuthentication::~CAuthentication()
sl@0
   116
	{
sl@0
   117
	delete iName;
sl@0
   118
	delete iPassword;
sl@0
   119
	}
sl@0
   120
sl@0
   121
/**
sl@0
   122
	Gets the user name.
sl@0
   123
sl@0
   124
	@return Reference to the user name descriptor.
sl@0
   125
 */
sl@0
   126
EXPORT_C const TDesC8& CAuthentication::Name() const
sl@0
   127
	{
sl@0
   128
	return *iName;
sl@0
   129
	}
sl@0
   130
sl@0
   131
/**
sl@0
   132
	Gets the password.
sl@0
   133
sl@0
   134
	@return Reference to the password descriptor.
sl@0
   135
 */
sl@0
   136
EXPORT_C const TDesC8& CAuthentication::Password() const
sl@0
   137
	{
sl@0
   138
	return *iPassword;
sl@0
   139
	}
sl@0
   140
sl@0
   141
/**
sl@0
   142
	Gets the method type.
sl@0
   143
sl@0
   144
	@return The authentication method type.
sl@0
   145
 */
sl@0
   146
EXPORT_C CAuthentication::TMethod CAuthentication::Method() const
sl@0
   147
	{
sl@0
   148
	return iMethodType;
sl@0
   149
	}
sl@0
   150
sl@0
   151
/**
sl@0
   152
	Sets the username.
sl@0
   153
sl@0
   154
	@param aName Reference to the new username descriptor.
sl@0
   155
	@leave KErrNoMemory
sl@0
   156
 */
sl@0
   157
EXPORT_C void CAuthentication::SetNameL(const TDesC8& aName)
sl@0
   158
	{
sl@0
   159
	HBufC8* temp = iName;
sl@0
   160
	iName = aName.AllocL();
sl@0
   161
	delete temp;
sl@0
   162
	}
sl@0
   163
sl@0
   164
/**
sl@0
   165
	Sets the password.
sl@0
   166
sl@0
   167
	@param aPassword Reference to the new password descriptor.
sl@0
   168
	@leave KErrNoMemory
sl@0
   169
 */
sl@0
   170
EXPORT_C void CAuthentication::SetPasswordL(const TDesC8& aPassword)
sl@0
   171
	{
sl@0
   172
	HBufC8* temp = iPassword;
sl@0
   173
	iPassword = aPassword.AllocL();
sl@0
   174
	delete temp;
sl@0
   175
	}
sl@0
   176
sl@0
   177
/**
sl@0
   178
	Sets the method type.
sl@0
   179
sl@0
   180
	@param aMethod The new authentication method type.
sl@0
   181
 */
sl@0
   182
EXPORT_C void CAuthentication::SetMethod(TMethod aMethod)
sl@0
   183
	{
sl@0
   184
	iMethodType = aMethod;
sl@0
   185
	}