1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/. */
#include "nsMailGNOMEIntegration.h"
#include "nsIGConfService.h"
#include "nsIGIOService.h"
#include "nsCOMPtr.h"
#include "nsIServiceManager.h"
#include "prenv.h"
#include "nsIFile.h"
#include "nsIStringBundle.h"
#include "nsIPromptService.h"
#include "nsIPrefService.h"
#include "nsIPrefBranch.h"
#include "nsDirectoryServiceDefs.h"
#include "nsDirectoryServiceUtils.h"
#include "nsEmbedCID.h"
#include "mozilla/ArrayUtils.h"
#include "mozilla/Services.h"
#include <glib.h>
#include <limits.h>
#include <stdlib.h>
using mozilla::ArrayLength;
static const char* const sMailProtocols[] = {
"mailto"
};
static const char* const sNewsProtocols[] = {
"news",
"snews",
"nntp"
};
static const char* const sFeedProtocols[] = {
"feed"
};
struct AppTypeAssociation {
uint16_t type;
const char * const *protocols;
unsigned int protocolsLength;
const char *mimeType;
const char *extensions;
};
static const AppTypeAssociation sAppTypes[] = {
{
nsIShellService::MAIL, sMailProtocols, ArrayLength(sMailProtocols),
"message/rfc822",
nullptr // don't associate .eml extension, as that breaks printing those
},
{
nsIShellService::NEWS, sNewsProtocols, ArrayLength(sNewsProtocols),
nullptr, nullptr
},
{
nsIShellService::RSS, sFeedProtocols, ArrayLength(sFeedProtocols),
"application/rss+xml", "rss"
}
};
nsMailGNOMEIntegration::nsMailGNOMEIntegration():
mCheckedThisSession(false),
mAppIsInPath(false)
{}
nsresult
nsMailGNOMEIntegration::Init()
{
nsresult rv;
// GConf _must_ be available, or we do not allow CreateInstance to succeed.
nsCOMPtr<nsIGConfService> gconf = do_GetService(NS_GCONFSERVICE_CONTRACTID);
nsCOMPtr<nsIGIOService> giovfs = do_GetService(NS_GIOSERVICE_CONTRACTID);
if (!gconf && !giovfs)
return NS_ERROR_NOT_AVAILABLE;
// Check G_BROKEN_FILENAMES. If it's set, then filenames in glib use
// the locale encoding. If it's not set, they use UTF-8.
mUseLocaleFilenames = PR_GetEnv("G_BROKEN_FILENAMES") != nullptr;
if (GetAppPathFromLauncher())
return NS_OK;
nsCOMPtr<nsIFile> appPath;
rv = NS_GetSpecialDirectory(NS_XPCOM_CURRENT_PROCESS_DIR,
getter_AddRefs(appPath));
NS_ENSURE_SUCCESS(rv, rv);
rv = appPath->AppendNative(NS_LITERAL_CSTRING(MOZ_APP_NAME));
NS_ENSURE_SUCCESS(rv, rv);
rv = appPath->GetNativePath(mAppPath);
return rv;
}
NS_IMPL_ISUPPORTS(nsMailGNOMEIntegration, nsIShellService)
bool
nsMailGNOMEIntegration::GetAppPathFromLauncher()
{
gchar *tmp;
const char *launcher = PR_GetEnv("MOZ_APP_LAUNCHER");
if (!launcher)
return false;
if (g_path_is_absolute(launcher)) {
mAppPath = launcher;
tmp = g_path_get_basename(launcher);
gchar *fullpath = g_find_program_in_path(tmp);
if (fullpath && mAppPath.Equals(fullpath)) {
mAppIsInPath = true;
}
g_free(fullpath);
} else {
tmp = g_find_program_in_path(launcher);
if (!tmp)
return false;
mAppPath = tmp;
mAppIsInPath = true;
}
g_free(tmp);
return true;
}
NS_IMETHODIMP
nsMailGNOMEIntegration::IsDefaultClient(bool aStartupCheck, uint16_t aApps, bool * aIsDefaultClient)
{
*aIsDefaultClient = true;
for (unsigned int i = 0; i < MOZ_ARRAY_LENGTH(sAppTypes); i++) {
if (aApps & sAppTypes[i].type)
*aIsDefaultClient &= checkDefault(sAppTypes[i].protocols,
sAppTypes[i].protocolsLength);
}
// If this is the first mail window, maintain internal state that we've
// checked this session (so that subsequent window opens don't show the
// default client dialog).
if (aStartupCheck)
mCheckedThisSession = true;
return NS_OK;
}
NS_IMETHODIMP
nsMailGNOMEIntegration::SetDefaultClient(bool aForAllUsers, uint16_t aApps)
{
nsresult rv = NS_OK;
for (unsigned int i = 0; i < MOZ_ARRAY_LENGTH(sAppTypes); i++) {
if (aApps & sAppTypes[i].type) {
nsresult tmp = MakeDefault(sAppTypes[i].protocols,
sAppTypes[i].protocolsLength,
sAppTypes[i].mimeType,
sAppTypes[i].extensions);
if (NS_FAILED(tmp)) {
rv = tmp;
}
}
}
return rv;
}
NS_IMETHODIMP
nsMailGNOMEIntegration::GetShouldCheckDefaultClient(bool* aResult)
{
if (mCheckedThisSession)
{
*aResult = false;
return NS_OK;
}
nsCOMPtr<nsIPrefBranch> prefs(do_GetService(NS_PREFSERVICE_CONTRACTID));
return prefs->GetBoolPref("mail.shell.checkDefaultClient", aResult);
}
NS_IMETHODIMP
nsMailGNOMEIntegration::SetShouldCheckDefaultClient(bool aShouldCheck)
{
nsCOMPtr<nsIPrefBranch> prefs(do_GetService(NS_PREFSERVICE_CONTRACTID));
return prefs->SetBoolPref("mail.shell.checkDefaultClient", aShouldCheck);
}
bool
nsMailGNOMEIntegration::KeyMatchesAppName(const char *aKeyValue) const
{
gchar *commandPath;
if (mUseLocaleFilenames) {
gchar *nativePath = g_filename_from_utf8(aKeyValue, -1, NULL, NULL, NULL);
if (!nativePath) {
NS_ERROR("Error converting path to filesystem encoding");
return false;
}
commandPath = g_find_program_in_path(nativePath);
g_free(nativePath);
} else {
commandPath = g_find_program_in_path(aKeyValue);
}
if (!commandPath)
return false;
bool matches = mAppPath.Equals(commandPath);
g_free(commandPath);
return matches;
}
bool
nsMailGNOMEIntegration::CheckHandlerMatchesAppName(const nsACString &handler) const
{
gint argc;
gchar **argv;
nsAutoCString command(handler);
if (g_shell_parse_argv(command.get(), &argc, &argv, NULL)) {
command.Assign(argv[0]);
g_strfreev(argv);
} else {
return false;
}
return KeyMatchesAppName(command.get());
}
bool
nsMailGNOMEIntegration::checkDefault(const char* const *aProtocols, unsigned int aLength)
{
nsCOMPtr<nsIGConfService> gconf = do_GetService(NS_GCONFSERVICE_CONTRACTID);
nsCOMPtr<nsIGIOService> giovfs = do_GetService(NS_GIOSERVICE_CONTRACTID);
bool enabled;
nsAutoCString handler;
nsresult rv;
for (unsigned int i = 0; i < aLength; ++i) {
if (gconf) {
handler.Truncate();
rv = gconf->GetAppForProtocol(nsDependentCString(aProtocols[i]),
&enabled, handler);
if (NS_SUCCEEDED(rv) && (!CheckHandlerMatchesAppName(handler) || !enabled)) {
return false;
}
}
if (giovfs) {
handler.Truncate();
nsCOMPtr<nsIGIOMimeApp> app;
rv = giovfs->GetAppForURIScheme(nsDependentCString(aProtocols[i]),
getter_AddRefs(app));
if (NS_FAILED(rv) || !app) {
return false;
}
rv = app->GetCommand(handler);
if (NS_SUCCEEDED(rv) && !CheckHandlerMatchesAppName(handler)) {
return false;
}
}
}
return true;
}
nsresult
nsMailGNOMEIntegration::MakeDefault(const char* const *aProtocols,
unsigned int aProtocolsLength,
const char *aMimeType,
const char *aExtensions)
{
nsAutoCString appKeyValue;
nsCOMPtr<nsIGConfService> gconf = do_GetService(NS_GCONFSERVICE_CONTRACTID);
nsCOMPtr<nsIGIOService> giovfs = do_GetService(NS_GIOSERVICE_CONTRACTID);
if(mAppIsInPath) {
// mAppPath is in the users path, so use only the basename as the launcher
gchar *tmp = g_path_get_basename(mAppPath.get());
appKeyValue = tmp;
g_free(tmp);
} else {
appKeyValue = mAppPath;
}
appKeyValue.AppendLiteral(" %s");
nsresult rv;
if (gconf) {
for (unsigned int i = 0; i < aProtocolsLength; ++i) {
rv = gconf->SetAppForProtocol(nsDependentCString(aProtocols[i]),
appKeyValue);
NS_ENSURE_SUCCESS(rv, rv);
}
}
if (giovfs) {
nsCOMPtr<nsIStringBundleService> bundleService =
mozilla::services::GetStringBundleService();
NS_ENSURE_TRUE(bundleService, NS_ERROR_UNEXPECTED);
nsCOMPtr<nsIStringBundle> brandBundle;
rv = bundleService->CreateBundle(BRAND_PROPERTIES, getter_AddRefs(brandBundle));
NS_ENSURE_SUCCESS(rv, rv);
nsString brandShortName;
brandBundle->GetStringFromName(u"brandShortName",
getter_Copies(brandShortName));
// use brandShortName as the application id.
NS_ConvertUTF16toUTF8 id(brandShortName);
nsCOMPtr<nsIGIOMimeApp> app;
rv = giovfs->CreateAppFromCommand(mAppPath, id, getter_AddRefs(app));
NS_ENSURE_SUCCESS(rv, rv);
for (unsigned int i = 0; i < aProtocolsLength; ++i) {
rv = app->SetAsDefaultForURIScheme(nsDependentCString(aProtocols[i]));
NS_ENSURE_SUCCESS(rv, rv);
if (aMimeType)
rv = app->SetAsDefaultForMimeType(nsDependentCString(aMimeType));
NS_ENSURE_SUCCESS(rv, rv);
if (aExtensions)
rv = app->SetAsDefaultForFileExtensions(nsDependentCString(aExtensions));
NS_ENSURE_SUCCESS(rv, rv);
}
}
return NS_OK;
}
|