2010-08-03 21:44:50 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2010-08-03 21:44:50 +04:00
|
|
|
|
|
|
|
#include "nsISystemProxySettings.h"
|
|
|
|
#include "mozilla/ModuleUtils.h"
|
|
|
|
#include "nsIServiceManager.h"
|
|
|
|
#include "nsIURI.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsNetUtil.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nspr.h"
|
|
|
|
|
2011-01-05 16:48:23 +03:00
|
|
|
extern "C" {
|
2010-08-03 21:44:50 +04:00
|
|
|
#include <proxy.h>
|
2011-01-05 16:48:23 +03:00
|
|
|
}
|
2010-08-03 21:44:50 +04:00
|
|
|
|
|
|
|
class nsUnixSystemProxySettings : public nsISystemProxySettings {
|
|
|
|
public:
|
2013-07-19 06:24:15 +04:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2010-08-03 21:44:50 +04:00
|
|
|
NS_DECL_NSISYSTEMPROXYSETTINGS
|
|
|
|
|
2012-07-30 18:20:58 +04:00
|
|
|
nsUnixSystemProxySettings() { mProxyFactory = nullptr; }
|
2010-08-03 21:44:50 +04:00
|
|
|
nsresult Init();
|
|
|
|
|
|
|
|
private:
|
|
|
|
~nsUnixSystemProxySettings() {
|
|
|
|
if (mProxyFactory)
|
|
|
|
px_proxy_factory_free(mProxyFactory);
|
|
|
|
}
|
|
|
|
|
|
|
|
pxProxyFactory *mProxyFactory;
|
|
|
|
};
|
|
|
|
|
2013-07-19 06:24:15 +04:00
|
|
|
NS_IMPL_ISUPPORTS1(nsUnixSystemProxySettings, nsISystemProxySettings)
|
2012-09-15 00:27:46 +04:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsUnixSystemProxySettings::GetMainThreadOnly(bool *aMainThreadOnly)
|
|
|
|
{
|
|
|
|
*aMainThreadOnly = false;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2010-08-03 21:44:50 +04:00
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsUnixSystemProxySettings::Init()
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsUnixSystemProxySettings::GetPACURI(nsACString& aResult)
|
|
|
|
{
|
|
|
|
// Make sure we return an empty result.
|
|
|
|
aResult.Truncate();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2012-09-15 00:27:46 +04:00
|
|
|
nsUnixSystemProxySettings::GetProxyForURI(const nsACString & aSpec,
|
|
|
|
const nsACString & aScheme,
|
|
|
|
const nsACString & aHost,
|
|
|
|
const int32_t aPort,
|
|
|
|
nsACString & aResult)
|
2010-08-03 21:44:50 +04:00
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
if (!mProxyFactory) {
|
|
|
|
mProxyFactory = px_proxy_factory_new();
|
|
|
|
}
|
|
|
|
NS_ENSURE_TRUE(mProxyFactory, NS_ERROR_NOT_AVAILABLE);
|
|
|
|
|
2012-07-30 18:20:58 +04:00
|
|
|
char **proxyArray = nullptr;
|
2012-09-15 00:27:46 +04:00
|
|
|
proxyArray = px_proxy_factory_get_proxies(mProxyFactory,
|
|
|
|
PromiseFlatCString(aSpec).get());
|
2010-08-03 21:44:50 +04:00
|
|
|
NS_ENSURE_TRUE(proxyArray, NS_ERROR_NOT_AVAILABLE);
|
|
|
|
|
|
|
|
// Translate libproxy's output to PAC string as expected
|
|
|
|
// libproxy returns an array of proxies in the format:
|
|
|
|
// <procotol>://[username:password@]proxy:port
|
|
|
|
// or
|
|
|
|
// direct://
|
|
|
|
//
|
|
|
|
// PAC format: "PROXY proxy1.foo.com:8080; PROXY proxy2.foo.com:8080; DIRECT"
|
2012-09-15 00:27:46 +04:00
|
|
|
// but nsISystemProxySettings allows "PROXY http://proxy.foo.com:8080" as well.
|
|
|
|
|
2010-08-03 21:44:50 +04:00
|
|
|
int c = 0;
|
|
|
|
while (proxyArray[c] != NULL) {
|
|
|
|
if (!aResult.IsEmpty()) {
|
|
|
|
aResult.AppendLiteral("; ");
|
|
|
|
}
|
|
|
|
|
2012-09-15 00:27:46 +04:00
|
|
|
// figure out the scheme, and we can't use nsIIOService::NewURI because
|
|
|
|
// this is not the main thread.
|
|
|
|
char *colon = strchr (proxyArray[c], ':');
|
|
|
|
uint32_t schemelen = colon ? colon - proxyArray[c] : 0;
|
|
|
|
if (schemelen < 1) {
|
2010-08-03 21:44:50 +04:00
|
|
|
c++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2012-09-15 00:27:46 +04:00
|
|
|
if (schemelen == 6 && !strncasecmp(proxyArray[c], "direct", 6)) {
|
|
|
|
aResult.AppendLiteral("DIRECT");
|
2010-08-03 21:44:50 +04:00
|
|
|
}
|
2012-09-15 00:27:46 +04:00
|
|
|
else {
|
|
|
|
aResult.AppendLiteral("PROXY ");
|
|
|
|
aResult.Append(proxyArray[c]);
|
2010-08-03 21:44:50 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
c++;
|
|
|
|
}
|
|
|
|
|
|
|
|
PR_Free(proxyArray);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define NS_UNIXSYSTEMPROXYSERVICE_CID /* 0fa3158c-d5a7-43de-9181-a285e74cf1d4 */\
|
|
|
|
{ 0x0fa3158c, 0xd5a7, 0x43de, \
|
|
|
|
{0x91, 0x81, 0xa2, 0x85, 0xe7, 0x4c, 0xf1, 0xd4 } }
|
|
|
|
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nsUnixSystemProxySettings, Init)
|
|
|
|
NS_DEFINE_NAMED_CID(NS_UNIXSYSTEMPROXYSERVICE_CID);
|
|
|
|
|
|
|
|
static const mozilla::Module::CIDEntry kUnixProxyCIDs[] = {
|
|
|
|
{ &kNS_UNIXSYSTEMPROXYSERVICE_CID, false, NULL, nsUnixSystemProxySettingsConstructor },
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
static const mozilla::Module::ContractIDEntry kUnixProxyContracts[] = {
|
|
|
|
{ NS_SYSTEMPROXYSETTINGS_CONTRACTID, &kNS_UNIXSYSTEMPROXYSERVICE_CID },
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
static const mozilla::Module kUnixProxyModule = {
|
|
|
|
mozilla::Module::kVersion,
|
|
|
|
kUnixProxyCIDs,
|
|
|
|
kUnixProxyContracts
|
|
|
|
};
|
|
|
|
|
|
|
|
NSMODULE_DEFN(nsUnixProxyModule) = &kUnixProxyModule;
|
|
|
|
|