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