1 | /* |
2 | * Copyright (C) 2012 Igalia S.L. |
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 IGALIA S.L. ``AS IS'' AND ANY |
14 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
15 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
16 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR |
17 | * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
18 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
19 | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
20 | * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
21 | * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
22 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
23 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
24 | */ |
25 | |
26 | #include "config.h" |
27 | #include "ResourceError.h" |
28 | |
29 | #if USE(SOUP) |
30 | |
31 | #include "LocalizedStrings.h" |
32 | #include "URLSoup.h" |
33 | #include <libsoup/soup.h> |
34 | #include <wtf/glib/GUniquePtr.h> |
35 | #include <wtf/text/CString.h> |
36 | |
37 | namespace WebCore { |
38 | |
39 | static URL failingURI(SoupURI* soupURI) |
40 | { |
41 | ASSERT(soupURI); |
42 | return soupURIToURL(soupURI); |
43 | } |
44 | |
45 | static URL failingURI(SoupRequest* request) |
46 | { |
47 | ASSERT(request); |
48 | return failingURI(soup_request_get_uri(request)); |
49 | } |
50 | |
51 | ResourceError ResourceError::transportError(SoupRequest* request, int statusCode, const String& reasonPhrase) |
52 | { |
53 | return ResourceError(g_quark_to_string(SOUP_HTTP_ERROR), statusCode, |
54 | failingURI(request), reasonPhrase); |
55 | } |
56 | |
57 | ResourceError ResourceError::httpError(SoupMessage* message, GError* error, SoupRequest* request) |
58 | { |
59 | if (message && SOUP_STATUS_IS_TRANSPORT_ERROR(message->status_code)) |
60 | return transportError(request, message->status_code, |
61 | String::fromUTF8(message->reason_phrase)); |
62 | else |
63 | return genericGError(error, request); |
64 | } |
65 | |
66 | ResourceError ResourceError::authenticationError(SoupMessage* message) |
67 | { |
68 | ASSERT(message); |
69 | return ResourceError(g_quark_to_string(SOUP_HTTP_ERROR), message->status_code, |
70 | failingURI(soup_message_get_uri(message)), String::fromUTF8(message->reason_phrase)); |
71 | } |
72 | |
73 | ResourceError ResourceError::genericGError(GError* error, SoupRequest* request) |
74 | { |
75 | return ResourceError(g_quark_to_string(error->domain), error->code, |
76 | failingURI(request), String::fromUTF8(error->message)); |
77 | } |
78 | |
79 | ResourceError ResourceError::tlsError(const URL& failingURL, unsigned tlsErrors, GTlsCertificate* certificate) |
80 | { |
81 | ResourceError resourceError(g_quark_to_string(SOUP_HTTP_ERROR), SOUP_STATUS_SSL_FAILED, failingURL, unacceptableTLSCertificate()); |
82 | resourceError.setTLSErrors(tlsErrors); |
83 | resourceError.setCertificate(certificate); |
84 | return resourceError; |
85 | } |
86 | |
87 | ResourceError ResourceError::timeoutError(const URL& failingURL) |
88 | { |
89 | // FIXME: This should probably either be integrated into ErrorsGtk.h or the |
90 | // networking errors from that file should be moved here. |
91 | |
92 | // Use the same value as in NSURLError.h |
93 | static const int timeoutError = -1001; |
94 | static const char* const errorDomain = "WebKitNetworkError" ; |
95 | return ResourceError(errorDomain, timeoutError, failingURL, "Request timed out" , ResourceError::Type::Timeout); |
96 | } |
97 | |
98 | void ResourceError::doPlatformIsolatedCopy(const ResourceError& other) |
99 | { |
100 | m_certificate = other.m_certificate; |
101 | m_tlsErrors = other.m_tlsErrors; |
102 | } |
103 | |
104 | bool ResourceError::platformCompare(const ResourceError& a, const ResourceError& b) |
105 | { |
106 | return a.tlsErrors() == b.tlsErrors(); |
107 | } |
108 | |
109 | } // namespace WebCore |
110 | |
111 | #endif |
112 | |