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