using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using System.Threading; using System.Threading.Tasks; using Alphaleonis.Win32.Filesystem; using Wabbajack.Common; using Xilium.CefGlue; namespace Wabbajack.Lib.LibCefHelpers { public static class Helpers { /// /// We bundle the cef libs inside the .exe, we need to extract them before loading any wpf code that requires them /// public static void ExtractLibs() { if (File.Exists("cefglue.7z") && File.Exists("libcef.dll")) return; using (var fs = File.OpenWrite("cefglue.7z")) using (var rs = Assembly.GetExecutingAssembly().GetManifestResourceStream("Wabbajack.Lib.LibCefHelpers.cefglue.7z")) { rs.CopyTo(fs); Utils.Log("Extracting libCef files"); } using (var wq = new WorkQueue(1)) FileExtractor.ExtractAll(wq, "cefglue.7z", "."); } public static async Task GetCookies(string domainEnding) { var manager = CefCookieManager.GetGlobal(null); var visitor = new CookieVisitor(); if (!manager.VisitAllCookies(visitor)) return new Cookie[0]; var cc = await visitor.Task; return (await visitor.Task).Where(c => c.Domain.EndsWith(domainEnding)).ToArray(); } private class CookieVisitor : CefCookieVisitor { TaskCompletionSource> _source = new TaskCompletionSource>(); public Task> Task => _source.Task; public List Cookies { get; } = new List(); protected override bool Visit(CefCookie cookie, int count, int total, out bool delete) { Cookies.Add(new Cookie { Name = cookie.Name, Value = cookie.Value, Domain = cookie.Domain, Path = cookie.Path }); if (count == total) _source.SetResult(Cookies); delete = false; return true; } protected override void Dispose(bool disposing) { if (disposing) _source.SetResult(Cookies); } } public class Cookie { public string Name { get; set; } public string Value { get; set; } public string Domain { get; set; } public string Path { get; set; } } } }