2006-09-15 13:51:40 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
2006-09-15 13:51:36 +04:00
|
|
|
*
|
2006-09-15 13:51:40 +04:00
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.1 (the "License"); you may not use this file except in
|
|
|
|
* compliance with the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/NPL/
|
2006-09-15 13:51:36 +04:00
|
|
|
*
|
2006-09-15 13:51:40 +04:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
2006-09-15 13:51:36 +04:00
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2006-09-15 13:51:40 +04:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
2006-09-15 13:51:36 +04:00
|
|
|
*
|
2006-09-15 13:51:40 +04:00
|
|
|
* Contributor(s):
|
2006-09-15 13:51:36 +04:00
|
|
|
* Gagan Saksena (original author)
|
2006-09-15 13:51:40 +04:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the NPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the NPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2006-09-15 13:51:36 +04:00
|
|
|
|
|
|
|
#include "nsAboutRedirector.h"
|
2006-09-15 13:51:37 +04:00
|
|
|
#include "nsNetCID.h"
|
2006-09-15 13:51:36 +04:00
|
|
|
#include "nsIIOService.h"
|
|
|
|
#include "nsIServiceManager.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIURI.h"
|
|
|
|
#include "nsXPIDLString.h"
|
2006-09-15 13:51:42 +04:00
|
|
|
#include "nsString2.h"
|
2006-09-15 13:51:36 +04:00
|
|
|
#include "plstr.h"
|
2006-09-15 13:51:38 +04:00
|
|
|
#include "nsIScriptSecurityManager.h"
|
2006-09-15 13:51:36 +04:00
|
|
|
|
|
|
|
static NS_DEFINE_CID(kIOServiceCID, NS_IOSERVICE_CID);
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS1(nsAboutRedirector, nsIAboutModule)
|
|
|
|
|
|
|
|
// if you add something here, make sure you update the total
|
|
|
|
static const char *kRedirMap[][2] = {
|
|
|
|
{ "credits", "http://www.mozilla.org/credits/" },
|
|
|
|
{ "mozilla", "chrome://global/content/mozilla.html" },
|
2006-09-15 13:51:41 +04:00
|
|
|
{ "plugins", "chrome://global/content/plugins.html" },
|
|
|
|
{ "config", "chrome://global/content/config.xul" }
|
2006-09-15 13:51:36 +04:00
|
|
|
};
|
2006-09-15 13:51:41 +04:00
|
|
|
static const int kRedirTotal = 4; // sizeof(kRedirMap)/sizeof(*kRedirMap)
|
2006-09-15 13:51:36 +04:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsAboutRedirector::NewChannel(nsIURI *aURI, nsIChannel **result)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG(aURI);
|
2006-09-15 13:51:42 +04:00
|
|
|
nsCAutoString path;
|
|
|
|
(void)aURI->GetPath(path);
|
2006-09-15 13:51:36 +04:00
|
|
|
nsresult rv;
|
2006-09-15 13:51:39 +04:00
|
|
|
nsCOMPtr<nsIIOService> ioService(do_GetService(kIOServiceCID, &rv));
|
2006-09-15 13:51:36 +04:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
2006-09-15 13:51:38 +04:00
|
|
|
static const char kChromePrefix[] = "chrome:";
|
2006-09-15 13:51:36 +04:00
|
|
|
for (int i = 0; i< kRedirTotal; i++)
|
|
|
|
{
|
2006-09-15 13:51:42 +04:00
|
|
|
if (!PL_strcasecmp(path.get(), kRedirMap[i][0]))
|
2006-09-15 13:51:38 +04:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIChannel> tempChannel;
|
2006-09-15 13:51:42 +04:00
|
|
|
rv = ioService->NewChannel(nsDependentCString(kRedirMap[i][1]),
|
|
|
|
nsnull, nsnull, getter_AddRefs(tempChannel));
|
2006-09-15 13:51:38 +04:00
|
|
|
//-- If we're redirecting to a chrome URL, change the owner of the channel
|
|
|
|
// to keep the page from getting unnecessary privileges.
|
|
|
|
if (NS_SUCCEEDED(rv) && result &&
|
|
|
|
!PL_strncasecmp(kRedirMap[i][1], kChromePrefix, sizeof(kChromePrefix)-1))
|
|
|
|
{
|
2006-09-15 13:51:39 +04:00
|
|
|
nsCOMPtr<nsIScriptSecurityManager> securityManager =
|
|
|
|
do_GetService(NS_SCRIPTSECURITYMANAGER_CONTRACTID, &rv);
|
2006-09-15 13:51:38 +04:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIPrincipal> principal;
|
|
|
|
rv = securityManager->GetCodebasePrincipal(aURI, getter_AddRefs(principal));
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
nsCOMPtr<nsISupports> owner = do_QueryInterface(principal);
|
|
|
|
rv = tempChannel->SetOwner(owner);
|
|
|
|
}
|
|
|
|
*result = tempChannel.get();
|
|
|
|
NS_ADDREF(*result);
|
|
|
|
return rv;
|
|
|
|
}
|
2006-09-15 13:51:36 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
NS_ASSERTION(0, "nsAboutRedirector called for unknown case");
|
|
|
|
return NS_ERROR_ILLEGAL_VALUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_METHOD
|
|
|
|
nsAboutRedirector::Create(nsISupports *aOuter, REFNSIID aIID, void **aResult)
|
|
|
|
{
|
|
|
|
nsAboutRedirector* about = new nsAboutRedirector();
|
|
|
|
if (about == nsnull)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
NS_ADDREF(about);
|
|
|
|
nsresult rv = about->QueryInterface(aIID, aResult);
|
|
|
|
NS_RELEASE(about);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|