llweb.cpp
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:5k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llweb.cpp
  3.  * @brief Functions dealing with web browsers
  4.  * @author James Cook
  5.  *
  6.  * $LicenseInfo:firstyear=2006&license=viewergpl$
  7.  * 
  8.  * Copyright (c) 2006-2010, Linden Research, Inc.
  9.  * 
  10.  * Second Life Viewer Source Code
  11.  * The source code in this file ("Source Code") is provided by Linden Lab
  12.  * to you under the terms of the GNU General Public License, version 2.0
  13.  * ("GPL"), unless you have obtained a separate licensing agreement
  14.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  15.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  16.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  17.  * 
  18.  * There are special exceptions to the terms and conditions of the GPL as
  19.  * it is applied to this Source Code. View the full text of the exception
  20.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  21.  * online at
  22.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  23.  * 
  24.  * By copying, modifying or distributing this software, you acknowledge
  25.  * that you have read and understood your obligations described above,
  26.  * and agree to abide by those obligations.
  27.  * 
  28.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  29.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  30.  * COMPLETENESS OR PERFORMANCE.
  31.  * $/LicenseInfo$
  32.  */
  33. #include "llviewerprecompiledheaders.h"
  34. #include "llweb.h"
  35. // Library includes
  36. #include "llwindow.h" // spawnWebBrowser()
  37. #include "llagent.h"
  38. #include "llappviewer.h"
  39. #include "llfloatermediabrowser.h"
  40. #include "llfloaterreg.h"
  41. #include "lllogininstance.h"
  42. #include "llparcel.h"
  43. #include "llsd.h"
  44. #include "lltoastalertpanel.h"
  45. #include "llui.h"
  46. #include "lluri.h"
  47. #include "llversioninfo.h"
  48. #include "llviewercontrol.h"
  49. #include "llviewernetwork.h"
  50. #include "llviewerparcelmgr.h"
  51. #include "llviewerregion.h"
  52. #include "llviewerwindow.h"
  53. class URLLoader : public LLToastAlertPanel::URLLoader
  54. {
  55. virtual void load(const std::string& url , bool force_open_externally)
  56. {
  57. if (force_open_externally)
  58. {
  59. LLWeb::loadURLExternal(url);
  60. }
  61. else
  62. {
  63. LLWeb::loadURL(url);
  64. }
  65. }
  66. };
  67. static URLLoader sAlertURLLoader;
  68. // static
  69. void LLWeb::initClass()
  70. {
  71. LLToastAlertPanel::setURLLoader(&sAlertURLLoader);
  72. }
  73. // static
  74. void LLWeb::loadURL(const std::string& url)
  75. {
  76. if (gSavedSettings.getBOOL("UseExternalBrowser"))
  77. {
  78. loadURLExternal(url);
  79. }
  80. else
  81. {
  82. loadURLInternal(url);
  83. }
  84. }
  85. // static
  86. void LLWeb::loadURLInternal(const std::string &url)
  87. {
  88. LLFloaterReg::showInstance("media_browser", url);
  89. }
  90. // static
  91. void LLWeb::loadURLExternal(const std::string& url)
  92. {
  93. std::string escaped_url = escapeURL(url);
  94. gViewerWindow->getWindow()->spawnWebBrowser(escaped_url);
  95. }
  96. // static
  97. std::string LLWeb::escapeURL(const std::string& url)
  98. {
  99. // The CURL curl_escape() function escapes colons, slashes,
  100. // and all characters but A-Z and 0-9.  Do a cheesy mini-escape.
  101. std::string escaped_url;
  102. S32 len = url.length();
  103. for (S32 i = 0; i < len; i++)
  104. {
  105. char c = url[i];
  106. if (c == ' ')
  107. {
  108. escaped_url += "%20";
  109. }
  110. else if (c == '\')
  111. {
  112. escaped_url += "%5C";
  113. }
  114. else
  115. {
  116. escaped_url += c;
  117. }
  118. }
  119. return escaped_url;
  120. }
  121. //static
  122. std::string LLWeb::expandURLSubstitutions(const std::string &url,
  123.   const LLSD &default_subs)
  124. {
  125. LLSD substitution = default_subs;
  126. substitution["VERSION"] = LLVersionInfo::getVersion();
  127. substitution["VERSION_MAJOR"] = LLVersionInfo::getMajor();
  128. substitution["VERSION_MINOR"] = LLVersionInfo::getMinor();
  129. substitution["VERSION_PATCH"] = LLVersionInfo::getPatch();
  130. substitution["VERSION_BUILD"] = LLVersionInfo::getBuild();
  131. substitution["CHANNEL"] = LLVersionInfo::getChannel();
  132. substitution["GRID"] = LLViewerLogin::getInstance()->getGridLabel();
  133. substitution["OS"] = LLAppViewer::instance()->getOSInfo().getOSStringSimple();
  134. substitution["SESSION_ID"] = gAgent.getSessionID();
  135. substitution["FIRST_LOGIN"] = gAgent.isFirstLogin();
  136. // work out the current language
  137. std::string lang = LLUI::getLanguage();
  138. if (lang == "en-us")
  139. {
  140. // *HACK: the correct fix is to change English.lproj/language.txt,
  141. // but we're late in the release cycle and this is a less risky fix
  142. lang = "en";
  143. }
  144. substitution["LANGUAGE"] = lang;
  145. // find the region ID
  146. LLUUID region_id;
  147. LLViewerRegion *region = gAgent.getRegion();
  148. if (region)
  149. {
  150. region_id = region->getRegionID();
  151. }
  152. substitution["REGION_ID"] = region_id;
  153. // find the parcel local ID
  154. S32 parcel_id = 0;
  155. LLParcel* parcel = LLViewerParcelMgr::getInstance()->getAgentParcel();
  156. if (parcel)
  157. {
  158. parcel_id = parcel->getLocalID();
  159. }
  160. substitution["PARCEL_ID"] = llformat("%d", parcel_id);
  161. // expand all of the substitution strings and escape the url
  162. std::string expanded_url = url;
  163. LLStringUtil::format(expanded_url, substitution);
  164. return LLWeb::escapeURL(expanded_url);
  165. }