2007-07-25 21:24:25 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 3; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla 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/MPL/
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* The Original Code is the Mozilla browser.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Mozilla Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2007
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Shawn Wilsher <me@shawnwilsher.com> (Original Author)
|
2010-07-30 12:46:20 -07:00
|
|
|
* Wolfgang Rosenauer <wr@rosenauer.org>
|
2007-07-25 21:24:25 -07:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of 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 MPL, 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 MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
2010-02-09 11:02:11 -08:00
|
|
|
#if (MOZ_PLATFORM_MAEMO == 5) && defined (MOZ_ENABLE_GNOMEVFS)
|
2008-09-10 09:10:23 -07:00
|
|
|
#include <glib.h>
|
|
|
|
#include <hildon-uri.h>
|
2009-03-30 11:10:26 -07:00
|
|
|
#include <hildon-mime.h>
|
|
|
|
#include <libosso.h>
|
2008-09-10 09:10:23 -07:00
|
|
|
#endif
|
2010-07-30 12:46:20 -07:00
|
|
|
#if (MOZ_PLATFORM_MAEMO == 6)
|
|
|
|
#include <QDesktopServices>
|
|
|
|
#include <QUrl>
|
|
|
|
#include <QString>
|
|
|
|
#include <contentaction/contentaction.h>
|
|
|
|
#include "nsContentHandlerApp.h"
|
|
|
|
#endif
|
2008-09-10 09:10:23 -07:00
|
|
|
|
2007-07-25 22:52:27 -07:00
|
|
|
#include "nsMIMEInfoUnix.h"
|
|
|
|
#include "nsGNOMERegistry.h"
|
2009-08-25 11:58:11 -07:00
|
|
|
#include "nsIGIOService.h"
|
2008-02-26 16:58:15 -08:00
|
|
|
#include "nsIGnomeVFSService.h"
|
2009-10-17 00:53:12 -07:00
|
|
|
#include "nsAutoPtr.h"
|
2008-09-10 09:10:23 -07:00
|
|
|
#ifdef MOZ_ENABLE_DBUS
|
|
|
|
#include "nsDBusHandlerApp.h"
|
|
|
|
#endif
|
|
|
|
|
2007-07-25 21:24:25 -07:00
|
|
|
nsresult
|
|
|
|
nsMIMEInfoUnix::LoadUriInternal(nsIURI * aURI)
|
2009-03-30 11:10:26 -07:00
|
|
|
{
|
2008-09-10 09:10:23 -07:00
|
|
|
nsresult rv = nsGNOMERegistry::LoadURL(aURI);
|
2010-07-30 12:46:20 -07:00
|
|
|
|
2010-02-09 11:02:11 -08:00
|
|
|
#if (MOZ_PLATFORM_MAEMO == 5) && defined (MOZ_ENABLE_GNOMEVFS)
|
2008-09-10 09:10:23 -07:00
|
|
|
if (NS_FAILED(rv)){
|
2010-05-06 00:22:01 -07:00
|
|
|
HildonURIAction *action = hildon_uri_get_default_action(mSchemeOrType.get(), nsnull);
|
2008-09-10 09:10:23 -07:00
|
|
|
if (action) {
|
|
|
|
nsCAutoString spec;
|
|
|
|
aURI->GetAsciiSpec(spec);
|
|
|
|
if (hildon_uri_open(spec.get(), action, nsnull))
|
|
|
|
rv = NS_OK;
|
|
|
|
hildon_uri_action_unref(action);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2010-07-30 12:46:20 -07:00
|
|
|
|
|
|
|
#if (MOZ_PLATFORM_MAEMO == 6)
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
nsCAutoString spec;
|
|
|
|
aURI->GetAsciiSpec(spec);
|
|
|
|
if (QDesktopServices::openUrl(QUrl(spec.get()))) {
|
|
|
|
rv = NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-09-10 09:10:23 -07:00
|
|
|
return rv;
|
2007-07-25 21:24:25 -07:00
|
|
|
}
|
|
|
|
|
2008-02-26 16:58:15 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsMIMEInfoUnix::GetHasDefaultHandler(PRBool *_retval)
|
|
|
|
{
|
|
|
|
*_retval = PR_FALSE;
|
2010-05-06 00:22:01 -07:00
|
|
|
nsRefPtr<nsMIMEInfoBase> mimeInfo = nsGNOMERegistry::GetFromType(mSchemeOrType);
|
2009-10-17 00:53:12 -07:00
|
|
|
if (!mimeInfo) {
|
|
|
|
nsCAutoString ext;
|
2009-10-22 13:36:21 -07:00
|
|
|
nsresult rv = GetPrimaryExtension(ext);
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
mimeInfo = nsGNOMERegistry::GetFromExtension(ext);
|
|
|
|
}
|
2008-02-26 16:58:15 -08:00
|
|
|
}
|
2009-10-17 00:53:12 -07:00
|
|
|
if (mimeInfo)
|
|
|
|
*_retval = PR_TRUE;
|
2008-04-08 16:18:16 -07:00
|
|
|
|
|
|
|
if (*_retval)
|
|
|
|
return NS_OK;
|
|
|
|
|
2010-02-09 11:02:11 -08:00
|
|
|
#if (MOZ_PLATFORM_MAEMO == 5) && defined (MOZ_ENABLE_GNOMEVFS)
|
2010-05-06 00:22:01 -07:00
|
|
|
HildonURIAction *action = hildon_uri_get_default_action(mSchemeOrType.get(), nsnull);
|
2008-09-10 09:10:23 -07:00
|
|
|
if (action) {
|
|
|
|
*_retval = PR_TRUE;
|
|
|
|
hildon_uri_action_unref(action);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
#endif
|
2009-03-30 11:10:26 -07:00
|
|
|
|
2010-07-30 12:46:20 -07:00
|
|
|
#if (MOZ_PLATFORM_MAEMO == 6)
|
|
|
|
ContentAction::Action action =
|
|
|
|
ContentAction::Action::defaultActionForFile(QUrl(), QString(mSchemeOrType.get()));
|
|
|
|
if (action.isValid()) {
|
|
|
|
*_retval = PR_TRUE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-04-08 16:18:16 -07:00
|
|
|
// If we didn't find a VFS handler, fallback.
|
|
|
|
return nsMIMEInfoImpl::GetHasDefaultHandler(_retval);
|
2008-02-26 16:58:15 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsMIMEInfoUnix::LaunchDefaultWithFile(nsIFile *aFile)
|
|
|
|
{
|
|
|
|
nsCAutoString nativePath;
|
|
|
|
aFile->GetNativePath(nativePath);
|
|
|
|
|
2010-02-09 11:02:11 -08:00
|
|
|
#if (MOZ_PLATFORM_MAEMO == 5) && defined (MOZ_ENABLE_GNOMEVFS)
|
2009-03-30 11:10:26 -07:00
|
|
|
if(NS_SUCCEEDED(LaunchDefaultWithDBus(PromiseFlatCString(nativePath).get())))
|
|
|
|
return NS_OK;
|
|
|
|
#endif
|
2008-02-26 16:58:15 -08:00
|
|
|
|
2010-07-30 12:46:20 -07:00
|
|
|
#if (MOZ_PLATFORM_MAEMO == 6)
|
|
|
|
QUrl uri = QUrl::fromLocalFile(QString::fromUtf8(nativePath.get()));
|
|
|
|
ContentAction::Action action =
|
|
|
|
ContentAction::Action::defaultActionForFile(uri, QString(mSchemeOrType.get()));
|
|
|
|
if (action.isValid()) {
|
|
|
|
action.trigger();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
#endif
|
|
|
|
|
2009-08-25 11:58:11 -07:00
|
|
|
nsCOMPtr<nsIGIOService> giovfs = do_GetService(NS_GIOSERVICE_CONTRACTID);
|
|
|
|
nsCOMPtr<nsIGnomeVFSService> gnomevfs = do_GetService(NS_GNOMEVFSSERVICE_CONTRACTID);
|
|
|
|
if (giovfs) {
|
|
|
|
nsCOMPtr<nsIGIOMimeApp> app;
|
2010-05-06 00:22:01 -07:00
|
|
|
if (NS_SUCCEEDED(giovfs->GetAppForMimeType(mSchemeOrType, getter_AddRefs(app))) && app)
|
2009-08-25 11:58:11 -07:00
|
|
|
return app->Launch(nativePath);
|
|
|
|
} else if (gnomevfs) {
|
|
|
|
/* Fallback to GnomeVFS */
|
2008-02-26 16:58:15 -08:00
|
|
|
nsCOMPtr<nsIGnomeVFSMimeApp> app;
|
2010-05-06 00:22:01 -07:00
|
|
|
if (NS_SUCCEEDED(gnomevfs->GetAppForMimeType(mSchemeOrType, getter_AddRefs(app))) && app)
|
2008-03-12 15:53:18 -07:00
|
|
|
return app->Launch(nativePath);
|
2008-02-26 16:58:15 -08:00
|
|
|
}
|
|
|
|
|
2009-10-17 00:53:12 -07:00
|
|
|
// If we haven't got an app we try to get a valid one by searching for the
|
|
|
|
// extension mapped type
|
|
|
|
nsRefPtr<nsMIMEInfoBase> mimeInfo = nsGNOMERegistry::GetFromExtension(nativePath);
|
|
|
|
if (mimeInfo) {
|
|
|
|
nsCAutoString type;
|
|
|
|
mimeInfo->GetType(type);
|
|
|
|
if (giovfs) {
|
|
|
|
nsCOMPtr<nsIGIOMimeApp> app;
|
|
|
|
if (NS_SUCCEEDED(giovfs->GetAppForMimeType(type, getter_AddRefs(app))) && app)
|
|
|
|
return app->Launch(nativePath);
|
|
|
|
} else if (gnomevfs) {
|
|
|
|
nsCOMPtr<nsIGnomeVFSMimeApp> app;
|
|
|
|
if (NS_SUCCEEDED(gnomevfs->GetAppForMimeType(type, getter_AddRefs(app))) && app)
|
|
|
|
return app->Launch(nativePath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-26 16:58:15 -08:00
|
|
|
if (!mDefaultApplication)
|
|
|
|
return NS_ERROR_FILE_NOT_FOUND;
|
|
|
|
|
|
|
|
return LaunchWithIProcess(mDefaultApplication, nativePath);
|
|
|
|
}
|
2008-09-10 09:10:23 -07:00
|
|
|
|
2010-02-09 11:02:11 -08:00
|
|
|
#if (MOZ_PLATFORM_MAEMO == 5) && defined (MOZ_ENABLE_GNOMEVFS)
|
2008-09-10 09:10:23 -07:00
|
|
|
|
2009-03-30 11:10:26 -07:00
|
|
|
/* This method tries to launch the associated default handler for the given
|
|
|
|
* mime/file via hildon specific APIs (in this case hildon_mime_open_file*
|
|
|
|
* which are essetially wrappers to the DBUS mime_open method).
|
|
|
|
*/
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsMIMEInfoUnix::LaunchDefaultWithDBus(const char *aFilePath)
|
|
|
|
{
|
|
|
|
const PRInt32 kHILDON_SUCCESS = 1;
|
|
|
|
PRInt32 result = 0;
|
|
|
|
DBusError err;
|
|
|
|
dbus_error_init(&err);
|
|
|
|
|
|
|
|
DBusConnection *connection = dbus_bus_get(DBUS_BUS_SESSION, &err);
|
|
|
|
if (dbus_error_is_set(&err)) {
|
|
|
|
dbus_error_free(&err);
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nsnull == connection)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
result = hildon_mime_open_file_with_mime_type(connection,
|
|
|
|
aFilePath,
|
2010-05-06 00:22:01 -07:00
|
|
|
mSchemeOrType.get());
|
2009-03-30 11:10:26 -07:00
|
|
|
if (result != kHILDON_SUCCESS)
|
|
|
|
if (hildon_mime_open_file(connection, aFilePath) != kHILDON_SUCCESS)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-02-18 05:41:37 -08:00
|
|
|
/* static */ PRBool
|
|
|
|
nsMIMEInfoUnix::HandlerExists(const char *aProtocolScheme)
|
|
|
|
{
|
|
|
|
PRBool isEnabled = PR_FALSE;
|
|
|
|
HildonURIAction *action = hildon_uri_get_default_action(aProtocolScheme, nsnull);
|
|
|
|
if (action) {
|
|
|
|
isEnabled = PR_TRUE;
|
|
|
|
hildon_uri_action_unref(action);
|
|
|
|
}
|
|
|
|
return isEnabled;
|
|
|
|
}
|
|
|
|
|
2008-09-10 09:10:23 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsMIMEInfoUnix::GetPossibleApplicationHandlers(nsIMutableArray ** aPossibleAppHandlers)
|
|
|
|
{
|
|
|
|
if (!mPossibleApplications) {
|
|
|
|
mPossibleApplications = do_CreateInstance(NS_ARRAY_CONTRACTID);
|
2009-03-30 11:10:26 -07:00
|
|
|
|
2008-09-10 09:10:23 -07:00
|
|
|
if (!mPossibleApplications)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2009-03-30 11:10:26 -07:00
|
|
|
|
2010-05-06 00:22:01 -07:00
|
|
|
GSList *actions = hildon_uri_get_actions(mSchemeOrType.get(), nsnull);
|
2008-09-10 09:10:23 -07:00
|
|
|
GSList *actionsPtr = actions;
|
|
|
|
while (actionsPtr) {
|
|
|
|
HildonURIAction *action = (HildonURIAction*)actionsPtr->data;
|
|
|
|
actionsPtr = actionsPtr->next;
|
|
|
|
nsDBusHandlerApp* app = new nsDBusHandlerApp();
|
|
|
|
if (!app){
|
|
|
|
hildon_uri_free_actions(actions);
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
nsDependentCString method(hildon_uri_action_get_method(action));
|
|
|
|
nsDependentCString key(hildon_uri_action_get_service(action));
|
|
|
|
nsCString service, objpath, interface;
|
|
|
|
app->SetMethod(method);
|
|
|
|
app->SetName(NS_ConvertUTF8toUTF16(key));
|
2009-03-30 11:10:26 -07:00
|
|
|
|
2008-09-10 09:10:23 -07:00
|
|
|
if (key.FindChar('.', 0) > 0) {
|
|
|
|
service.Assign(key);
|
|
|
|
objpath.Assign(NS_LITERAL_CSTRING("/")+ key);
|
|
|
|
objpath.ReplaceChar('.', '/');
|
|
|
|
interface.Assign(key);
|
|
|
|
} else {
|
|
|
|
service.Assign(NS_LITERAL_CSTRING("com.nokia.")+ key);
|
|
|
|
objpath.Assign(NS_LITERAL_CSTRING("/com/nokia/")+ key);
|
2009-03-30 11:10:26 -07:00
|
|
|
interface.Assign(NS_LITERAL_CSTRING("com.nokia.")+ key);
|
2008-09-10 09:10:23 -07:00
|
|
|
}
|
2009-03-30 11:10:26 -07:00
|
|
|
|
2008-09-10 09:10:23 -07:00
|
|
|
app->SetService(service);
|
|
|
|
app->SetObjectPath(objpath);
|
|
|
|
app->SetDBusInterface(interface);
|
2009-03-30 11:10:26 -07:00
|
|
|
|
2008-09-10 09:10:23 -07:00
|
|
|
mPossibleApplications->AppendElement(app, PR_FALSE);
|
|
|
|
}
|
|
|
|
hildon_uri_free_actions(actions);
|
|
|
|
}
|
|
|
|
|
|
|
|
*aPossibleAppHandlers = mPossibleApplications;
|
|
|
|
NS_ADDREF(*aPossibleAppHandlers);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
#endif
|
2010-07-30 12:46:20 -07:00
|
|
|
|
|
|
|
#if (MOZ_PLATFORM_MAEMO == 6)
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsMIMEInfoUnix::GetPossibleApplicationHandlers(nsIMutableArray ** aPossibleAppHandlers)
|
|
|
|
{
|
|
|
|
if (!mPossibleApplications) {
|
|
|
|
mPossibleApplications = do_CreateInstance(NS_ARRAY_CONTRACTID);
|
|
|
|
|
|
|
|
if (!mPossibleApplications)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
QList<ContentAction::Action> actions =
|
|
|
|
ContentAction::Action::actionsForFile(QUrl(), QString(mSchemeOrType.get()));
|
|
|
|
|
|
|
|
for (int i = 0; i < actions.size(); ++i) {
|
|
|
|
nsContentHandlerApp* app =
|
|
|
|
new nsContentHandlerApp(nsString((PRUnichar*)actions[i].name().data()),
|
|
|
|
mSchemeOrType, actions[i]);
|
|
|
|
mPossibleApplications->AppendElement(app, PR_FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*aPossibleAppHandlers = mPossibleApplications;
|
|
|
|
NS_ADDREF(*aPossibleAppHandlers);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|