2011-09-02 11:29:26 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 Red Hat
|
|
|
|
*
|
|
|
|
* 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 of the
|
|
|
|
* License, 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
|
2014-01-07 16:32:37 -05:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2011-09-02 11:29:26 -04:00
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Jasper St. Pierre <jstpierre@mecheye.net>
|
|
|
|
* Giovanni Campagna <scampa.giovanni@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#define XP_UNIX 1
|
|
|
|
|
|
|
|
#include "npapi/npapi.h"
|
|
|
|
#include "npapi/npruntime.h"
|
|
|
|
#include "npapi/npfunctions.h"
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
#include <gio/gio.h>
|
|
|
|
#include <json-glib/json-glib.h>
|
|
|
|
|
|
|
|
#define ORIGIN "extensions.gnome.org"
|
|
|
|
#define PLUGIN_NAME "Gnome Shell Integration"
|
|
|
|
#define PLUGIN_DESCRIPTION "This plugin provides integration with Gnome Shell " \
|
|
|
|
"for live extension enabling and disabling. " \
|
|
|
|
"It can be used only by extensions.gnome.org"
|
|
|
|
#define PLUGIN_MIME_STRING "application/x-gnome-shell-integration::Gnome Shell Integration Dummy Content-Type";
|
|
|
|
|
2012-06-15 23:20:36 -04:00
|
|
|
#define PLUGIN_API_VERSION 5
|
2011-09-02 11:29:26 -04:00
|
|
|
|
2014-02-18 13:29:03 -05:00
|
|
|
#define EXTENSION_DISABLE_VERSION_CHECK_KEY "disable-extension-version-validation"
|
|
|
|
|
2011-09-02 11:29:26 -04:00
|
|
|
typedef struct {
|
|
|
|
GDBusProxy *proxy;
|
|
|
|
} PluginData;
|
|
|
|
|
|
|
|
static NPNetscapeFuncs funcs;
|
|
|
|
|
|
|
|
static inline gchar *
|
|
|
|
get_string_property (NPP instance,
|
|
|
|
NPObject *obj,
|
|
|
|
const char *name)
|
|
|
|
{
|
|
|
|
NPVariant result = { NPVariantType_Void };
|
|
|
|
NPString result_str;
|
|
|
|
gchar *result_copy;
|
|
|
|
|
|
|
|
result_copy = NULL;
|
|
|
|
|
|
|
|
if (!funcs.getproperty (instance, obj,
|
|
|
|
funcs.getstringidentifier (name),
|
|
|
|
&result))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (!NPVARIANT_IS_STRING (result))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
result_str = NPVARIANT_TO_STRING (result);
|
2011-11-10 23:57:39 -05:00
|
|
|
result_copy = g_strndup (result_str.UTF8Characters, result_str.UTF8Length);
|
2011-09-02 11:29:26 -04:00
|
|
|
|
|
|
|
out:
|
|
|
|
funcs.releasevariantvalue (&result);
|
|
|
|
return result_copy;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
check_origin_and_protocol (NPP instance)
|
|
|
|
{
|
|
|
|
gboolean ret = FALSE;
|
|
|
|
NPError error;
|
|
|
|
NPObject *window = NULL;
|
|
|
|
NPVariant document = { NPVariantType_Void };
|
|
|
|
NPVariant location = { NPVariantType_Void };
|
|
|
|
gchar *hostname = NULL;
|
|
|
|
gchar *protocol = NULL;
|
|
|
|
|
|
|
|
error = funcs.getvalue (instance, NPNVWindowNPObject, &window);
|
|
|
|
if (error != NPERR_NO_ERROR)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (!funcs.getproperty (instance, window,
|
|
|
|
funcs.getstringidentifier ("document"),
|
|
|
|
&document))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (!NPVARIANT_IS_OBJECT (document))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (!funcs.getproperty (instance, NPVARIANT_TO_OBJECT (document),
|
|
|
|
funcs.getstringidentifier ("location"),
|
|
|
|
&location))
|
|
|
|
goto out;
|
|
|
|
|
2012-02-20 18:23:12 -05:00
|
|
|
if (!NPVARIANT_IS_OBJECT (location))
|
2011-09-02 11:29:26 -04:00
|
|
|
goto out;
|
|
|
|
|
|
|
|
hostname = get_string_property (instance,
|
|
|
|
NPVARIANT_TO_OBJECT (location),
|
|
|
|
"hostname");
|
|
|
|
|
|
|
|
if (g_strcmp0 (hostname, ORIGIN))
|
|
|
|
{
|
|
|
|
g_debug ("origin does not match, is %s",
|
|
|
|
hostname);
|
|
|
|
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
protocol = get_string_property (instance,
|
|
|
|
NPVARIANT_TO_OBJECT (location),
|
|
|
|
"protocol");
|
|
|
|
|
|
|
|
if (g_strcmp0 (protocol, "https:") != 0)
|
|
|
|
{
|
|
|
|
g_debug ("protocol does not match, is %s",
|
|
|
|
protocol);
|
|
|
|
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = TRUE;
|
|
|
|
|
|
|
|
out:
|
|
|
|
g_free (protocol);
|
|
|
|
g_free (hostname);
|
|
|
|
|
|
|
|
funcs.releasevariantvalue (&location);
|
|
|
|
funcs.releasevariantvalue (&document);
|
|
|
|
|
|
|
|
if (window != NULL)
|
|
|
|
funcs.releaseobject (window);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-11-10 23:21:53 -05:00
|
|
|
/* =============== public entry points =================== */
|
|
|
|
|
2011-09-02 11:29:26 -04:00
|
|
|
NPError
|
|
|
|
NP_Initialize(NPNetscapeFuncs *pfuncs, NPPluginFuncs *plugin)
|
|
|
|
{
|
|
|
|
/* global initialization routine, called once when plugin
|
|
|
|
is loaded */
|
|
|
|
|
|
|
|
g_debug ("plugin loaded");
|
|
|
|
|
|
|
|
memcpy (&funcs, pfuncs, sizeof (funcs));
|
|
|
|
|
|
|
|
plugin->size = sizeof(NPPluginFuncs);
|
|
|
|
plugin->newp = NPP_New;
|
|
|
|
plugin->destroy = NPP_Destroy;
|
|
|
|
plugin->getvalue = NPP_GetValue;
|
2012-05-14 17:12:45 -04:00
|
|
|
plugin->setwindow = NPP_SetWindow;
|
2011-09-02 11:29:26 -04:00
|
|
|
|
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
NPError
|
|
|
|
NP_Shutdown(void)
|
|
|
|
{
|
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char*
|
|
|
|
NP_GetMIMEDescription(void)
|
|
|
|
{
|
|
|
|
return PLUGIN_MIME_STRING;
|
|
|
|
}
|
|
|
|
|
|
|
|
NPError
|
|
|
|
NP_GetValue(void *instance,
|
|
|
|
NPPVariable variable,
|
|
|
|
void *value)
|
|
|
|
{
|
|
|
|
switch (variable) {
|
|
|
|
case NPPVpluginNameString:
|
|
|
|
*(char**)value = PLUGIN_NAME;
|
|
|
|
break;
|
|
|
|
case NPPVpluginDescriptionString:
|
|
|
|
*(char**)value = PLUGIN_DESCRIPTION;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
NPError
|
|
|
|
NPP_New(NPMIMEType mimetype,
|
|
|
|
NPP instance,
|
|
|
|
uint16_t mode,
|
|
|
|
int16_t argc,
|
|
|
|
char **argn,
|
|
|
|
char **argv,
|
|
|
|
NPSavedData *saved)
|
|
|
|
{
|
|
|
|
/* instance initialization function */
|
|
|
|
PluginData *data;
|
|
|
|
GError *error = NULL;
|
|
|
|
|
|
|
|
g_debug ("plugin created");
|
|
|
|
|
|
|
|
if (!check_origin_and_protocol (instance))
|
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
|
|
|
|
data = g_slice_new (PluginData);
|
|
|
|
instance->pdata = data;
|
|
|
|
|
|
|
|
data->proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SESSION,
|
|
|
|
G_DBUS_PROXY_FLAGS_NONE,
|
|
|
|
NULL, /* interface info */
|
|
|
|
"org.gnome.Shell",
|
|
|
|
"/org/gnome/Shell",
|
2012-06-27 11:47:51 -04:00
|
|
|
"org.gnome.Shell.Extensions",
|
2011-09-02 11:29:26 -04:00
|
|
|
NULL, /* GCancellable */
|
|
|
|
&error);
|
|
|
|
if (!data->proxy)
|
|
|
|
{
|
|
|
|
/* ignore error if the shell is not running, otherwise warn */
|
|
|
|
if (error->domain != G_DBUS_ERROR ||
|
|
|
|
error->code != G_DBUS_ERROR_NAME_HAS_NO_OWNER)
|
|
|
|
{
|
|
|
|
g_warning ("Failed to set up Shell proxy: %s", error->message);
|
|
|
|
}
|
|
|
|
g_clear_error (&error);
|
|
|
|
return NPERR_GENERIC_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_debug ("plugin created successfully");
|
|
|
|
|
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
NPError
|
|
|
|
NPP_Destroy(NPP instance,
|
|
|
|
NPSavedData **saved)
|
|
|
|
{
|
|
|
|
/* instance finalization function */
|
|
|
|
|
|
|
|
PluginData *data = instance->pdata;
|
|
|
|
|
|
|
|
g_debug ("plugin destroyed");
|
|
|
|
|
|
|
|
g_object_unref (data->proxy);
|
|
|
|
|
|
|
|
g_slice_free (PluginData, data);
|
|
|
|
|
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* =================== scripting interface =================== */
|
|
|
|
|
|
|
|
typedef struct {
|
2011-11-08 14:26:13 -05:00
|
|
|
NPObject parent;
|
|
|
|
NPP instance;
|
|
|
|
GDBusProxy *proxy;
|
2012-05-25 16:58:16 -04:00
|
|
|
GSettings *settings;
|
2011-11-08 14:26:13 -05:00
|
|
|
NPObject *listener;
|
|
|
|
NPObject *restart_listener;
|
|
|
|
gint signal_id;
|
|
|
|
guint watch_name_id;
|
2011-09-02 11:29:26 -04:00
|
|
|
} PluginObject;
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_shell_signal (GDBusProxy *proxy,
|
|
|
|
gchar *sender_name,
|
|
|
|
gchar *signal_name,
|
|
|
|
GVariant *parameters,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
PluginObject *obj = user_data;
|
|
|
|
|
|
|
|
if (strcmp (signal_name, "ExtensionStatusChanged") == 0)
|
|
|
|
{
|
|
|
|
gchar *uuid;
|
|
|
|
gint32 status;
|
|
|
|
gchar *error;
|
|
|
|
NPVariant args[3];
|
2012-01-23 20:57:03 -05:00
|
|
|
NPVariant result = { NPVariantType_Void };
|
2011-09-02 11:29:26 -04:00
|
|
|
|
|
|
|
g_variant_get (parameters, "(sis)", &uuid, &status, &error);
|
|
|
|
STRINGZ_TO_NPVARIANT (uuid, args[0]);
|
|
|
|
INT32_TO_NPVARIANT (status, args[1]);
|
|
|
|
STRINGZ_TO_NPVARIANT (error, args[2]);
|
|
|
|
|
|
|
|
funcs.invokeDefault (obj->instance, obj->listener,
|
|
|
|
args, 3, &result);
|
|
|
|
|
|
|
|
funcs.releasevariantvalue (&result);
|
|
|
|
g_free (uuid);
|
|
|
|
g_free (error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-08 14:26:13 -05:00
|
|
|
static void
|
|
|
|
on_shell_appeared (GDBusConnection *connection,
|
|
|
|
const gchar *name,
|
|
|
|
const gchar *name_owner,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
PluginObject *obj = (PluginObject*) user_data;
|
|
|
|
|
|
|
|
if (obj->restart_listener)
|
|
|
|
{
|
|
|
|
NPVariant result = { NPVariantType_Void };
|
|
|
|
|
|
|
|
funcs.invokeDefault (obj->instance, obj->restart_listener,
|
|
|
|
NULL, 0, &result);
|
|
|
|
|
|
|
|
funcs.releasevariantvalue (&result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-25 16:58:16 -04:00
|
|
|
#define SHELL_SCHEMA "org.gnome.shell"
|
|
|
|
#define ENABLED_EXTENSIONS_KEY "enabled-extensions"
|
|
|
|
|
2011-09-02 11:29:26 -04:00
|
|
|
static NPObject *
|
|
|
|
plugin_object_allocate (NPP instance,
|
|
|
|
NPClass *klass)
|
|
|
|
{
|
|
|
|
PluginData *data = instance->pdata;
|
|
|
|
PluginObject *obj = g_slice_new0 (PluginObject);
|
|
|
|
|
|
|
|
obj->instance = instance;
|
|
|
|
obj->proxy = g_object_ref (data->proxy);
|
2012-05-25 16:58:16 -04:00
|
|
|
obj->settings = g_settings_new (SHELL_SCHEMA);
|
2011-09-02 11:29:26 -04:00
|
|
|
obj->signal_id = g_signal_connect (obj->proxy, "g-signal",
|
|
|
|
G_CALLBACK (on_shell_signal), obj);
|
|
|
|
|
2011-11-08 14:26:13 -05:00
|
|
|
obj->watch_name_id = g_bus_watch_name (G_BUS_TYPE_SESSION,
|
|
|
|
"org.gnome.Shell",
|
|
|
|
G_BUS_NAME_WATCHER_FLAGS_NONE,
|
|
|
|
on_shell_appeared,
|
|
|
|
NULL,
|
|
|
|
obj,
|
|
|
|
NULL);
|
|
|
|
|
2011-09-02 11:29:26 -04:00
|
|
|
g_debug ("plugin object created");
|
|
|
|
|
|
|
|
return (NPObject*)obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
plugin_object_deallocate (NPObject *npobj)
|
|
|
|
{
|
|
|
|
PluginObject *obj = (PluginObject*)npobj;
|
|
|
|
|
|
|
|
g_signal_handler_disconnect (obj->proxy, obj->signal_id);
|
|
|
|
g_object_unref (obj->proxy);
|
|
|
|
|
|
|
|
if (obj->listener)
|
|
|
|
funcs.releaseobject (obj->listener);
|
|
|
|
|
2011-11-08 14:26:13 -05:00
|
|
|
if (obj->watch_name_id)
|
|
|
|
g_bus_unwatch_name (obj->watch_name_id);
|
|
|
|
|
2011-09-02 11:29:26 -04:00
|
|
|
g_debug ("plugin object destroyed");
|
|
|
|
|
|
|
|
g_slice_free (PluginObject, obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline gboolean
|
2012-06-15 17:46:33 -04:00
|
|
|
uuid_is_valid (NPString string)
|
2011-09-02 11:29:26 -04:00
|
|
|
{
|
|
|
|
gsize i;
|
|
|
|
|
2012-06-15 17:46:33 -04:00
|
|
|
for (i = 0; i < string.UTF8Length; i++)
|
2011-09-02 11:29:26 -04:00
|
|
|
{
|
2012-06-15 17:46:33 -04:00
|
|
|
gchar c = string.UTF8Characters[i];
|
2011-09-02 11:29:26 -04:00
|
|
|
if (c < 32 || c >= 127)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case '&':
|
|
|
|
case '<':
|
|
|
|
case '>':
|
|
|
|
case '/':
|
|
|
|
case '\\':
|
|
|
|
return FALSE;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
jsonify_variant (GVariant *variant,
|
|
|
|
NPVariant *result)
|
|
|
|
{
|
|
|
|
gboolean ret;
|
|
|
|
GVariant *real_value;
|
|
|
|
JsonNode *root;
|
|
|
|
JsonGenerator *generator;
|
|
|
|
gsize json_length;
|
|
|
|
gchar *json;
|
|
|
|
gchar *buffer;
|
|
|
|
|
|
|
|
ret = TRUE;
|
|
|
|
|
|
|
|
/* DBus methods can return multiple values,
|
|
|
|
* but we're only interested in the first. */
|
|
|
|
g_variant_get (variant, "(@*)", &real_value);
|
|
|
|
|
|
|
|
root = json_gvariant_serialize (real_value);
|
|
|
|
|
|
|
|
generator = json_generator_new ();
|
|
|
|
json_generator_set_root (generator, root);
|
|
|
|
json = json_generator_to_data (generator, &json_length);
|
|
|
|
|
|
|
|
buffer = funcs.memalloc (json_length + 1);
|
|
|
|
if (!buffer)
|
|
|
|
{
|
|
|
|
ret = FALSE;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
strcpy (buffer, json);
|
|
|
|
|
|
|
|
STRINGN_TO_NPVARIANT (buffer, json_length, *result);
|
|
|
|
|
|
|
|
out:
|
|
|
|
g_variant_unref (variant);
|
|
|
|
g_variant_unref (real_value);
|
|
|
|
json_node_free (root);
|
|
|
|
g_free (json);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2012-06-15 18:20:38 -04:00
|
|
|
parse_args (const gchar *format_str,
|
|
|
|
uint32_t argc,
|
|
|
|
const NPVariant *argv,
|
|
|
|
...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
gsize i;
|
|
|
|
gboolean ret = FALSE;
|
|
|
|
|
|
|
|
if (strlen (format_str) != argc)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
va_start (args, argv);
|
|
|
|
|
|
|
|
for (i = 0; format_str[i]; i++)
|
|
|
|
{
|
|
|
|
gpointer arg_location;
|
|
|
|
const NPVariant arg = argv[i];
|
|
|
|
|
|
|
|
arg_location = va_arg (args, gpointer);
|
|
|
|
|
|
|
|
switch (format_str[i])
|
|
|
|
{
|
|
|
|
case 'u':
|
|
|
|
{
|
|
|
|
NPString string;
|
|
|
|
|
|
|
|
if (!NPVARIANT_IS_STRING (arg))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
string = NPVARIANT_TO_STRING (arg);
|
|
|
|
|
|
|
|
if (!uuid_is_valid (string))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
*(gchar **) arg_location = g_strndup (string.UTF8Characters, string.UTF8Length);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'b':
|
|
|
|
if (!NPVARIANT_IS_BOOLEAN (arg))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
*(gboolean *) arg_location = NPVARIANT_TO_BOOLEAN (arg);
|
|
|
|
break;
|
2012-06-15 23:20:36 -04:00
|
|
|
|
|
|
|
case 'o':
|
|
|
|
if (!NPVARIANT_IS_OBJECT (arg))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
*(NPObject **) arg_location = NPVARIANT_TO_OBJECT (arg);
|
2012-06-15 18:20:38 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = TRUE;
|
|
|
|
|
|
|
|
out:
|
|
|
|
va_end (args);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
plugin_list_extensions (PluginObject *obj,
|
|
|
|
uint32_t argc,
|
|
|
|
const NPVariant *args,
|
|
|
|
NPVariant *result)
|
2011-09-02 11:29:26 -04:00
|
|
|
{
|
|
|
|
GError *error = NULL;
|
|
|
|
GVariant *res;
|
|
|
|
|
|
|
|
res = g_dbus_proxy_call_sync (obj->proxy,
|
|
|
|
"ListExtensions",
|
|
|
|
NULL, /* parameters */
|
|
|
|
G_DBUS_CALL_FLAGS_NONE,
|
|
|
|
-1, /* timeout */
|
|
|
|
NULL, /* cancellable */
|
|
|
|
&error);
|
|
|
|
|
|
|
|
if (!res)
|
|
|
|
{
|
|
|
|
g_warning ("Failed to retrieve extension list: %s", error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return jsonify_variant (res, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2012-06-15 18:20:38 -04:00
|
|
|
plugin_enable_extension (PluginObject *obj,
|
|
|
|
uint32_t argc,
|
|
|
|
const NPVariant *argv,
|
|
|
|
NPVariant *result)
|
2011-09-02 11:29:26 -04:00
|
|
|
{
|
2012-05-25 16:58:16 -04:00
|
|
|
gboolean ret;
|
2012-06-15 18:20:38 -04:00
|
|
|
gchar *uuid;
|
|
|
|
gboolean enabled;
|
2012-05-25 16:58:16 -04:00
|
|
|
gsize length;
|
|
|
|
gchar **uuids;
|
|
|
|
const gchar **new_uuids;
|
|
|
|
|
2012-06-15 18:20:38 -04:00
|
|
|
if (!parse_args ("ub", argc, argv, &uuid, &enabled))
|
2012-06-15 17:46:33 -04:00
|
|
|
return FALSE;
|
2011-09-02 11:29:26 -04:00
|
|
|
|
2012-05-25 16:58:16 -04:00
|
|
|
uuids = g_settings_get_strv (obj->settings, ENABLED_EXTENSIONS_KEY);
|
|
|
|
length = g_strv_length (uuids);
|
|
|
|
|
|
|
|
if (enabled)
|
|
|
|
{
|
|
|
|
new_uuids = g_new (const gchar *, length + 2); /* New key, NULL */
|
2012-05-28 19:26:02 -04:00
|
|
|
memcpy (new_uuids, uuids, length * sizeof (*new_uuids));
|
2012-06-15 18:20:38 -04:00
|
|
|
new_uuids[length] = uuid;
|
2012-05-28 19:26:02 -04:00
|
|
|
new_uuids[length + 1] = NULL;
|
2012-05-25 16:58:16 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gsize i = 0, j = 0;
|
|
|
|
new_uuids = g_new (const gchar *, length);
|
|
|
|
for (i = 0; i < length; i ++)
|
|
|
|
{
|
2012-06-15 18:20:38 -04:00
|
|
|
if (g_str_equal (uuids[i], uuid))
|
2012-05-25 16:58:16 -04:00
|
|
|
continue;
|
2011-09-02 11:29:26 -04:00
|
|
|
|
2012-05-25 16:58:16 -04:00
|
|
|
new_uuids[j] = uuids[i];
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
|
|
|
|
new_uuids[j] = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = g_settings_set_strv (obj->settings,
|
|
|
|
ENABLED_EXTENSIONS_KEY,
|
|
|
|
new_uuids);
|
|
|
|
|
|
|
|
g_strfreev (uuids);
|
|
|
|
g_free (new_uuids);
|
2012-06-15 18:20:38 -04:00
|
|
|
g_free (uuid);
|
2011-11-16 23:47:35 -05:00
|
|
|
|
2012-05-25 16:58:16 -04:00
|
|
|
return ret;
|
2011-09-02 11:29:26 -04:00
|
|
|
}
|
|
|
|
|
2012-06-15 23:20:36 -04:00
|
|
|
typedef struct _AsyncClosure AsyncClosure;
|
|
|
|
|
|
|
|
struct _AsyncClosure {
|
|
|
|
PluginObject *obj;
|
|
|
|
NPObject *callback;
|
|
|
|
NPObject *errback;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
install_extension_cb (GObject *proxy,
|
|
|
|
GAsyncResult *async_res,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
AsyncClosure *async_closure = (AsyncClosure *) user_data;
|
|
|
|
GError *error = NULL;
|
|
|
|
GVariant *res;
|
|
|
|
NPVariant args[1];
|
|
|
|
NPVariant result = { NPVariantType_Void };
|
|
|
|
NPObject *callback;
|
|
|
|
|
|
|
|
res = g_dbus_proxy_call_finish (G_DBUS_PROXY (proxy), async_res, &error);
|
|
|
|
|
|
|
|
if (res == NULL)
|
|
|
|
{
|
|
|
|
if (g_dbus_error_is_remote_error (error))
|
|
|
|
g_dbus_error_strip_remote_error (error);
|
|
|
|
STRINGZ_TO_NPVARIANT (error->message, args[0]);
|
|
|
|
callback = async_closure->errback;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
char *string_result;
|
|
|
|
g_variant_get (res, "(&s)", &string_result);
|
|
|
|
STRINGZ_TO_NPVARIANT (string_result, args[0]);
|
|
|
|
callback = async_closure->callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
funcs.invokeDefault (async_closure->obj->instance,
|
|
|
|
callback, args, 1, &result);
|
|
|
|
|
|
|
|
funcs.releasevariantvalue (&result);
|
|
|
|
|
|
|
|
funcs.releaseobject (async_closure->callback);
|
|
|
|
funcs.releaseobject (async_closure->errback);
|
|
|
|
g_slice_free (AsyncClosure, async_closure);
|
|
|
|
}
|
|
|
|
|
2011-09-02 11:29:26 -04:00
|
|
|
static gboolean
|
2012-06-15 18:20:38 -04:00
|
|
|
plugin_install_extension (PluginObject *obj,
|
|
|
|
uint32_t argc,
|
|
|
|
const NPVariant *argv,
|
|
|
|
NPVariant *result)
|
2011-09-02 11:29:26 -04:00
|
|
|
{
|
2012-06-15 18:20:38 -04:00
|
|
|
gchar *uuid;
|
2012-06-15 23:20:36 -04:00
|
|
|
NPObject *callback, *errback;
|
|
|
|
AsyncClosure *async_closure;
|
2011-12-18 05:21:05 -05:00
|
|
|
|
2012-06-15 23:20:36 -04:00
|
|
|
if (!parse_args ("uoo", argc, argv, &uuid, &callback, &errback))
|
2012-06-15 17:46:33 -04:00
|
|
|
return FALSE;
|
|
|
|
|
2012-06-15 23:20:36 -04:00
|
|
|
async_closure = g_slice_new (AsyncClosure);
|
|
|
|
async_closure->obj = obj;
|
|
|
|
async_closure->callback = funcs.retainobject (callback);
|
|
|
|
async_closure->errback = funcs.retainobject (errback);
|
|
|
|
|
2011-09-02 11:29:26 -04:00
|
|
|
g_dbus_proxy_call (obj->proxy,
|
|
|
|
"InstallRemoteExtension",
|
2012-06-15 18:20:38 -04:00
|
|
|
g_variant_new ("(s)", uuid),
|
2011-09-02 11:29:26 -04:00
|
|
|
G_DBUS_CALL_FLAGS_NONE,
|
|
|
|
-1, /* timeout */
|
|
|
|
NULL, /* cancellable */
|
2012-06-15 23:20:36 -04:00
|
|
|
install_extension_cb,
|
|
|
|
async_closure);
|
2011-09-02 11:29:26 -04:00
|
|
|
|
2012-06-15 18:20:38 -04:00
|
|
|
g_free (uuid);
|
2011-11-16 23:47:35 -05:00
|
|
|
|
2011-09-02 11:29:26 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2012-06-15 18:20:38 -04:00
|
|
|
plugin_uninstall_extension (PluginObject *obj,
|
|
|
|
uint32_t argc,
|
|
|
|
const NPVariant *argv,
|
|
|
|
NPVariant *result)
|
2011-09-02 11:29:26 -04:00
|
|
|
{
|
|
|
|
GError *error = NULL;
|
|
|
|
GVariant *res;
|
2012-06-15 18:20:38 -04:00
|
|
|
gchar *uuid;
|
2011-09-02 11:29:26 -04:00
|
|
|
|
2012-06-15 18:20:38 -04:00
|
|
|
if (!parse_args ("u", argc, argv, &uuid))
|
2012-06-15 17:46:33 -04:00
|
|
|
return FALSE;
|
|
|
|
|
2011-09-02 11:29:26 -04:00
|
|
|
res = g_dbus_proxy_call_sync (obj->proxy,
|
|
|
|
"UninstallExtension",
|
2012-06-15 18:20:38 -04:00
|
|
|
g_variant_new ("(s)", uuid),
|
2011-09-02 11:29:26 -04:00
|
|
|
G_DBUS_CALL_FLAGS_NONE,
|
|
|
|
-1, /* timeout */
|
|
|
|
NULL, /* cancellable */
|
|
|
|
&error);
|
|
|
|
|
2012-06-15 18:20:38 -04:00
|
|
|
g_free (uuid);
|
2011-11-16 23:47:35 -05:00
|
|
|
|
2011-09-02 11:29:26 -04:00
|
|
|
if (!res)
|
|
|
|
{
|
|
|
|
g_warning ("Failed to uninstall extension: %s", error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return jsonify_variant (res, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2012-06-15 18:20:38 -04:00
|
|
|
plugin_get_info (PluginObject *obj,
|
|
|
|
uint32_t argc,
|
|
|
|
const NPVariant *argv,
|
|
|
|
NPVariant *result)
|
2011-09-02 11:29:26 -04:00
|
|
|
{
|
|
|
|
GError *error = NULL;
|
|
|
|
GVariant *res;
|
2012-06-15 18:20:38 -04:00
|
|
|
gchar *uuid;
|
2011-09-02 11:29:26 -04:00
|
|
|
|
2012-06-15 18:20:38 -04:00
|
|
|
if (!parse_args ("u", argc, argv, &uuid))
|
2012-06-15 17:46:33 -04:00
|
|
|
return FALSE;
|
|
|
|
|
2011-09-02 11:29:26 -04:00
|
|
|
res = g_dbus_proxy_call_sync (obj->proxy,
|
|
|
|
"GetExtensionInfo",
|
2012-06-15 18:20:38 -04:00
|
|
|
g_variant_new ("(s)", uuid),
|
2011-09-02 11:29:26 -04:00
|
|
|
G_DBUS_CALL_FLAGS_NONE,
|
|
|
|
-1, /* timeout */
|
|
|
|
NULL, /* cancellable */
|
|
|
|
&error);
|
|
|
|
|
2012-06-15 18:20:38 -04:00
|
|
|
g_free (uuid);
|
2011-11-16 23:47:35 -05:00
|
|
|
|
2011-09-02 11:29:26 -04:00
|
|
|
if (!res)
|
|
|
|
{
|
|
|
|
g_warning ("Failed to retrieve extension metadata: %s", error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return jsonify_variant (res, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2012-06-15 18:20:38 -04:00
|
|
|
plugin_get_errors (PluginObject *obj,
|
|
|
|
uint32_t argc,
|
|
|
|
const NPVariant *argv,
|
|
|
|
NPVariant *result)
|
2011-09-02 11:29:26 -04:00
|
|
|
{
|
|
|
|
GError *error = NULL;
|
|
|
|
GVariant *res;
|
2012-06-15 18:20:38 -04:00
|
|
|
gchar *uuid;
|
2011-09-02 11:29:26 -04:00
|
|
|
|
2012-06-15 18:20:38 -04:00
|
|
|
if (!parse_args ("u", argc, argv, &uuid))
|
2012-06-15 17:46:33 -04:00
|
|
|
return FALSE;
|
|
|
|
|
2011-09-02 11:29:26 -04:00
|
|
|
res = g_dbus_proxy_call_sync (obj->proxy,
|
|
|
|
"GetExtensionErrors",
|
2012-06-15 18:20:38 -04:00
|
|
|
g_variant_new ("(s)", uuid),
|
2011-09-02 11:29:26 -04:00
|
|
|
G_DBUS_CALL_FLAGS_NONE,
|
|
|
|
-1, /* timeout */
|
|
|
|
NULL, /* cancellable */
|
|
|
|
&error);
|
|
|
|
|
|
|
|
if (!res)
|
|
|
|
{
|
|
|
|
g_warning ("Failed to retrieve errors: %s", error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return jsonify_variant (res, result);
|
|
|
|
}
|
|
|
|
|
2012-01-18 21:30:06 -05:00
|
|
|
static gboolean
|
2012-06-15 18:20:38 -04:00
|
|
|
plugin_launch_extension_prefs (PluginObject *obj,
|
|
|
|
uint32_t argc,
|
|
|
|
const NPVariant *argv,
|
|
|
|
NPVariant *result)
|
2012-01-18 21:30:06 -05:00
|
|
|
{
|
2012-06-15 18:20:38 -04:00
|
|
|
gchar *uuid;
|
2012-01-18 21:30:06 -05:00
|
|
|
|
2012-06-15 18:20:38 -04:00
|
|
|
if (!parse_args ("u", argc, argv, &uuid))
|
2012-06-15 17:46:33 -04:00
|
|
|
return FALSE;
|
|
|
|
|
2012-01-18 21:30:06 -05:00
|
|
|
g_dbus_proxy_call (obj->proxy,
|
|
|
|
"LaunchExtensionPrefs",
|
2012-06-15 18:20:38 -04:00
|
|
|
g_variant_new ("(s)", uuid),
|
2012-01-18 21:30:06 -05:00
|
|
|
G_DBUS_CALL_FLAGS_NONE,
|
|
|
|
-1, /* timeout */
|
|
|
|
NULL, /* cancellable */
|
|
|
|
NULL, /* callback */
|
|
|
|
NULL /* user_data */);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2011-09-02 11:29:26 -04:00
|
|
|
static int
|
|
|
|
plugin_get_api_version (PluginObject *obj,
|
|
|
|
NPVariant *result)
|
|
|
|
{
|
|
|
|
INT32_TO_NPVARIANT (PLUGIN_API_VERSION, *result);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
plugin_get_shell_version (PluginObject *obj,
|
|
|
|
NPVariant *result)
|
|
|
|
{
|
|
|
|
GVariant *res;
|
|
|
|
const gchar *version;
|
|
|
|
gsize length;
|
|
|
|
gchar *buffer;
|
|
|
|
gboolean ret;
|
|
|
|
|
|
|
|
ret = TRUE;
|
|
|
|
|
|
|
|
res = g_dbus_proxy_get_cached_property (obj->proxy,
|
|
|
|
"ShellVersion");
|
|
|
|
|
|
|
|
if (res == NULL)
|
|
|
|
{
|
|
|
|
g_warning ("Failed to grab shell version.");
|
|
|
|
version = "-1";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_variant_get (res, "&s", &version);
|
|
|
|
}
|
|
|
|
|
|
|
|
length = strlen (version);
|
|
|
|
buffer = funcs.memalloc (length + 1);
|
|
|
|
if (!buffer)
|
|
|
|
{
|
|
|
|
ret = FALSE;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
strcpy (buffer, version);
|
|
|
|
|
|
|
|
STRINGN_TO_NPVARIANT (buffer, length, *result);
|
|
|
|
|
|
|
|
out:
|
2011-12-06 07:36:59 -05:00
|
|
|
if (res)
|
|
|
|
g_variant_unref (res);
|
2011-09-02 11:29:26 -04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-02-18 13:29:03 -05:00
|
|
|
static gboolean
|
|
|
|
plugin_get_version_validation_enabled (PluginObject *obj,
|
|
|
|
NPVariant *result)
|
|
|
|
{
|
|
|
|
gboolean is_enabled = !g_settings_get_boolean (obj->settings, EXTENSION_DISABLE_VERSION_CHECK_KEY);
|
|
|
|
BOOLEAN_TO_NPVARIANT(is_enabled, *result);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-06-15 18:20:38 -04:00
|
|
|
#define METHODS \
|
|
|
|
METHOD (list_extensions) \
|
|
|
|
METHOD (get_info) \
|
|
|
|
METHOD (enable_extension) \
|
|
|
|
METHOD (install_extension) \
|
|
|
|
METHOD (uninstall_extension) \
|
|
|
|
METHOD (get_errors) \
|
|
|
|
METHOD (launch_extension_prefs) \
|
|
|
|
/* */
|
|
|
|
|
|
|
|
#define METHOD(x) \
|
|
|
|
static NPIdentifier x##_id;
|
|
|
|
METHODS
|
|
|
|
#undef METHOD
|
|
|
|
|
|
|
|
static NPIdentifier api_version_id;
|
|
|
|
static NPIdentifier shell_version_id;
|
|
|
|
static NPIdentifier onextension_changed_id;
|
|
|
|
static NPIdentifier onrestart_id;
|
2014-02-18 13:29:03 -05:00
|
|
|
static NPIdentifier version_validation_enabled_id;
|
|
|
|
|
2012-06-15 18:20:38 -04:00
|
|
|
|
|
|
|
static bool
|
|
|
|
plugin_object_has_method (NPObject *npobj,
|
|
|
|
NPIdentifier name)
|
|
|
|
{
|
|
|
|
#define METHOD(x) (name == (x##_id)) ||
|
|
|
|
/* expands to (name == list_extensions_id) || FALSE; */
|
|
|
|
return METHODS FALSE;
|
|
|
|
#undef METHOD
|
|
|
|
}
|
|
|
|
|
2011-09-02 11:29:26 -04:00
|
|
|
static bool
|
|
|
|
plugin_object_invoke (NPObject *npobj,
|
|
|
|
NPIdentifier name,
|
2012-06-15 18:20:38 -04:00
|
|
|
const NPVariant *argv,
|
2011-09-02 11:29:26 -04:00
|
|
|
uint32_t argc,
|
|
|
|
NPVariant *result)
|
|
|
|
{
|
|
|
|
PluginObject *obj;
|
|
|
|
|
|
|
|
g_debug ("invoking plugin object method");
|
|
|
|
|
|
|
|
obj = (PluginObject*) npobj;
|
|
|
|
|
|
|
|
VOID_TO_NPVARIANT (*result);
|
|
|
|
|
2012-06-15 18:20:38 -04:00
|
|
|
#define METHOD(x) \
|
|
|
|
if (name == x##_id) \
|
|
|
|
return plugin_##x (obj, argc, argv, result);
|
|
|
|
METHODS
|
|
|
|
#undef METHOD
|
2011-09-02 11:29:26 -04:00
|
|
|
|
2012-06-15 18:20:38 -04:00
|
|
|
return FALSE;
|
2011-09-02 11:29:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
plugin_object_has_property (NPObject *npobj,
|
|
|
|
NPIdentifier name)
|
|
|
|
{
|
|
|
|
return (name == onextension_changed_id ||
|
2011-11-08 14:26:13 -05:00
|
|
|
name == onrestart_id ||
|
2011-09-02 11:29:26 -04:00
|
|
|
name == api_version_id ||
|
2014-02-18 13:29:03 -05:00
|
|
|
name == shell_version_id ||
|
|
|
|
name == version_validation_enabled_id);
|
2011-09-02 11:29:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
plugin_object_get_property (NPObject *npobj,
|
|
|
|
NPIdentifier name,
|
|
|
|
NPVariant *result)
|
|
|
|
{
|
|
|
|
PluginObject *obj;
|
|
|
|
|
|
|
|
if (!plugin_object_has_property (npobj, name))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
obj = (PluginObject*) npobj;
|
|
|
|
if (name == api_version_id)
|
|
|
|
return plugin_get_api_version (obj, result);
|
|
|
|
else if (name == shell_version_id)
|
|
|
|
return plugin_get_shell_version (obj, result);
|
2014-02-18 13:29:03 -05:00
|
|
|
else if (name == version_validation_enabled_id)
|
|
|
|
return plugin_get_version_validation_enabled (obj, result);
|
2011-09-02 11:29:26 -04:00
|
|
|
else if (name == onextension_changed_id)
|
|
|
|
{
|
|
|
|
if (obj->listener)
|
|
|
|
OBJECT_TO_NPVARIANT (obj->listener, *result);
|
|
|
|
else
|
|
|
|
NULL_TO_NPVARIANT (*result);
|
|
|
|
}
|
2011-11-08 14:26:13 -05:00
|
|
|
else if (name == onrestart_id)
|
|
|
|
{
|
|
|
|
if (obj->restart_listener)
|
|
|
|
OBJECT_TO_NPVARIANT (obj->restart_listener, *result);
|
|
|
|
else
|
|
|
|
NULL_TO_NPVARIANT (*result);
|
|
|
|
}
|
2011-09-02 11:29:26 -04:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-01-25 01:33:40 -05:00
|
|
|
static bool
|
|
|
|
plugin_object_set_callback (NPObject **listener,
|
|
|
|
const NPVariant *value)
|
|
|
|
{
|
|
|
|
if (!NPVARIANT_IS_OBJECT (*value) && !NPVARIANT_IS_NULL (*value))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (*listener)
|
|
|
|
funcs.releaseobject (*listener);
|
|
|
|
*listener = NULL;
|
|
|
|
|
|
|
|
if (NPVARIANT_IS_OBJECT (*value))
|
|
|
|
{
|
|
|
|
*listener = NPVARIANT_TO_OBJECT (*value);
|
2012-01-30 19:25:31 -05:00
|
|
|
funcs.retainobject (*listener);
|
2012-01-25 01:33:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2011-09-02 11:29:26 -04:00
|
|
|
static bool
|
|
|
|
plugin_object_set_property (NPObject *npobj,
|
|
|
|
NPIdentifier name,
|
|
|
|
const NPVariant *value)
|
|
|
|
{
|
|
|
|
PluginObject *obj;
|
|
|
|
|
2012-01-30 19:25:31 -05:00
|
|
|
obj = (PluginObject *)npobj;
|
|
|
|
|
2011-09-02 11:29:26 -04:00
|
|
|
if (name == onextension_changed_id)
|
2012-01-25 01:33:40 -05:00
|
|
|
return plugin_object_set_callback (&obj->listener, value);
|
2011-09-02 11:29:26 -04:00
|
|
|
|
2011-11-08 14:26:13 -05:00
|
|
|
if (name == onrestart_id)
|
2012-01-25 01:33:40 -05:00
|
|
|
return plugin_object_set_callback (&obj->restart_listener, value);
|
2011-11-08 14:26:13 -05:00
|
|
|
|
2011-09-02 11:29:26 -04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static NPClass plugin_class = {
|
|
|
|
NP_CLASS_STRUCT_VERSION,
|
|
|
|
plugin_object_allocate,
|
|
|
|
plugin_object_deallocate,
|
|
|
|
NULL, /* invalidate */
|
|
|
|
plugin_object_has_method,
|
|
|
|
plugin_object_invoke,
|
|
|
|
NULL, /* invoke default */
|
|
|
|
plugin_object_has_property,
|
|
|
|
plugin_object_get_property,
|
|
|
|
plugin_object_set_property,
|
|
|
|
NULL, /* remove property */
|
|
|
|
NULL, /* enumerate */
|
|
|
|
NULL, /* construct */
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
init_methods_and_properties (void)
|
|
|
|
{
|
|
|
|
/* this is the JS public API; it is manipulated through NPIdentifiers for speed */
|
|
|
|
api_version_id = funcs.getstringidentifier ("apiVersion");
|
|
|
|
shell_version_id = funcs.getstringidentifier ("shellVersion");
|
2014-02-18 13:29:03 -05:00
|
|
|
version_validation_enabled_id = funcs.getstringidentifier ("versionValidationEnabled");
|
2011-09-02 11:29:26 -04:00
|
|
|
|
|
|
|
get_info_id = funcs.getstringidentifier ("getExtensionInfo");
|
|
|
|
list_extensions_id = funcs.getstringidentifier ("listExtensions");
|
|
|
|
enable_extension_id = funcs.getstringidentifier ("setExtensionEnabled");
|
|
|
|
install_extension_id = funcs.getstringidentifier ("installExtension");
|
|
|
|
uninstall_extension_id = funcs.getstringidentifier ("uninstallExtension");
|
|
|
|
get_errors_id = funcs.getstringidentifier ("getExtensionErrors");
|
2012-01-18 21:30:06 -05:00
|
|
|
launch_extension_prefs_id = funcs.getstringidentifier ("launchExtensionPrefs");
|
2011-09-02 11:29:26 -04:00
|
|
|
|
2011-11-08 14:26:13 -05:00
|
|
|
onrestart_id = funcs.getstringidentifier ("onshellrestart");
|
2011-09-02 11:29:26 -04:00
|
|
|
onextension_changed_id = funcs.getstringidentifier ("onchange");
|
|
|
|
}
|
|
|
|
|
|
|
|
NPError
|
|
|
|
NPP_GetValue(NPP instance,
|
|
|
|
NPPVariable variable,
|
|
|
|
void *value)
|
|
|
|
{
|
|
|
|
g_debug ("NPP_GetValue called");
|
|
|
|
|
|
|
|
switch (variable) {
|
|
|
|
case NPPVpluginScriptableNPObject:
|
|
|
|
g_debug ("creating scriptable object");
|
|
|
|
init_methods_and_properties ();
|
|
|
|
|
|
|
|
*(NPObject**)value = funcs.createobject (instance, &plugin_class);
|
|
|
|
break;
|
2011-11-10 22:35:41 -05:00
|
|
|
|
|
|
|
case NPPVpluginNeedsXEmbed:
|
|
|
|
*(bool *)value = TRUE;
|
|
|
|
break;
|
|
|
|
|
2011-09-02 11:29:26 -04:00
|
|
|
default:
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
}
|
2012-05-14 17:12:45 -04:00
|
|
|
|
|
|
|
/* Opera tries to call NPP_SetWindow without checking the
|
|
|
|
* NULL pointer beforehand. */
|
|
|
|
NPError
|
|
|
|
NPP_SetWindow(NPP instance,
|
|
|
|
NPWindow *window)
|
|
|
|
{
|
|
|
|
return NPERR_NO_ERROR;
|
|
|
|
}
|