X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=BrowserWindow.vala;h=73ac9cee7f5aa85add2f4bb51503ca1d13c2a6b4;hb=8847a28e69f86c7ca52bda090096ddfc94c2bf6f;hp=c1b21080d32724a0cfdc5bf5a44567432445b247;hpb=b01864e24df50f02a4672e7f0ce906a476e52fae;p=app.webkitpdf diff --git a/BrowserWindow.vala b/BrowserWindow.vala index c1b2108..73ac9ce 100644 --- a/BrowserWindow.vala +++ b/BrowserWindow.vala @@ -4,7 +4,7 @@ public class BrowserWindow : Object { public Gtk.Window el; private BrowserWindow _this; - + public string cookie_file; public static BrowserWindow singleton() { if (_BrowserWindow == null) { @@ -32,6 +32,7 @@ public class BrowserWindow : Object //listeners this.el.destroy.connect( () => { + Gtk.main_quit(); }); this.el.show.connect( () => { @@ -64,20 +65,30 @@ public class BrowserWindow : Object #if GTK3 var context = WebKit.WebContext.get_default(); var cookie_manager = context.get_cookie_manager(); - cookie_manager.set_accept_policy(WebKit.CookieAcceptPolicy.ALWAYS); - string scheme = uri.get_scheme (); - try { - File file = File.new_for_path(GLib.Environment.get_user_cache_dir() + '/cookie.txt' ); - FileOutputStream ostream = file.replace (null, false, FileCreateFlags.NONE); - DataOutputStream dostream = new DataOutputStream (ostream); - dostream.put_string ("my-line\n"); + cookie_manager.set_accept_policy(WebKit.CookieAcceptPolicy.NEVER); + string scheme = uri.get_scheme (); + var ssl = "FALSE"; + if (scheme=="https") { + ssl="TRUE"; + } + try { + FileIOStream iostream; + File file = File.new_tmp ("cookie-XXXXXX.txt", out iostream); + this.cookie_file = file.get_path (); + print("cookie tmp file name: %s\n", file.get_path ()); + + OutputStream ostream = iostream.output_stream; + DataOutputStream dostream = new DataOutputStream (ostream); + + dostream.put_string (uri.get_host() + "\tTRUE\t/\t"+ssl+"\t2147483647\t" + cookies[0] + "\t" + cookies[1] ); + cookie_manager.set_persistent_storage(file.get_path(), WebKit.CookiePersistentStorage.TEXT); } catch (Error e) { stdout.printf ("Error: %s\n", e.message); } #else var sess = WebKit.get_default_session(); var cookie_jar = new Soup.CookieJar(); - cookie_jar.set_accept_policy(Soup.CookieJarAcceptPolicy.ALWAYS); + cookie_jar.set_accept_policy(Soup.CookieJarAcceptPolicy.NEVER); cookie_jar.add_cookie(new Soup.Cookie (cookies[0], cookies[1], uri.get_host(), "/", -1)); sess.add_feature(cookie_jar); #endif @@ -98,6 +109,7 @@ public class BrowserWindow : Object if (cd < 1) { print("calling printit - timed out"); _this.view.printit(); + return false; } return true; @@ -305,6 +317,7 @@ public class BrowserWindow : Object pe.set_page_setup(psetup); pe.finished.connect( () => { print("print completed\n"); + Gtk.main_quit(); });