/*
* Copyright (c) 2007 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: CFsEmailUiHtmlViewerContainer class implementation
*
*/
#include "emailtrace.h"
#include <AknsDrawUtils.h>
#include <coemain.h>
#include <commdbconnpref.h>
#include <bautils.h>
#include <biditext.h>
//<cmail>
#include "CFSMailMessage.h"
//</cmail>
#include <brctlinterface.h>
#include <sysutil.h>
#include <SchemeHandler.h>
#include "FreestyleEmailUiAppui.h"
#include "FreestyleEmailUiUtilities.h"
#include "FreestyleEmailUiHtmlViewerContainer.h"
#include "FreestyleEmailUiHtmlViewerView.h"
#include "FreestyleEmailUiShortcutBinding.h"
#include "FreestyleMessageHeaderHTML.h"
#include "FreestyleMessageHeaderURLEventHandler.h"
_LIT( KContentIdPrefix, "cid:" );
_LIT( KCDrive, "c:" );
_LIT( KHtmlPath, "HtmlFile\\" );
_LIT( KTempHtmlPath, "temp\\" );
_LIT( KAllFiles, "*" );
_LIT( KHeaderHtmlFile, "header.html" );
_LIT( KBodyHtmlFile, "body.html" );
_LIT( KMessageHtmlFile, "email.html" );
_LIT( KMessageHtmlRTLFile, "email_rtl.html" );
_LIT( KZDrive, "z:" );
_LIT( KHtmlFlagFile, "html.flag" );
_LIT( KURLSlash, "/");
// Constants used in html content modification
const TInt KMaxCharsToSearch( 200 );
_LIT8( KStartTag, "<html" );
_LIT8( KHeadTag, "<head>");
_LIT8( KHtmlHeader1, "<html><head><title></title><meta http-equiv=\"Content-Type\" content=\"text/html; charset=");
_LIT8( KHtmlHeader2, "\"/></head><body>\xD\xA");
_LIT8( KHtmlHeader3, "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=%S\">\n");
_LIT8( KHtmlEndTags, "\xD\xA</body></html>\xD\xA");
_LIT8( KCharsetTag8, "charset");
_LIT( KCharsetTag, "charset");
_LIT8( KHTMLEmptyContent, "<HTML><BODY></BODY></HTML>");
_LIT( KHTMLDataScheme, "data:0");
_LIT8( KHtmlLineBreak, "<br>" );
_LIT8( KHtmlLineBreakCRLF, "<br>\xD\xA" );
_LIT8( KHtmlLessThan, "<" );
_LIT8( KHtmlGreaterThan, ">" );
_LIT8( KHtmlAmpersand, "&" );
_LIT8( KHtmlQuotation, """ );
_LIT8( KHtmlLinkTag, "<a href=\"%S\">" );
_LIT8( KHtmlLinkEndTag, "</a>" );
_LIT( KURLTypeBody, "body");
const TText8 KGreaterThan = 0x3e;
const TText8 KLessThan = 0x3c;
const TText8 KAmpersand = 0x26;
const TText8 KQuotation = 0x22;
const TText8 KCharacterSpace = 0x20;
const TText8 KSOH = 0x01; // Start Of Heading
const TText8 KCR = 0x0d; // Carriage Return
const TText8 KLF = 0x0a; // Line Feed
const TText8 KHT = 0x09; // Horizontal Tab
const TReal KOverlayButtonMarginX = 0.01; // 1%
const TReal KOverlayButtonMarginY = 0.01; // 1%
const TReal KOverlayButtonSizeP = 0.15; // 15%
const TReal KOverlayButtonSizeLs = 0.20; // 25%
const TReal KOverlayButtonPosP = 0.88;
const TReal KOverlayButtonPosLs = 0.85;
// ---------------------------------------------------------------------------
// Two-phased constructor.
// ---------------------------------------------------------------------------
//
CFsEmailUiHtmlViewerContainer* CFsEmailUiHtmlViewerContainer::NewL(
CFreestyleEmailUiAppUi& aAppUi, CFsEmailUiHtmlViewerView& aView )
{
FUNC_LOG;
CFsEmailUiHtmlViewerContainer* self =
new (ELeave) CFsEmailUiHtmlViewerContainer( aAppUi, aView );
CleanupStack::PushL( self );
self->ConstructL();
CleanupStack::Pop( self );
return self;
}
// ---------------------------------------------------------------------------
// C++ constructor.
// ---------------------------------------------------------------------------
//
CFsEmailUiHtmlViewerContainer::CFsEmailUiHtmlViewerContainer(
CFreestyleEmailUiAppUi& aAppUi, CFsEmailUiHtmlViewerView& aView )
:
iAppUi( aAppUi ),
iView( aView ),
iFs( CCoeEnv::Static()->FsSession() ),
iFirstTime( ETrue )
{
FUNC_LOG;
}
// ---------------------------------------------------------------------------
// Destructor.
// ---------------------------------------------------------------------------
//
CFsEmailUiHtmlViewerContainer::~CFsEmailUiHtmlViewerContainer()
{
FUNC_LOG;
if ( iObservingDownload && iAppUi.DownloadInfoMediator() )
{
iAppUi.DownloadInfoMediator()->StopObserving( this );
}
iFile.Close();
iLinkContents.Close();
iMessageParts.Close();
delete iEventHandler;
delete iBrCtlInterface;
iConnection.Close();
iSocketServer.Close();
delete iOverlayControlNext;
delete iOverlayControlPrev;
}
// <cmail> Because of browser changes, followings must be performed before iAppUi.exit()
void CFsEmailUiHtmlViewerContainer::PrepareForExit()
{
FUNC_LOG;
if ( iObservingDownload && iAppUi.DownloadInfoMediator() )
{
iAppUi.DownloadInfoMediator()->StopObserving( this );
iObservingDownload = EFalse;
}
delete iBrCtlInterface;
iBrCtlInterface = NULL;
iConnection.Close();
iSocketServer.Close();
}
// </cmail>
void CFsEmailUiHtmlViewerContainer::ConstructL()
{
FUNC_LOG;
SetHtmlFolderPathL();
BaflUtils::EnsurePathExistsL( iFs, iHtmlFolderPath );
SetTempHtmlFolderPath();
BaflUtils::EnsurePathExistsL( iFs, iTempHtmlFolderPath );
SetHTMLResourceFlagFullName();
EnsureHTMLResourceL();
CreateWindowL();
SetRect( iView.ContainerRect() );
TUint brCtlCapabilities = TBrCtlDefs::ECapabilityClientResolveEmbeddedURL |
TBrCtlDefs::ECapabilityDisplayScrollBar |
TBrCtlDefs::ECapabilityClientNotifyURL |
TBrCtlDefs::ECapabilityLoadHttpFw |
TBrCtlDefs::ECapabilityCursorNavigation;
// Set browsercontrol to whole screen
TRect rect( TPoint(), Size() );
iBrCtlInterface = CreateBrowserControlL( this, rect, brCtlCapabilities,
TBrCtlDefs::ECommandIdBase, NULL, this, this );
iBrCtlInterface->SetBrowserSettingL( TBrCtlDefs::ESettingsEmbedded, ETrue );
iBrCtlInterface->SetBrowserSettingL( TBrCtlDefs::ESettingsAutoLoadImages, ETrue );
iBrCtlInterface->SetBrowserSettingL( TBrCtlDefs::ESettingsPageOverview, EFalse );
iBrCtlInterface->SetBrowserSettingL( TBrCtlDefs::ESettingsTextWrapEnabled, ETrue );
iBrCtlInterface->SetBrowserSettingL( TBrCtlDefs::ESettingsFontSize, TBrCtlDefs::EFontSizeLevelLarger );
iEventHandler = CFreestyleMessageHeaderURLEventHandler::NewL( iAppUi, iView );
TRect nextButtonRect = OverlayButtonRect( EFalse );
iOverlayControlNext = COverlayControl::NewL( this, this, nextButtonRect,
EMbmFreestyleemailuiQgn_indi_cmail_arrow_next,
EMbmFreestyleemailuiQgn_indi_cmail_arrow_next_mask );
TRect prevButtonRect = OverlayButtonRect( ETrue );
iOverlayControlPrev = COverlayControl::NewL( this, this, prevButtonRect,
EMbmFreestyleemailuiQgn_indi_cmail_arrow_previous,
EMbmFreestyleemailuiQgn_indi_cmail_arrow_previous_mask );
iScrollPosition = 0;
ActivateL();
}
void CFsEmailUiHtmlViewerContainer::MakeVisible( TBool aVisible )
{
UpdateOverlayButtons( aVisible );
CCoeControl::MakeVisible( aVisible );
}
void CFsEmailUiHtmlViewerContainer::HandleOverlayPointerEventL( COverlayControl* aControl,
const TPointerEvent& aEvent )
{
if( aEvent.iType == TPointerEvent::EButton1Up )
{
if( aControl == iOverlayControlNext )
{
iView.HandleCommandL( EFsEmailUiCmdNextMessage );
}
else if( aControl == iOverlayControlPrev )
{
iView.HandleCommandL( EFsEmailUiCmdPreviousMessage );
}
}
}
void CFsEmailUiHtmlViewerContainer::UpdateOverlayButtons( TBool aVisible )
{
TBool nextAvailable = EFalse;
TBool prevAvailable = EFalse;
if( iMessage )
{
TFSMailMsgId currentMsgId = iMessage->GetMessageId();
TFSMailMsgId tmpMsgId;
TFSMailMsgId tmpMsgFolderId;
nextAvailable = iAppUi.IsNextMsgAvailable( currentMsgId, tmpMsgId, tmpMsgFolderId );
prevAvailable = iAppUi.IsPreviousMsgAvailable( currentMsgId, tmpMsgId, tmpMsgFolderId );
}
if( iOverlayControlPrev )
{
iOverlayControlPrev->SetRect( OverlayButtonRect( ETrue ) );
iOverlayControlPrev->MakeVisible( aVisible && prevAvailable );
}
if( iOverlayControlNext )
{
iOverlayControlNext->SetRect( OverlayButtonRect( EFalse ) );
iOverlayControlNext->MakeVisible( aVisible && nextAvailable );
}
}
// Get rect for button
TRect CFsEmailUiHtmlViewerContainer::OverlayButtonRect( TBool aLeft )
{
TRect rect = Rect();
TSize size = rect.Size();
TBool landscape = size.iWidth > size.iHeight;
TInt buttonSize;
if( landscape )
{
buttonSize = size.iHeight * KOverlayButtonSizeLs;
}
else
{
buttonSize = size.iWidth * KOverlayButtonSizeP;
}
rect.iBr.iY = size.iHeight * (1-KOverlayButtonMarginY);
if( aLeft )
{
rect.iTl.iX = size.iWidth * KOverlayButtonMarginX;
rect.iBr.iX = rect.iTl.iX + buttonSize;
}
else
{
rect.iBr.iX = size.iWidth * (1 - KOverlayButtonMarginX);
rect.iTl.iX = rect.iBr.iX - buttonSize;
}
rect.iTl.iY = rect.iBr.iY - buttonSize;
return rect;
}
// Getter for br contro, interface
CBrCtlInterface* CFsEmailUiHtmlViewerContainer::BrowserControlIf()
{
FUNC_LOG;
return iBrCtlInterface;
}
void CFsEmailUiHtmlViewerContainer::LoadContentFromFileL( const TDesC& aFileName )
{
FUNC_LOG;
iBrCtlInterface->LoadFileL( aFileName );
}
void CFsEmailUiHtmlViewerContainer::LoadContentFromFileL( RFile& aFile )
{
FUNC_LOG;
iBrCtlInterface->LoadFileL( aFile );
}
void CFsEmailUiHtmlViewerContainer::LoadContentFromUrlL( const TDesC& aUrl )
{
FUNC_LOG;
iBrCtlInterface->LoadUrlL( aUrl );
}
// ---------------------------------------------------------------------------
// Loads content from given mail message.
// ---------------------------------------------------------------------------
//
void CFsEmailUiHtmlViewerContainer::LoadContentFromMailMessageL(
CFSMailMessage* aMailMessage, TBool aResetScrollPos )
{
FUNC_LOG;
ASSERT( aMailMessage );
iMessage = aMailMessage;
// Cancel any browser fetch operation, just in case the browser is still
// loading a previous message (since we are about to overwrite it).
CancelFetch();
TPath headerHtmlFile;
headerHtmlFile.Copy( iHtmlFolderPath );
headerHtmlFile.Append( KHeaderHtmlFile );
// insert email header into email.html file
// CFreestyleMessageHeaderHTML will replace contents of email.html
// So, no need to clear the contents
TLanguage language = User::Language();
TBidiText::TDirectionality direction = TBidiText::ScriptDirectionality( language );
if(aResetScrollPos)
{
iScrollPosition = 0;
}
CFreestyleMessageHeaderHTML::ExportL( *iMessage, iFs, headerHtmlFile, iAppUi.ClientRect().Width(),
iScrollPosition,
direction);
// Remove all previously created files from temporary HTML folder
EmptyTempHtmlFolderL();
CFSMailMessagePart* htmlBodyPart = iMessage->HtmlBodyPartL();
TBool bodyPartAvailable( EFalse );
if ( htmlBodyPart )
{
CleanupStack::PushL( htmlBodyPart );
RFile htmlFile = htmlBodyPart->GetContentFileL();
CleanupClosePushL( htmlFile );
// Copy html body part to email html file
CopyFileToHtmlFileL( htmlFile, KBodyHtmlFile, *htmlBodyPart );
bodyPartAvailable = ETrue;
CleanupStack::PopAndDestroy( &htmlFile );
CleanupStack::PopAndDestroy( htmlBodyPart );
}
else
{
CFSMailMessagePart* textBodyPart = iMessage->PlainTextBodyPartL();;
if ( textBodyPart )
{
CleanupStack::PushL( textBodyPart );
//For now do not do any conversion just add start and end..Let browser display plain text as is
//Later need to refine this and add conversions
//htmlFile = textBodyPart->GetContentFileL();
//Need to get buffer in this case, file does not work
//HBufC* contentBuffer=HBufC::NewLC(textBodyPart->ContentSize());
HBufC* contentBuffer=HBufC::NewLC(textBodyPart->FetchedContentSize());
TPtr bufPtr(contentBuffer->Des());
textBodyPart->GetContentToBufferL(bufPtr,0);
HBufC8* contentBuffer8=HBufC8::NewLC(contentBuffer->Length());
contentBuffer8->Des().Copy(*contentBuffer);
CopyFileToHtmlFileL( *contentBuffer8, KBodyHtmlFile, *textBodyPart );
bodyPartAvailable = ETrue;
CleanupStack::PopAndDestroy( contentBuffer8 );
CleanupStack::PopAndDestroy( contentBuffer );
CleanupStack::PopAndDestroy( textBodyPart );
}
}
// pass the emailHtmlFile to the browser for it to load
if ( bodyPartAvailable )
{
TPath emailHtmlFile;
emailHtmlFile.Copy( iHtmlFolderPath );
if ( direction == TBidiText::ELeftToRight )
{
emailHtmlFile.Append( KMessageHtmlFile );
}
else
{
emailHtmlFile.Append( KMessageHtmlRTLFile );
}
LoadContentFromFileL( emailHtmlFile );
}
UpdateOverlayButtons( ETrue );
}
// ---------------------------------------------------------------------------
// Reset content
// ---------------------------------------------------------------------------
//
void CFsEmailUiHtmlViewerContainer::ResetContent()
{
FUNC_LOG;
if ( iBrCtlInterface )
{
TRAP_IGNORE( iBrCtlInterface->HandleCommandL( ( TInt )TBrCtlDefs::ECommandIdBase +
( TInt )TBrCtlDefs::ECommandFreeMemory ) );
}
iFile.Close();
iLinkContents.Reset();
iMessageParts.Reset();
iMessage = NULL;
}
// ---------------------------------------------------------------------------
// From CCoeControl.
// ---------------------------------------------------------------------------
//
CCoeControl* CFsEmailUiHtmlViewerContainer::ComponentControl( TInt aIndex ) const
{
FUNC_LOG;
switch ( aIndex )
{
case 0:
{
return iBrCtlInterface;
}
default:
{
return NULL;
}
}
}
// ---------------------------------------------------------------------------
// From CCoeControl.
// ---------------------------------------------------------------------------
//
TInt CFsEmailUiHtmlViewerContainer::CountComponentControls() const
{
FUNC_LOG;
return 1;
}
// ---------------------------------------------------------------------------
// From CCoeControl.
// Draw this application's view to the screen
// ---------------------------------------------------------------------------
//
void CFsEmailUiHtmlViewerContainer::Draw( const TRect& /*aRect*/ ) const
{
FUNC_LOG;
// Get the standard graphics context
CWindowGc& gc = SystemGc();
// Gets the control's extent
TRect rect = Rect();
// Clears the screen
gc.Clear( rect );
}
// ---------------------------------------------------------------------------
// From CCoeControl.
// ---------------------------------------------------------------------------
//
void CFsEmailUiHtmlViewerContainer::SizeChanged()
{
FUNC_LOG;
TRect rect = Rect();
if ( iBrCtlInterface )
{
iBrCtlInterface->SetRect( rect );
}
if ( iMessage )
{
// update the width in header part and reload
TPath headerHtmlFile;
headerHtmlFile.Copy( iHtmlFolderPath );
headerHtmlFile.Append( KHeaderHtmlFile );
TRAP_IGNORE( CFreestyleMessageHeaderHTML::ExportL( *iMessage, iFs, headerHtmlFile,
rect.Width(), iScrollPosition ) )
TPath emailHtmlFile;
emailHtmlFile.Copy( iHtmlFolderPath );
emailHtmlFile.Append( KMessageHtmlFile );
TRAP_IGNORE( LoadContentFromFileL( emailHtmlFile ) )
}
UpdateOverlayButtons( IsVisible() );
}
// ---------------------------------------------------------------------------
// From CCoeControl.
// ---------------------------------------------------------------------------
//
TKeyResponse CFsEmailUiHtmlViewerContainer::OfferKeyEventL(
const TKeyEvent& aKeyEvent, TEventCode aType )
{
FUNC_LOG;
TKeyResponse retVal = EKeyWasNotConsumed;
// Handle keyboard shortcuts already on key down event as all keys
// do not necessarily send the key event at all.
if ( aType == EEventKeyDown )
{
// Check keyboard shortcuts
TInt shortcutCommand = iAppUi.ShortcutBinding().CommandForShortcutKey(
aKeyEvent, CFSEmailUiShortcutBinding::EContextHtmlViewer );
if ( shortcutCommand != KErrNotFound )
{
iView.HandleCommandL( shortcutCommand );
retVal = EKeyWasConsumed;
}
}
if ( iBrCtlInterface && retVal == EKeyWasNotConsumed )
{
retVal = iBrCtlInterface->OfferKeyEventL( aKeyEvent, aType );
}
iView.SetMskL();
return retVal;
}
// ---------------------------------------------------------------------------
// From MBrCtlSpecialLoadObserver.
// ---------------------------------------------------------------------------
//
void CFsEmailUiHtmlViewerContainer::NetworkConnectionNeededL(
TInt* aConnectionPtr,
TInt* aSockSvrHandle,
TBool* aNewConn,
TApBearerType* aBearerType )
{
FUNC_LOG;
*aBearerType = EApBearerTypeAllBearers;
if ( iFirstTime )
{
User::LeaveIfError( iSocketServer.Connect( KESockDefaultMessageSlots ) );
User::LeaveIfError( iConnection.Open( iSocketServer, KConnectionTypeDefault ) );
TCommDbConnPref prefs;
prefs.SetDialogPreference( ECommDbDialogPrefDoNotPrompt );
prefs.SetDirection( ECommDbConnectionDirectionOutgoing );
prefs.SetIapId( 0 ); // Ask for access point
User::LeaveIfError( iConnection.Start( prefs ) );
*aNewConn = ETrue;
iFirstTime = EFalse;
}
else
{
*aNewConn = EFalse;
}
*aConnectionPtr = reinterpret_cast<TInt>(&iConnection);
*aSockSvrHandle = iSocketServer.Handle();
}
// ---------------------------------------------------------------------------
// From MBrCtlSpecialLoadObserver.
// ---------------------------------------------------------------------------
//
TBool CFsEmailUiHtmlViewerContainer::HandleRequestL(
RArray<TUint>* /*aTypeArray*/, CDesCArrayFlat* /*aDesArray*/ )
{
FUNC_LOG;
// Let browser control handle these
return EFalse;
}
// ---------------------------------------------------------------------------
// From MBrCtlSpecialLoadObserver.
// ---------------------------------------------------------------------------
//
TBool CFsEmailUiHtmlViewerContainer::HandleDownloadL(
RArray<TUint>* /*aTypeArray*/, CDesCArrayFlat* /*aDesArray*/ )
{
FUNC_LOG;
// Let browser control handle these
return EFalse;
}
// ---------------------------------------------------------------------------
// From MFSEmailDownloadInformationObserver.
// ---------------------------------------------------------------------------
//
void CFsEmailUiHtmlViewerContainer::RequestResponseL( const TFSProgress& aEvent,
const TPartData& aPart )
{
FUNC_LOG;
if ( aEvent.iProgressStatus == TFSProgress::EFSStatus_RequestComplete )
{
MBrCtlLinkContent* linkContent = NULL;
for ( TInt ii = iMessageParts.Count() - 1; ii >= 0 && !linkContent; --ii )
{
if ( iMessageParts[ii] == aPart )
{
iMessageParts.Remove( ii );
linkContent = iLinkContents[ii];
iLinkContents.Remove( ii );
}
}
if ( !iMessageParts.Count() && iAppUi.DownloadInfoMediator() )
{
iAppUi.DownloadInfoMediator()->StopObserving( this );
}
if ( iMessage && linkContent )
{
CFSMailMessagePart* part = iMessage->ChildPartL( aPart.iMessagePartId );
CleanupStack::PushL( part );
RFile contentFile = part->GetContentFileL();
CleanupClosePushL( contentFile );
HBufC8* content = ReadContentFromFileLC( contentFile );
linkContent->HandleResolveComplete(
part->GetContentType(), KNullDesC(), content );
CleanupStack::PopAndDestroy( content );
CleanupStack::PopAndDestroy( &contentFile );
CleanupStack::PopAndDestroy( part );
}
if ( iMessage )
{
LoadContentFromMailMessageL( iMessage );
UpdateOverlayButtons( ETrue );
}
}
else if ( aEvent.iProgressStatus == TFSProgress::EFSStatus_RequestCancelled ||
aEvent.iProgressStatus < 0 )
{
if ( iAppUi.DownloadInfoMediator() )
{
iAppUi.DownloadInfoMediator()->StopObserving( this, aPart.iMessageId );
}
}
}
// ---------------------------------------------------------------------------
// From MBrCtlLinkResolver.
// ---------------------------------------------------------------------------
//
TBool CFsEmailUiHtmlViewerContainer::ResolveEmbeddedLinkL(
const TDesC& aEmbeddedUrl, const TDesC& /*aCurrentUrl*/,
TBrCtlLoadContentType /*aLoadContentType*/,
MBrCtlLinkContent& aEmbeddedLinkContent )
{
FUNC_LOG;
TBool linkResolved = EFalse;
// Check if given link contains content ID
if ( aEmbeddedUrl.Left( KContentIdPrefix().Length() ).CompareF( KContentIdPrefix ) == 0 )
{
TPtrC cid = aEmbeddedUrl.Mid( KContentIdPrefix().Length() );
linkResolved = ResolveLinkL( cid, ETrue, aEmbeddedLinkContent );
}
else
{
// Replace all slash character with backslash characters
HBufC* embeddedUrl = aEmbeddedUrl.AllocLC();
TPtr ptr = embeddedUrl->Des();
_LIT( KBackslash, "\\" );
for ( TInt pos = ptr.Locate('/'); pos >= 0; pos = ptr.Locate('/') )
{
ptr.Replace( pos, 1, KBackslash );
}
// Check whether given url refers to file in the temporary html folder
TInt pos = embeddedUrl->FindF( iTempHtmlFolderPath );
if ( pos >= 0 )
{
TPtrC filename = embeddedUrl->Mid( pos + iTempHtmlFolderPath.Length() );
linkResolved = ResolveLinkL( filename, EFalse, aEmbeddedLinkContent );
}
CleanupStack::PopAndDestroy( embeddedUrl );
}
// Return whether link is resolved by host application.
return linkResolved;
}
// ---------------------------------------------------------------------------
// From MBrCtlLinkResolver.
// ---------------------------------------------------------------------------
//
TBool CFsEmailUiHtmlViewerContainer::ResolveLinkL( const TDesC& aUrl,
const TDesC& /*aCurrentUrl*/, MBrCtlLinkContent& /*aBrCtlLinkContent*/ )
{
FUNC_LOG;
if (IsMessageBodyURL(aUrl))
{
iView.StartFetchingMessageL();
return ETrue;
}
else
{
if ( NeedToLaunchBrowserL( aUrl ) )
{
LaunchBrowserL( aUrl );
return ETrue;
}
else
{
return iEventHandler->HandleEventL( aUrl );
}
}
}
// ---------------------------------------------------------------------------
// From MBrCtlLinkResolver.
// ---------------------------------------------------------------------------
//
void CFsEmailUiHtmlViewerContainer::CancelAll()
{
FUNC_LOG;
}
// ---------------------------------------------------------------------------
// From MBrCtlSoftkeysObserver
// ---------------------------------------------------------------------------
//
void CFsEmailUiHtmlViewerContainer::UpdateSoftkeyL(
TBrCtlKeySoftkey /*aKeySoftkey*/, const TDesC& /*aLabel*/,
TUint32 /*aCommandId*/,
TBrCtlSoftkeyChangeReason /*aBrCtlSoftkeyChangeReason*/ )
{
FUNC_LOG;
}
// ---------------------------------------------------------------------------
// Set HTML folder path name
// ---------------------------------------------------------------------------
//
void CFsEmailUiHtmlViewerContainer::SetHtmlFolderPathL()
{
FUNC_LOG;
iHtmlFolderPath.Copy( KCDrive );
TFileName privatePath;
User::LeaveIfError( iFs.PrivatePath( privatePath ) );
iHtmlFolderPath.Append( privatePath );
iHtmlFolderPath.Append( KHtmlPath );
}
// ---------------------------------------------------------------------------
// Sets temporary HTML folder path name
// ---------------------------------------------------------------------------
//
void CFsEmailUiHtmlViewerContainer::SetTempHtmlFolderPath()
{
FUNC_LOG;
iTempHtmlFolderPath.Copy( iHtmlFolderPath );
iTempHtmlFolderPath.Append( KTempHtmlPath );
}
// ---------------------------------------------------------------------------
// Remove all previously created files from temporary HTML folder
// ---------------------------------------------------------------------------
//
void CFsEmailUiHtmlViewerContainer::EmptyTempHtmlFolderL()
{
FUNC_LOG;
// Delete all files from temp folder
TFileName allFiles;
allFiles.Append( iTempHtmlFolderPath );
allFiles.Append( KAllFiles );
TInt err = BaflUtils::DeleteFile( iFs, allFiles );
if ( err != KErrNotFound && err != KErrNone )
{
User::LeaveIfError( err );
}
}
// ---------------------------------------------------------------------------
// Copies given read-only file to HTML file
// ---------------------------------------------------------------------------
//
// <cmail>
void CFsEmailUiHtmlViewerContainer::CopyFileToHtmlFileL( RFile& aFile,
const TDesC& aFileName, CFSMailMessagePart& aHtmlBodyPart )
{
FUNC_LOG;
TFileName targetFileName;
targetFileName.Copy( iTempHtmlFolderPath );
targetFileName.Append( aFileName );
// Read content from given source file
HBufC8* content = ReadContentFromFileLC( aFile );
// Write content to target file
WriteContentToFileL( *content, targetFileName, aHtmlBodyPart );
CleanupStack::PopAndDestroy( content );
}
// </cmail>
// ---------------------------------------------------------------------------
// Copies given buffer to HTML file
// ---------------------------------------------------------------------------
//
// <cmail>
void CFsEmailUiHtmlViewerContainer::CopyFileToHtmlFileL( const TDesC8& aBuffer,
const TDesC& aFileName, CFSMailMessagePart& aHtmlBodyPart )
{
FUNC_LOG;
TFileName targetFileName;
targetFileName.Copy( iTempHtmlFolderPath );
targetFileName.Append( aFileName );
// Write content to target file
ConvertToHTML( aBuffer, targetFileName, aHtmlBodyPart );
}
// ---------------------------------------------------------------------------
// Reads given file content to buffer and return pointer to it
// ---------------------------------------------------------------------------
//
HBufC8* CFsEmailUiHtmlViewerContainer::ReadContentFromFileLC( RFile& aFile )
{
FUNC_LOG;
TInt size = 0;
User::LeaveIfError( aFile.Size( size ) );
HBufC8* buffer = HBufC8::NewLC( size );
TPtr8 ptr = buffer->Des();
User::LeaveIfError( aFile.Read( ptr, size ) );
return buffer;
}
// ---------------------------------------------------------------------------
// Writes buffer content to given file
// ---------------------------------------------------------------------------
//
// <cmail>
void CFsEmailUiHtmlViewerContainer::WriteContentToFileL( const TDesC8& aContent,
const TDesC& aFileName, CFSMailMessagePart& aHtmlBodyPart )
{
FUNC_LOG;
RBuf8 buffer;
buffer.CreateL( aContent );
buffer.CleanupClosePushL();
if ( SysUtil::DiskSpaceBelowCriticalLevelL( &iFs, buffer.Size(), EDriveC ) )
{
// Can not write the data, there's not enough free space on disk.
User::Leave( KErrDiskFull );
}
else
{
RFile targetFile;
CleanupClosePushL( targetFile );
User::LeaveIfError( targetFile.Replace( iFs, aFileName, EFileWrite ) );
// Try to find initial html tag (both '<html' and '<HTML' versions are searched)
TInt startTagOffset = buffer.Left( KMaxCharsToSearch ).FindF( KStartTag );
// Modifying text/html atta IF there's no '<html>' tag anywhere in
// the begining of file (KMaxCharsToSearch) AND there is charset
// parameter available
TBool modificationNeeded( EFalse );
if( startTagOffset == KErrNotFound )
{
modificationNeeded = ETrue;
}
// Write starting metadata if needed
if ( modificationNeeded )
{
HBufC8* charSet = GetCharacterSetL( aHtmlBodyPart );
CleanupStack::PushL( charSet );
User::LeaveIfError( targetFile.Write( KHtmlHeader1 ) );
User::LeaveIfError( targetFile.Write( *charSet ) );
User::LeaveIfError( targetFile.Write( KHtmlHeader2 ) );
CleanupStack::PopAndDestroy( charSet );
}
else
{
// Charset tag not found in html body
if ( buffer.Left( KMaxCharsToSearch ).FindF( KCharsetTag8 ) == KErrNotFound )
{
TInt startPos(0);
if ( ( startPos = buffer.Left( KMaxCharsToSearch ).FindF( KHeadTag ) ) != KErrNotFound )
{
HBufC8* charSet = GetCharacterSetL( aHtmlBodyPart );
CleanupStack::PushL( charSet );
HBufC8* metaBuffer = HBufC8::NewLC( charSet->Des().Length() + KHtmlHeader3().Length() );
TPtr8 metaHeader( metaBuffer->Des() );
metaHeader.AppendFormat( KHtmlHeader3, charSet );
TInt maxLength = buffer.Length() + metaHeader.Length();
buffer.ReAllocL( maxLength );
startPos += KHeadTag().Length();
buffer.Insert( startPos, metaHeader );
CleanupStack::PopAndDestroy( metaBuffer );
CleanupStack::PopAndDestroy( charSet );
}
}
}
// Write the original content
User::LeaveIfError( targetFile.Write( buffer ) );
// Write ending metadata if needed
if ( modificationNeeded )
{
INFO("Add end tags");
User::LeaveIfError( targetFile.Write( KHtmlEndTags ) );
}
CleanupStack::PopAndDestroy( &targetFile );
}
CleanupStack::PopAndDestroy( &buffer );
// </cmail>
}
// ---------------------------------------------------------------------------
// Finds the attachment from the list that matches the given content ID
// ---------------------------------------------------------------------------
//
CFSMailMessagePart* CFsEmailUiHtmlViewerContainer::MatchingAttacmentL(
const TDesC& aContentId,
const RPointerArray<CFSMailMessagePart>& aAttachments ) const
{
FUNC_LOG;
TBool contentFound = EFalse;
CFSMailMessagePart* attachment = NULL;
TInt attachmentCount = aAttachments.Count();
// Check whether one of the attachments has the given conten ID
for ( TInt i = 0; i < attachmentCount && !contentFound; i++ )
{
attachment = aAttachments[i];
const TDesC& contentId = attachment->ContentID();
if ( contentId.Compare( aContentId ) == 0 )
{
contentFound = ETrue;
}
}
// If attacment with given content ID was not found, check whether
// the given content ID contains the name of one of the attachments
for ( TInt i = 0; i < attachmentCount && !contentFound; ++i )
{
attachment = aAttachments[i];
const TDesC& name = attachment->AttachmentNameL();
if ( aContentId.FindF( name ) >= 0 )
{
contentFound = ETrue;
}
}
if ( !contentFound )
{
attachment = NULL;
}
return attachment;
}
// ---------------------------------------------------------------------------
// Resolves link referring to file in temporary HTML folder
// ---------------------------------------------------------------------------
//
TBool CFsEmailUiHtmlViewerContainer::ResolveLinkL( const TDesC& aLink,
TBool aContentId, MBrCtlLinkContent& aEmbeddedLinkContent )
{
FUNC_LOG;
TBool linkResolved = EFalse;
CFSMailMessagePart* attachment = NULL;
RPointerArray<CFSMailMessagePart> attachments;
CleanupResetAndDestroyClosePushL( attachments );
iMessage->AttachmentListL( attachments );
if ( aContentId )
{
attachment = MatchingAttacmentL( aLink, attachments );
}
else
{
const TInt attachmentCount = attachments.Count();
for ( TInt ii = 0; ii < attachmentCount && !attachment; ++ii )
{
if ( aLink.CompareF( attachments[ii]->AttachmentNameL() ) == 0 )
{
attachment = attachments[ii];
}
}
}
if ( attachment )
{
DownloadAttachmentL( *attachment, aEmbeddedLinkContent );
linkResolved = ETrue;
}
CleanupStack::PopAndDestroy( &attachments );
return linkResolved;
}
// ---------------------------------------------------------------------------
// Download attachment and return the content via MBrCtlLinkContent interface
// ---------------------------------------------------------------------------
//
void CFsEmailUiHtmlViewerContainer::DownloadAttachmentL(
CFSMailMessagePart& aAttachment, MBrCtlLinkContent& aEmbeddedLinkContent )
{
FUNC_LOG;
if ( aAttachment.FetchLoadState() == EFSFull )
{
RFile attachmentFile = aAttachment.GetContentFileL();
CleanupClosePushL( attachmentFile );
HBufC8* content = ReadContentFromFileLC( attachmentFile );
aEmbeddedLinkContent.HandleResolveComplete(
aAttachment.GetContentType(), KNullDesC(), content );
CleanupStack::PopAndDestroy( content );
CleanupStack::PopAndDestroy( &attachmentFile );
}
else
{
TPartData partData;
partData.iMailBoxId = iMessage->GetMailBoxId();
partData.iFolderId = iMessage->GetFolderId();
partData.iMessageId = iMessage->GetMessageId();
partData.iMessagePartId = aAttachment.GetPartId();
if ( iAppUi.DownloadInfoMediator() &&
iAppUi.DownloadInfoMediator()->IsDownloadableL( partData ) )
{
ASSERT( iLinkContents.Count() == iMessageParts.Count() );
// Append message part details and embedded link content interface
// to corresponding arrays so that the content can be returned
// when the download is completed.
iLinkContents.AppendL( &aEmbeddedLinkContent );
if ( iMessageParts.Append( partData ) != KErrNone )
{
iLinkContents.Remove( iLinkContents.Count() - 1 );
}
ASSERT( iLinkContents.Count() == iMessageParts.Count() );
if(!iView.GetAsyncFetchStatus())
{
iAppUi.DownloadInfoMediator()->AddObserver( this, aAttachment.GetMessageId() );
iObservingDownload=ETrue;
iAppUi.DownloadInfoMediator()->DownloadL( partData, EFalse );
}
}
}
}
void CFsEmailUiHtmlViewerContainer::SetHTMLResourceFlagFullName()
{
FUNC_LOG;
iHtmlResourceFlagPath.Copy( iHtmlFolderPath );
iHtmlResourceFlagPath.Append( KHtmlFlagFile );
}
void CFsEmailUiHtmlViewerContainer::EnableHTMLResourceFlagL()
{
FUNC_LOG;
RFile flag;
User::LeaveIfError( flag.Replace(iFs, iHtmlResourceFlagPath, EFileWrite) );
flag.Close();
}
TBool CFsEmailUiHtmlViewerContainer::HTMLResourceFlagEnabled()
{
FUNC_LOG;
return BaflUtils::FileExists( iFs, iHtmlResourceFlagPath );
}
void CFsEmailUiHtmlViewerContainer::CopyHTMLResourceL()
{
FUNC_LOG;
TPath htmlFolderPathInZ;
htmlFolderPathInZ.Copy( KZDrive );
TFileName privatePath;
User::LeaveIfError( iFs.PrivatePath( privatePath ) );
htmlFolderPathInZ.Append( privatePath );
htmlFolderPathInZ.Append( KHtmlPath );
CDir* dirList;
TPath listSpec;
listSpec.Copy( htmlFolderPathInZ );
listSpec.Append( _L("*.*") );
User::LeaveIfError( iFs.GetDir( listSpec, KEntryAttMaskSupported, ESortByName, dirList ) );
CleanupStack::PushL( dirList );
for ( TInt i=0; i < dirList->Count(); i++)
{
TPath sourceFileFullName;
sourceFileFullName.Copy( htmlFolderPathInZ );
sourceFileFullName.Append( (*dirList)[i].iName );
TBool isFolder( EFalse );
BaflUtils::IsFolder( iFs, sourceFileFullName, isFolder);
if ( isFolder )
{
break;
}
TPath targetFileFullName;
targetFileFullName.Copy( iHtmlFolderPath );
targetFileFullName.Append( (*dirList)[i].iName );
BaflUtils::DeleteFile( iFs, targetFileFullName );
BaflUtils::CopyFile( iFs, sourceFileFullName, targetFileFullName);
}
CleanupStack::PopAndDestroy( dirList );
}
void CFsEmailUiHtmlViewerContainer::EnsureHTMLResourceL()
{
FUNC_LOG;
if ( !HTMLResourceFlagEnabled() )
{
CopyHTMLResourceL();
EnableHTMLResourceFlagL();
}
}
// ---------------------------------------------------------------------------
// Writes buffer content to given file after adding tags
// ---------------------------------------------------------------------------
//
// <cmail>
void CFsEmailUiHtmlViewerContainer::ConvertToHTML( const TDesC8& aContent,
const TDesC& aFileName, CFSMailMessagePart& aTextBodyPart )
{
FUNC_LOG;
const TInt KBodyTextChunkSizeBytes = 1024;
if ( SysUtil::DiskSpaceBelowCriticalLevelL( &iFs, aContent.Size(), EDriveC ) )
{
// Can not write the data, there's not enough free space on disk.
User::Leave( KErrDiskFull );
}
else
{
CBufBase* bodyBuf = CBufSeg::NewL( KBodyTextChunkSizeBytes );
CleanupStack::PushL( bodyBuf );
bodyBuf->InsertL( 0, aContent );
TInt position( 0 );
TText8 previous = 0;
TBool EndOfString( EFalse );
while ( !EndOfString )
{
TInt startPosition = position;
TPtr8 segment( bodyBuf->Ptr( startPosition ) );
int i = 0;
while(i < segment.Length())
{
TInt currentPos = position + i;
TText8 ch = segment[i];
switch( ch )
{
case KSOH: // end of line for IMAP and POP
bodyBuf->Delete( currentPos, 1 );
bodyBuf->InsertL( currentPos, KHtmlLineBreakCRLF );
i += KHtmlLineBreakCRLF().Length();
segment.Set( bodyBuf->Ptr( startPosition ) );
break;
case KLF: // line feed
if ( previous == KCR )
{
bodyBuf->InsertL( currentPos, KHtmlLineBreak );
i += KHtmlLineBreak().Length();
segment.Set( bodyBuf->Ptr( startPosition ) );
}
else
{
i++;
}
break;
case KQuotation:
bodyBuf->Delete( currentPos, 1 );
bodyBuf->InsertL( currentPos, KHtmlQuotation );
i += KHtmlQuotation().Length();
segment.Set( bodyBuf->Ptr( startPosition ) );
break;
case KAmpersand:
bodyBuf->Delete( currentPos, 1 );
bodyBuf->InsertL( currentPos, KHtmlAmpersand );
i += KHtmlAmpersand().Length();
segment.Set( bodyBuf->Ptr( startPosition ) );
break;
case KGreaterThan:
bodyBuf->Delete( currentPos, 1 );
bodyBuf->InsertL( currentPos, KHtmlGreaterThan );
i += KHtmlGreaterThan().Length();
segment.Set( bodyBuf->Ptr( startPosition ) );
break;
case KLessThan:
bodyBuf->Delete( currentPos, 1 );
bodyBuf->InsertL( currentPos, KHtmlLessThan );
i += KHtmlLessThan().Length();
segment.Set( bodyBuf->Ptr( startPosition ) );
break;
default:
i++;
break;
}
previous = ch;
}
position += segment.Length();
if ( ( bodyBuf->Size() - position ) <= 0 )
{
EndOfString = ETrue;
}
}
CreateHyperlinksFromUrlsL( *bodyBuf );
RFile targetFile;
CleanupClosePushL( targetFile );
User::LeaveIfError( targetFile.Replace( iFs, aFileName, EFileWrite ) );
HBufC8* charSet = GetCharacterSetL( aTextBodyPart );
CleanupStack::PushL( charSet );
RBuf8 messageHeader;
TInt bufSize = KHtmlHeader1().Length() + charSet->Length() + KHtmlHeader2().Length();
messageHeader.CreateL( bufSize );
messageHeader.CleanupClosePushL();
messageHeader.Append( KHtmlHeader1 );
messageHeader.Append( *charSet );
messageHeader.Append( KHtmlHeader2 );
RFileWriteStream fileStream( targetFile );
fileStream.PushL();
fileStream.WriteL( messageHeader.Ptr(), messageHeader.Length() );
TInt bufPos( 0 );
TInt bufTotalSize = bodyBuf->Size();
while ( bufPos < bufTotalSize )
{
TInt segmentLength = bodyBuf->Ptr( bufPos ).Length();
fileStream.WriteL( bodyBuf->Ptr( bufPos ).Ptr(), segmentLength );
bufPos += segmentLength;
}
fileStream.CommitL();
CleanupStack::PopAndDestroy( &fileStream );
CleanupStack::PopAndDestroy( &messageHeader );
CleanupStack::PopAndDestroy( charSet );
CleanupStack::PopAndDestroy( &targetFile );
CleanupStack::PopAndDestroy( bodyBuf );
// </cmail>
}
}
// ---------------------------------------------------------------------------
// Finds and html formats hyperlinks in a document
// ---------------------------------------------------------------------------
//
// <cmail>
void CFsEmailUiHtmlViewerContainer::CreateHyperlinksFromUrlsL( CBufBase& aSource )
{
FUNC_LOG;
const TInt urlMaxLength = 2048;
_LIT8( KHttp, "http://" );
_LIT8( KHttps, "https://");
_LIT8( KWww, "www.");
TBool eos( EFalse );
TInt position( 0 );
TInt carryOverInc( 0 );
while ( !eos )
{
while ( carryOverInc >= aSource.Ptr( position ).Length() )
{ // Skip segments of overlapping url string
carryOverInc -= aSource.Ptr( position ).Length();
position += aSource.Ptr( position ).Length();
}
TPtr8 segment( aSource.Ptr( position ) );
TLex8 lexSegment( segment );
lexSegment.Inc( carryOverInc );
carryOverInc = 0;
while (!lexSegment.Eos())
{
TPtrC8 nextToken( lexSegment.NextToken() );
TInt foundAt( KErrNotFound );
// Find HTTP, HTTPS, or WWW link in CBufSeg segment of size 1024 bytes.
if ( ( ( foundAt = nextToken.FindC( KHttp ) ) != KErrNotFound ) ||
( ( foundAt = nextToken.FindC( KHttps ) ) != KErrNotFound ) ||
( ( foundAt = nextToken.FindC( KWww ) ) != KErrNotFound ) )
{
if ( !lexSegment.Eos() )
{
if ( !foundAt )
{ // Token starts with http/https/www.x
TPtrC8 url;
TInt lineBreakPos( KErrNotFound );
if ( ( lineBreakPos = nextToken.FindC( KHtmlLineBreak ) ) != KErrNotFound )
{ // Token contains html line break -> remove
url.Set( nextToken.Left( lineBreakPos ) );
}
else
{
url.Set( nextToken );
}
if ( url.CompareC( KWww ) != KErrNone ) // if token=www., validate format
{ // www.x
RBuf8 urlBuf;
urlBuf.CreateL( KHtmlLinkTag().Length() + url.Length() * 2
+ KHtmlLinkEndTag().Length() + KHtmlLineBreak().Length() );
urlBuf.CleanupClosePushL();
// Format html link
urlBuf.AppendFormat( KHtmlLinkTag, &url );
urlBuf.Append( url );
urlBuf.Append( KHtmlLinkEndTag );
if ( lineBreakPos != KErrNotFound )
{ // Add line break if removed earlier
urlBuf.Append( KHtmlLineBreak );
}
//Test
TInt nextTokenLength = nextToken.Length();
TInt segOffset = lexSegment.Offset();
TInt urlLength = urlBuf.Length();
//Test
TInt offset = lexSegment.Offset() - nextToken.Length();
TLexMark8 tokenMark;
// Move next character last token back
lexSegment.Inc( - nextToken.Length() );
lexSegment.Mark( tokenMark );
aSource.Delete( offset + position, nextToken.Length() );
aSource.InsertL( offset + position, urlBuf );
segment.Set( aSource.Ptr( position ) );
lexSegment.Assign( segment );
// Set next character to the position of inserted hyperlink
lexSegment.UnGetToMark( tokenMark );
// If Max segment length is reached, set carry over value to
// properly set next character in following CBufSeg segment
if ( ( offset + urlBuf.Length() ) >= segment.Length() )
{
carryOverInc = offset + urlBuf.Length() - segment.Length();
while ( !lexSegment.Eos() )
{ // Set to segment's end
lexSegment.NextToken();
}
}
else
{
lexSegment.Inc( urlBuf.Length() );
}
CleanupStack::PopAndDestroy( &urlBuf );
}
}
}
else
// Next token is end of string, here we handle the last token of a segment
{
_LIT8( KUrlEnd, "<" );
TInt endOfUrlPos( KErrNotFound );
TText8 ch = segment[ segment.Length() - 1];
RBuf8 url;
url.CreateL( urlMaxLength );
url.CleanupClosePushL();
// Find if hyperlink ends within this segment boundaries
if ( ch == KSOH || ch == KCR || ch == KLF || ch == KHT || ch == KCharacterSpace )
{
endOfUrlPos = nextToken.Length() - 1;
}
else if ( ( endOfUrlPos = nextToken.Right( KHtmlLineBreak().Length() ).Find( KUrlEnd ) ) != KErrNotFound )
{
endOfUrlPos = nextToken.Length() - KHtmlLineBreak().Length() + endOfUrlPos;
}
else
{ // Handle hyperlink spread in multiple segments
TInt nextPos = position;
TPtrC8 nextSegment( aSource.Ptr( nextPos ) );
TLex8 lexNextSegment( nextSegment );
TPtrC8 nextNextToken( nextToken );
TBool firstPass( ETrue );
while ( endOfUrlPos == KErrNotFound || nextPos >= aSource.Size() )
{
if ( ( url.Length() + nextNextToken.Length() ) > urlMaxLength )
{ // URL exceeds limit of 2K, do nothing
break;
}
url.Append( nextNextToken );
if ( ( nextSegment.Length() == nextNextToken.Length() ) || firstPass )
{ // Token takes up the whole segment, or first pass( first segment
// with last token where hyperlink does not end within segment's
// boundaries, move to next segment
nextPos += nextSegment.Length();
nextSegment.Set( aSource.Ptr( nextPos ) );
lexNextSegment.Assign( nextSegment );
nextNextToken.Set( lexNextSegment.NextToken() );
if ( firstPass )
{
firstPass = EFalse;
}
}
else
{ // Last segment's token with hyperlink's end
if ( ( endOfUrlPos = url.Find( KHtmlLineBreak ) ) != KErrNotFound )
{ // Remove line break
url.Delete( endOfUrlPos, KHtmlLineBreak().Length() );
endOfUrlPos = nextNextToken.Length() - KHtmlLineBreak().Length();
}
else
{
endOfUrlPos = nextNextToken.Length();
}
}
}
if ( endOfUrlPos != KErrNotFound )
{ // Handle hyperlink that is within 2K limit
RBuf8 urlBuf;
urlBuf.CreateL( KHtmlLinkTag().Length() + url.Length() * 2
+ KHtmlLinkEndTag().Length() + KHtmlLineBreak().Length() );
urlBuf.CleanupClosePushL();
// Format html link
urlBuf.AppendFormat( KHtmlLinkTag, &url );
urlBuf.Append( url );
urlBuf.Append( KHtmlLinkEndTag );
urlBuf.Append( KHtmlLineBreak );
TInt offset = lexSegment.Offset() - nextToken.Length();
// Remove hyperlink from the original message body
aSource.Delete( offset + position, url.Length() );
// Insert html formated hyperlink
aSource.InsertL( offset + position, urlBuf );
segment.Set( aSource.Ptr( position ) );
// Set carry on value to mark where new token should start in following segment
carryOverInc = endOfUrlPos;
position = nextPos;
CleanupStack::PopAndDestroy( &urlBuf );
}
}
CleanupStack::PopAndDestroy( &url );
}
}
}
position += segment.Length();
if ( ( aSource.Size() - position ) <= 0 )
{
eos = ETrue;
}
}
}
// ---------------------------------------------------------------------------
// Get Character set from CFSMailMessagePart
// ---------------------------------------------------------------------------
//
// <cmail>
HBufC8* CFsEmailUiHtmlViewerContainer::GetCharacterSetL( CFSMailMessagePart& aHtmlBodyPart )
{
FUNC_LOG;
CDesCArray& contentTypeArray( aHtmlBodyPart.ContentTypeParameters() );
HBufC8* charSet = KNullDesC8().AllocLC();
for ( TInt i = 0; i < contentTypeArray.Count(); i++ )
{
if ( ( contentTypeArray.MdcaPoint( i ).Find( KCharsetTag ) != KErrNotFound ) &&
contentTypeArray.Count() >= ( i+1) )
{
TPtrC value( contentTypeArray.MdcaPoint( i+1 ) );
if ( value.Length() )
{
CleanupStack::PopAndDestroy( charSet );
charSet = NULL;
charSet = HBufC8::NewLC( value.Length() );
charSet->Des().Copy( value );
break;
}
}
i++;
}
CleanupStack::Pop( charSet );
return charSet;
}
void CFsEmailUiHtmlViewerContainer::StopObserving()
{
if( iObservingDownload )
{
if ( iMessage && iAppUi.DownloadInfoMediator() )
{
iAppUi.DownloadInfoMediator()->StopObserving( this, iMessage->GetMessageId() );
}
iObservingDownload=EFalse;
}
}
void CFsEmailUiHtmlViewerContainer::CancelFetch()
{
FUNC_LOG;
if ( iBrCtlInterface )
{
TRAP_IGNORE( iBrCtlInterface->HandleCommandL( (TInt)TBrCtlDefs::ECommandCancelFetch + (TInt)TBrCtlDefs::ECommandIdBase ));
}
}
void CFsEmailUiHtmlViewerContainer::ClearCacheAndLoadEmptyContent()
{
FUNC_LOG;
if ( iBrCtlInterface )
{
iBrCtlInterface->ClearCache();
TUid uid;
uid.iUid = KCharacterSetIdentifierUtf8;
TRAP_IGNORE( iBrCtlInterface->LoadDataL(KHTMLDataScheme, KHTMLEmptyContent, _L8("text/html"), uid) );
}
}
void CFsEmailUiHtmlViewerContainer::HandleResourceChange( TInt aType )
{
CCoeControl::HandleResourceChange( aType );
if ( aType == CFsEmailUiViewBase::EScreenLayoutChanged )
{
// only update header if we get a layout change from email ui
RefreshCurrentMailHeader();
}
}
void CFsEmailUiHtmlViewerContainer::RefreshCurrentMailHeader()
{
if ( iMessage )
{
// Update the width in header part and reload
TPath headerHtmlFile;
headerHtmlFile.Copy( iHtmlFolderPath );
headerHtmlFile.Append( KHeaderHtmlFile );
TLanguage language = User::Language();
TBidiText::TDirectionality direction = TBidiText::ScriptDirectionality( language );
TRAP_IGNORE( CFreestyleMessageHeaderHTML::ExportL( *iMessage, iFs, headerHtmlFile, iAppUi.ClientRect().Width(), direction ) )
TPath emailHtmlFile;
emailHtmlFile.Copy( iHtmlFolderPath );
if ( direction == TBidiText::ELeftToRight )
{
emailHtmlFile.Append( KMessageHtmlFile );
}
else
{
emailHtmlFile.Append( KMessageHtmlRTLFile );
}
//Load page synchronously if menu invisible
if(!iEventHandler->IsMenuVisible())
{
TRAP_IGNORE( LoadContentFromFileL( emailHtmlFile ) );
SetRect( iAppUi.ClientRect() );
}
//Load page asynchronously after dismissing menu
else
{
iEventHandler->DismissMenuAndReload();
}
}
}
void CFsEmailUiHtmlViewerContainer::ReloadPageL()
{
TLanguage language = User::Language();
TBidiText::TDirectionality direction = TBidiText::ScriptDirectionality( language );
TPath emailHtmlFile;
emailHtmlFile.Copy( iHtmlFolderPath );
if ( direction == TBidiText::ELeftToRight )
{
emailHtmlFile.Append( KMessageHtmlFile );
}
else
{
emailHtmlFile.Append( KMessageHtmlRTLFile );
}
TRAP_IGNORE( LoadContentFromFileL( emailHtmlFile ) );
SetRect( iAppUi.ClientRect() );
}
/**
* The body fetch link is cmail://body/fetch. Look for the URL separator
* and the presence of cmail and body on the url.
* @param aUrl
* return ETrue for a valid body URL
*/
TBool CFsEmailUiHtmlViewerContainer::IsMessageBodyURL(const TDesC& aUrl)
{
TInt index = aUrl.Find(KURLSchemeSeparator);
if (index == KErrNotFound)
{
return EFalse;
}
else
{
if (aUrl.Left(index).CompareF(KURLSchemeCmail) == 0)
{
TInt bodyIndex = aUrl.Find(KURLTypeBody);
if (bodyIndex == KErrNotFound)
{
return EFalse;
}
else
{
TPtrC16 data= aUrl.Mid(bodyIndex);
TInt separator = data.Find(KURLSlash);
if(separator == KErrNotFound)
{
return EFalse;
}
else
{
TPtrC16 temp = data.Mid(separator+1);
TLex lex(temp);
lex.Val(iScrollPosition);
}
return ETrue;
}
}
else
{
return EFalse;
}
}
}
// ---------------------------------------------------------------------------
// From MBrCtlWindowObserver
// ---------------------------------------------------------------------------
//
CBrCtlInterface* CFsEmailUiHtmlViewerContainer::OpenWindowL( TDesC& /*aUrl*/, TDesC* /*aTargetName*/,
TBool /*aUserInitiated*/, TAny* /*aReserved*/ )
{
return iBrCtlInterface;
}
// ---------------------------------------------------------------------------
// From MBrCtlWindowObserver
// ---------------------------------------------------------------------------
//
CBrCtlInterface* CFsEmailUiHtmlViewerContainer::FindWindowL( const TDesC& /*aTargetName*/ ) const
{
return NULL;
}
// ---------------------------------------------------------------------------
// From MBrCtlWindowObserver
// ---------------------------------------------------------------------------
//
void CFsEmailUiHtmlViewerContainer::HandleWindowCommandL( const TDesC& /*aTargetName*/,
TBrCtlWindowCommand /*aCommand*/ )
{
}
// ---------------------------------------------------------------------------
// Check if a tap on the URL requires browser(standalone) to be launched
// ---------------------------------------------------------------------------
//
TBool CFsEmailUiHtmlViewerContainer::NeedToLaunchBrowserL( const TDesC& aUrl )
{
TBool launchBrowser( ETrue );
// look for file:///
_LIT( KFileLink, "file:///");
// This might be linking to header.html or body.html frames
// Ignore them.
if ( aUrl.Left( KFileLink().Length() ).CompareF( KFileLink ) == 0 )
{
//Now there is a chance that this could be from HTML folder
// Replace all slash character with backslash characters
HBufC* embeddedUrl = aUrl.AllocLC();
TPtr ptr = embeddedUrl->Des();
_LIT( KBackslash, "\\" );
for ( TInt pos = ptr.Locate('/'); pos >= 0; pos = ptr.Locate('/') )
{
ptr.Replace( pos, 1, KBackslash );
}
// Check whether given url refers to file in the html folder
TInt pos = embeddedUrl->FindF( iHtmlFolderPath );
CleanupStack::PopAndDestroy( embeddedUrl );
pos >= 0 ? launchBrowser = EFalse : ETrue;
}
// Ignore links starting with cmail://
else if ( aUrl.Left( KURLSchemeCmail().Length() ).CompareF( KURLSchemeCmail ) == 0 )
{
launchBrowser = EFalse;
}
return launchBrowser;
}
// ---------------------------------------------------------------------------
// Launch the browser as a standalone app
// ---------------------------------------------------------------------------
//
void CFsEmailUiHtmlViewerContainer::LaunchBrowserL( const TDesC& aUrl )
{
CSchemeHandler* handler = CSchemeHandler::NewL( aUrl );
CleanupStack::PushL( handler );
handler->HandleUrlStandaloneL();
CleanupStack::PopAndDestroy( handler );
}