hxurlwrp.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:5k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. /*
  36.  *
  37.  * Abstraction:
  38.  * Provides a "wrapper" for a URL. A UrlWrapper is a html file that causes
  39.  * a refresh to the "wrapped" URL. Since there is a limit to the length of URLs
  40.  * that can be passed to a browser via DDE or the command line, UrlWrapper
  41.  * provides a work-around the length limit.
  42.  *
  43.  */
  44. #include "hxurlwrp.h"
  45. #include "hxstrutl.h"
  46. #include "hxresult.h"
  47. #include "chxdataf.h"
  48. #include "hxpref.h"
  49. #include "hxbuffer.h"
  50. #include "hlxclib/stdio.h"
  51. #include "hlxclib/stdlib.h"
  52. #include "hlxclib/fcntl.h"
  53. #include "hxheap.h"
  54. #include "hxver.h"
  55. #ifdef _DEBUG
  56. #undef HX_THIS_FILE
  57. static const char HX_THIS_FILE[] = __FILE__;
  58. #endif
  59. // Create a temporarly html file that will immediately "refresh" to the original URL
  60. // This works around the Win32 256 char limit sending URLs to browser via DDE or command line.
  61. // WARNING: We are assuming the URL is safe to embed into a META refresh command. IE, the
  62. // URL needs to be properly URL-escaped.
  63. HX_RESULT CHXUrlWrapper::Wrap(const char* szOldUrl, CHXString* pNewUrl)
  64. {
  65.     HX_RESULT nResult = HXR_OK;
  66.     CHXDataFile*    pDataFile = CHXDataFile::Construct();
  67.     HX_ASSERT(pDataFile);
  68.     if (pDataFile == NULL)
  69. return HXR_OUTOFMEMORY;
  70.     // Go through a lot just to get a file called 'G2Play.htm' in a guaranteed
  71.     // temp directory.
  72.     char  szTempFull[_MAX_PATH] = ""; /* Flawfinder: ignore */
  73.     
  74.     pDataFile->GetTemporaryFileName("HX", szTempFull, _MAX_PATH);
  75.     *pNewUrl = szTempFull;
  76.     pDataFile->Delete(szTempFull);
  77. #ifndef _MACINTOSH
  78.     int nIndex = pNewUrl->ReverseFind('.');
  79.     if(nIndex != -1)
  80. *pNewUrl = pNewUrl->Left(nIndex);
  81. #endif
  82.     *pNewUrl += ".htm";
  83.     IHXPreferences* pSharedPrefs = new HXPreferences;
  84.     if(pSharedPrefs)
  85.     {
  86. pSharedPrefs->AddRef();
  87. ((HXPreferences*)pSharedPrefs)->OpenShared(HXVER_COMMUNITY);
  88. IHXBuffer* pBuffer = NULL;
  89. if(pSharedPrefs->ReadPref("LastTempFile", pBuffer) == HXR_OK)
  90. {
  91.     pDataFile->Delete((const char*)pBuffer->GetBuffer());
  92.     HX_RELEASE(pBuffer);
  93. }
  94. pBuffer = new CHXBuffer;
  95. if(pBuffer)
  96. {
  97.     pBuffer->AddRef();
  98.     pBuffer->Set((const BYTE*)(const char*)*pNewUrl, pNewUrl->GetLength() + 1);
  99.     pSharedPrefs->WritePref("LastTempFile", pBuffer);
  100.     HX_RELEASE(pBuffer);
  101. }
  102.         HX_RELEASE(pSharedPrefs);
  103.     }
  104.     if (SUCCEEDED(nResult))
  105.     {
  106. nResult = pDataFile->Open( (const char *)(*pNewUrl), O_CREAT|O_TRUNC|O_WRONLY, TRUE);
  107.     }
  108.     if (SUCCEEDED(nResult))
  109.     {
  110. #ifdef _MACINTOSH
  111.      char* pSlash = pNewUrl->GetBuffer(pNewUrl->GetLength());
  112.      while ((pSlash = strchr(pSlash, ':')) != 0)
  113.          *pSlash = '/';
  114.      pNewUrl->ReleaseBuffer();
  115.     
  116. #endif
  117.      CHXString tempData = "<HEAD>n<META HTTP-EQUIV="refresh" CONTENT="0;URL=";
  118.     
  119.      nResult = pDataFile->Write(tempData, tempData.GetLength());
  120.      if (SUCCEEDED(nResult))
  121.      {
  122.     // XXXJL_SECURITY If the URL contains any of these reserved characters that attempt to end the CONTENT attribute
  123.     // or the META tag, then we truncate the URL at this character.  This makes sure that the CONTENT tag is only
  124.     // ended by this code so arbitrary html (mainly script) cannot be injected
  125.     const char pDisallowedChars[] = "<>"";
  126.     const char* pFirstDisallowedChar = ::strpbrk(szOldUrl, pDisallowedChars);
  127.     UINT32 ulLength = ::strlen(szOldUrl);
  128.     if (pFirstDisallowedChar)
  129.     {
  130. ulLength = pFirstDisallowedChar - szOldUrl;
  131.     }
  132.          pDataFile->Write(szOldUrl, ulLength);
  133.      }
  134.      if (SUCCEEDED(nResult))
  135.      {
  136.          pDataFile->Write("">n", 3 );
  137.          pDataFile->Write("</HEAD>n", 8 );
  138.      }
  139.     
  140.      pDataFile->Close();
  141.     }
  142.     HX_DELETE(pDataFile);
  143.     
  144.     return (nResult);
  145. }