/* * Copyright (C) 2001,2002,2003 Philip Langdale * Copyright (C) 2003 Marco Pesenti Gritti * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * $Id$ */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ContentHandler.h" #include "FilePicker.h" #include "GlobalHistory.h" #include "ExternalProtocolHandlers.h" #include "PrintingPromptService.h" #include "MozDownload.h" #include "ExternalProtocolService.h" #include "EphyAboutRedirector.h" #include "EphyContentPolicy.h" #ifdef HAVE_MOZILLA_PSM #include "GtkNSSClientAuthDialogs.h" #include "GtkNSSDialogs.h" #include "GtkNSSKeyPairDialogs.h" #endif #include #include #include #include #include #include NS_GENERIC_FACTORY_CONSTRUCTOR(EphyAboutRedirector) NS_GENERIC_FACTORY_CONSTRUCTOR(MozDownload) NS_GENERIC_FACTORY_CONSTRUCTOR(GFilePicker) NS_GENERIC_FACTORY_CONSTRUCTOR(GContentHandler) NS_GENERIC_FACTORY_CONSTRUCTOR(MozGlobalHistory) NS_GENERIC_FACTORY_CONSTRUCTOR(GPrintingPromptService) NS_GENERIC_FACTORY_CONSTRUCTOR(GIRCProtocolHandler) NS_GENERIC_FACTORY_CONSTRUCTOR(GFtpProtocolHandler) NS_GENERIC_FACTORY_CONSTRUCTOR(GNewsProtocolHandler) NS_GENERIC_FACTORY_CONSTRUCTOR(GMailtoProtocolHandler) NS_GENERIC_FACTORY_CONSTRUCTOR(EphyContentPolicy) #if MOZILLA_SNAPSHOT < 12 NS_GENERIC_FACTORY_CONSTRUCTOR(GExternalProtocolService) #endif #ifdef HAVE_MOZILLA_PSM NS_GENERIC_FACTORY_CONSTRUCTOR(GtkNSSClientAuthDialogs) NS_GENERIC_FACTORY_CONSTRUCTOR(GtkNSSDialogs) NS_GENERIC_FACTORY_CONSTRUCTOR(GtkNSSKeyPairDialogs) #endif static const nsModuleComponentInfo sAppComps[] = { #if MOZILLA_SNAPSHOT < 12 { G_EXTERNALPROTOCOLSERVICE_CLASSNAME, G_EXTERNALPROTOCOLSERVICE_CID, NS_EXTERNALPROTOCOLSERVICE_CONTRACTID, GExternalProtocolServiceConstructor }, #endif { MOZ_DOWNLOAD_CLASSNAME, MOZ_DOWNLOAD_CID, NS_DOWNLOAD_CONTRACTID, MozDownloadConstructor }, { G_FILEPICKER_CLASSNAME, G_FILEPICKER_CID, G_FILEPICKER_CONTRACTID, GFilePickerConstructor }, #ifdef HAVE_MOZILLA_PSM { GTK_NSSCLIENTAUTHDIALOGS_CLASSNAME, GTK_NSSCLIENTAUTHDIALOGS_CID, NS_CLIENTAUTHDIALOGS_CONTRACTID, GtkNSSClientAuthDialogsConstructor }, { GTK_NSSDIALOGS_CLASSNAME, GTK_NSSDIALOGS_CID, NS_BADCERTLISTENER_CONTRACTID, GtkNSSDialogsConstructor }, { GTK_NSSDIALOGS_CLASSNAME, GTK_NSSDIALOGS_CID, NS_CERTIFICATEDIALOGS_CONTRACTID, GtkNSSDialogsConstructor }, { GTK_NSSKEYPAIRDIALOGS_CLASSNAME, GTK_NSSKEYPAIRDIALOGS_CID, NS_GENERATINGKEYPAIRINFODIALOGS_CONTRACTID, GtkNSSKeyPairDialogsConstructor }, #endif { NS_IHELPERAPPLAUNCHERDLG_CLASSNAME, G_CONTENTHANDLER_CID, NS_IHELPERAPPLAUNCHERDLG_CONTRACTID, GContentHandlerConstructor }, { EPHY_GLOBALHISTORY_CLASSNAME, EPHY_GLOBALHISTORY_CID, NS_GLOBALHISTORY_CONTRACTID, MozGlobalHistoryConstructor }, { G_PRINTINGPROMPTSERVICE_CLASSNAME, G_PRINTINGPROMPTSERVICE_CID, G_PRINTINGPROMPTSERVICE_CONTRACTID, GPrintingPromptServiceConstructor }, { G_IRC_PROTOCOL_CLASSNAME, G_IRC_PROTOCOL_CID, G_IRC_PROTOCOL_CONTRACTID, GIRCProtocolHandlerConstructor }, { G_IRC_CONTENT_CLASSNAME, G_IRC_PROTOCOL_CID, G_IRC_CONTENT_CONTRACTID, GIRCProtocolHandlerConstructor }, { G_NEWS_PROTOCOL_CLASSNAME, G_NEWS_PROTOCOL_CID, G_NEWS_PROTOCOL_CONTRACTID, GNewsProtocolHandlerConstructor }, { G_NEWS_CONTENT_CLASSNAME, G_NEWS_PROTOCOL_CID, G_NEWS_CONTENT_CONTRACTID, GNewsProtocolHandlerConstructor }, { G_FTP_CONTENT_CLASSNAME, G_FTP_PROTOCOL_CID, G_FTP_CONTENT_CONTRACTID, GFtpProtocolHandlerConstructor }, { EPHY_ABOUT_REDIRECTOR_CLASSNAME, EPHY_ABOUT_REDIRECTOR_CID, EPHY_ABOUT_REDIRECTOR_EPIPHANY_CONTRACTID, EphyAboutRedirectorConstructor }, { EPHY_ABOUT_REDIRECTOR_CLASSNAME, EPHY_ABOUT_REDIRECTOR_CID, EPHY_ABOUT_REDIRECTOR_CONSPIRACY_CONTRACTID, EphyAboutRedirectorConstructor }, { EPHY_ABOUT_REDIRECTOR_CLASSNAME, EPHY_ABOUT_REDIRECTOR_CID, EPHY_ABOUT_REDIRECTOR_MARCO_CONTRACTID, EphyAboutRedirectorConstructor }, { G_MAILTO_PROTOCOL_CLASSNAME, G_MAILTO_PROTOCOL_CID, G_MAILTO_PROTOCOL_CONTRACTID, GMailtoProtocolHandlerConstructor }, { G_MAILTO_CONTENT_CLASSNAME, G_MAILTO_PROTOCOL_CID, G_MAILTO_CONTENT_CONTRACTID, GMailtoProtocolHandlerConstructor }, { EPHY_CONTENT_POLICY_CLASSNAME, EPHY_CONTENT_POLICY_CID, EPHY_CONTENT_POLICY_CONTRACTID, EphyContentPolicyConstructor } }; static const int sNumAppComps = sizeof(sAppComps) / sizeof(nsModuleComponentInfo); static const nsModuleComponentInfo sFtpComps = { G_FTP_PROTOCOL_CLASSNAME, G_FTP_PROTOCOL_CID, G_FTP_PROTOCOL_CONTRACTID, GFtpProtocolHandlerConstructor }; static NS_DEFINE_CID(knsFtpProtocolHandlerCID, NS_FTPPROTOCOLHANDLER_CID); /* Annoying globals to track the mozilla ftp handler so it can be restored. */ static PRBool ftpRegistered = PR_FALSE; static nsCOMPtr nsFtpFactory; gboolean mozilla_register_components (void) { gboolean ret = TRUE; nsresult rv; nsCOMPtr cr; NS_GetComponentRegistrar(getter_AddRefs(cr)); NS_ENSURE_TRUE (cr, FALSE); for (int i = 0; i < sNumAppComps; i++) { nsCOMPtr componentFactory; rv = NS_NewGenericFactory(getter_AddRefs(componentFactory), &(sAppComps[i])); if (NS_FAILED(rv) || !componentFactory) { g_warning ("Failed to make a factory for %s\n", sAppComps[i].mDescription); ret = FALSE; continue; // don't abort registering other components } rv = cr->RegisterFactory(sAppComps[i].mCID, sAppComps[i].mDescription, sAppComps[i].mContractID, componentFactory); if (NS_FAILED(rv)) { g_warning ("Failed to register %s\n", sAppComps[i].mDescription); ret = FALSE; } } return ret; } /** * mozilla_register_FtpProtocolHandler: Register Ftp Protocol Handler */ gboolean mozilla_register_FtpProtocolHandler (void) { if (ftpRegistered == PR_TRUE) return TRUE; nsresult rv; nsCOMPtr cm; NS_GetComponentManager(getter_AddRefs(cm)); NS_ENSURE_TRUE (cm, FALSE); rv = cm->GetClassObject(knsFtpProtocolHandlerCID, NS_GET_IID(nsIFactory), getter_AddRefs(nsFtpFactory)); if (NS_FAILED (rv)) return FALSE; nsCOMPtr ftpFactory; NS_NewGenericFactory(getter_AddRefs(ftpFactory), &sFtpComps); NS_ENSURE_TRUE (ftpFactory, FALSE); nsCOMPtr cr; NS_GetComponentRegistrar(getter_AddRefs(cr)); NS_ENSURE_TRUE (cr, FALSE); rv = cr->RegisterFactory(sFtpComps.mCID, sFtpComps.mDescription, sFtpComps.mContractID, ftpFactory); NS_ENSURE_SUCCESS (rv, FALSE); ftpRegistered = PR_TRUE; return TRUE; } /** * mozilla_unregister_FtpProtocolHandler: Unregister Ftp Protocol Handler */ gboolean mozilla_unregister_FtpProtocolHandler (void) { if (ftpRegistered == PR_FALSE) return FALSE; nsresult rv; nsCOMPtr cr; NS_GetComponentRegistrar(getter_AddRefs(cr)); NS_ENSURE_TRUE (cr, FALSE); rv = cr->RegisterFactory(knsFtpProtocolHandlerCID, NS_FTPPROTOCOLHANDLER_CLASSNAME, G_FTP_PROTOCOL_CONTRACTID, nsFtpFactory); NS_ENSURE_SUCCESS (rv, FALSE); ftpRegistered = PR_FALSE; return TRUE; }