hxurlwrp.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:6k
源码类别:

Symbian

开发平台:

Visual C++

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