WebFrameNetworkingContext.cpp 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /*
  2. * Copyright (C) 2013 Apple Inc. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. * 1. Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * 2. Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. *
  13. * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
  14. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  15. * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  16. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
  17. * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  18. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  19. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  20. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  21. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  22. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  23. * THE POSSIBILITY OF SUCH DAMAGE.
  24. */
  25. #include "config.h"
  26. #include "WebFrameNetworkingContext.h"
  27. #include "WebView.h"
  28. #if USE(CFNETWORK)
  29. #include <CFNetwork/CFHTTPCookiesPriv.h>
  30. #endif
  31. #include <WebCore/FrameLoader.h>
  32. #include <WebCore/FrameLoaderClient.h>
  33. #include <WebCore/NetworkStorageSession.h>
  34. #include <WebCore/Page.h>
  35. #include <WebCore/ResourceError.h>
  36. #include <WebCore/Settings.h>
  37. #include <WebKitSystemInterface/WebKitSystemInterface.h>
  38. using namespace WebCore;
  39. static NetworkStorageSession* privateSession;
  40. static String* identifierBase;
  41. #if USE(CFNETWORK)
  42. void WebFrameNetworkingContext::setCookieAcceptPolicyForAllContexts(WebKitCookieStorageAcceptPolicy policy)
  43. {
  44. if (RetainPtr<CFHTTPCookieStorageRef> cookieStorage = NetworkStorageSession::defaultStorageSession().cookieStorage())
  45. CFHTTPCookieStorageSetCookieAcceptPolicy(cookieStorage.get(), policy);
  46. if (privateSession)
  47. CFHTTPCookieStorageSetCookieAcceptPolicy(privateSession->cookieStorage().get(), policy);
  48. }
  49. #endif
  50. void WebFrameNetworkingContext::setPrivateBrowsingStorageSessionIdentifierBase(const String& base)
  51. {
  52. ASSERT(isMainThread());
  53. delete identifierBase;
  54. identifierBase = new String(base);
  55. }
  56. void WebFrameNetworkingContext::ensurePrivateBrowsingSession()
  57. {
  58. #if USE(CF_NETWORK)
  59. ASSERT(isMainThread());
  60. if (privateSession)
  61. return;
  62. String base;
  63. if (!identifierBase)
  64. base = CFBundleGetValueForInfoDictionaryKey(CFBundleGetMainBundle(), kCFBundleIdentifierKey);
  65. else
  66. base = *identifierBase;
  67. privateSession = NetworkStorageSession::createPrivateBrowsingSession(base).leakPtr();
  68. #endif
  69. }
  70. void WebFrameNetworkingContext::destroyPrivateBrowsingSession()
  71. {
  72. ASSERT(isMainThread());
  73. delete privateSession;
  74. privateSession = 0;
  75. }
  76. ResourceError WebFrameNetworkingContext::blockedError(const ResourceRequest& request) const
  77. {
  78. return frame()->loader()->client()->blockedError(request);
  79. }
  80. String WebFrameNetworkingContext::referrer() const
  81. {
  82. return frame()->loader()->referrer();
  83. }
  84. NetworkStorageSession& WebFrameNetworkingContext::storageSession() const
  85. {
  86. ASSERT(isMainThread());
  87. if (frame() && frame()->settings() && frame()->settings()->privateBrowsingEnabled())
  88. return *privateSession;
  89. return NetworkStorageSession::defaultStorageSession();
  90. }