]> git.armaanb.net Git - chorizo.git/blob - browser.c
Steal surf's user agent
[chorizo.git] / browser.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <sys/types.h>
4 #include <sys/stat.h>
5 #include <fcntl.h>
6 #include <string.h>
7
8 #include <gtk/gtk.h>
9 #include <gdk/gdkx.h>
10 #include <gdk/gdkkeysyms.h>
11 #include <gio/gio.h>
12 #include <webkit/webkit.h>
13
14
15 static void adblock(WebKitWebView *, WebKitWebFrame *, WebKitWebResource *,
16                     WebKitNetworkRequest *, WebKitNetworkResponse *, gpointer);
17 static void adblock_load(void);
18 static void client_destroy(GtkWidget *, gpointer);
19 static gboolean client_destroy_request(WebKitWebView *, gpointer);
20 static WebKitWebView *client_new(const gchar *);
21 static WebKitWebView *client_new_request(WebKitWebView *, WebKitWebFrame *,
22                                          gpointer);
23 static void cooperation_setup(void);
24 static void changed_download_progress(GObject *, GParamSpec *, gpointer);
25 static void changed_load_progress(GObject *, GParamSpec *, gpointer);
26 static void changed_title(GObject *, GParamSpec *, gpointer);
27 static void changed_uri(GObject *, GParamSpec *, gpointer);
28 static gboolean download_handle(WebKitWebView *, WebKitDownload *, gpointer);
29 static gboolean download_reset_indicator(gpointer);
30 static gboolean download_request(WebKitWebView *, WebKitWebFrame *,
31                                  WebKitNetworkRequest *, gchar *,
32                                  WebKitWebPolicyDecision *, gpointer);
33 static void downloadmanager_cancel(GtkToolButton *, gpointer data);
34 static void downloadmanager_setup(void);
35 static gchar *ensure_uri_scheme(const gchar *);
36 static void grab_environment_configuration(void);
37 static void hover_web_view(WebKitWebView *, gchar *, gchar *, gpointer);
38 static gboolean key_downloadmanager(GtkWidget *, GdkEvent *, gpointer);
39 static gboolean key_location(GtkWidget *, GdkEvent *, gpointer);
40 static gboolean key_web_view(GtkWidget *, GdkEvent *, gpointer);
41 static void keywords_load(void);
42 static gboolean keywords_try_search(WebKitWebView *, const gchar *);
43 static gboolean remote_msg(GIOChannel *, GIOCondition, gpointer);
44 static void search(gpointer, gint);
45 static Window tabbed_launch(void);
46 static void usage(void);
47
48
49 struct Client
50 {
51         GtkWidget *location;
52         GtkWidget *progress;
53         GtkWidget *scroll;
54         GtkWidget *status;
55         GtkWidget *top_box;
56         GtkWidget *vbox;
57         GtkWidget *web_view;
58         GtkWidget *win;
59 };
60
61 struct DownloadManager
62 {
63         GtkWidget *scroll;
64         GtkWidget *toolbar;
65         GtkWidget *win;
66 } dm;
67
68
69 static gchar *accepted_language = "en-US";
70 static GSList *adblock_patterns = NULL;
71 static gint clients = 0;
72 static gboolean cooperative_alone = TRUE;
73 static gboolean cooperative_instances = TRUE;
74 static int cooperative_pipe_fp = 0;
75 static gchar *download_dir = "/tmp";
76 static gint downloads_indicated = 0;
77 static Window embed = 0;
78 static gchar *fifo_suffix = "main";
79 static gdouble global_zoom = 1.0;
80 static gchar *home_uri = "about:blank";
81 static GHashTable *keywords = NULL;
82 static gboolean language_is_set = FALSE;
83 static gchar *search_text = NULL;
84 static gboolean show_all_requests = FALSE;
85 static gboolean tabbed_automagic = TRUE;
86 static gchar *user_agent = "Mozilla/5.0 (X11; U; Unix; en-US) "
87                            "AppleWebKit/537.15 (KHTML, like Gecko) "
88                            "Chrome/24.0.1295.0 "
89                            "Safari/537.15 "__NAME_UPPERCASE__"/git";
90
91
92 void
93 adblock(WebKitWebView *web_view, WebKitWebFrame *frame,
94         WebKitWebResource *resource, WebKitNetworkRequest *request,
95         WebKitNetworkResponse *response, gpointer data)
96 {
97         GSList *it = adblock_patterns;
98         const gchar *uri;
99
100         uri = webkit_network_request_get_uri(request);
101         if (show_all_requests)
102                 fprintf(stderr, "   -> %s\n", uri);
103
104         while (it)
105         {
106                 if (g_regex_match((GRegex *)(it->data), uri, 0, NULL))
107                 {
108                         webkit_network_request_set_uri(request, "about:blank");
109                         if (show_all_requests)
110                                 fprintf(stderr, "            BLOCKED!\n");
111                         return;
112                 }
113                 it = g_slist_next(it);
114         }
115 }
116
117 void
118 adblock_load(void)
119 {
120         GRegex *re = NULL;
121         GError *err = NULL;
122         GIOChannel *channel = NULL;
123         gchar *path = NULL, *buf = NULL;
124
125         path = g_build_filename(g_get_user_config_dir(), __NAME__, "adblock.black",
126                                 NULL);
127         channel = g_io_channel_new_file(path, "r", &err);
128         if (channel != NULL)
129         {
130                 while (g_io_channel_read_line(channel, &buf, NULL, NULL, NULL)
131                        == G_IO_STATUS_NORMAL)
132                 {
133                         g_strstrip(buf);
134                         if (buf[0] != '#')
135                         {
136                                 re = g_regex_new(buf,
137                                                  G_REGEX_CASELESS | G_REGEX_OPTIMIZE,
138                                                  G_REGEX_MATCH_PARTIAL, &err);
139                                 if (err != NULL)
140                                 {
141                                         fprintf(stderr, __NAME__": Could not compile regex: %s\n", buf);
142                                         g_error_free(err);
143                                         err = NULL;
144                                 }
145                                 else
146                                         adblock_patterns = g_slist_append(adblock_patterns, re);
147                         }
148                         g_free(buf);
149                 }
150                 g_io_channel_shutdown(channel, FALSE, NULL);
151         }
152         g_free(path);
153 }
154
155 void
156 client_destroy(GtkWidget *obj, gpointer data)
157 {
158         struct Client *c = (struct Client *)data;
159
160         g_signal_handlers_disconnect_by_func(G_OBJECT(c->web_view),
161                                              changed_load_progress, c);
162
163         free(c);
164         clients--;
165
166         if (clients == 0)
167                 gtk_main_quit();
168 }
169
170 gboolean
171 client_destroy_request(WebKitWebView *web_view, gpointer data)
172 {
173         struct Client *c = (struct Client *)data;
174
175         gtk_widget_destroy(c->win);
176
177         return TRUE;
178 }
179
180 WebKitWebView *
181 client_new(const gchar *uri)
182 {
183         struct Client *c;
184         gchar *f;
185
186         if (uri != NULL && cooperative_instances && !cooperative_alone)
187         {
188                 write(cooperative_pipe_fp, uri, strlen(uri));
189                 write(cooperative_pipe_fp, "\n", 1);
190                 return NULL;
191         }
192
193         c = malloc(sizeof(struct Client));
194         if (!c)
195         {
196                 fprintf(stderr, __NAME__": fatal: malloc failed\n");
197                 exit(EXIT_FAILURE);
198         }
199
200         c->win = NULL;
201         if (embed != 0)
202         {
203                 c->win = gtk_plug_new(embed);
204                 if (!gtk_plug_get_embedded(GTK_PLUG(c->win)))
205                 {
206                         fprintf(stderr, __NAME__": Can't plug-in to XID %ld.\n", embed);
207                         gtk_widget_destroy(c->win);
208                         c->win = NULL;
209                         embed = 0;
210                 }
211         }
212
213         if (c->win == NULL)
214         {
215                 c->win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
216                 gtk_window_set_wmclass(GTK_WINDOW(c->win), __NAME__, __NAME_CAPITALIZED__);
217         }
218
219         /* When using Gtk2, it only shows a white area when run in suckless'
220          * tabbed. It appears we need to set a default window size for this
221          * to work. This is not needed when using Gtk3. */
222         gtk_window_set_default_size(GTK_WINDOW(c->win), 1024, 768);
223
224         g_signal_connect(G_OBJECT(c->win), "destroy", G_CALLBACK(client_destroy), c);
225         gtk_window_set_title(GTK_WINDOW(c->win), __NAME__);
226
227         c->web_view = webkit_web_view_new();
228
229         /* XXX I really do want to enable this option. However, I get
230          * reproducible crashes with it enabled. I've seen bug reports from
231          * 2010 about this... WebKit crashes in libpixman, so maybe it's not
232          * a WebKit issue.
233          * Yeah, well. I'll turn it off for now. */
234         /*webkit_web_view_set_full_content_zoom(WEBKIT_WEB_VIEW(c->web_view), TRUE);*/
235
236         webkit_web_view_set_zoom_level(WEBKIT_WEB_VIEW(c->web_view), global_zoom);
237         g_signal_connect(G_OBJECT(c->web_view), "notify::title",
238                          G_CALLBACK(changed_title), c);
239         g_signal_connect(G_OBJECT(c->web_view), "notify::uri",
240                          G_CALLBACK(changed_uri), c);
241         g_signal_connect(G_OBJECT(c->web_view), "notify::progress",
242                          G_CALLBACK(changed_load_progress), c);
243         g_signal_connect(G_OBJECT(c->web_view), "create-web-view",
244                          G_CALLBACK(client_new_request), NULL);
245         g_signal_connect(G_OBJECT(c->web_view), "close-web-view",
246                          G_CALLBACK(client_destroy_request), c);
247         g_signal_connect(G_OBJECT(c->web_view),
248                          "mime-type-policy-decision-requested",
249                          G_CALLBACK(download_request), NULL);
250         g_signal_connect(G_OBJECT(c->web_view), "download-requested",
251                          G_CALLBACK(download_handle), c);
252         g_signal_connect(G_OBJECT(c->web_view), "key-press-event",
253                          G_CALLBACK(key_web_view), c);
254         g_signal_connect(G_OBJECT(c->web_view), "button-press-event",
255                          G_CALLBACK(key_web_view), c);
256         g_signal_connect(G_OBJECT(c->web_view), "scroll-event",
257                          G_CALLBACK(key_web_view), c);
258         g_signal_connect(G_OBJECT(c->web_view), "hovering-over-link",
259                          G_CALLBACK(hover_web_view), c);
260         g_signal_connect(G_OBJECT(c->web_view), "resource-request-starting",
261                          G_CALLBACK(adblock), NULL);
262
263         if (!language_is_set)
264         {
265                 g_object_set(webkit_get_default_session(), "accept-language",
266                              accepted_language, NULL);
267                 language_is_set = TRUE;
268         }
269
270         g_object_set(G_OBJECT(webkit_web_view_get_settings(WEBKIT_WEB_VIEW(c->web_view))),
271                      "user-agent", user_agent, NULL);
272
273         c->scroll = gtk_scrolled_window_new(NULL, NULL);
274
275         gtk_container_add(GTK_CONTAINER(c->scroll), c->web_view);
276
277         c->location = gtk_entry_new();
278         g_signal_connect(G_OBJECT(c->location), "key-press-event",
279                          G_CALLBACK(key_location), c);
280
281         c->progress = gtk_progress_bar_new();
282         gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(c->progress), 0);
283
284         c->status = gtk_progress_bar_new();
285         gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(c->status), 0);
286         gtk_widget_set_size_request(c->status, 20, -1);
287
288         c->top_box = gtk_hbox_new(FALSE, 0);
289         gtk_box_pack_start(GTK_BOX(c->top_box), c->status, FALSE, FALSE, 2);
290         gtk_box_pack_start(GTK_BOX(c->top_box), c->location, TRUE, TRUE, 0);
291         gtk_box_pack_end(GTK_BOX(c->top_box), c->progress, FALSE, TRUE, 2);
292
293         c->vbox = gtk_vbox_new(FALSE, 0);
294         gtk_box_pack_start(GTK_BOX(c->vbox), c->top_box, FALSE, FALSE, 2);
295         gtk_container_add(GTK_CONTAINER(c->vbox), c->scroll);
296
297         gtk_container_add(GTK_CONTAINER(c->win), c->vbox);
298
299         gtk_widget_grab_focus(c->web_view);
300         gtk_widget_show_all(c->win);
301
302         if (uri != NULL)
303         {
304                 f = ensure_uri_scheme(uri);
305                 if (show_all_requests)
306                         fprintf(stderr, "====> %s\n", uri);
307                 webkit_web_view_load_uri(WEBKIT_WEB_VIEW(c->web_view), f);
308                 g_free(f);
309         }
310
311         clients++;
312
313         return WEBKIT_WEB_VIEW(c->web_view);
314 }
315
316 WebKitWebView *
317 client_new_request(WebKitWebView *web_view, WebKitWebFrame *frame, gpointer data)
318 {
319         return client_new(NULL);
320 }
321
322 void
323 cooperation_setup(void)
324 {
325         GIOChannel *towatch;
326         gchar *fifofilename, *fifopath;
327
328         fifofilename = g_strdup_printf("%s-%s", __NAME__".fifo", fifo_suffix);
329         fifopath = g_build_filename(g_get_user_runtime_dir(), fifofilename, NULL);
330         g_free(fifofilename);
331
332         if (!g_file_test(fifopath, G_FILE_TEST_EXISTS))
333                 mkfifo(fifopath, 0600);
334
335         cooperative_pipe_fp = open(fifopath, O_WRONLY | O_NONBLOCK);
336         if (!cooperative_pipe_fp)
337         {
338                 fprintf(stderr, __NAME__": Can't open FIFO at all.\n");
339         }
340         else
341         {
342                 if (write(cooperative_pipe_fp, "", 0) == -1)
343                 {
344                         /* Could not do an empty write to the FIFO which means there's
345                          * no one listening. */
346                         close(cooperative_pipe_fp);
347                         towatch = g_io_channel_new_file(fifopath, "r+", NULL);
348                         g_io_add_watch(towatch, G_IO_IN, (GIOFunc)remote_msg, NULL);
349                 }
350                 else
351                         cooperative_alone = FALSE;
352         }
353
354         g_free(fifopath);
355 }
356
357 void
358 changed_download_progress(GObject *obj, GParamSpec *pspec, gpointer data)
359 {
360         WebKitDownload *download = WEBKIT_DOWNLOAD(obj);
361         GtkToolItem *tb = GTK_TOOL_ITEM(data);
362         gdouble p;
363         const gchar *uri;
364         gchar *t, *filename, *base;
365
366         p = webkit_download_get_progress(download) * 100;
367
368         uri = webkit_download_get_destination_uri(download);
369         filename = g_filename_from_uri(uri, NULL, NULL);
370         if (filename == NULL)
371         {
372                 /* This really should not happen because WebKit uses that URI to
373                  * write to a file... */
374                 fprintf(stderr, __NAME__": Could not construct file name from URI!\n");
375                 t = g_strdup_printf("%s (%.0f%%)",
376                                     webkit_download_get_suggested_filename(download), p);
377         }
378         else
379         {
380                 base = g_path_get_basename(filename);
381                 t = g_strdup_printf("%s (%.0f%%)", base, p);
382                 g_free(filename);
383                 g_free(base);
384         }
385         gtk_tool_button_set_label(GTK_TOOL_BUTTON(tb), t);
386         g_free(t);
387 }
388
389 void
390 changed_load_progress(GObject *obj, GParamSpec *pspec, gpointer data)
391 {
392         struct Client *c = (struct Client *)data;
393         gdouble p;
394
395         p = webkit_web_view_get_progress(WEBKIT_WEB_VIEW(c->web_view));
396         gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(c->progress), p);
397 }
398
399 void
400 changed_title(GObject *obj, GParamSpec *pspec, gpointer data)
401 {
402         const gchar *t;
403         struct Client *c = (struct Client *)data;
404
405         t = webkit_web_view_get_title(WEBKIT_WEB_VIEW(c->web_view));
406         gtk_window_set_title(GTK_WINDOW(c->win), (t == NULL ? __NAME__ : t));
407 }
408
409 void
410 changed_uri(GObject *obj, GParamSpec *pspec, gpointer data)
411 {
412         const gchar *t;
413         struct Client *c = (struct Client *)data;
414
415         t = webkit_web_view_get_uri(WEBKIT_WEB_VIEW(c->web_view));
416         gtk_entry_set_text(GTK_ENTRY(c->location), (t == NULL ? __NAME__ : t));
417 }
418
419 gboolean
420 download_handle(WebKitWebView *web_view, WebKitDownload *download, gpointer data)
421 {
422         struct Client *c = (struct Client *)data;
423         gchar *path, *path2 = NULL, *uri;
424         GtkToolItem *tb;
425         gboolean ret;
426         int suffix = 1;
427
428         path = g_build_filename(download_dir,
429                                 webkit_download_get_suggested_filename(download),
430                                 NULL);
431         path2 = g_strdup(path);
432         while (g_file_test(path2, G_FILE_TEST_EXISTS) && suffix < 1000)
433         {
434                 g_free(path2);
435
436                 path2 = g_strdup_printf("%s.%d", path, suffix);
437                 suffix++;
438         }
439
440         if (suffix == 1000)
441         {
442                 fprintf(stderr, __NAME__": Suffix reached limit for download.\n");
443                 ret = FALSE;
444         }
445         else
446         {
447                 uri = g_filename_to_uri(path2, NULL, NULL);
448                 webkit_download_set_destination_uri(download, uri);
449                 ret = TRUE;
450                 g_free(uri);
451
452                 gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(c->status), 1);
453                 downloads_indicated++;
454                 g_timeout_add(500, download_reset_indicator, c);
455
456                 tb = gtk_tool_button_new_from_stock(GTK_STOCK_DELETE);
457                 gtk_tool_button_set_label(GTK_TOOL_BUTTON(tb),
458                                           webkit_download_get_suggested_filename(download));
459                 gtk_toolbar_insert(GTK_TOOLBAR(dm.toolbar), tb, 0);
460                 gtk_widget_show_all(dm.toolbar);
461
462                 g_signal_connect(G_OBJECT(download), "notify::progress",
463                                  G_CALLBACK(changed_download_progress), tb);
464
465                 g_object_ref(download);
466                 g_signal_connect(G_OBJECT(tb), "clicked",
467                                  G_CALLBACK(downloadmanager_cancel), download);
468         }
469
470         g_free(path);
471         g_free(path2);
472
473         return ret;
474 }
475
476 gboolean
477 download_reset_indicator(gpointer data)
478 {
479         struct Client *c = (struct Client *)data;
480
481         downloads_indicated--;
482         if (downloads_indicated == 0)
483                 gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(c->status), 0);
484
485         return FALSE;
486 }
487
488 gboolean
489 download_request(WebKitWebView *web_view, WebKitWebFrame *frame,
490                  WebKitNetworkRequest *request, gchar *mime_type,
491                  WebKitWebPolicyDecision *policy_decision, gpointer data)
492 {
493         if (!webkit_web_view_can_show_mime_type(web_view, mime_type))
494         {
495                 webkit_web_policy_decision_download(policy_decision);
496                 return TRUE;
497         }
498         return FALSE;
499 }
500
501 void
502 downloadmanager_cancel(GtkToolButton *tb, gpointer data)
503 {
504         WebKitDownload *download = WEBKIT_DOWNLOAD(data);
505
506         webkit_download_cancel(download);
507         g_object_unref(download);
508
509         gtk_widget_destroy(GTK_WIDGET(tb));
510 }
511
512 void
513 downloadmanager_setup(void)
514 {
515         dm.win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
516         gtk_window_set_type_hint(GTK_WINDOW(dm.win), GDK_WINDOW_TYPE_HINT_DIALOG);
517         gtk_window_set_default_size(GTK_WINDOW(dm.win), 500, 250);
518         gtk_window_set_title(GTK_WINDOW(dm.win), __NAME__" - Download Manager");
519         g_signal_connect(G_OBJECT(dm.win), "delete-event",
520                          G_CALLBACK(gtk_widget_hide_on_delete), NULL);
521         g_signal_connect(G_OBJECT(dm.win), "key-press-event",
522                          G_CALLBACK(key_downloadmanager), NULL);
523
524         dm.toolbar = gtk_toolbar_new();
525         gtk_orientable_set_orientation(GTK_ORIENTABLE(dm.toolbar),
526                                        GTK_ORIENTATION_VERTICAL);
527         gtk_toolbar_set_style(GTK_TOOLBAR(dm.toolbar), GTK_TOOLBAR_BOTH_HORIZ);
528         gtk_toolbar_set_show_arrow(GTK_TOOLBAR(dm.toolbar), FALSE);
529
530         dm.scroll = gtk_scrolled_window_new(NULL, NULL);
531         gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(dm.scroll),
532                                        GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
533         gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(dm.scroll),
534                                               dm.toolbar);
535
536         gtk_container_add(GTK_CONTAINER(dm.win), dm.scroll);
537 }
538
539 gchar *
540 ensure_uri_scheme(const gchar *t)
541 {
542         gchar *f;
543
544         f = g_ascii_strdown(t, -1);
545         if (!g_str_has_prefix(f, "http:") &&
546             !g_str_has_prefix(f, "https:") &&
547             !g_str_has_prefix(f, "file:") &&
548             !g_str_has_prefix(f, "about:"))
549         {
550                 g_free(f);
551                 f = g_strdup_printf("http://%s", t);
552                 return f;
553         }
554         else
555                 return g_strdup(t);
556 }
557
558 void
559 grab_environment_configuration(void)
560 {
561         const gchar *e;
562
563         e = g_getenv(__NAME_UPPERCASE__"_ACCEPTED_LANGUAGE");
564         if (e != NULL)
565                 accepted_language = g_strdup(e);
566
567         e = g_getenv(__NAME_UPPERCASE__"_DOWNLOAD_DIR");
568         if (e != NULL)
569                 download_dir = g_strdup(e);
570
571         e = g_getenv(__NAME_UPPERCASE__"_FIFO_SUFFIX");
572         if (e != NULL)
573                 fifo_suffix = g_strdup(e);
574
575         e = g_getenv(__NAME_UPPERCASE__"_HOME_URI");
576         if (e != NULL)
577                 home_uri = g_strdup(e);
578
579         e = g_getenv(__NAME_UPPERCASE__"_USER_AGENT");
580         if (e != NULL)
581                 user_agent = g_strdup(e);
582
583         e = g_getenv(__NAME_UPPERCASE__"_ZOOM");
584         if (e != NULL)
585                 global_zoom = atof(e);
586 }
587
588 void
589 hover_web_view(WebKitWebView *web_view, gchar *title, gchar *uri, gpointer data)
590 {
591         struct Client *c = (struct Client *)data;
592
593         if (!gtk_widget_is_focus(c->location))
594         {
595                 if (uri == NULL)
596                         gtk_entry_set_text(GTK_ENTRY(c->location),
597                                            webkit_web_view_get_uri(WEBKIT_WEB_VIEW(c->web_view)));
598                 else
599                         gtk_entry_set_text(GTK_ENTRY(c->location), uri);
600         }
601 }
602
603 gboolean
604 key_downloadmanager(GtkWidget *widget, GdkEvent *event, gpointer data)
605 {
606         if (event->type == GDK_KEY_PRESS)
607         {
608                 if (((GdkEventKey *)event)->state & GDK_MOD1_MASK)
609                 {
610                         switch (((GdkEventKey *)event)->keyval)
611                         {
612                                 case GDK_KEY_d:  /* close window (left hand) */
613                                         gtk_widget_hide(dm.win);
614                                         return TRUE;
615                         }
616                 }
617         }
618
619         return FALSE;
620 }
621
622 gboolean
623 key_location(GtkWidget *widget, GdkEvent *event, gpointer data)
624 {
625         struct Client *c = (struct Client *)data;
626         const gchar *t;
627         gchar *f;
628
629         if (event->type == GDK_KEY_PRESS)
630         {
631                 if (((GdkEventKey *)event)->state & GDK_MOD1_MASK)
632                 {
633                         switch (((GdkEventKey *)event)->keyval)
634                         {
635                                 case GDK_KEY_q:  /* close window (left hand) */
636                                         gtk_widget_destroy(c->win);
637                                         return TRUE;
638                                 case GDK_KEY_d:  /* download manager (left hand) */
639                                         gtk_widget_show_all(dm.win);
640                                         return TRUE;
641                                 case GDK_KEY_r:  /* reload (left hand) */
642                                         webkit_web_view_reload_bypass_cache(WEBKIT_WEB_VIEW(
643                                                                             c->web_view));
644                                         return TRUE;
645                                 case GDK_KEY_k:  /* initiate search (BOTH hands) */
646                                         gtk_entry_set_text(GTK_ENTRY(c->location), "/");
647                                         gtk_editable_set_position(GTK_EDITABLE(c->location), -1);
648                                         return TRUE;
649                         }
650                 }
651                 else
652                 {
653                         switch (((GdkEventKey *)event)->keyval)
654                         {
655                                 case GDK_KEY_Return:
656                                         gtk_widget_grab_focus(c->web_view);
657                                         t = gtk_entry_get_text(GTK_ENTRY(c->location));
658                                         if (t != NULL && t[0] == '/')
659                                         {
660                                                 if (search_text != NULL)
661                                                         g_free(search_text);
662                                                 search_text = g_strdup(t + 1);  /* XXX whacky */
663                                                 search(c, 1);
664                                         }
665                                         else if (!keywords_try_search(WEBKIT_WEB_VIEW(c->web_view), t))
666                                         {
667                                                 f = ensure_uri_scheme(t);
668                                                 if (show_all_requests)
669                                                         fprintf(stderr, "====> %s\n", f);
670                                                 webkit_web_view_load_uri(WEBKIT_WEB_VIEW(c->web_view), f);
671                                                 g_free(f);
672                                         }
673                                         return TRUE;
674                                 case GDK_KEY_Escape:
675                                         t = webkit_web_view_get_uri(WEBKIT_WEB_VIEW(c->web_view));
676                                         gtk_entry_set_text(GTK_ENTRY(c->location),
677                                                            (t == NULL ? __NAME__ : t));
678                                         return TRUE;
679                         }
680                 }
681         }
682
683         return FALSE;
684 }
685
686 gboolean
687 key_web_view(GtkWidget *widget, GdkEvent *event, gpointer data)
688 {
689         struct Client *c = (struct Client *)data;
690         WebKitHitTestResultContext ht_context;
691         WebKitHitTestResult *ht_result = NULL;
692         gchar *ht_uri = NULL, *f;
693         gfloat z;
694         gboolean b;
695
696         if (event->type == GDK_KEY_PRESS)
697         {
698                 if (((GdkEventKey *)event)->state & GDK_MOD1_MASK)
699                 {
700                         switch (((GdkEventKey *)event)->keyval)
701                         {
702                                 case GDK_KEY_q:  /* close window (left hand) */
703                                         gtk_widget_destroy(c->win);
704                                         return TRUE;
705                                 case GDK_KEY_w:  /* home (left hand) */
706                                         f = ensure_uri_scheme(home_uri);
707                                         if (show_all_requests)
708                                                 fprintf(stderr, "====> %s\n", f);
709                                         webkit_web_view_load_uri(WEBKIT_WEB_VIEW(c->web_view), f);
710                                         g_free(f);
711                                         return TRUE;
712                                 case GDK_KEY_e:  /* new tab (left hand) */
713                                         f = ensure_uri_scheme(home_uri);
714                                         if (show_all_requests)
715                                                 fprintf(stderr, "====> %s\n", f);
716                                         client_new(f);
717                                         g_free(f);
718                                         return TRUE;
719                                 case GDK_KEY_r:  /* reload (left hand) */
720                                         webkit_web_view_reload_bypass_cache(WEBKIT_WEB_VIEW(
721                                                                             c->web_view));
722                                         return TRUE;
723                                 case GDK_KEY_s:  /* toggle source view (left hand) */
724                                         b = webkit_web_view_get_view_source_mode(WEBKIT_WEB_VIEW(
725                                                                                  c->web_view));
726                                         b = !b;
727                                         webkit_web_view_set_view_source_mode(WEBKIT_WEB_VIEW(
728                                                                              c->web_view), b);
729                                         webkit_web_view_reload(WEBKIT_WEB_VIEW(c->web_view));
730                                         return TRUE;
731                                 case GDK_KEY_d:  /* download manager (left hand) */
732                                         gtk_widget_show_all(dm.win);
733                                         return TRUE;
734                                 case GDK_KEY_2:  /* search forward (left hand) */
735                                 case GDK_KEY_n:  /* search forward (maybe both hands) */
736                                         search(c, 1);
737                                         return TRUE;
738                                 case GDK_KEY_3:  /* search backward (left hand) */
739                                         search(c, -1);
740                                         return TRUE;
741                                 case GDK_KEY_l:  /* location (BOTH hands) */
742                                         gtk_widget_grab_focus(c->location);
743                                         return TRUE;
744                                 case GDK_KEY_k:  /* initiate search (BOTH hands) */
745                                         gtk_widget_grab_focus(c->location);
746                                         gtk_entry_set_text(GTK_ENTRY(c->location), "/");
747                                         gtk_editable_set_position(GTK_EDITABLE(c->location), -1);
748                                         return TRUE;
749                         }
750                 }
751                 else if (((GdkEventKey *)event)->keyval == GDK_KEY_Escape)
752                 {
753                         webkit_web_view_stop_loading(WEBKIT_WEB_VIEW(c->web_view));
754                         gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(c->progress), 0);
755                 }
756         }
757         else if (event->type == GDK_BUTTON_PRESS)
758         {
759                 switch (((GdkEventButton *)event)->button)
760                 {
761                         case 2:
762                                 ht_result = webkit_web_view_get_hit_test_result(
763                                                                    WEBKIT_WEB_VIEW(c->web_view),
764                                                                        (GdkEventButton *)event);
765                                 g_object_get(ht_result, "context", &ht_context, NULL);
766                                 if (ht_context & WEBKIT_HIT_TEST_RESULT_CONTEXT_LINK)
767                                 {
768                                         g_object_get(ht_result, "link-uri", &ht_uri, NULL);
769                                         client_new(ht_uri);
770                                         g_object_unref(ht_result);
771                                         return TRUE;
772                                 }
773                                 g_object_unref(ht_result);
774                                 break;
775                         case 8:
776                                 webkit_web_view_go_back(WEBKIT_WEB_VIEW(c->web_view));
777                                 return TRUE;
778                         case 9:
779                                 webkit_web_view_go_forward(WEBKIT_WEB_VIEW(c->web_view));
780                                 return TRUE;
781                 }
782         }
783         else if (event->type == GDK_SCROLL)
784         {
785                 if (((GdkEventScroll *)event)->state & GDK_MOD1_MASK ||
786                     ((GdkEventScroll *)event)->state & GDK_CONTROL_MASK)
787                 {
788                         switch (((GdkEventScroll *)event)->direction)
789                         {
790                                 case GDK_SCROLL_UP:
791                                         z = webkit_web_view_get_zoom_level(WEBKIT_WEB_VIEW(
792                                                                                      c->web_view));
793                                         z += 0.1;
794                                         webkit_web_view_set_zoom_level(WEBKIT_WEB_VIEW(c->web_view),
795                                                                        z);
796                                         return TRUE;
797                                 case GDK_SCROLL_DOWN:
798                                         z = webkit_web_view_get_zoom_level(WEBKIT_WEB_VIEW(
799                                                                                      c->web_view));
800                                         z -= 0.1;
801                                         webkit_web_view_set_zoom_level(WEBKIT_WEB_VIEW(c->web_view),
802                                                                        z);
803                                         return TRUE;
804                                 default:
805                                         break;
806                         }
807                 }
808         }
809
810         return FALSE;
811 }
812
813 void
814 keywords_load(void)
815 {
816         GError *err = NULL;
817         GIOChannel *channel = NULL;
818         gchar *path = NULL, *buf = NULL;
819         gchar **tokens = NULL;
820
821         keywords = g_hash_table_new(g_str_hash, g_str_equal);
822
823         path = g_build_filename(g_get_user_config_dir(), __NAME__, "keywordsearch",
824                                 NULL);
825         channel = g_io_channel_new_file(path, "r", &err);
826         if (channel != NULL)
827         {
828                 while (g_io_channel_read_line(channel, &buf, NULL, NULL, NULL)
829                        == G_IO_STATUS_NORMAL)
830                 {
831                         g_strstrip(buf);
832                         if (buf[0] != '#')
833                         {
834                                 tokens = g_strsplit(buf, " ", 2);
835                                 if (tokens[0] != NULL && tokens[1] != NULL)
836                                         g_hash_table_insert(keywords, g_strdup(tokens[0]),
837                                                             g_strdup(tokens[1]));
838                                 g_strfreev(tokens);
839                         }
840                         g_free(buf);
841                 }
842                 g_io_channel_shutdown(channel, FALSE, NULL);
843         }
844         g_free(path);
845 }
846
847 gboolean
848 keywords_try_search(WebKitWebView *web_view, const gchar *t)
849 {
850         gboolean ret = FALSE;
851         gchar **tokens = NULL;
852         gchar *val = NULL, *uri = NULL;
853
854         tokens = g_strsplit(t, " ", 2);
855         if (tokens[0] != NULL && tokens[1] != NULL)
856         {
857                 val = g_hash_table_lookup(keywords, tokens[0]);
858                 if (val != NULL)
859                 {
860                         uri = g_strdup_printf((gchar *)val, tokens[1]);
861                         if (show_all_requests)
862                                 fprintf(stderr, "====> %s\n", uri);
863                         webkit_web_view_load_uri(web_view, uri);
864                         g_free(uri);
865                         ret = TRUE;
866                 }
867         }
868         g_strfreev(tokens);
869
870         return ret;
871 }
872
873 gboolean
874 remote_msg(GIOChannel *channel, GIOCondition condition, gpointer data)
875 {
876         gchar *uri = NULL;
877
878         g_io_channel_read_line(channel, &uri, NULL, NULL, NULL);
879         if (uri)
880         {
881                 g_strstrip(uri);
882                 client_new(uri);
883                 g_free(uri);
884         }
885         return TRUE;
886 }
887
888 void
889 search(gpointer data, gint direction)
890 {
891         struct Client *c = (struct Client *)data;
892
893         if (search_text == NULL)
894                 return;
895
896         webkit_web_view_search_text(WEBKIT_WEB_VIEW(c->web_view), search_text,
897                                     FALSE, direction == 1, TRUE);
898 }
899
900 Window
901 tabbed_launch(void)
902 {
903         gint tabbed_stdout;
904         GIOChannel *tabbed_stdout_channel;
905         GError *err = NULL;
906         gchar *output = NULL;
907         char *argv[] = { "tabbed", "-c", "-d", "-p", "s1", "-n", __NAME__, NULL };
908         Window plug_into;
909
910         if (!g_spawn_async_with_pipes(NULL, argv, NULL, G_SPAWN_SEARCH_PATH, NULL,
911                                       NULL, NULL, NULL, &tabbed_stdout, NULL,
912                                       &err))
913         {
914                 fprintf(stderr, __NAME__": Could not launch tabbed: %s\n", err->message);
915                 g_error_free(err);
916                 return 0;
917         }
918
919         tabbed_stdout_channel = g_io_channel_unix_new(tabbed_stdout);
920         if (tabbed_stdout_channel == NULL)
921         {
922                 fprintf(stderr, __NAME__": Could open tabbed's stdout\n");
923                 return 0;
924         }
925         g_io_channel_read_line(tabbed_stdout_channel, &output, NULL, NULL, NULL);
926         g_io_channel_shutdown(tabbed_stdout_channel, FALSE, NULL);
927         if (output == NULL)
928         {
929                 fprintf(stderr, __NAME__": Could not read XID from tabbed\n");
930                 return 0;
931         }
932         g_strstrip(output);
933         plug_into = strtol(output, NULL, 16);
934         g_free(output);
935         if (plug_into == 0)
936                 fprintf(stderr, __NAME__": The XID from tabbed is 0\n");
937         return plug_into;
938 }
939
940 void
941 usage(void)
942 {
943         fprintf(stderr, "Usage: "__NAME__" [OPTION]... [URI]...\n");
944         exit(EXIT_FAILURE);
945 }
946
947
948 int
949 main(int argc, char **argv)
950 {
951         int opt, i;
952
953         gtk_init(&argc, &argv);
954
955         grab_environment_configuration();
956
957         while ((opt = getopt(argc, argv, "e:rCT")) != -1)
958         {
959                 switch (opt)
960                 {
961                         case 'e':
962                                 embed = atol(optarg);
963                                 tabbed_automagic = FALSE;
964                                 break;
965                         case 'r':
966                                 show_all_requests = TRUE;
967                                 break;
968                         case 'C':
969                                 cooperative_instances = FALSE;
970                                 break;
971                         case 'T':
972                                 tabbed_automagic = FALSE;
973                                 break;
974                         default:
975                                 usage();
976                 }
977         }
978
979         adblock_load();
980         keywords_load();
981         cooperation_setup();
982         downloadmanager_setup();
983
984         if (tabbed_automagic && !(cooperative_instances && !cooperative_alone))
985                 embed = tabbed_launch();
986
987         if (optind >= argc)
988                 client_new(home_uri);
989         else
990         {
991                 for (i = optind; i < argc; i++)
992                         client_new(argv[i]);
993         }
994
995         if (!cooperative_instances || cooperative_alone)
996                 gtk_main();
997         exit(EXIT_SUCCESS);
998 }