2004 lines
66 KiB
C
2004 lines
66 KiB
C
/*
|
|
Copyright (C) 2007-2009 Christian Dywan <christian@twotoasts.de>
|
|
Copyright (C) 2008 Dale Whittaker <dayul@users.sf.net>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
See the file COPYING for the full license text.
|
|
*/
|
|
|
|
#if HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include "midori.h"
|
|
#include "midori-addons.h"
|
|
#include "midori-array.h"
|
|
#include "midori-bookmarks.h"
|
|
#include "midori-console.h"
|
|
#include "midori-extensions.h"
|
|
#include "midori-history.h"
|
|
#include "midori-transfers.h"
|
|
|
|
#include "sokoke.h"
|
|
|
|
#if HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
#include <errno.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <glib/gstdio.h>
|
|
#include <webkit/webkit.h>
|
|
|
|
#if HAVE_SQLITE
|
|
#include <sqlite3.h>
|
|
#endif
|
|
|
|
#if ENABLE_NLS
|
|
#include <libintl.h>
|
|
#include <locale.h>
|
|
#endif
|
|
|
|
#ifdef HAVE_SIGNAL_H
|
|
#include <signal.h>
|
|
#endif
|
|
|
|
#if HAVE_HILDON
|
|
#define BOOKMARK_FILE "/home/user/.bookmarks/MyBookmarks.xml"
|
|
#else
|
|
#define BOOKMARK_FILE "bookmarks.xbel"
|
|
#endif
|
|
|
|
static gchar*
|
|
build_config_filename (const gchar* filename)
|
|
{
|
|
const gchar* path;
|
|
|
|
if (g_path_is_absolute (filename))
|
|
return g_strdup (filename);
|
|
path = sokoke_set_config_dir (NULL);
|
|
return g_build_filename (path, filename, NULL);
|
|
}
|
|
|
|
static MidoriWebSettings*
|
|
settings_new_from_file (const gchar* filename,
|
|
gchar*** extensions)
|
|
{
|
|
MidoriWebSettings* settings = midori_web_settings_new ();
|
|
GKeyFile* key_file = g_key_file_new ();
|
|
GError* error = NULL;
|
|
GObjectClass* class;
|
|
guint i, n_properties;
|
|
GParamSpec** pspecs;
|
|
GParamSpec* pspec;
|
|
GType type;
|
|
const gchar* property;
|
|
gchar* str;
|
|
gint integer;
|
|
gfloat number;
|
|
gboolean boolean;
|
|
|
|
if (!g_key_file_load_from_file (key_file, filename,
|
|
G_KEY_FILE_KEEP_COMMENTS, &error))
|
|
{
|
|
if (error->code == G_FILE_ERROR_NOENT)
|
|
{
|
|
gchar* config_file = sokoke_find_config_filename (NULL, "config");
|
|
g_key_file_load_from_file (key_file, config_file,
|
|
G_KEY_FILE_KEEP_COMMENTS, NULL);
|
|
}
|
|
else
|
|
printf (_("The configuration couldn't be loaded: %s\n"),
|
|
error->message);
|
|
g_error_free (error);
|
|
}
|
|
class = G_OBJECT_GET_CLASS (settings);
|
|
pspecs = g_object_class_list_properties (class, &n_properties);
|
|
for (i = 0; i < n_properties; i++)
|
|
{
|
|
pspec = pspecs[i];
|
|
if (!(pspec->flags & G_PARAM_WRITABLE))
|
|
continue;
|
|
|
|
type = G_PARAM_SPEC_TYPE (pspec);
|
|
property = g_param_spec_get_name (pspec);
|
|
if (!g_key_file_has_key (key_file, "settings", property, NULL))
|
|
continue;
|
|
|
|
if (type == G_TYPE_PARAM_STRING)
|
|
{
|
|
str = g_key_file_get_string (key_file, "settings", property, NULL);
|
|
g_object_set (settings, property, str, NULL);
|
|
g_free (str);
|
|
}
|
|
else if (type == G_TYPE_PARAM_INT)
|
|
{
|
|
integer = g_key_file_get_integer (key_file, "settings", property, NULL);
|
|
g_object_set (settings, property, integer, NULL);
|
|
}
|
|
else if (type == G_TYPE_PARAM_FLOAT)
|
|
{
|
|
number = g_key_file_get_double (key_file, "settings", property, NULL);
|
|
g_object_set (settings, property, number, NULL);
|
|
}
|
|
else if (type == G_TYPE_PARAM_BOOLEAN)
|
|
{
|
|
boolean = g_key_file_get_boolean (key_file, "settings", property, NULL);
|
|
g_object_set (settings, property, boolean, NULL);
|
|
}
|
|
else if (type == G_TYPE_PARAM_ENUM)
|
|
{
|
|
GEnumClass* enum_class = G_ENUM_CLASS (
|
|
g_type_class_peek (pspec->value_type));
|
|
GEnumValue* enum_value;
|
|
|
|
str = g_key_file_get_string (key_file, "settings", property, NULL);
|
|
enum_value = g_enum_get_value_by_name (enum_class, str);
|
|
if (enum_value)
|
|
g_object_set (settings, property, enum_value->value, NULL);
|
|
else
|
|
g_warning (_("Value '%s' is invalid for %s"),
|
|
str, property);
|
|
|
|
g_free (str);
|
|
g_type_class_unref (enum_class);
|
|
}
|
|
else
|
|
g_warning (_("Invalid configuration value '%s'"), property);
|
|
}
|
|
g_free (pspecs);
|
|
|
|
*extensions = g_key_file_get_keys (key_file, "extensions", NULL, NULL);
|
|
|
|
g_key_file_free (key_file);
|
|
|
|
return settings;
|
|
}
|
|
|
|
static gboolean
|
|
settings_save_to_file (MidoriWebSettings* settings,
|
|
MidoriApp* app,
|
|
const gchar* filename,
|
|
GError** error)
|
|
{
|
|
GKeyFile* key_file;
|
|
GObjectClass* class;
|
|
guint i, n_properties;
|
|
GParamSpec** pspecs;
|
|
GParamSpec* pspec;
|
|
GType type;
|
|
const gchar* property;
|
|
gboolean saved;
|
|
KatzeArray* extensions = katze_object_get_object (app, "extensions");
|
|
MidoriExtension* extension;
|
|
gchar** _extensions;
|
|
|
|
key_file = g_key_file_new ();
|
|
class = G_OBJECT_GET_CLASS (settings);
|
|
pspecs = g_object_class_list_properties (class, &n_properties);
|
|
for (i = 0; i < n_properties; i++)
|
|
{
|
|
pspec = pspecs[i];
|
|
type = G_PARAM_SPEC_TYPE (pspec);
|
|
property = g_param_spec_get_name (pspec);
|
|
if (!(pspec->flags & G_PARAM_WRITABLE))
|
|
continue;
|
|
if (type == G_TYPE_PARAM_STRING)
|
|
{
|
|
gchar* string;
|
|
const gchar* def_string = G_PARAM_SPEC_STRING (pspec)->default_value;
|
|
g_object_get (settings, property, &string, NULL);
|
|
if (!string)
|
|
string = g_strdup ("");
|
|
if (!def_string)
|
|
def_string = "";
|
|
if (strcmp (string, def_string))
|
|
g_key_file_set_string (key_file, "settings", property, string);
|
|
g_free (string);
|
|
}
|
|
else if (type == G_TYPE_PARAM_INT)
|
|
{
|
|
gint integer;
|
|
g_object_get (settings, property, &integer, NULL);
|
|
if (integer != G_PARAM_SPEC_INT (pspec)->default_value)
|
|
g_key_file_set_integer (key_file, "settings", property, integer);
|
|
}
|
|
else if (type == G_TYPE_PARAM_FLOAT)
|
|
{
|
|
gfloat number;
|
|
g_object_get (settings, property, &number, NULL);
|
|
if (number != G_PARAM_SPEC_FLOAT (pspec)->default_value)
|
|
g_key_file_set_double (key_file, "settings", property, number);
|
|
}
|
|
else if (type == G_TYPE_PARAM_BOOLEAN)
|
|
{
|
|
gboolean truth;
|
|
g_object_get (settings, property, &truth, NULL);
|
|
if (truth != G_PARAM_SPEC_BOOLEAN (pspec)->default_value)
|
|
g_key_file_set_boolean (key_file, "settings", property, truth);
|
|
}
|
|
else if (type == G_TYPE_PARAM_ENUM)
|
|
{
|
|
GEnumClass* enum_class = G_ENUM_CLASS (
|
|
g_type_class_ref (pspec->value_type));
|
|
gint integer;
|
|
GEnumValue* enum_value;
|
|
g_object_get (settings, property, &integer, NULL);
|
|
enum_value = g_enum_get_value (enum_class, integer);
|
|
if (integer != G_PARAM_SPEC_ENUM (pspec)->default_value)
|
|
g_key_file_set_string (key_file, "settings", property,
|
|
enum_value->value_name);
|
|
}
|
|
else
|
|
g_warning (_("Invalid configuration value '%s'"), property);
|
|
}
|
|
g_free (pspecs);
|
|
|
|
if (extensions)
|
|
{
|
|
i = 0;
|
|
while ((extension = katze_array_get_nth_item (extensions, i++)))
|
|
if (midori_extension_is_active (extension))
|
|
g_key_file_set_boolean (key_file, "extensions",
|
|
g_object_get_data (G_OBJECT (extension), "filename"), TRUE);
|
|
g_object_unref (extensions);
|
|
}
|
|
else if ((_extensions = g_object_get_data (G_OBJECT (app), "extensions")))
|
|
{
|
|
i = 0;
|
|
while (_extensions[i])
|
|
{
|
|
g_key_file_set_boolean (key_file, "extensions", _extensions[i], TRUE);
|
|
i++;
|
|
}
|
|
}
|
|
|
|
saved = sokoke_key_file_save_to_file (key_file, filename, error);
|
|
g_key_file_free (key_file);
|
|
return saved;
|
|
}
|
|
|
|
static KatzeArray*
|
|
search_engines_new_from_file (const gchar* filename,
|
|
GError** error)
|
|
{
|
|
KatzeArray* search_engines;
|
|
GKeyFile* key_file;
|
|
gchar** engines;
|
|
guint i, j, n_properties;
|
|
KatzeItem* item;
|
|
GParamSpec** pspecs;
|
|
const gchar* property;
|
|
gchar* value;
|
|
|
|
search_engines = katze_array_new (KATZE_TYPE_ITEM);
|
|
key_file = g_key_file_new ();
|
|
g_key_file_load_from_file (key_file, filename,
|
|
G_KEY_FILE_KEEP_COMMENTS, error);
|
|
/*g_key_file_load_from_data_dirs(keyFile, sFilename, NULL
|
|
, G_KEY_FILE_KEEP_COMMENTS, error);*/
|
|
engines = g_key_file_get_groups (key_file, NULL);
|
|
pspecs = g_object_class_list_properties (G_OBJECT_GET_CLASS (search_engines),
|
|
&n_properties);
|
|
for (i = 0; engines[i] != NULL; i++)
|
|
{
|
|
item = katze_item_new ();
|
|
for (j = 0; j < n_properties; j++)
|
|
{
|
|
if (!G_IS_PARAM_SPEC_STRING (pspecs[j]))
|
|
continue;
|
|
property = g_param_spec_get_name (pspecs[j]);
|
|
value = g_key_file_get_string (key_file, engines[i],
|
|
property, NULL);
|
|
g_object_set (item, property, value, NULL);
|
|
g_free (value);
|
|
}
|
|
katze_array_add_item (search_engines, item);
|
|
}
|
|
g_free (pspecs);
|
|
g_strfreev (engines);
|
|
g_key_file_free (key_file);
|
|
return search_engines;
|
|
}
|
|
|
|
static gboolean
|
|
search_engines_save_to_file (KatzeArray* search_engines,
|
|
const gchar* filename,
|
|
GError** error)
|
|
{
|
|
GKeyFile* key_file;
|
|
guint i, j, n_properties;
|
|
KatzeItem* item;
|
|
const gchar* name;
|
|
GParamSpec** pspecs;
|
|
const gchar* property;
|
|
gchar* value;
|
|
gboolean saved;
|
|
|
|
key_file = g_key_file_new ();
|
|
pspecs = g_object_class_list_properties (G_OBJECT_GET_CLASS (search_engines),
|
|
&n_properties);
|
|
i = 0;
|
|
while ((item = katze_array_get_nth_item (search_engines, i++)))
|
|
{
|
|
name = katze_item_get_name (item);
|
|
for (j = 0; j < n_properties; j++)
|
|
{
|
|
if (!G_IS_PARAM_SPEC_STRING (pspecs[j]))
|
|
continue;
|
|
property = g_param_spec_get_name (pspecs[j]);
|
|
g_object_get (item, property, &value, NULL);
|
|
if (value)
|
|
g_key_file_set_string (key_file, name, property, value);
|
|
g_free (value);
|
|
}
|
|
}
|
|
g_free (pspecs);
|
|
saved = sokoke_key_file_save_to_file (key_file, filename, error);
|
|
g_key_file_free (key_file);
|
|
|
|
return saved;
|
|
}
|
|
|
|
#if HAVE_SQLITE
|
|
static sqlite3*
|
|
midori_history_initialize (KatzeArray* array,
|
|
const gchar* filename,
|
|
char** errmsg)
|
|
{
|
|
sqlite3* db;
|
|
gboolean has_day;
|
|
sqlite3_stmt* stmt;
|
|
gint result;
|
|
|
|
has_day = FALSE;
|
|
|
|
if (sqlite3_open (filename, &db) != SQLITE_OK)
|
|
{
|
|
if (errmsg)
|
|
*errmsg = g_strdup_printf (_("Failed to open database: %s\n"),
|
|
sqlite3_errmsg (db));
|
|
sqlite3_close (db);
|
|
return NULL;
|
|
}
|
|
|
|
if (sqlite3_exec (db,
|
|
"CREATE TABLE IF NOT EXISTS "
|
|
"history(uri text, title text, date integer, day integer)",
|
|
NULL, NULL, errmsg) != SQLITE_OK)
|
|
return NULL;
|
|
|
|
sqlite3_prepare_v2 (db, "SELECT day FROM history LIMIT 1", -1, &stmt, NULL);
|
|
result = sqlite3_step (stmt);
|
|
if (result == SQLITE_ROW)
|
|
has_day = TRUE;
|
|
sqlite3_finalize (stmt);
|
|
|
|
if (!has_day)
|
|
sqlite3_exec (db,
|
|
"BEGIN TRANSACTION;"
|
|
"CREATE TEMPORARY TABLE backup (uri text, title text, date integer);"
|
|
"INSERT INTO backup SELECT uri,title,date FROM history;"
|
|
"DROP TABLE history;"
|
|
"CREATE TABLE history (uri text, title text, date integer, day integer);"
|
|
"INSERT INTO history SELECT uri,title,date,"
|
|
"julianday(date(date,'unixepoch','start of day','+1 day'))"
|
|
" - julianday('0001-01-01','start of day')"
|
|
"FROM backup;"
|
|
"DROP TABLE backup;"
|
|
"COMMIT;",
|
|
NULL, NULL, errmsg);
|
|
return db;
|
|
}
|
|
|
|
static void
|
|
midori_history_terminate (sqlite3* db,
|
|
gint max_history_age)
|
|
{
|
|
gchar* sqlcmd;
|
|
char* errmsg = NULL;
|
|
|
|
sqlcmd = g_strdup_printf (
|
|
"DELETE FROM history WHERE "
|
|
"(julianday(date('now')) - julianday(date(date,'unixepoch')))"
|
|
" >= %d", max_history_age);
|
|
if (sqlite3_exec (db, sqlcmd, NULL, NULL, &errmsg) != SQLITE_OK)
|
|
{
|
|
/* i18n: Couldn't remove items that are older than n days */
|
|
g_printerr (_("Failed to remove old history items: %s\n"), errmsg);
|
|
sqlite3_free (errmsg);
|
|
}
|
|
g_free (sqlcmd);
|
|
sqlite3_close (db);
|
|
}
|
|
#endif
|
|
|
|
static void
|
|
midori_app_quit_cb (MidoriApp* app)
|
|
{
|
|
gchar* config_file = build_config_filename ("running");
|
|
g_unlink (config_file);
|
|
g_free (config_file);
|
|
}
|
|
|
|
static void
|
|
settings_notify_cb (MidoriWebSettings* settings,
|
|
GParamSpec* pspec,
|
|
MidoriApp* app)
|
|
{
|
|
gchar* config_file;
|
|
GError* error;
|
|
|
|
config_file = build_config_filename ("config");
|
|
error = NULL;
|
|
if (!settings_save_to_file (settings, app, config_file, &error))
|
|
{
|
|
g_warning (_("The configuration couldn't be saved. %s"), error->message);
|
|
g_error_free (error);
|
|
}
|
|
g_free (config_file);
|
|
}
|
|
|
|
static void
|
|
extension_activate_cb (MidoriExtension* extension,
|
|
MidoriApp* app)
|
|
{
|
|
MidoriWebSettings* settings = katze_object_get_object (app, "settings");
|
|
settings_notify_cb (settings, NULL, app);
|
|
g_object_unref (settings);
|
|
}
|
|
|
|
static void
|
|
accel_map_changed_cb (GtkAccelMap* accel_map,
|
|
gchar* accel_path,
|
|
guint accel_key,
|
|
GdkModifierType accel_mods)
|
|
{
|
|
gchar* config_file = build_config_filename ("accels");
|
|
gtk_accel_map_save (config_file);
|
|
g_free (config_file);
|
|
}
|
|
|
|
static void
|
|
midori_search_engines_modify_cb (KatzeArray* array,
|
|
gpointer item,
|
|
KatzeArray* search_engines)
|
|
{
|
|
gchar* config_file;
|
|
GError* error;
|
|
|
|
config_file = build_config_filename ("search");
|
|
error = NULL;
|
|
if (!search_engines_save_to_file (search_engines, config_file, &error))
|
|
{
|
|
g_warning (_("The search engines couldn't be saved. %s"),
|
|
error->message);
|
|
g_error_free (error);
|
|
}
|
|
g_free (config_file);
|
|
}
|
|
|
|
static void
|
|
midori_bookmarks_notify_item_cb (KatzeArray* folder,
|
|
GParamSpec* pspec,
|
|
KatzeArray* bookmarks)
|
|
{
|
|
gchar* config_file;
|
|
GError* error;
|
|
|
|
config_file = build_config_filename (BOOKMARK_FILE);
|
|
error = NULL;
|
|
if (!midori_array_to_file (bookmarks, config_file, "xbel", &error))
|
|
{
|
|
g_warning (_("The bookmarks couldn't be saved. %s"), error->message);
|
|
g_error_free (error);
|
|
}
|
|
g_free (config_file);
|
|
}
|
|
|
|
static void
|
|
midori_bookmarks_add_item_cb (KatzeArray* folder,
|
|
KatzeItem* item,
|
|
KatzeArray* bookmarks);
|
|
|
|
static void
|
|
midori_bookmarks_remove_item_cb (KatzeArray* folder,
|
|
GObject* item,
|
|
KatzeArray* bookmarks);
|
|
|
|
static void
|
|
midori_bookmarks_connect_item (KatzeArray* folder,
|
|
KatzeItem* item,
|
|
KatzeArray* bookmarks)
|
|
{
|
|
if (KATZE_IS_ARRAY (item))
|
|
{
|
|
KatzeItem* child;
|
|
guint i = 0;
|
|
while ((child = katze_array_get_nth_item ((KatzeArray*)item, i++)))
|
|
midori_bookmarks_connect_item ((KatzeArray*)item, child, bookmarks);
|
|
|
|
g_signal_connect_after (item, "add-item",
|
|
G_CALLBACK (midori_bookmarks_add_item_cb), bookmarks);
|
|
g_signal_connect_after (item, "remove-item",
|
|
G_CALLBACK (midori_bookmarks_remove_item_cb), bookmarks);
|
|
}
|
|
|
|
g_signal_connect_after (item, "notify",
|
|
G_CALLBACK (midori_bookmarks_notify_item_cb), bookmarks);
|
|
}
|
|
|
|
static void
|
|
midori_bookmarks_add_item_cb (KatzeArray* folder,
|
|
KatzeItem* item,
|
|
KatzeArray* bookmarks)
|
|
{
|
|
gchar* config_file;
|
|
GError* error;
|
|
|
|
config_file = build_config_filename (BOOKMARK_FILE);
|
|
error = NULL;
|
|
if (!midori_array_to_file (bookmarks, config_file, "xbel", &error))
|
|
{
|
|
g_warning (_("The bookmarks couldn't be saved. %s"), error->message);
|
|
g_error_free (error);
|
|
}
|
|
g_free (config_file);
|
|
|
|
midori_bookmarks_connect_item (folder, item, bookmarks);
|
|
}
|
|
|
|
static void
|
|
midori_bookmarks_remove_item_cb (KatzeArray* folder,
|
|
GObject* item,
|
|
KatzeArray* bookmarks)
|
|
{
|
|
gchar* config_file;
|
|
GError* error;
|
|
|
|
config_file = build_config_filename (BOOKMARK_FILE);
|
|
error = NULL;
|
|
if (!midori_array_to_file (bookmarks, config_file, "xbel", &error))
|
|
{
|
|
g_warning (_("The bookmarks couldn't be saved. %s"), error->message);
|
|
g_error_free (error);
|
|
}
|
|
g_free (config_file);
|
|
|
|
if (KATZE_IS_ARRAY (item))
|
|
{
|
|
g_signal_handlers_disconnect_by_func (item,
|
|
midori_bookmarks_add_item_cb, bookmarks);
|
|
g_signal_handlers_disconnect_by_func (item,
|
|
midori_bookmarks_remove_item_cb, bookmarks);
|
|
}
|
|
|
|
g_signal_handlers_disconnect_by_func (item,
|
|
midori_bookmarks_notify_item_cb, bookmarks);
|
|
}
|
|
|
|
static void
|
|
midori_trash_add_item_cb (KatzeArray* trash,
|
|
GObject* item)
|
|
{
|
|
gchar* config_file;
|
|
GError* error;
|
|
GObject* obsolete_item;
|
|
|
|
config_file = build_config_filename ("tabtrash.xbel");
|
|
error = NULL;
|
|
if (!midori_array_to_file (trash, config_file, "xbel", &error))
|
|
{
|
|
/* i18n: Trash, or wastebin, containing closed tabs */
|
|
g_warning (_("The trash couldn't be saved. %s"), error->message);
|
|
g_error_free (error);
|
|
}
|
|
g_free (config_file);
|
|
|
|
if (katze_array_get_nth_item (trash, 10))
|
|
{
|
|
obsolete_item = katze_array_get_nth_item (trash, 0);
|
|
katze_array_remove_item (trash, obsolete_item);
|
|
}
|
|
}
|
|
|
|
static void
|
|
midori_trash_remove_item_cb (KatzeArray* trash,
|
|
GObject* item)
|
|
{
|
|
gchar* config_file;
|
|
GError* error;
|
|
|
|
config_file = build_config_filename ("tabtrash.xbel");
|
|
error = NULL;
|
|
if (!midori_array_to_file (trash, config_file, "xbel", &error))
|
|
{
|
|
g_warning (_("The trash couldn't be saved. %s"), error->message);
|
|
g_error_free (error);
|
|
}
|
|
g_free (config_file);
|
|
}
|
|
|
|
static void
|
|
midori_app_add_browser_cb (MidoriApp* app,
|
|
MidoriBrowser* browser,
|
|
KatzeNet* net)
|
|
{
|
|
GtkWidget* panel;
|
|
GtkWidget* addon;
|
|
|
|
panel = katze_object_get_object (browser, "panel");
|
|
|
|
/* Bookmarks */
|
|
addon = g_object_new (MIDORI_TYPE_BOOKMARKS, "app", app, NULL);
|
|
gtk_widget_show (addon);
|
|
midori_panel_append_page (MIDORI_PANEL (panel), MIDORI_VIEWABLE (addon));
|
|
|
|
/* History */
|
|
addon = g_object_new (MIDORI_TYPE_HISTORY, "app", app, NULL);
|
|
gtk_widget_show (addon);
|
|
midori_panel_append_page (MIDORI_PANEL (panel), MIDORI_VIEWABLE (addon));
|
|
|
|
/* Transfers */
|
|
#if WEBKIT_CHECK_VERSION (1, 1, 3)
|
|
addon = g_object_new (MIDORI_TYPE_TRANSFERS, "app", app, NULL);
|
|
gtk_widget_show (addon);
|
|
midori_panel_append_page (MIDORI_PANEL (panel), MIDORI_VIEWABLE (addon));
|
|
#endif
|
|
|
|
/* Console */
|
|
addon = g_object_new (MIDORI_TYPE_CONSOLE, "app", app, NULL);
|
|
gtk_widget_show (addon);
|
|
midori_panel_append_page (MIDORI_PANEL (panel), MIDORI_VIEWABLE (addon));
|
|
|
|
/* Userscripts */
|
|
addon = midori_addons_new (MIDORI_ADDON_USER_SCRIPTS, GTK_WIDGET (browser));
|
|
gtk_widget_show (addon);
|
|
midori_panel_append_page (MIDORI_PANEL (panel), MIDORI_VIEWABLE (addon));
|
|
|
|
/* Extensions */
|
|
addon = g_object_new (MIDORI_TYPE_EXTENSIONS, NULL);
|
|
gtk_widget_show (addon);
|
|
g_object_set (addon, "app", app, NULL);
|
|
midori_panel_append_page (MIDORI_PANEL (panel), MIDORI_VIEWABLE (addon));
|
|
|
|
g_object_unref (panel);
|
|
}
|
|
|
|
static guint save_timeout = 0;
|
|
|
|
static gboolean
|
|
midori_session_save_timeout_cb (KatzeArray* session)
|
|
{
|
|
gchar* config_file;
|
|
GError* error;
|
|
|
|
config_file = build_config_filename ("session.xbel");
|
|
error = NULL;
|
|
if (!midori_array_to_file (session, config_file, "xbel", &error))
|
|
{
|
|
g_warning (_("The session couldn't be saved. %s"), error->message);
|
|
g_error_free (error);
|
|
}
|
|
g_free (config_file);
|
|
|
|
save_timeout = 0;
|
|
g_object_unref (session);
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static void
|
|
midori_browser_session_cb (MidoriBrowser* browser,
|
|
gpointer pspec,
|
|
KatzeArray* session)
|
|
{
|
|
if (!save_timeout)
|
|
{
|
|
g_object_ref (session);
|
|
save_timeout = g_timeout_add_full (G_PRIORITY_LOW, 5000,
|
|
(GSourceFunc)midori_session_save_timeout_cb, session, NULL);
|
|
}
|
|
}
|
|
|
|
static void
|
|
midori_browser_weak_notify_cb (MidoriBrowser* browser,
|
|
KatzeArray* session)
|
|
{
|
|
g_object_disconnect (browser, "any-signal",
|
|
G_CALLBACK (midori_browser_session_cb), session, NULL);
|
|
}
|
|
|
|
static void
|
|
midori_soup_session_set_proxy_uri (SoupSession* session,
|
|
const gchar* uri)
|
|
{
|
|
gchar* fixed_uri;
|
|
SoupURI* proxy_uri;
|
|
|
|
/* soup_uri_new expects a non-NULL string with a protocol */
|
|
if (uri && g_str_has_prefix (uri, "http://"))
|
|
proxy_uri = soup_uri_new (uri);
|
|
else if (uri && *uri)
|
|
{
|
|
fixed_uri = g_strconcat ("http://", uri, NULL);
|
|
proxy_uri = soup_uri_new (fixed_uri);
|
|
g_free (fixed_uri);
|
|
}
|
|
else
|
|
proxy_uri = NULL;
|
|
g_object_set (session, "proxy-uri", proxy_uri, NULL);
|
|
if (proxy_uri)
|
|
soup_uri_free (proxy_uri);
|
|
}
|
|
|
|
static void
|
|
soup_session_settings_notify_http_proxy_cb (MidoriWebSettings* settings,
|
|
GParamSpec* pspec,
|
|
SoupSession* session)
|
|
{
|
|
gboolean auto_detect_proxy;
|
|
|
|
auto_detect_proxy = katze_object_get_boolean (settings, "auto-detect-proxy");
|
|
if (auto_detect_proxy)
|
|
{
|
|
gboolean gnome_supported = FALSE;
|
|
GModule* module;
|
|
GType (*get_type_function) (void);
|
|
if (g_module_supported ())
|
|
if ((module = g_module_open ("libsoup-gnome-2.4.so", G_MODULE_BIND_LOCAL)))
|
|
{
|
|
if (g_module_symbol (module, "soup_proxy_resolver_gnome_get_type",
|
|
(void*) &get_type_function))
|
|
{
|
|
soup_session_add_feature_by_type (session, get_type_function ());
|
|
gnome_supported = TRUE;
|
|
}
|
|
}
|
|
if (!gnome_supported)
|
|
midori_soup_session_set_proxy_uri (session, g_getenv ("http_proxy"));
|
|
}
|
|
else
|
|
{
|
|
gchar* http_proxy = katze_object_get_string (settings, "http-proxy");
|
|
midori_soup_session_set_proxy_uri (session, http_proxy);
|
|
g_free (http_proxy);
|
|
}
|
|
}
|
|
|
|
#if !WEBKIT_CHECK_VERSION (1, 1, 11)
|
|
static void
|
|
soup_session_settings_notify_ident_string_cb (MidoriWebSettings* settings,
|
|
GParamSpec* pspec,
|
|
SoupSession* session)
|
|
{
|
|
gchar* ident_string = katze_object_get_string (settings, "user-agent");
|
|
g_object_set (session, "user-agent", ident_string, NULL);
|
|
g_free (ident_string);
|
|
}
|
|
#endif
|
|
|
|
static void
|
|
midori_soup_session_settings_accept_language_cb (SoupSession* session,
|
|
SoupMessage* msg,
|
|
MidoriWebSettings* settings)
|
|
{
|
|
gchar* languages = katze_object_get_string (settings, "preferred-languages");
|
|
gchar* accpt;
|
|
|
|
/* Empty, use the system locales */
|
|
if (!(languages && *languages))
|
|
accpt = sokoke_accept_languages (g_get_language_names ());
|
|
/* No =, no ., looks like a list of language names */
|
|
else if (!(strchr (languages, '=') && strchr (languages, '.')))
|
|
{
|
|
gchar ** lang_names = g_strsplit_set (languages, ",; ", -1);
|
|
accpt = sokoke_accept_languages ((const gchar* const *)lang_names);
|
|
g_strfreev (lang_names);
|
|
}
|
|
/* Presumably a well formatted list including priorities */
|
|
else
|
|
accpt = languages;
|
|
|
|
if (accpt != languages)
|
|
g_free (languages);
|
|
soup_message_headers_append (msg->request_headers, "Accept-Language", accpt);
|
|
g_free (accpt);
|
|
}
|
|
|
|
static void
|
|
midori_soup_session_debug (SoupSession* session)
|
|
{
|
|
const char* soup_debug = g_getenv ("MIDORI_SOUP_DEBUG");
|
|
|
|
if (soup_debug)
|
|
{
|
|
gint soup_debug_level = atoi (soup_debug);
|
|
SoupLogger* logger = soup_logger_new (soup_debug_level, -1);
|
|
soup_logger_attach (logger, session);
|
|
g_object_unref (logger);
|
|
}
|
|
}
|
|
|
|
static void
|
|
midori_soup_session_prepare (SoupSession* session,
|
|
SoupCookieJar* cookie_jar,
|
|
MidoriWebSettings* settings)
|
|
{
|
|
SoupSessionFeature* feature;
|
|
gchar* config_file;
|
|
|
|
soup_session_settings_notify_http_proxy_cb (settings, NULL, session);
|
|
g_signal_connect (settings, "notify::http-proxy",
|
|
G_CALLBACK (soup_session_settings_notify_http_proxy_cb), session);
|
|
g_signal_connect (settings, "notify::auto-detect-proxy",
|
|
G_CALLBACK (soup_session_settings_notify_http_proxy_cb), session);
|
|
|
|
#if !WEBKIT_CHECK_VERSION (1, 1, 11)
|
|
soup_session_settings_notify_ident_string_cb (settings, NULL, session);
|
|
g_signal_connect (settings, "notify::user-agent",
|
|
G_CALLBACK (soup_session_settings_notify_ident_string_cb), session);
|
|
#endif
|
|
|
|
g_signal_connect (session, "request-queued",
|
|
G_CALLBACK (midori_soup_session_settings_accept_language_cb), settings);
|
|
|
|
config_file = build_config_filename ("logins");
|
|
feature = g_object_new (KATZE_TYPE_HTTP_AUTH, "filename", config_file, NULL);
|
|
g_free (config_file);
|
|
soup_session_add_feature (session, feature);
|
|
g_object_unref (feature);
|
|
midori_soup_session_debug (session);
|
|
|
|
feature = g_object_new (KATZE_TYPE_HTTP_COOKIES, NULL);
|
|
config_file = build_config_filename ("cookies.txt");
|
|
g_object_set_data_full (G_OBJECT (feature), "filename",
|
|
config_file, (GDestroyNotify)g_free);
|
|
soup_session_add_feature (session, SOUP_SESSION_FEATURE (cookie_jar));
|
|
soup_session_add_feature (session, feature);
|
|
g_object_unref (feature);
|
|
}
|
|
|
|
static void
|
|
button_modify_preferences_clicked_cb (GtkWidget* button,
|
|
MidoriWebSettings* settings)
|
|
{
|
|
GtkWidget* dialog = midori_preferences_new (
|
|
GTK_WINDOW (gtk_widget_get_toplevel (button)), settings);
|
|
if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_DELETE_EVENT)
|
|
gtk_widget_destroy (dialog);
|
|
}
|
|
|
|
static void
|
|
button_reset_session_clicked_cb (GtkWidget* button,
|
|
KatzeArray* session)
|
|
{
|
|
gchar* config_file;
|
|
GError* error;
|
|
|
|
config_file = build_config_filename ("session.old.xbel");
|
|
error = NULL;
|
|
if (!midori_array_to_file (session, config_file, "xbel", &error))
|
|
{
|
|
g_warning (_("The session couldn't be saved. %s"), error->message);
|
|
g_error_free (error);
|
|
}
|
|
g_free (config_file);
|
|
katze_array_clear (session);
|
|
gtk_widget_set_sensitive (button, FALSE);
|
|
}
|
|
|
|
static void
|
|
button_disable_extensions_clicked_cb (GtkWidget* button,
|
|
MidoriApp* app)
|
|
{
|
|
g_object_set_data (G_OBJECT (app), "extensions", NULL);
|
|
gtk_widget_set_sensitive (button, FALSE);
|
|
}
|
|
|
|
static GtkWidget*
|
|
midori_create_diagnostic_dialog (MidoriWebSettings* settings,
|
|
KatzeArray* _session)
|
|
{
|
|
GtkWidget* dialog;
|
|
GdkScreen* screen;
|
|
GtkIconTheme* icon_theme;
|
|
GtkWidget* box;
|
|
GtkWidget* button;
|
|
MidoriApp* app = katze_item_get_parent (KATZE_ITEM (_session));
|
|
|
|
dialog = gtk_message_dialog_new (
|
|
NULL, 0, GTK_MESSAGE_WARNING,
|
|
#ifdef HAVE_HILDON_2_2
|
|
GTK_BUTTONS_NONE,
|
|
#else
|
|
GTK_BUTTONS_OK,
|
|
#endif
|
|
_("Midori seems to have crashed the last time it was opened. "
|
|
"If this happened repeatedly, try one of the following options "
|
|
"to solve the problem."));
|
|
gtk_window_set_skip_taskbar_hint (GTK_WINDOW (dialog), FALSE);
|
|
gtk_window_set_title (GTK_WINDOW (dialog), g_get_application_name ());
|
|
screen = gtk_widget_get_screen (dialog);
|
|
if (screen)
|
|
{
|
|
icon_theme = gtk_icon_theme_get_for_screen (screen);
|
|
if (gtk_icon_theme_has_icon (icon_theme, "midori"))
|
|
gtk_window_set_icon_name (GTK_WINDOW (dialog), "midori");
|
|
else
|
|
gtk_window_set_icon_name (GTK_WINDOW (dialog), "web-browser");
|
|
}
|
|
box = gtk_hbox_new (FALSE, 0);
|
|
button = gtk_button_new_with_mnemonic (_("Modify _preferences"));
|
|
g_signal_connect (button, "clicked",
|
|
G_CALLBACK (button_modify_preferences_clicked_cb), settings);
|
|
gtk_box_pack_start (GTK_BOX (box), button, FALSE, FALSE, 4);
|
|
button = gtk_button_new_with_mnemonic (_("Reset the last _session"));
|
|
g_signal_connect (button, "clicked",
|
|
G_CALLBACK (button_reset_session_clicked_cb), _session);
|
|
gtk_widget_set_sensitive (button, !katze_array_is_empty (_session));
|
|
gtk_box_pack_start (GTK_BOX (box), button, FALSE, FALSE, 4);
|
|
button = gtk_button_new_with_mnemonic (_("Disable all _extensions"));
|
|
if (g_object_get_data (G_OBJECT (app), "extensions"))
|
|
g_signal_connect (button, "clicked",
|
|
G_CALLBACK (button_disable_extensions_clicked_cb), app);
|
|
else
|
|
gtk_widget_set_sensitive (button, FALSE);
|
|
gtk_box_pack_start (GTK_BOX (box), button, FALSE, FALSE, 4);
|
|
gtk_widget_show_all (box);
|
|
gtk_container_add (GTK_CONTAINER (GTK_DIALOG (dialog)->vbox), box);
|
|
#ifdef HAVE_HILDON_2_2
|
|
box = gtk_hbox_new (FALSE, 4);
|
|
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), box, TRUE, FALSE, 4);
|
|
button = hildon_gtk_button_new (HILDON_SIZE_FINGER_HEIGHT | HILDON_SIZE_HALFSCREEN_WIDTH);
|
|
gtk_button_set_label (GTK_BUTTON (button), GTK_STOCK_OK);
|
|
gtk_button_set_use_stock (GTK_BUTTON (button), TRUE);
|
|
g_signal_connect_swapped (button, "clicked",
|
|
G_CALLBACK (gtk_widget_destroy), dialog);
|
|
gtk_box_pack_start (GTK_BOX (box), button, TRUE, FALSE, 4);
|
|
gtk_widget_show_all (box);
|
|
#endif
|
|
if (1)
|
|
{
|
|
/* GtkLabel can't wrap the text properly. Until some day
|
|
this works, we implement this hack to do it ourselves. */
|
|
GtkWidget* content_area;
|
|
GtkWidget* hbox;
|
|
GtkWidget* vbox;
|
|
GtkWidget* label;
|
|
GList* ch;
|
|
GtkRequisition req;
|
|
|
|
content_area = GTK_DIALOG (dialog)->vbox;
|
|
ch = gtk_container_get_children (GTK_CONTAINER (content_area));
|
|
hbox = (GtkWidget*)g_list_nth_data (ch, 0);
|
|
g_list_free (ch);
|
|
ch = gtk_container_get_children (GTK_CONTAINER (hbox));
|
|
vbox = (GtkWidget*)g_list_nth_data (ch, 1);
|
|
g_list_free (ch);
|
|
ch = gtk_container_get_children (GTK_CONTAINER (vbox));
|
|
label = (GtkWidget*)g_list_nth_data (ch, 0);
|
|
g_list_free (ch);
|
|
gtk_widget_size_request (content_area, &req);
|
|
gtk_widget_set_size_request (label, req.width * 0.9, -1);
|
|
}
|
|
return dialog;
|
|
}
|
|
|
|
static gboolean
|
|
midori_load_cookie_jar (gpointer data)
|
|
{
|
|
MidoriWebSettings* settings = MIDORI_WEB_SETTINGS (data);
|
|
SoupSession* webkit_session;
|
|
SoupCookieJar* jar;
|
|
|
|
webkit_session = webkit_get_default_session ();
|
|
jar = soup_cookie_jar_new ();
|
|
g_object_set_data (G_OBJECT (jar), "midori-settings", settings);
|
|
midori_soup_session_prepare (webkit_session, jar, settings);
|
|
g_object_unref (jar);
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static gboolean
|
|
midori_load_netscape_plugins (gpointer data)
|
|
{
|
|
MidoriApp* app = MIDORI_APP (data);
|
|
KatzeArray* extensions = katze_object_get_object (app, "extensions");
|
|
/* FIXME: WebKit should have API to obtain the list of plugins. */
|
|
/* FIXME: Monitor folders for newly added and removes files */
|
|
GtkWidget* web_view = webkit_web_view_new ();
|
|
WebKitWebFrame* web_frame = webkit_web_view_get_main_frame (WEBKIT_WEB_VIEW (web_view));
|
|
JSContextRef js_context = webkit_web_frame_get_global_context (web_frame);
|
|
/* This snippet joins the available plugins into a string like this:
|
|
URI1|title1,URI2|title2
|
|
FIXME: Ensure separators contained in the string can't break it */
|
|
gchar* value = sokoke_js_script_eval (js_context,
|
|
"function plugins (l) { var f = new Array (); for (i in l) "
|
|
"{ var p = l[i].name + '|' + l[i].filename; "
|
|
"if (f.indexOf (p) == -1) f.push (p); } return f; }"
|
|
"plugins (navigator.plugins)", NULL);
|
|
gchar** items = g_strsplit (value, ",", 0);
|
|
guint i = 0;
|
|
|
|
if (items != NULL)
|
|
while (items[i] != NULL)
|
|
{
|
|
gchar** parts = g_strsplit (items[i], "|", 2);
|
|
if (parts && *parts && !g_str_equal (parts[1], "undefined"))
|
|
{
|
|
MidoriExtension* extension;
|
|
gchar* desc = parts[1];
|
|
gsize j = 0;
|
|
while (desc[j++])
|
|
if (desc[j-1] == ';')
|
|
desc[j-1] = '\n';
|
|
extension = g_object_new (MIDORI_TYPE_EXTENSION,
|
|
"name", parts[0], "description", desc, NULL);
|
|
g_object_set_data (G_OBJECT (extension), "static", (void*)0xdeadbeef);
|
|
katze_array_add_item (extensions, extension);
|
|
}
|
|
g_strfreev (parts);
|
|
i++;
|
|
}
|
|
g_strfreev (items);
|
|
g_object_unref (extensions);
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static gboolean
|
|
midori_load_extensions (gpointer data)
|
|
{
|
|
MidoriApp* app = MIDORI_APP (data);
|
|
gchar** active_extensions = g_object_get_data (G_OBJECT (app), "extensions");
|
|
KatzeArray* extensions;
|
|
#ifdef G_ENABLE_DEBUG
|
|
gboolean startup_timer = g_getenv ("MIDORI_STARTTIME") != NULL;
|
|
GTimer* timer;
|
|
if (startup_timer)
|
|
timer = g_timer_new ();
|
|
#endif
|
|
|
|
/* Load extensions */
|
|
extensions = katze_array_new (MIDORI_TYPE_EXTENSION);
|
|
g_object_set (app, "extensions", extensions, NULL);
|
|
if (g_module_supported ())
|
|
{
|
|
/* FIXME: Read extensions from system data dirs */
|
|
gchar* extension_path;
|
|
GDir* extension_dir;
|
|
|
|
if (!(extension_path = g_strdup (g_getenv ("MIDORI_EXTENSION_PATH"))))
|
|
extension_path = g_build_filename (LIBDIR, PACKAGE_NAME, NULL);
|
|
extension_dir = g_dir_open (extension_path, 0, NULL);
|
|
if (extension_dir != NULL)
|
|
{
|
|
const gchar* filename;
|
|
|
|
while ((filename = g_dir_read_name (extension_dir)))
|
|
{
|
|
gchar* fullname;
|
|
GModule* module;
|
|
typedef MidoriExtension* (*extension_init_func)(void);
|
|
extension_init_func extension_init;
|
|
MidoriExtension* extension;
|
|
|
|
/* Ignore files which don't have the correct suffix */
|
|
if (!g_str_has_suffix (filename, G_MODULE_SUFFIX))
|
|
continue;
|
|
|
|
fullname = g_build_filename (extension_path, filename, NULL);
|
|
module = g_module_open (fullname, G_MODULE_BIND_LOCAL);
|
|
g_free (fullname);
|
|
|
|
if (module && g_module_symbol (module, "extension_init",
|
|
(gpointer) &extension_init))
|
|
{
|
|
extension = extension_init ();
|
|
/* Signal that we want the extension to load and save */
|
|
g_object_set_data_full (G_OBJECT (extension), "filename",
|
|
g_strdup (filename), g_free);
|
|
if (midori_extension_is_prepared (extension))
|
|
midori_extension_get_config_dir (extension);
|
|
}
|
|
else
|
|
{
|
|
extension = g_object_new (MIDORI_TYPE_EXTENSION,
|
|
"name", filename,
|
|
"description", g_module_error (),
|
|
NULL);
|
|
g_warning ("%s", g_module_error ());
|
|
}
|
|
katze_array_add_item (extensions, extension);
|
|
if (active_extensions)
|
|
{
|
|
guint i = 0;
|
|
gchar* name;
|
|
while ((name = active_extensions[i++]))
|
|
if (!g_strcmp0 (filename, name))
|
|
g_signal_emit_by_name (extension, "activate", app);
|
|
}
|
|
g_signal_connect_after (extension, "activate",
|
|
G_CALLBACK (extension_activate_cb), app);
|
|
g_signal_connect_after (extension, "deactivate",
|
|
G_CALLBACK (extension_activate_cb), app);
|
|
g_object_unref (extension);
|
|
}
|
|
g_dir_close (extension_dir);
|
|
}
|
|
g_free (extension_path);
|
|
}
|
|
g_strfreev (active_extensions);
|
|
|
|
g_idle_add (midori_load_netscape_plugins, app);
|
|
|
|
#ifdef G_ENABLE_DEBUG
|
|
if (startup_timer)
|
|
g_debug ("Extensions:\t%f", g_test_timer_elapsed ());
|
|
#endif
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static void
|
|
midori_browser_action_last_session_activate_cb (GtkAction* action,
|
|
MidoriBrowser* browser)
|
|
{
|
|
KatzeArray* old_session = katze_array_new (KATZE_TYPE_ITEM);
|
|
gchar* config_file = build_config_filename ("session.old.xbel");
|
|
GError* error = NULL;
|
|
if (midori_array_from_file (old_session, config_file, "xbel", &error))
|
|
{
|
|
guint i = 0;
|
|
KatzeItem* item;
|
|
while ((item = katze_array_get_nth_item (old_session, i++)))
|
|
midori_browser_add_item (browser, item);
|
|
}
|
|
else
|
|
{
|
|
g_warning (_("The session couldn't be loaded: %s\n"), error->message);
|
|
/* FIXME: Show a graphical dialog */
|
|
g_error_free (error);
|
|
}
|
|
g_free (config_file);
|
|
gtk_action_set_sensitive (action, FALSE);
|
|
g_signal_handlers_disconnect_by_func (action,
|
|
midori_browser_action_last_session_activate_cb, browser);
|
|
}
|
|
|
|
static gboolean
|
|
midori_load_session (gpointer data)
|
|
{
|
|
KatzeArray* _session = KATZE_ARRAY (data);
|
|
MidoriBrowser* browser;
|
|
MidoriApp* app = katze_item_get_parent (KATZE_ITEM (_session));
|
|
gchar* config_file;
|
|
KatzeArray* session;
|
|
KatzeItem* item;
|
|
guint i;
|
|
gint64 current;
|
|
gchar** command = g_object_get_data (G_OBJECT (app), "execute-command");
|
|
#ifdef G_ENABLE_DEBUG
|
|
gboolean startup_timer = g_getenv ("MIDORI_STARTTIME") != NULL;
|
|
GTimer* timer;
|
|
if (startup_timer)
|
|
timer = g_timer_new ();
|
|
#endif
|
|
|
|
browser = midori_app_create_browser (app);
|
|
g_signal_connect_after (katze_object_get_object (app, "settings"), "notify",
|
|
G_CALLBACK (settings_notify_cb), app);
|
|
|
|
config_file = build_config_filename ("session.old.xbel");
|
|
if (g_access (config_file, F_OK) == 0)
|
|
{
|
|
GtkActionGroup* action_group = midori_browser_get_action_group (browser);
|
|
GtkAction* action = gtk_action_group_get_action (action_group, "LastSession");
|
|
g_signal_connect (action, "activate",
|
|
G_CALLBACK (midori_browser_action_last_session_activate_cb), browser);
|
|
gtk_action_set_visible (action, TRUE);
|
|
}
|
|
midori_app_add_browser (app, browser);
|
|
gtk_widget_show (GTK_WIDGET (browser));
|
|
|
|
katze_assign (config_file, build_config_filename ("accels"));
|
|
g_signal_connect_after (gtk_accel_map_get (), "changed",
|
|
G_CALLBACK (accel_map_changed_cb), NULL);
|
|
|
|
if (katze_array_is_empty (_session))
|
|
{
|
|
MidoriWebSettings* settings = katze_object_get_object (app, "settings");
|
|
MidoriStartup load_on_startup;
|
|
gchar* homepage;
|
|
item = katze_item_new ();
|
|
|
|
g_object_get (settings, "load-on-startup", &load_on_startup, NULL);
|
|
if (load_on_startup == MIDORI_STARTUP_BLANK_PAGE)
|
|
katze_item_set_uri (item, "");
|
|
else
|
|
{
|
|
g_object_get (settings, "homepage", &homepage, NULL);
|
|
katze_item_set_uri (item, homepage);
|
|
g_free (homepage);
|
|
}
|
|
g_object_unref (settings);
|
|
katze_array_add_item (_session, item);
|
|
g_object_unref (item);
|
|
}
|
|
|
|
session = midori_browser_get_proxy_array (browser);
|
|
i = 0;
|
|
while ((item = katze_array_get_nth_item (_session, i++)))
|
|
midori_browser_add_item (browser, item);
|
|
current = katze_item_get_meta_integer (KATZE_ITEM (_session), "current");
|
|
if (current < 0)
|
|
current = 0;
|
|
midori_browser_set_current_page (browser, current);
|
|
if (!(item = katze_array_get_nth_item (_session, current)))
|
|
item = katze_array_get_nth_item (_session, 0);
|
|
if (!strcmp (katze_item_get_uri (item), ""))
|
|
midori_browser_activate_action (browser, "Location");
|
|
g_object_unref (_session);
|
|
|
|
katze_assign (config_file, build_config_filename ("session.xbel"));
|
|
g_signal_connect_after (browser, "notify::uri",
|
|
G_CALLBACK (midori_browser_session_cb), session);
|
|
g_signal_connect_after (browser, "add-tab",
|
|
G_CALLBACK (midori_browser_session_cb), session);
|
|
g_signal_connect_after (browser, "remove-tab",
|
|
G_CALLBACK (midori_browser_session_cb), session);
|
|
g_object_weak_ref (G_OBJECT (session),
|
|
(GWeakNotify)(midori_browser_weak_notify_cb), browser);
|
|
|
|
if (command)
|
|
midori_app_send_command (app, command);
|
|
|
|
#ifdef G_ENABLE_DEBUG
|
|
if (startup_timer)
|
|
g_debug ("Session setup:\t%f", g_test_timer_elapsed ());
|
|
#endif
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static gint
|
|
midori_run_script (const gchar* filename)
|
|
{
|
|
gchar* exception;
|
|
gchar* script;
|
|
GError* error;
|
|
|
|
if (!(filename))
|
|
{
|
|
g_print ("%s - %s\n", _("Midori"), _("No filename specified"));
|
|
return 1;
|
|
}
|
|
|
|
error = NULL;
|
|
if (g_file_get_contents (filename, &script, NULL, &error))
|
|
{
|
|
JSGlobalContextRef js_context = JSGlobalContextCreateInGroup (NULL, NULL);
|
|
if (sokoke_js_script_eval (js_context, script, &exception))
|
|
exception = NULL;
|
|
g_free (script);
|
|
JSGlobalContextRelease (js_context);
|
|
}
|
|
else if (error)
|
|
{
|
|
exception = g_strdup (error->message);
|
|
g_error_free (error);
|
|
}
|
|
else
|
|
exception = g_strdup (_("An unknown error occured."));
|
|
|
|
if (!exception)
|
|
return 0;
|
|
|
|
g_print ("%s - Exception: %s\n", filename, exception);
|
|
return 1;
|
|
}
|
|
|
|
#if WEBKIT_CHECK_VERSION (1, 1, 6)
|
|
static void
|
|
snapshot_load_finished_cb (GtkWidget* web_view,
|
|
WebKitWebFrame* web_frame,
|
|
gchar* filename)
|
|
{
|
|
GError* error;
|
|
GtkPrintOperation* operation = gtk_print_operation_new ();
|
|
GtkPrintOperationAction action = GTK_PRINT_OPERATION_ACTION_EXPORT;
|
|
GtkPrintOperationResult result;
|
|
|
|
gtk_print_operation_set_export_filename (operation, filename);
|
|
error = NULL;
|
|
result = webkit_web_frame_print_full (web_frame, operation, action, &error);
|
|
|
|
if (error != NULL)
|
|
{
|
|
g_error ("%s", error->message);
|
|
gtk_main_quit ();
|
|
}
|
|
|
|
g_object_unref (operation);
|
|
g_print (_("Snapshot saved to: %s\n"), filename);
|
|
gtk_main_quit ();
|
|
}
|
|
#endif
|
|
|
|
static void
|
|
midori_web_app_browser_notify_load_status_cb (MidoriBrowser* browser,
|
|
GParamSpec* pspec,
|
|
gpointer data)
|
|
{
|
|
if (katze_object_get_enum (browser, "load-status") != MIDORI_LOAD_PROVISIONAL)
|
|
{
|
|
GtkWidget* view = midori_browser_get_current_tab (browser);
|
|
GdkPixbuf* icon = midori_view_get_icon (MIDORI_VIEW (view));
|
|
gtk_window_set_icon (GTK_WINDOW (browser), icon);
|
|
}
|
|
}
|
|
|
|
static void
|
|
midori_remove_config_file (gint clear_prefs,
|
|
gint flag,
|
|
const gchar* filename)
|
|
{
|
|
if ((clear_prefs & flag) == flag)
|
|
{
|
|
gchar* config_file = build_config_filename (filename);
|
|
g_unlink (config_file);
|
|
g_free (config_file);
|
|
}
|
|
}
|
|
|
|
static gchar*
|
|
midori_prepare_uri (const gchar *uri)
|
|
{
|
|
gchar* uri_ready;
|
|
|
|
if (g_path_is_absolute (uri))
|
|
return g_filename_to_uri (uri, NULL, NULL);
|
|
else if (g_file_test (uri, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_REGULAR))
|
|
{
|
|
gchar* current_dir = g_get_current_dir ();
|
|
uri_ready = g_strconcat ("file://", current_dir,
|
|
G_DIR_SEPARATOR_S, uri, NULL);
|
|
g_free (current_dir);
|
|
return uri_ready;
|
|
}
|
|
|
|
uri_ready = sokoke_magic_uri (uri);
|
|
if (uri_ready)
|
|
return sokoke_uri_to_ascii (uri_ready);
|
|
|
|
return sokoke_uri_to_ascii (uri);
|
|
}
|
|
|
|
#ifdef HAVE_SIGNAL_H
|
|
static void
|
|
signal_handler (int signal_id)
|
|
{
|
|
signal (signal_id, 0);
|
|
midori_app_quit_cb (NULL);
|
|
if (kill (getpid (), signal_id))
|
|
exit (1);
|
|
}
|
|
#endif
|
|
|
|
int
|
|
main (int argc,
|
|
char** argv)
|
|
{
|
|
gchar* webapp;
|
|
gchar* config;
|
|
gboolean diagnostic_dialog;
|
|
gboolean run;
|
|
gchar* snapshot;
|
|
gboolean execute;
|
|
gboolean version;
|
|
gchar** uris;
|
|
MidoriApp* app;
|
|
gboolean result;
|
|
GError* error;
|
|
GOptionEntry entries[] =
|
|
{
|
|
{ "app", 'a', 0, G_OPTION_ARG_STRING, &webapp,
|
|
N_("Run ADDRESS as a web application"), N_("ADDRESS") },
|
|
#if !HAVE_HILDON
|
|
{ "config", 'c', 0, G_OPTION_ARG_FILENAME, &config,
|
|
N_("Use FOLDER as configuration folder"), N_("FOLDER") },
|
|
#endif
|
|
{ "diagnostic-dialog", 'd', 0, G_OPTION_ARG_NONE, &diagnostic_dialog,
|
|
N_("Show a diagnostic dialog"), NULL },
|
|
{ "run", 'r', 0, G_OPTION_ARG_NONE, &run,
|
|
N_("Run the specified filename as javascript"), NULL },
|
|
#if WEBKIT_CHECK_VERSION (1, 1, 6)
|
|
{ "snapshot", 's', 0, G_OPTION_ARG_STRING, &snapshot,
|
|
N_("Take a snapshot of the specified URI"), NULL },
|
|
#endif
|
|
{ "execute", 'e', 0, G_OPTION_ARG_NONE, &execute,
|
|
N_("Execute the specified command"), NULL },
|
|
{ "version", 'V', 0, G_OPTION_ARG_NONE, &version,
|
|
N_("Display program version"), NULL },
|
|
{ G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_STRING_ARRAY, &uris,
|
|
N_("Addresses"), NULL },
|
|
{ NULL }
|
|
};
|
|
GString* error_messages;
|
|
gchar** extensions;
|
|
MidoriWebSettings* settings;
|
|
gchar* config_file;
|
|
MidoriStartup load_on_startup;
|
|
KatzeArray* search_engines;
|
|
KatzeArray* bookmarks;
|
|
KatzeArray* history;
|
|
KatzeArray* _session;
|
|
KatzeArray* trash;
|
|
guint i;
|
|
gchar* uri;
|
|
KatzeItem* item;
|
|
gchar* uri_ready;
|
|
#if HAVE_SQLITE
|
|
gchar* errmsg;
|
|
sqlite3* db;
|
|
gint max_history_age;
|
|
#endif
|
|
gint clear_prefs = MIDORI_CLEAR_NONE;
|
|
#ifdef G_ENABLE_DEBUG
|
|
gboolean startup_timer = g_getenv ("MIDORI_STARTTIME") != NULL;
|
|
#define midori_startup_timer(tmrmsg) if (startup_timer) \
|
|
g_debug (tmrmsg, (g_test_timer_last () - g_test_timer_elapsed ()) * -1)
|
|
#else
|
|
#define midori_startup_timer(tmrmsg)
|
|
#endif
|
|
|
|
#if ENABLE_NLS
|
|
setlocale (LC_ALL, "");
|
|
if (g_getenv ("MIDORI_NLSPATH"))
|
|
bindtextdomain (GETTEXT_PACKAGE, g_getenv ("MIDORI_NLSPATH"));
|
|
else
|
|
#ifdef G_OS_WIN32
|
|
{
|
|
gchar* path = sokoke_find_data_filename ("locale");
|
|
bindtextdomain (GETTEXT_PACKAGE, path);
|
|
g_free (path);
|
|
}
|
|
#else
|
|
bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
|
|
#endif
|
|
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
|
|
textdomain (GETTEXT_PACKAGE);
|
|
#endif
|
|
|
|
#ifdef HAVE_SIGNAL_H
|
|
#ifdef SIGHUP
|
|
signal (SIGHUP, &signal_handler);
|
|
#endif
|
|
#ifdef SIGINT
|
|
signal (SIGINT, &signal_handler);
|
|
#endif
|
|
#ifdef SIGTERM
|
|
signal (SIGTERM, &signal_handler);
|
|
#endif
|
|
#ifdef SIGQUIT
|
|
signal (SIGQUIT, &signal_handler);
|
|
#endif
|
|
#endif
|
|
|
|
/* Preserve argument vector */
|
|
sokoke_get_argv (argv);
|
|
|
|
/* Parse cli options */
|
|
webapp = NULL;
|
|
config = NULL;
|
|
diagnostic_dialog = FALSE;
|
|
run = FALSE;
|
|
snapshot = NULL;
|
|
execute = FALSE;
|
|
version = FALSE;
|
|
uris = NULL;
|
|
error = NULL;
|
|
if (!gtk_init_with_args (&argc, &argv, _("[Addresses]"), entries,
|
|
GETTEXT_PACKAGE, &error))
|
|
{
|
|
g_print ("%s - %s\n", _("Midori"), error->message);
|
|
g_error_free (error);
|
|
return 1;
|
|
}
|
|
|
|
/* libSoup uses threads, so we need to initialize threads. */
|
|
if (!g_thread_supported ()) g_thread_init (NULL);
|
|
sokoke_register_stock_items ();
|
|
g_set_application_name (_("Midori"));
|
|
|
|
#ifdef G_ENABLE_DEBUG
|
|
if (startup_timer)
|
|
g_test_timer_start ();
|
|
#endif
|
|
|
|
if (version)
|
|
{
|
|
g_print (
|
|
"%s %s\n\n"
|
|
"Copyright (c) 2007-2009 Christian Dywan\n\n"
|
|
"%s\n"
|
|
"\t%s\n\n"
|
|
"%s\n"
|
|
"\thttp://www.twotoasts.de\n",
|
|
_("Midori"), PACKAGE_VERSION,
|
|
_("Please report comments, suggestions and bugs to:"),
|
|
PACKAGE_BUGREPORT,
|
|
_("Check for new versions at:")
|
|
);
|
|
return 0;
|
|
}
|
|
|
|
#if WEBKIT_CHECK_VERSION (1, 1, 6)
|
|
if (snapshot)
|
|
{
|
|
gchar* filename;
|
|
gint fd;
|
|
GtkWidget* web_view;
|
|
|
|
fd = g_file_open_tmp ("snapshot-XXXXXX.pdf", &filename, &error);
|
|
close (fd);
|
|
|
|
error = NULL;
|
|
if (error)
|
|
{
|
|
g_error ("%s", error->message);
|
|
return 1;
|
|
}
|
|
|
|
if (g_unlink (filename) == -1)
|
|
{
|
|
g_error ("%s", g_strerror (errno));
|
|
return 1;
|
|
}
|
|
|
|
web_view = webkit_web_view_new ();
|
|
g_signal_connect (web_view, "load-finished",
|
|
G_CALLBACK (snapshot_load_finished_cb), filename);
|
|
webkit_web_view_open (WEBKIT_WEB_VIEW (web_view), snapshot);
|
|
gtk_main ();
|
|
g_free (filename);
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
/* Web Application support */
|
|
if (webapp)
|
|
{
|
|
MidoriBrowser* browser = midori_browser_new ();
|
|
gchar* tmp_uri = midori_prepare_uri (webapp);
|
|
katze_assign (webapp, tmp_uri);
|
|
midori_startup_timer ("Browser: \t%f");
|
|
settings = katze_object_get_object (browser, "settings");
|
|
g_object_set (settings,
|
|
"show-menubar", FALSE,
|
|
"show-navigationbar", TRUE,
|
|
"toolbar-items", "Back,Forward,ReloadStop,Location",
|
|
"homepage", NULL,
|
|
"show-statusbar", TRUE,
|
|
"enable-developer-extras", FALSE,
|
|
NULL);
|
|
g_object_set (browser, "settings", settings, NULL);
|
|
midori_startup_timer ("Setup config: \t%f");
|
|
g_object_unref (settings);
|
|
sokoke_set_config_dir ("/");
|
|
g_signal_connect (browser, "notify::load-status",
|
|
G_CALLBACK (midori_web_app_browser_notify_load_status_cb), NULL);
|
|
midori_browser_add_uri (browser, webapp);
|
|
g_object_set_data (G_OBJECT (browser), "locked", (void*)1);
|
|
g_signal_connect (browser, "quit",
|
|
G_CALLBACK (gtk_main_quit), NULL);
|
|
g_signal_connect (browser, "destroy",
|
|
G_CALLBACK (gtk_main_quit), NULL);
|
|
gtk_widget_show (GTK_WIDGET (browser));
|
|
midori_browser_activate_action (browser, "Location");
|
|
if (execute)
|
|
{
|
|
i = 0;
|
|
while (uris[i] != NULL)
|
|
{
|
|
midori_browser_activate_action (browser, uris[i]);
|
|
i++;
|
|
}
|
|
}
|
|
midori_startup_timer ("App created: \t%f");
|
|
gtk_main ();
|
|
return 0;
|
|
}
|
|
|
|
/* Standalone javascript support */
|
|
if (run)
|
|
return midori_run_script (uris ? *uris : NULL);
|
|
|
|
if (config && !g_path_is_absolute (config))
|
|
{
|
|
g_critical (_("The specified configuration folder is invalid."));
|
|
return 1;
|
|
}
|
|
sokoke_set_config_dir (config);
|
|
if (config)
|
|
{
|
|
gchar* name_hash;
|
|
gchar* app_name;
|
|
name_hash = g_compute_checksum_for_string (G_CHECKSUM_MD5, config, -1);
|
|
app_name = g_strconcat ("midori", "_", name_hash, NULL);
|
|
g_free (name_hash);
|
|
app = g_object_new (MIDORI_TYPE_APP, "name", app_name, NULL);
|
|
g_free (app_name);
|
|
}
|
|
else
|
|
app = midori_app_new ();
|
|
g_free (config);
|
|
midori_startup_timer ("App created: \t%f");
|
|
|
|
/* FIXME: The app might be 'running' but actually showing a dialog
|
|
after a crash, so running a new window isn't a good idea. */
|
|
if (midori_app_instance_is_running (app))
|
|
{
|
|
GtkWidget* dialog;
|
|
|
|
if (execute)
|
|
result = midori_app_send_command (app, uris);
|
|
else if (uris)
|
|
{
|
|
/* TODO: Open a tab per URI, seperated by pipes */
|
|
/* Encode any IDN addresses because libUnique doesn't like them */
|
|
i = 0;
|
|
while (uris[i] != NULL)
|
|
{
|
|
gchar* new_uri = midori_prepare_uri (uris[i]);
|
|
katze_assign (uris[i], new_uri);
|
|
i++;
|
|
}
|
|
result = midori_app_instance_send_uris (app, uris);
|
|
}
|
|
else
|
|
result = midori_app_instance_send_new_browser (app);
|
|
|
|
if (result)
|
|
return 0;
|
|
|
|
dialog = gtk_message_dialog_new (NULL,
|
|
0, GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, "%s",
|
|
_("An instance of Midori is already running but not responding.\n"));
|
|
if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_DELETE_EVENT)
|
|
gtk_widget_destroy (dialog);
|
|
/* FIXME: Allow killing the existing instance */
|
|
return 1;
|
|
}
|
|
|
|
katze_mkdir_with_parents (sokoke_set_config_dir (NULL), 0700);
|
|
|
|
/* Load configuration file */
|
|
error_messages = g_string_new (NULL);
|
|
config_file = build_config_filename ("config");
|
|
error = NULL;
|
|
settings = settings_new_from_file (config_file, &extensions);
|
|
g_object_set (settings, "enable-developer-extras", TRUE, NULL);
|
|
midori_startup_timer ("Config read: \t%f");
|
|
|
|
/* Load accelerators */
|
|
katze_assign (config_file, build_config_filename ("accels"));
|
|
if (g_access (config_file, F_OK) != 0)
|
|
katze_assign (config_file, sokoke_find_config_filename (NULL, "accels"));
|
|
gtk_accel_map_load (config_file);
|
|
midori_startup_timer ("Accels read: \t%f");
|
|
|
|
/* Load search engines */
|
|
katze_assign (config_file, build_config_filename ("search"));
|
|
error = NULL;
|
|
search_engines = search_engines_new_from_file (config_file, &error);
|
|
/* We ignore for instance empty files */
|
|
if (error && (error->code == G_KEY_FILE_ERROR_PARSE
|
|
|| error->code == G_FILE_ERROR_NOENT))
|
|
{
|
|
g_error_free (error);
|
|
error = NULL;
|
|
}
|
|
if (!error && katze_array_is_empty (search_engines))
|
|
{
|
|
#ifdef G_OS_WIN32
|
|
gchar* dir;
|
|
|
|
dir = g_win32_get_package_installation_directory_of_module (NULL);
|
|
katze_assign (config_file,
|
|
g_build_filename (dir, "etc", "xdg", PACKAGE_NAME, "search", NULL));
|
|
g_free (dir);
|
|
search_engines = search_engines_new_from_file (config_file, NULL);
|
|
#else
|
|
katze_assign (config_file,
|
|
sokoke_find_config_filename (NULL, "search"));
|
|
search_engines = search_engines_new_from_file (config_file, NULL);
|
|
#endif
|
|
}
|
|
else if (error)
|
|
{
|
|
if (error->code != G_FILE_ERROR_NOENT)
|
|
g_string_append_printf (error_messages,
|
|
_("The search engines couldn't be loaded. %s\n"),
|
|
error->message);
|
|
g_error_free (error);
|
|
}
|
|
/* Pick first search engine as default if not set */
|
|
g_object_get (settings, "location-entry-search", &uri, NULL);
|
|
if (!(uri && *uri) && !katze_array_is_empty (search_engines))
|
|
{
|
|
item = katze_array_get_nth_item (search_engines, 0);
|
|
g_object_set (settings, "location-entry-search",
|
|
katze_item_get_uri (item), NULL);
|
|
}
|
|
g_free (uri);
|
|
midori_startup_timer ("Search read: \t%f");
|
|
|
|
bookmarks = katze_array_new (KATZE_TYPE_ARRAY);
|
|
#if HAVE_LIBXML
|
|
katze_assign (config_file, build_config_filename (BOOKMARK_FILE));
|
|
error = NULL;
|
|
if (!midori_array_from_file (bookmarks, config_file, "xbel", &error))
|
|
{
|
|
if (error->code == G_FILE_ERROR_NOENT)
|
|
{
|
|
katze_assign (config_file,
|
|
sokoke_find_config_filename (NULL, "bookmarks.xbel"));
|
|
midori_array_from_file (bookmarks, config_file, "xbel", NULL);
|
|
}
|
|
else
|
|
g_string_append_printf (error_messages,
|
|
_("The bookmarks couldn't be loaded: %s\n"), error->message);
|
|
g_error_free (error);
|
|
}
|
|
#endif
|
|
midori_startup_timer ("Bkmarks read: \t%f");
|
|
|
|
_session = katze_array_new (KATZE_TYPE_ITEM);
|
|
#if HAVE_LIBXML
|
|
g_object_get (settings, "load-on-startup", &load_on_startup, NULL);
|
|
if (load_on_startup == MIDORI_STARTUP_LAST_OPEN_PAGES)
|
|
{
|
|
katze_assign (config_file, build_config_filename ("session.xbel"));
|
|
error = NULL;
|
|
if (!midori_array_from_file (_session, config_file, "xbel", &error))
|
|
{
|
|
if (error->code != G_FILE_ERROR_NOENT)
|
|
g_string_append_printf (error_messages,
|
|
_("The session couldn't be loaded: %s\n"), error->message);
|
|
g_error_free (error);
|
|
}
|
|
}
|
|
#endif
|
|
midori_startup_timer ("Session read: \t%f");
|
|
|
|
trash = katze_array_new (KATZE_TYPE_ITEM);
|
|
#if HAVE_LIBXML
|
|
katze_assign (config_file, build_config_filename ("tabtrash.xbel"));
|
|
error = NULL;
|
|
if (!midori_array_from_file (trash, config_file, "xbel", &error))
|
|
{
|
|
if (error->code != G_FILE_ERROR_NOENT)
|
|
g_string_append_printf (error_messages,
|
|
_("The trash couldn't be loaded: %s\n"), error->message);
|
|
g_error_free (error);
|
|
}
|
|
#endif
|
|
|
|
midori_startup_timer ("Trash read: \t%f");
|
|
history = katze_array_new (KATZE_TYPE_ARRAY);
|
|
#if HAVE_SQLITE
|
|
katze_assign (config_file, build_config_filename ("history.db"));
|
|
|
|
errmsg = NULL;
|
|
if ((db = midori_history_initialize (history, config_file, &errmsg)) == NULL)
|
|
{
|
|
g_string_append_printf (error_messages,
|
|
_("The history couldn't be loaded: %s\n"), errmsg);
|
|
g_free (errmsg);
|
|
}
|
|
g_object_set_data (G_OBJECT (history), "db", db);
|
|
#endif
|
|
midori_startup_timer ("History read: \t%f");
|
|
|
|
/* In case of errors */
|
|
if (error_messages->len)
|
|
{
|
|
GdkScreen* screen;
|
|
GtkIconTheme* icon_theme;
|
|
GtkWidget* dialog = gtk_message_dialog_new (
|
|
NULL, 0, GTK_MESSAGE_ERROR, GTK_BUTTONS_NONE,
|
|
_("The following errors occured:"));
|
|
gtk_window_set_skip_taskbar_hint (GTK_WINDOW (dialog), FALSE);
|
|
gtk_window_set_title (GTK_WINDOW (dialog), g_get_application_name ());
|
|
screen = gtk_widget_get_screen (dialog);
|
|
if (screen)
|
|
{
|
|
icon_theme = gtk_icon_theme_get_for_screen (screen);
|
|
if (gtk_icon_theme_has_icon (icon_theme, "midori"))
|
|
gtk_window_set_icon_name (GTK_WINDOW (dialog), "midori");
|
|
else
|
|
gtk_window_set_icon_name (GTK_WINDOW (dialog), "web-browser");
|
|
}
|
|
gtk_message_dialog_format_secondary_text (
|
|
GTK_MESSAGE_DIALOG (dialog), "%s", error_messages->str);
|
|
gtk_dialog_add_buttons (GTK_DIALOG (dialog),
|
|
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
|
_("_Ignore"), GTK_RESPONSE_ACCEPT,
|
|
NULL);
|
|
if (gtk_dialog_run (GTK_DIALOG (dialog)) != GTK_RESPONSE_ACCEPT)
|
|
{
|
|
g_object_unref (settings);
|
|
g_object_unref (search_engines);
|
|
g_object_unref (bookmarks);
|
|
g_object_unref (_session);
|
|
g_object_unref (trash);
|
|
g_object_unref (history);
|
|
g_string_free (error_messages, TRUE);
|
|
return 0;
|
|
}
|
|
gtk_widget_destroy (dialog);
|
|
/* FIXME: Since we will overwrite files that could not be loaded
|
|
, would we want to make backups? */
|
|
}
|
|
g_string_free (error_messages, TRUE);
|
|
|
|
/* If -e or --execute was specified, "uris" refers to the command. */
|
|
if (!execute)
|
|
{
|
|
/* Open as many tabs as we have uris, seperated by pipes */
|
|
i = 0;
|
|
while (uris && uris[i])
|
|
{
|
|
uri = strtok (g_strdup (uris[i]), "|");
|
|
while (uri != NULL)
|
|
{
|
|
item = katze_item_new ();
|
|
uri_ready = midori_prepare_uri (uri);
|
|
katze_item_set_uri (item, uri_ready);
|
|
g_free (uri_ready);
|
|
katze_array_add_item (_session, item);
|
|
uri = strtok (NULL, "|");
|
|
}
|
|
g_free (uri);
|
|
i++;
|
|
}
|
|
}
|
|
|
|
katze_assign (config_file, build_config_filename ("search"));
|
|
if (1)
|
|
{
|
|
g_signal_connect_after (search_engines, "add-item",
|
|
G_CALLBACK (midori_search_engines_modify_cb), search_engines);
|
|
g_signal_connect_after (search_engines, "remove-item",
|
|
G_CALLBACK (midori_search_engines_modify_cb), search_engines);
|
|
if (!katze_array_is_empty (search_engines))
|
|
{
|
|
i = 0;
|
|
while ((item = katze_array_get_nth_item (search_engines, i++)))
|
|
g_signal_connect_after (item, "notify",
|
|
G_CALLBACK (midori_search_engines_modify_cb), search_engines);
|
|
}
|
|
}
|
|
katze_assign (config_file, build_config_filename (BOOKMARK_FILE));
|
|
/* Don't save bookmarks if they are not our own */
|
|
if (!g_path_is_absolute (BOOKMARK_FILE))
|
|
{
|
|
midori_bookmarks_connect_item (NULL, (KatzeItem*)bookmarks, bookmarks);
|
|
g_signal_connect_after (bookmarks, "add-item",
|
|
G_CALLBACK (midori_bookmarks_add_item_cb), bookmarks);
|
|
g_signal_connect_after (bookmarks, "remove-item",
|
|
G_CALLBACK (midori_bookmarks_remove_item_cb), bookmarks);
|
|
}
|
|
katze_assign (config_file, build_config_filename ("tabtrash.xbel"));
|
|
g_signal_connect_after (trash, "add-item",
|
|
G_CALLBACK (midori_trash_add_item_cb), NULL);
|
|
g_signal_connect_after (trash, "remove-item",
|
|
G_CALLBACK (midori_trash_remove_item_cb), NULL);
|
|
#if HAVE_SQLITE
|
|
katze_assign (config_file, build_config_filename ("history.db"));
|
|
#endif
|
|
|
|
katze_item_set_parent (KATZE_ITEM (_session), app);
|
|
g_object_set_data (G_OBJECT (app), "extensions", extensions);
|
|
/* We test for the presence of a dummy file which is created once
|
|
and deleted during normal runtime, but persists in case of a crash. */
|
|
katze_assign (config_file, build_config_filename ("running"));
|
|
if (g_access (config_file, F_OK) == 0)
|
|
{
|
|
if (katze_object_get_boolean (settings, "show-crash-dialog"))
|
|
diagnostic_dialog = TRUE;
|
|
}
|
|
else
|
|
g_file_set_contents (config_file, "RUNNING", -1, NULL);
|
|
|
|
if (diagnostic_dialog)
|
|
{
|
|
GtkWidget* dialog = midori_create_diagnostic_dialog (settings, _session);
|
|
gtk_dialog_run (GTK_DIALOG (dialog));
|
|
gtk_widget_destroy (dialog);
|
|
}
|
|
g_signal_connect (app, "quit", G_CALLBACK (midori_app_quit_cb), NULL);
|
|
midori_startup_timer ("Signal setup: \t%f");
|
|
|
|
g_object_set (app, "settings", settings,
|
|
"bookmarks", bookmarks,
|
|
"trash", trash,
|
|
"search-engines", search_engines,
|
|
"history", history,
|
|
NULL);
|
|
g_object_unref (history);
|
|
g_object_unref (search_engines);
|
|
g_object_unref (bookmarks);
|
|
g_object_unref (trash);
|
|
g_object_unref (settings);
|
|
g_signal_connect (app, "add-browser",
|
|
G_CALLBACK (midori_app_add_browser_cb), NULL);
|
|
midori_startup_timer ("App prepared: \t%f");
|
|
|
|
g_idle_add (midori_load_cookie_jar, settings);
|
|
g_idle_add (midori_load_extensions, app);
|
|
g_idle_add (midori_load_session, _session);
|
|
|
|
if (execute)
|
|
g_object_set_data (G_OBJECT (app), "execute-command", uris);
|
|
|
|
gtk_main ();
|
|
|
|
settings = katze_object_get_object (app, "settings");
|
|
#if HAVE_SQLITE
|
|
g_object_get (settings, "maximum-history-age", &max_history_age, NULL);
|
|
midori_history_terminate (db, max_history_age);
|
|
#endif
|
|
|
|
/* Clear data on quit, according to the Clear private data dialog */
|
|
g_object_get (settings, "clear-private-data", &clear_prefs, NULL);
|
|
if (clear_prefs & MIDORI_CLEAR_ON_QUIT)
|
|
{
|
|
#if HAVE_SQLITE
|
|
midori_remove_config_file (clear_prefs, MIDORI_CLEAR_HISTORY, "history.db");
|
|
#endif
|
|
midori_remove_config_file (clear_prefs, MIDORI_CLEAR_COOKIES, "cookies.txt");
|
|
if ((clear_prefs & MIDORI_CLEAR_FLASH_COOKIES) == MIDORI_CLEAR_FLASH_COOKIES)
|
|
{
|
|
gchar* cache = g_build_filename (g_get_home_dir (), ".macromedia",
|
|
"Flash_Player", NULL);
|
|
sokoke_remove_path (cache, TRUE);
|
|
g_free (cache);
|
|
}
|
|
if ((clear_prefs & MIDORI_CLEAR_WEBSITE_ICONS) == MIDORI_CLEAR_WEBSITE_ICONS)
|
|
{
|
|
gchar* cache = g_build_filename (g_get_user_cache_dir (),
|
|
PACKAGE_NAME, "icons", NULL);
|
|
sokoke_remove_path (cache, TRUE);
|
|
g_free (cache);
|
|
}
|
|
midori_remove_config_file (clear_prefs, MIDORI_CLEAR_TRASH, "tabtrash.xbel");
|
|
if ((clear_prefs & MIDORI_CLEAR_WEB_CACHE) == MIDORI_CLEAR_WEB_CACHE)
|
|
{
|
|
gchar* cache = g_build_filename (g_get_user_cache_dir (),
|
|
PACKAGE_NAME, "web", NULL);
|
|
sokoke_remove_path (cache, TRUE);
|
|
g_free (cache);
|
|
}
|
|
}
|
|
|
|
if (katze_object_get_boolean (settings, "load-on-startup")
|
|
!= MIDORI_STARTUP_LAST_OPEN_PAGES)
|
|
{
|
|
katze_assign (config_file, build_config_filename ("session.xbel"));
|
|
g_unlink (config_file);
|
|
}
|
|
|
|
g_object_unref (settings);
|
|
g_object_unref (app);
|
|
g_free (config_file);
|
|
return 0;
|
|
}
|