]> git.armaanb.net Git - chorizo.git/blobdiff - src/browser.c
Use content manager to run scripts and user styles
[chorizo.git] / src / browser.c
index 8650a61d10292780d9788b5c5211e770a718181a..e6d890b3fdf2e51f8e1d146ea6c624c5a856286c 100644 (file)
@@ -38,15 +38,18 @@ GKeyFile *get_ini(void);
 GKeyFile *config;
 
 struct Client {
-    gchar *external_handler_uri;
-    gchar *feed_html;
-    gchar *hover_uri;
+    GtkWidget *imgbutton;
+    GtkWidget *jsbutton;
     GtkWidget *location;
     GtkWidget *tabicon;
     GtkWidget *tablabel;
     GtkWidget *vbox;
     GtkWidget *web_view;
+    WebKitSettings *settings;
     gboolean focus_new_tab;
+    gchar *external_handler_uri;
+    gchar *feed_html;
+    gchar *hover_uri;
 };
 
 struct Configuration {
@@ -55,8 +58,11 @@ struct Configuration {
     gboolean cooperative_alone;
     gboolean cooperative_instances;
     gboolean enable_console_to_stdout;
+    gboolean images_disabled;
     gboolean javascript_disabled;
+    gboolean private;
     gboolean spellcheck_disabled;
+    gchar *default_uri;
     gchar *download_dir;
     gchar *fifo_suffix;
     gchar *history_file;
@@ -75,9 +81,27 @@ struct MainWindow {
 } mw;
 
 gint clients = 0;
+struct Client **client_arr;
+
 int cooperative_pipe_fp = 0;
 gchar *search_text;
 
+void
+togglejs(GtkButton *jsbutton, gpointer data) {
+    struct Client *c = (struct Client *)data;
+    webkit_settings_set_enable_javascript(
+        c->settings, !webkit_settings_get_enable_javascript(c->settings));
+    webkit_web_view_set_settings(WEBKIT_WEB_VIEW(c->web_view), c->settings);
+}
+
+void
+toggleimg(GtkButton *imgbutton, gpointer data) {
+    struct Client *c = (struct Client *)data;
+    webkit_settings_set_auto_load_images(
+        c->settings, !webkit_settings_get_auto_load_images(c->settings));
+    webkit_web_view_set_settings(WEBKIT_WEB_VIEW(c->web_view), c->settings);
+}
+
 void
 client_destroy(GtkWidget *widget, gpointer data) {
     struct Client *c = (struct Client *)data;
@@ -98,6 +122,13 @@ client_destroy(GtkWidget *widget, gpointer data) {
     quit_if_nothing_active();
 }
 
+void
+set_uri(const char *uri, struct Client *c) {
+    if (!gtk_widget_is_focus(c->location)) {
+        gtk_entry_set_text(GTK_ENTRY(c->location), uri);
+    }
+}
+
 WebKitWebView *
 client_new(const gchar *uri, WebKitWebView *related_wv, gboolean show,
            gboolean focus_tab) {
@@ -121,16 +152,68 @@ client_new(const gchar *uri, WebKitWebView *related_wv, gboolean show,
 
     c->focus_new_tab = focus_tab;
 
-    if (related_wv == NULL)
-        c->web_view = webkit_web_view_new();
-    else
+    if (related_wv == NULL) {
+        WebKitUserContentManager *ucm = webkit_user_content_manager_new();
+        WebKitUserScript *wkscript;
+        WebKitUserStyleSheet *wkstyle;
+        gchar *path = NULL, *source, *base;
+        const gchar *entry = NULL;
+        GDir *dir = NULL;
+
+        base = g_build_filename(g_get_user_data_dir(), __NAME__, "user-scripts",
+                                NULL);
+        dir = g_dir_open(base, 0, NULL);
+        if (dir != NULL) {
+            while ((entry = g_dir_read_name(dir)) != NULL) {
+                path = g_build_filename(base, entry, NULL);
+                if (g_str_has_suffix(path, ".js")) {
+                    g_file_get_contents(path, &source, NULL, NULL);
+                    wkscript = webkit_user_script_new(
+                        source, WEBKIT_USER_CONTENT_INJECT_ALL_FRAMES,
+                        WEBKIT_USER_SCRIPT_INJECT_AT_DOCUMENT_START, NULL,
+                        NULL);
+                    webkit_user_content_manager_add_script(ucm, wkscript);
+                    webkit_user_script_unref(wkscript);
+                }
+                g_free(path);
+                g_free(source);
+            }
+            g_dir_close(dir);
+        }
+
+        base = g_build_filename(g_get_user_data_dir(), __NAME__, "user-styles",
+                                NULL);
+        dir = g_dir_open(base, 0, NULL);
+        if (dir != NULL) {
+            while ((entry = g_dir_read_name(dir)) != NULL) {
+                path = g_build_filename(base, entry, NULL);
+                if (g_str_has_suffix(path, ".css")) {
+                    g_file_get_contents(path, &source, NULL, NULL);
+                    wkstyle = webkit_user_style_sheet_new(
+                        source, WEBKIT_USER_CONTENT_INJECT_ALL_FRAMES,
+                        WEBKIT_USER_STYLE_LEVEL_USER, NULL, NULL);
+                    webkit_user_content_manager_add_style_sheet(ucm, wkstyle);
+                    webkit_user_style_sheet_unref(wkstyle);
+                }
+                g_free(path);
+                g_free(source);
+            }
+            g_dir_close(dir);
+        }
+
+        g_free(base);
+
+        c->web_view = webkit_web_view_new_with_user_content_manager(ucm);
+    } else {
         c->web_view = webkit_web_view_new_with_related_view(related_wv);
+    }
 
+    c->settings = webkit_web_view_get_settings(WEBKIT_WEB_VIEW(c->web_view));
     webkit_web_view_set_zoom_level(WEBKIT_WEB_VIEW(c->web_view),
                                    cfg.global_zoom);
-    WebKitSettings *settings =
-        webkit_web_view_get_settings(WEBKIT_WEB_VIEW(c->web_view));
-    webkit_settings_set_enable_javascript(settings, !cfg.javascript_disabled);
+    webkit_settings_set_enable_javascript(c->settings,
+                                          !cfg.javascript_disabled);
+    webkit_settings_set_auto_load_images(c->settings, !cfg.images_disabled);
     g_signal_connect(G_OBJECT(c->web_view), "notify::favicon",
                      G_CALLBACK(changed_favicon), c);
     g_signal_connect(G_OBJECT(c->web_view), "notify::title",
@@ -157,16 +240,44 @@ client_new(const gchar *uri, WebKitWebView *related_wv, gboolean show,
                      G_CALLBACK(crashed_web_view), c);
 
     if (cfg.user_agent != NULL) {
-        g_object_set(settings, "user-agent", cfg.user_agent, NULL);
+        g_object_set(c->settings, "user-agent", cfg.user_agent, NULL);
     }
 
     if (cfg.enable_console_to_stdout)
-        webkit_settings_set_enable_write_console_messages_to_stdout(settings,
+        webkit_settings_set_enable_write_console_messages_to_stdout(c->settings,
                                                                     TRUE);
 
-    webkit_settings_set_enable_developer_extras(settings, TRUE);
+    webkit_settings_set_enable_developer_extras(c->settings, TRUE);
+
+    GtkWidget *locbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
+
+    c->jsbutton = gtk_toggle_button_new_with_label("JS");
+    gtk_widget_set_tooltip_text(c->jsbutton, "Toggle JavaScript execution");
+    gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(c->jsbutton),
+                                 !cfg.javascript_disabled);
+    g_signal_connect(G_OBJECT(c->jsbutton), "toggled", G_CALLBACK(togglejs), c);
+
+    c->imgbutton = gtk_toggle_button_new_with_label("IMG");
+    gtk_widget_set_tooltip_text(c->imgbutton, "Toggle image loading");
+    gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(c->imgbutton),
+                                 !cfg.images_disabled);
+    g_signal_connect(G_OBJECT(c->imgbutton), "toggled", G_CALLBACK(toggleimg),
+                     c);
 
     c->location = gtk_entry_new();
+    gtk_box_pack_start(GTK_BOX(locbox), c->location, TRUE, TRUE, 0);
+
+    if (cfg.private) {
+        GtkWidget *privindicator = gtk_label_new("Private mode");
+        gtk_widget_set_tooltip_text(
+            privindicator, "You are in private mode. No history, caches, or "
+                           "cookies will be saved beyond this session.");
+        gtk_box_pack_end(GTK_BOX(locbox), privindicator, FALSE, FALSE, 5);
+    }
+
+    gtk_box_pack_start(GTK_BOX(locbox), c->jsbutton, FALSE, FALSE, 5);
+    gtk_box_pack_start(GTK_BOX(locbox), c->imgbutton, FALSE, FALSE, 0);
+
     g_signal_connect(G_OBJECT(c->location), "key-press-event",
                      G_CALLBACK(key_location), c);
     g_signal_connect(G_OBJECT(c->location), "icon-release",
@@ -177,10 +288,10 @@ client_new(const gchar *uri, WebKitWebView *related_wv, gboolean show,
      * right here is to have that padding right from the start. This
      * avoids a graphical artifact. */
     gtk_entry_set_icon_from_icon_name(GTK_ENTRY(c->location),
-                                      GTK_ENTRY_ICON_PRIMARY, NULL);
+                                      GTK_ENTRY_ICON_SECONDARY, NULL);
 
     c->vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
-    gtk_box_pack_start(GTK_BOX(c->vbox), c->location, FALSE, FALSE, 0);
+    gtk_box_pack_start(GTK_BOX(c->vbox), locbox, FALSE, FALSE, 0);
     gtk_box_pack_start(GTK_BOX(c->vbox), c->web_view, TRUE, TRUE, 0);
     gtk_container_set_focus_child(GTK_CONTAINER(c->vbox), c->web_view);
 
@@ -208,7 +319,7 @@ client_new(const gchar *uri, WebKitWebView *related_wv, gboolean show,
     g_signal_connect(G_OBJECT(evbox), "scroll-event", G_CALLBACK(key_tablabel),
                      c);
 
-    /* For easy access, store a reference to our label. */
+    // For easy access, store a reference to our label.
     g_object_set_data(G_OBJECT(evbox), "chorizo-tab-label", c->tablabel);
 
     /* This only shows the event box and the label inside, nothing else.
@@ -232,7 +343,11 @@ client_new(const gchar *uri, WebKitWebView *related_wv, gboolean show,
         g_free(f);
     }
 
+    set_uri(uri, c);
+
     clients++;
+    client_arr = realloc(client_arr, (clients + 1) * sizeof(client_arr[0]));
+    client_arr[clients] = c;
 
     return WEBKIT_WEB_VIEW(c->web_view);
 }
@@ -248,7 +363,9 @@ cooperation_setup(void) {
     GIOChannel *towatch;
     gchar *fifofilename, *fifopath;
 
-    fifofilename = g_strdup_printf("%s-%s", __NAME__ ".fifo", cfg.fifo_suffix);
+    gchar *priv = (cfg.private) ? "-private" : "";
+    fifofilename =
+        g_strdup_printf("%s%s%s-%s", __NAME__, priv, ".fifo", cfg.fifo_suffix);
     fifopath = g_build_filename(g_get_user_runtime_dir(), fifofilename, NULL);
     g_free(fifofilename);
 
@@ -260,8 +377,8 @@ cooperation_setup(void) {
         fprintf(stderr, __NAME__ ": Can't open FIFO at all.\n");
     } else {
         if (write(cooperative_pipe_fp, "", 0) == -1) {
-            /* Could not do an empty write to the FIFO which means
-      there's no one listening. */
+            /* Could not do an empty write to the FIFO which means there's
+             * no one listening. */
             close(cooperative_pipe_fp);
             towatch = g_io_channel_new_file(fifopath, "r+", NULL);
             g_io_add_watch(towatch, G_IO_IN, (GIOFunc)remote_msg, NULL);
@@ -311,8 +428,6 @@ changed_load_progress(GObject *obj, GParamSpec *pspec, gpointer data) {
          * references. */
         webkit_web_view_run_javascript(WEBKIT_WEB_VIEW(c->web_view), grab_feeds,
                                        NULL, grab_feeds_finished, c);
-
-        run_user_scripts(WEBKIT_WEB_VIEW(c->web_view));
     }
     gtk_entry_set_progress_fraction(GTK_ENTRY(c->location), p);
 }
@@ -363,9 +478,9 @@ changed_title(GObject *obj, GParamSpec *pspec, gpointer data) {
     gboolean mute = webkit_web_view_get_is_muted(WEBKIT_WEB_VIEW(c->web_view));
     gchar *muted = (mute) ? "[m] " : "";
     sprintf(name, "%s%s", muted, t);
-
     gtk_label_set_text(GTK_LABEL(c->tablabel), name);
     g_free(name);
+
     gtk_widget_set_tooltip_text(c->tablabel, t);
     mainwindow_title(gtk_notebook_get_current_page(GTK_NOTEBOOK(mw.notebook)));
 }
@@ -383,9 +498,9 @@ changed_uri(GObject *obj, GParamSpec *pspec, gpointer data) {
      * now. Not updating the location bar in this scenario is important,
      * because we would override the "WEB PROCESS CRASHED" message. */
     if (t != NULL && strlen(t) > 0) {
-        gtk_entry_set_text(GTK_ENTRY(c->location), t);
+        set_uri(t, c);
 
-        if (cfg.history_file != NULL) {
+        if (cfg.history_file != NULL && !cfg.private) {
             fp = fopen(cfg.history_file, "a");
             if (fp != NULL) {
                 fprintf(fp, "%s\n", t);
@@ -424,7 +539,7 @@ decide_policy(WebKitWebView *web_view, WebKitPolicyDecision *decision,
             webkit_policy_decision_use(decision);
         break;
     default:
-        /* Use whatever default there is. */
+        // Use whatever default there is.
         return FALSE;
     }
     return TRUE;
@@ -456,7 +571,7 @@ get_config(void) {
     cfg.accepted_language[0] = NULL;
     cfg.accepted_language[1] = NULL;
     cfg.cooperative_alone = TRUE;
-    cfg.cooperative_alone = TRUE;
+    cfg.cooperative_instances = TRUE;
     cfg.fifo_suffix = "main";
 
     const char *e = g_getenv(__NAME_UPPERCASE__ "_FIFO_SUFFIX");
@@ -479,6 +594,8 @@ get_config(void) {
         g_key_file_get_string(config, "browser", "user_agent", NULL);
     cfg.javascript_disabled =
         g_key_file_get_boolean(config, "browser", "javascript_disabled", NULL);
+    cfg.images_disabled =
+        g_key_file_get_boolean(config, "browser", "images_disabled", NULL);
     char *input_cookie_policy =
         g_key_file_get_string(config, "browser", "cookie_policy", NULL);
     cfg.cookie_policy = WEBKIT_COOKIE_POLICY_ACCEPT_NO_THIRD_PARTY;
@@ -490,6 +607,8 @@ get_config(void) {
         }
     }
 
+    cfg.default_uri = g_key_file_get_string(config, "ui", "default_uri", NULL);
+    cfg.default_uri = (cfg.default_uri) ? cfg.default_uri : "https://";
     cfg.tab_width_chars =
         g_key_file_get_integer(config, "ui", "tab_width", NULL);
     cfg.tab_width_chars = (cfg.tab_width_chars) ? cfg.tab_width_chars : 20;
@@ -525,7 +644,8 @@ grab_feeds_finished(GObject *object, GAsyncResult *result, gpointer data) {
     /* This was taken almost verbatim from the example in WebKit's
      * documentation:
      *
-     * https://webkitgtk.org/reference/webkit2gtk/stable/WebKitWebView.html */
+     * https://webkitgtk.org/reference/webkit2gtk/stable/WebKitWebView.html
+     */
 
     js_result = webkit_web_view_run_javascript_finish(WEBKIT_WEB_VIEW(object),
                                                       result, &err);
@@ -548,13 +668,13 @@ grab_feeds_finished(GObject *object, GAsyncResult *result, gpointer data) {
         }
 
         gtk_entry_set_icon_from_icon_name(GTK_ENTRY(c->location),
-                                          GTK_ENTRY_ICON_PRIMARY,
+                                          GTK_ENTRY_ICON_SECONDARY,
                                           "application-rss+xml-symbolic");
         gtk_entry_set_icon_activatable(GTK_ENTRY(c->location),
                                        GTK_ENTRY_ICON_PRIMARY, TRUE);
     } else {
         gtk_entry_set_icon_from_icon_name(GTK_ENTRY(c->location),
-                                          GTK_ENTRY_ICON_PRIMARY, NULL);
+                                          GTK_ENTRY_ICON_SECONDARY, NULL);
     }
 
     webkit_javascript_result_unref(js_result);
@@ -577,7 +697,7 @@ hover_web_view(WebKitWebView *web_view, WebKitHitTestResult *ht,
     }
 
     if (!gtk_widget_is_focus(c->location))
-        gtk_entry_set_text(GTK_ENTRY(c->location), to_show);
+        set_uri(to_show, c);
 }
 
 void
@@ -626,7 +746,8 @@ init_default_web_context(void) {
     WebKitWebContext *wc;
     WebKitCookieManager *cm;
 
-    wc = webkit_web_context_get_default();
+    wc = (cfg.private) ? webkit_web_context_new_ephemeral()
+                       : webkit_web_context_get_default();
 
     p = g_build_filename(g_get_user_config_dir(), __NAME__, "adblock", NULL);
     webkit_web_context_set_sandbox_enabled(wc, TRUE);
@@ -646,20 +767,23 @@ init_default_web_context(void) {
         webkit_web_context_set_preferred_languages(wc, cfg.accepted_language);
 
     g_signal_connect(G_OBJECT(wc), "download-started",
-                     G_CALLBACK(download_start), &cfg);
+                     G_CALLBACK(download_start), cfg.download_dir);
 
     trust_user_certs(wc);
 
     cm = webkit_web_context_get_cookie_manager(wc);
     webkit_cookie_manager_set_accept_policy(cm, cfg.cookie_policy);
 
-    webkit_web_context_set_favicon_database_directory(wc, NULL);
-    gchar *fname = g_build_filename("/", g_get_user_cache_dir(), __NAME__,
-                                    "cookies.db", NULL);
+    if (!cfg.private) {
+        webkit_web_context_set_favicon_database_directory(wc, NULL);
 
-    WebKitCookiePersistentStorage type =
-        WEBKIT_COOKIE_PERSISTENT_STORAGE_SQLITE;
-    webkit_cookie_manager_set_persistent_storage(cm, fname, type);
+        gchar *fname = g_build_filename("/", g_get_user_data_dir(), __NAME__,
+                                        "cookies.db", NULL);
+        WebKitCookiePersistentStorage type =
+            WEBKIT_COOKIE_PERSISTENT_STORAGE_SQLITE;
+        webkit_cookie_manager_set_persistent_storage(cm, fname, type);
+        g_free(fname);
+    }
 
     const gchar *const languages[2] = {(const gchar *)cfg.spellcheck_language,
                                        NULL};
@@ -722,9 +846,8 @@ key_common(GtkWidget *widget, GdkEvent *event, gpointer data) {
 
     if (event->type == GDK_KEY_PRESS) {
         if (((GdkEventKey *)event)->state & GDK_CONTROL_MASK) {
-            WebKitSettings *settings =
-                webkit_web_view_get_settings(WEBKIT_WEB_VIEW(c->web_view));
-            gboolean js = webkit_settings_get_enable_javascript(settings);
+            const char *uri =
+                webkit_web_view_get_uri(WEBKIT_WEB_VIEW(c->web_view));
             int key = ((GdkEventKey *)event)->keyval;
             if (def_key("download_manager", GDK_KEY_y) == key) {
                 downloadmanager_show();
@@ -737,9 +860,9 @@ key_common(GtkWidget *widget, GdkEvent *event, gpointer data) {
                 return TRUE;
             } else if (def_key("location", GDK_KEY_t) == key) {
                 gtk_widget_grab_focus(c->location);
-                const char *uri =
-                    webkit_web_view_get_uri(WEBKIT_WEB_VIEW(c->web_view));
-                const char *goal = (uri) ? uri : "https://";
+                const char *goal = (strcmp(cfg.home_uri, uri) == 0 || !uri)
+                                       ? cfg.default_uri
+                                       : uri;
                 gtk_entry_set_text(GTK_ENTRY(c->location), goal);
                 gtk_editable_set_position(GTK_EDITABLE(c->location), -1);
                 return TRUE;
@@ -753,8 +876,6 @@ key_common(GtkWidget *widget, GdkEvent *event, gpointer data) {
             } else if (def_key("quit", GDK_KEY_g) == key) {
                 search(c, 2);
                 gtk_widget_grab_focus(c->web_view);
-                const gchar *uri =
-                    webkit_web_view_get_uri(WEBKIT_WEB_VIEW(c->web_view));
                 gtk_entry_set_text(GTK_ENTRY(c->location), uri);
                 gtk_editable_set_position(GTK_EDITABLE(c->location), -1);
                 webkit_web_view_run_javascript(
@@ -842,11 +963,20 @@ key_common(GtkWidget *widget, GdkEvent *event, gpointer data) {
                 gtk_notebook_next_page(GTK_NOTEBOOK(mw.notebook));
                 return TRUE;
             } else if (def_key("toggle_js", GDK_KEY_o) == key) {
-                webkit_settings_set_enable_javascript(settings,
-                                                      (js) ? FALSE : TRUE);
+                gboolean on =
+                    webkit_settings_get_enable_javascript(c->settings);
+                webkit_settings_set_enable_javascript(c->settings, !on);
                 webkit_web_view_set_settings(WEBKIT_WEB_VIEW(c->web_view),
-                                             settings);
-                return TRUE;
+                                             c->settings);
+                gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(c->jsbutton),
+                                             !on);
+            } else if (def_key("toggle_img", -1) == key) {
+                gboolean on = webkit_settings_get_auto_load_images(c->settings);
+                webkit_settings_set_auto_load_images(c->settings, !on);
+                webkit_web_view_set_settings(WEBKIT_WEB_VIEW(c->web_view),
+                                             c->settings);
+                gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(c->imgbutton),
+                                             !on);
             } else if (def_key("web_search", GDK_KEY_d) == key) {
                 gtk_widget_grab_focus(c->location);
                 gtk_entry_set_text(GTK_ENTRY(c->location), "w/");
@@ -894,12 +1024,11 @@ key_location(GtkWidget *widget, GdkEvent *event, gpointer data) {
                 search_text = g_strdup(t + 2);
                 search(c, 0);
             } else if (t != NULL && t[0] == 'w' && t[1] == '/') {
-                const char *engine = cfg.search_engine;
-                int len = strlen(engine) + strlen(t) - 2;
-                char *f = (char *)malloc(len);
-                snprintf(f, len + 1, "%s%s", engine, t + 2);
+                int len = strlen(cfg.search_engine) + strlen(t) - 2;
+                gchar *f = malloc(len + 1);
+                snprintf(f, len + 1, "%s%s", cfg.search_engine, t + 2);
                 webkit_web_view_load_uri(WEBKIT_WEB_VIEW(c->web_view), f);
-                free(f);
+                g_free(f);
             } else {
                 f = ensure_uri_scheme(t);
                 webkit_web_view_load_uri(WEBKIT_WEB_VIEW(c->web_view), f);
@@ -991,7 +1120,12 @@ mainwindow_setup(void) {
     mw.win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
     gtk_window_set_default_size(GTK_WINDOW(mw.win), 800, 600);
     g_signal_connect(G_OBJECT(mw.win), "destroy", gtk_main_quit, NULL);
-    gtk_window_set_title(GTK_WINDOW(mw.win), __NAME__);
+
+    gchar *priv = (cfg.private) ? "-private" : "";
+    gchar *title = malloc(strlen(priv) + strlen(__NAME__) + 1);
+    sprintf(title, "%s%s", __NAME__, priv);
+    gtk_window_set_title(GTK_WINDOW(mw.win), title);
+    g_free(title);
 
     mw.notebook = gtk_notebook_new();
     gtk_notebook_set_scrollable(GTK_NOTEBOOK(mw.notebook), TRUE);
@@ -1048,38 +1182,6 @@ remote_msg(GIOChannel *channel, GIOCondition condition, gpointer data) {
     return TRUE;
 }
 
-void
-run_user_scripts(WebKitWebView *web_view) {
-    gchar *base = NULL, *path = NULL, *contents = NULL;
-    const gchar *entry = NULL;
-    GDir *scriptdir = NULL;
-
-    base =
-        g_build_filename(g_get_user_data_dir(), __NAME__, "user-scripts", NULL);
-    scriptdir = g_dir_open(base, 0, NULL);
-    if (scriptdir != NULL) {
-        while ((entry = g_dir_read_name(scriptdir)) != NULL) {
-            path = g_build_filename(base, entry, NULL);
-            char *jscmd = malloc(strlen(path) + 36);
-            sprintf(jscmd, "console.log(\"Running userscript %s\");", path);
-            if (g_str_has_suffix(path, ".js")) {
-                if (g_file_get_contents(path, &contents, NULL, NULL)) {
-                    webkit_web_view_run_javascript(web_view, jscmd, NULL, NULL,
-                                                   NULL);
-                    webkit_web_view_run_javascript(web_view, contents, NULL,
-                                                   NULL, NULL);
-                    g_free(contents);
-                    g_free(jscmd);
-                }
-            }
-            g_free(path);
-        }
-        g_dir_close(scriptdir);
-    }
-
-    g_free(base);
-}
-
 void
 show_web_view(WebKitWebView *web_view, gpointer data) {
     struct Client *c = (struct Client *)data;
@@ -1101,17 +1203,20 @@ show_web_view(WebKitWebView *web_view, gpointer data) {
 void
 trust_user_certs(WebKitWebContext *wc) {
     GTlsCertificate *cert;
-    const gchar *basedir, *file, *absfile;
-    GDir *dir;
+    gchar *basedir, *absfile;
+    const gchar *file;
+    GDir *dir = NULL;
 
     basedir = g_build_filename(g_get_user_data_dir(), __NAME__, "certs", NULL);
     dir = g_dir_open(basedir, 0, NULL);
+    g_free(basedir);
     if (dir != NULL) {
         file = g_dir_read_name(dir);
         while (file != NULL) {
             absfile = g_build_filename(g_get_user_data_dir(), __NAME__, "certs",
                                        file, NULL);
             cert = g_tls_certificate_new_from_file(absfile, NULL);
+            g_free(absfile);
             if (cert == NULL)
                 fprintf(stderr, __NAME__ ": Could not load trusted cert '%s'\n",
                         file);
@@ -1130,17 +1235,16 @@ get_ini(void) {
     config = g_key_file_new();
 
     // Load user config
-    if (!g_key_file_load_from_file(config,
-                                   g_build_filename(g_get_user_config_dir(),
-                                                    __NAME__, "chorizo.ini",
-                                                    NULL),
-                                   flags, NULL)) {
+    gchar *fname = g_build_filename(g_get_user_config_dir(), __NAME__,
+                                    "chorizo.ini", NULL);
+    if (!g_key_file_load_from_file(config, fname, flags, NULL)) {
         // Load global config
         if (!g_key_file_load_from_file(config, "/etc/chorizo.ini", flags,
                                        NULL)) {
             fprintf(stderr, "Could not load chorizo.ini");
         }
     }
+    g_free(fname);
     return config;
 }
 
@@ -1148,11 +1252,14 @@ int
 main(int argc, char **argv) {
     int opt, i;
 
-    while ((opt = getopt(argc, argv, "Cv")) != -1) {
+    while ((opt = getopt(argc, argv, "Cpv")) != -1) {
         switch (opt) {
         case 'C':
             cfg.cooperative_instances = FALSE;
             break;
+        case 'p':
+            cfg.private = true;
+            break;
         case 'v':
             printf("%s %s\n", __NAME__, VERSION);
             exit(0);
@@ -1174,6 +1281,7 @@ main(int argc, char **argv) {
     downloadmanager_setup();
     mainwindow_setup();
 
+    client_arr = malloc(sizeof(struct Client *));
     if (optind >= argc) {
         client_new(cfg.home_uri, NULL, TRUE, TRUE);
     } else {
@@ -1184,5 +1292,9 @@ main(int argc, char **argv) {
     if (!cfg.cooperative_instances || cfg.cooperative_alone)
         gtk_main();
 
+    for (int i = 0; i < clients; i++) {
+        free(&(client_arr[i]));
+    }
+
     exit(EXIT_SUCCESS);
 }