X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=BrowserWindow.vala;h=25a8a420b8548752a06b1a00f4db829cc53b3890;hb=844476985e1802ff6a09dc128c63f8b995f05ca4;hp=e2a0a0a2f8d44dee1e144b4b9e1f83f27e672cd1;hpb=8e7caa0351862068de896952bf6facdfa4c56569;p=app.webkitpdf diff --git a/BrowserWindow.vala b/BrowserWindow.vala index e2a0a0a..25a8a42 100644 --- a/BrowserWindow.vala +++ b/BrowserWindow.vala @@ -4,7 +4,7 @@ public class BrowserWindow : Object { public Gtk.Window el; private BrowserWindow _this; - + private string cookie_file; public static BrowserWindow singleton() { if (_BrowserWindow == null) { @@ -64,18 +64,21 @@ 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); + cookie_manager.set_accept_policy(WebKit.CookieAcceptPolicy.NEVER); string scheme = uri.get_scheme (); var ssl = "FALSE"; if (scheme=="https") { ssl="TRUE"; } - try { - File file = File.new_for_path(GLib.Environment.get_user_cache_dir() + "/cookie.txt" ); - print("setting cookie file%s\n",file.get_path()); - FileOutputStream ostream = file.replace (null, false, FileCreateFlags.NONE); - DataOutputStream dostream = new DataOutputStream (ostream); - + 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) { @@ -84,7 +87,7 @@ public class BrowserWindow : Object #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 @@ -105,6 +108,7 @@ public class BrowserWindow : Object if (cd < 1) { print("calling printit - timed out"); _this.view.printit(); + return false; } return true;