Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(517)

Side by Side Diff: third_party/WebKit/Source/modules/fetch/RequestInit.cpp

Issue 1446963002: CREDENTIAL: Teach Fetch to handle PasswordCredential objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@opaque
Patch Set: webexposed Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/modules/fetch/RequestInit.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "config.h" 5 #include "config.h"
6 #include "modules/fetch/RequestInit.h" 6 #include "modules/fetch/RequestInit.h"
7 7
8 #include "bindings/core/v8/Dictionary.h" 8 #include "bindings/core/v8/Dictionary.h"
9 #include "bindings/core/v8/V8ArrayBuffer.h" 9 #include "bindings/core/v8/V8ArrayBuffer.h"
10 #include "bindings/core/v8/V8ArrayBufferView.h" 10 #include "bindings/core/v8/V8ArrayBufferView.h"
11 #include "bindings/core/v8/V8Binding.h" 11 #include "bindings/core/v8/V8Binding.h"
12 #include "bindings/core/v8/V8Blob.h" 12 #include "bindings/core/v8/V8Blob.h"
13 #include "bindings/core/v8/V8FormData.h" 13 #include "bindings/core/v8/V8FormData.h"
14 #include "bindings/core/v8/V8URLSearchParams.h" 14 #include "bindings/core/v8/V8URLSearchParams.h"
15 #include "bindings/modules/v8/V8PasswordCredential.h"
16 #include "core/dom/URLSearchParams.h"
15 #include "core/fileapi/Blob.h" 17 #include "core/fileapi/Blob.h"
16 #include "core/html/FormData.h" 18 #include "core/html/FormData.h"
19 #include "modules/credentialmanager/PasswordCredential.h"
17 #include "modules/fetch/FetchBlobDataConsumerHandle.h" 20 #include "modules/fetch/FetchBlobDataConsumerHandle.h"
18 #include "modules/fetch/FetchFormDataConsumerHandle.h" 21 #include "modules/fetch/FetchFormDataConsumerHandle.h"
19 #include "modules/fetch/Headers.h" 22 #include "modules/fetch/Headers.h"
20 #include "platform/blob/BlobData.h" 23 #include "platform/blob/BlobData.h"
21 #include "platform/network/EncodedFormData.h" 24 #include "platform/network/EncodedFormData.h"
22 #include "platform/weborigin/ReferrerPolicy.h" 25 #include "platform/weborigin/ReferrerPolicy.h"
23 26
24 namespace blink { 27 namespace blink {
25 28
26 RequestInit::RequestInit(ExecutionContext* context, const Dictionary& options, E xceptionState& exceptionState) 29 RequestInit::RequestInit(ExecutionContext* context, const Dictionary& options, E xceptionState& exceptionState)
27 : areAnyMembersSet(false) 30 : areAnyMembersSet(false)
31 , isCredentialRequest(false)
28 { 32 {
29 areAnyMembersSet = DictionaryHelper::get(options, "method", method) || areAn yMembersSet; 33 areAnyMembersSet = DictionaryHelper::get(options, "method", method) || areAn yMembersSet;
30 areAnyMembersSet = DictionaryHelper::get(options, "headers", headers) || are AnyMembersSet; 34 areAnyMembersSet = DictionaryHelper::get(options, "headers", headers) || are AnyMembersSet;
31 if (!headers) { 35 if (!headers) {
32 Vector<Vector<String>> headersVector; 36 Vector<Vector<String>> headersVector;
33 if (DictionaryHelper::get(options, "headers", headersVector, exceptionSt ate)) { 37 if (DictionaryHelper::get(options, "headers", headersVector, exceptionSt ate)) {
34 headers = Headers::create(headersVector, exceptionState); 38 headers = Headers::create(headersVector, exceptionState);
35 areAnyMembersSet = true; 39 areAnyMembersSet = true;
36 } else { 40 } else {
37 areAnyMembersSet = DictionaryHelper::get(options, "headers", headers Dictionary) || areAnyMembersSet; 41 areAnyMembersSet = DictionaryHelper::get(options, "headers", headers Dictionary) || areAnyMembersSet;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 } else if (V8FormData::hasInstance(v8Body, isolate)) { 80 } else if (V8FormData::hasInstance(v8Body, isolate)) {
77 RefPtr<EncodedFormData> formData = V8FormData::toImpl(v8::Local<v8::Obje ct>::Cast(v8Body))->encodeMultiPartFormData(); 81 RefPtr<EncodedFormData> formData = V8FormData::toImpl(v8::Local<v8::Obje ct>::Cast(v8Body))->encodeMultiPartFormData();
78 // Here we handle formData->boundary() as a C-style string. See 82 // Here we handle formData->boundary() as a C-style string. See
79 // FormDataEncoder::generateUniqueBoundaryString. 83 // FormDataEncoder::generateUniqueBoundaryString.
80 contentType = AtomicString("multipart/form-data; boundary=", AtomicStrin g::ConstructFromLiteral) + formData->boundary().data(); 84 contentType = AtomicString("multipart/form-data; boundary=", AtomicStrin g::ConstructFromLiteral) + formData->boundary().data();
81 body = FetchFormDataConsumerHandle::create(context, formData.release()); 85 body = FetchFormDataConsumerHandle::create(context, formData.release());
82 } else if (V8URLSearchParams::hasInstance(v8Body, isolate)) { 86 } else if (V8URLSearchParams::hasInstance(v8Body, isolate)) {
83 RefPtr<EncodedFormData> formData = V8URLSearchParams::toImpl(v8::Local<v 8::Object>::Cast(v8Body))->encodeFormData(); 87 RefPtr<EncodedFormData> formData = V8URLSearchParams::toImpl(v8::Local<v 8::Object>::Cast(v8Body))->encodeFormData();
84 contentType = AtomicString("application/x-www-form-urlencoded;charset=UT F-8", AtomicString::ConstructFromLiteral); 88 contentType = AtomicString("application/x-www-form-urlencoded;charset=UT F-8", AtomicString::ConstructFromLiteral);
85 body = FetchFormDataConsumerHandle::create(context, formData.release()); 89 body = FetchFormDataConsumerHandle::create(context, formData.release());
90 } else if (V8PasswordCredential::hasInstance(v8Body, isolate)) {
91 // See https://w3c.github.io/webappsec-credential-management/#monkey-pat ching-fetch-4
92 // and https://w3c.github.io/webappsec-credential-management/#monkey-pat ching-fetch-3
93 isCredentialRequest = true;
94 PasswordCredential* credential = V8PasswordCredential::toImpl(v8::Local< v8::Object>::Cast(v8Body));
95
96 RefPtr<EncodedFormData> encodedData = credential->encodeFormData();
97 if (encodedData->boundary().isEmpty())
98 contentType = AtomicString("application/x-www-form-urlencoded;charse t=UTF-8", AtomicString::ConstructFromLiteral);
99 else
100 contentType = AtomicString("multipart/form-data; boundary=", AtomicS tring::ConstructFromLiteral) + encodedData->boundary().data();
101 body = FetchFormDataConsumerHandle::create(context, encodedData.release( ));
86 } else if (v8Body->IsString()) { 102 } else if (v8Body->IsString()) {
87 contentType = "text/plain;charset=UTF-8"; 103 contentType = "text/plain;charset=UTF-8";
88 body = FetchFormDataConsumerHandle::create(toUSVString(isolate, v8Body, exceptionState)); 104 body = FetchFormDataConsumerHandle::create(toUSVString(isolate, v8Body, exceptionState));
89 } 105 }
90 } 106 }
91 107
92 } 108 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/fetch/RequestInit.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698