webkitpdf.vala
[app.webkitpdf] / webkitpdf.vala
1
2 /*
3  sudo valac   --vapidir=. --thread  webkitpdf.vala  BrowserWindow.vala  --vapidir=./vapi \
4     --pkg glib-2.0 --pkg webkit-1.0 --pkg gtk+-2.0 -o /usr/bin/webkitpdf --target-glib=2.32 
5     
6     
7 */
8 public class webkitpdf {
9  
10     public static string? opt_url = null;
11         public static uint opt_delay = 0;
12         public static string? opt_target_png = null;
13         public static string? opt_target_pdf = null;    
14         public static string[] opt_inject_js;
15         const OptionEntry[] options = {
16                 
17                         
18                         { "url", 0, 0, OptionArg.STRING, ref opt_url, "Url to grab", null },
19                         { "delay", 0, 0, OptionArg.INT, ref opt_delay, "Delay before snapshot in seconds", null },
20                         { "png", 0, 0, OptionArg.STRING, ref opt_target_png, "File to write (PNG)", null },
21                         { "inject", 0, 0, OptionArg.STRING_ARRAY, ref opt_inject_js, "Inject Javascript file(s)", null },
22                         { "pdf", 0, 0, OptionArg.STRING, ref opt_target_pdf, "File to write (PDF)", null },
23                         { null }
24         };
25     public static int main(string[] args) 
26     {
27         Gtk.init(ref args);
28                  
29                 unowned string proxy = Environment.get_variable ("http_proxy");
30                 if (proxy != null && proxy.length > 0) {
31                         var sess = WebKit.get_default_session();
32                         sess.proxy_uri = new Soup.URI(proxy);
33                 }
34                 
35         var opt_context = new OptionContext ("webkitpdf");
36                 
37                 
38                 try {
39                         opt_context.set_help_enabled (true);
40                         opt_context.add_main_entries (options, null);
41                         opt_context.parse (ref args);
42                         
43             if (webkitpdf.opt_url == null) {
44                 throw new OptionError.BAD_VALUE("missing url");
45             }
46                         if (webkitpdf.opt_target_png == null && webkitpdf.opt_target_pdf == null) {
47                 throw new OptionError.BAD_VALUE("missing pdf or png filename");
48             }
49             
50
51                 } catch (OptionError e) {
52                         stdout.printf ("error: %s\n", e.message);
53                         stdout.printf ("Run '%s --help' to see a full list of available command line options.\n %s", 
54                                          args[0], opt_context.get_help(true,null));
55                         return 0;
56                 }
57   
58         var browser = new BrowserWindow();
59         browser.el.show_all();
60  /*
61                 var ses = WebKit.get_default_session();
62                 ses.request_queued.connect((msg) => {
63                         print("queued request %s\n", msg.uri.to_string(false));
64                         msg.got_headers.connect(() => {
65                                 print("got conent type %s\n", msg.response_headers.get_content_type (null));
66                                 if (msg.response_headers.get_content_type (null) == "image/jpeg") {
67                                         ses.cancel_message(msg,Soup.KnownStatusCode.CANCELLED);
68                                 }
69                         });                     
70                 });
71  */
72  
73         Gtk.main();
74  
75         return 0;
76     }
77 }
78
79
80