// Copyright © 2015 The CefSharp Authors. All rights reserved. // // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. #include "Stdafx.h" #include "CookieManager.h" #include "Internals\CefCookieVisitorAdapter.h" #include "Internals\CefCompletionCallbackAdapter.h" #include "Internals\CefSetCookieCallbackAdapter.h" #include "Internals\CefDeleteCookiesCallbackAdapter.h" using namespace CefSharp::Internals; namespace CefSharp { void CookieManager::ThrowIfDisposed() { if (_cookieManager.get() == nullptr) { throw gcnew ObjectDisposedException("CookieManager"); } } bool CookieManager::DeleteCookies(String^ url, String^ name, IDeleteCookiesCallback^ callback) { ThrowIfDisposed(); CefRefPtr wrapper = callback == nullptr ? NULL : new CefDeleteCookiesCallbackAdapter(callback); return _cookieManager->DeleteCookies(StringUtils::ToNative(url), StringUtils::ToNative(name), wrapper); } bool CookieManager::SetCookie(String^ url, Cookie^ cookie, ISetCookieCallback^ callback) { ThrowIfDisposed(); CefRefPtr wrapper = callback == nullptr ? NULL : new CefSetCookieCallbackAdapter(callback); CefCookie c; StringUtils::AssignNativeFromClr(c.name, cookie->Name); StringUtils::AssignNativeFromClr(c.value, cookie->Value); StringUtils::AssignNativeFromClr(c.domain, cookie->Domain); StringUtils::AssignNativeFromClr(c.path, cookie->Path); c.secure = cookie->Secure; c.httponly = cookie->HttpOnly; c.has_expires = cookie->Expires.HasValue; if (cookie->Expires.HasValue) { auto expires = cookie->Expires.Value; c.expires = CefTime(DateTimeUtils::ToCefTime(expires)); } c.creation = CefTime(DateTimeUtils::ToCefTime(cookie->Creation)); c.last_access = CefTime(DateTimeUtils::ToCefTime(cookie->LastAccess)); return _cookieManager->SetCookie(StringUtils::ToNative(url), c, wrapper); } void CookieManager::SetSupportedSchemes(cli::array^ schemes, bool includeDefaults, ICompletionCallback^ callback) { ThrowIfDisposed(); CefRefPtr wrapper = callback == nullptr ? NULL : new CefCompletionCallbackAdapter(callback); _cookieManager->SetSupportedSchemes(StringUtils::ToNative(schemes), includeDefaults, wrapper); } bool CookieManager::VisitAllCookies(ICookieVisitor^ visitor) { ThrowIfDisposed(); CefRefPtr cookieVisitor = new CefCookieVisitorAdapter(visitor); return _cookieManager->VisitAllCookies(cookieVisitor); } bool CookieManager::VisitUrlCookies(String^ url, bool includeHttpOnly, ICookieVisitor^ visitor) { ThrowIfDisposed(); CefRefPtr cookieVisitor = new CefCookieVisitorAdapter(visitor); return _cookieManager->VisitUrlCookies(StringUtils::ToNative(url), includeHttpOnly, cookieVisitor); } bool CookieManager::FlushStore(ICompletionCallback^ callback) { ThrowIfDisposed(); CefRefPtr wrapper = callback == nullptr ? NULL : new CefCompletionCallbackAdapter(callback); return _cookieManager->FlushStore(wrapper); } }