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

Side by Side Diff: Source/modules/serviceworkers/RequestInit.cpp

Issue 516603004: [ServiceWorker] Support setting body to Request object in ServiceWorker. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: incorporated yhirano's comment Created 6 years, 3 months 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "config.h"
6 #include "RequestInit.h"
7
8 #include "bindings/core/v8/Dictionary.h"
9 #include "bindings/core/v8/V8Binding.h"
10 #include "bindings/core/v8/V8Blob.h"
11 #include "bindings/core/v8/V8FormData.h"
12 #include "bindings/core/v8/custom/V8ArrayBufferCustom.h"
13 #include "bindings/core/v8/custom/V8ArrayBufferViewCustom.h"
14 #include "core/fileapi/Blob.h"
15 #include "modules/serviceworkers/Headers.h"
16 #include "platform/blob/BlobData.h"
17 #include "platform/network/FormData.h"
18 #include "wtf/ArrayBuffer.h"
19
20 namespace blink {
21
22 RequestInit::RequestInit(ExecutionContext* context, const Dictionary& options, E xceptionState& exceptionState)
23 {
24 DictionaryHelper::get(options, "method", method);
25 DictionaryHelper::get(options, "headers", headers);
26 if (!headers) {
27 DictionaryHelper::get(options, "headers", headersDictionary);
28 }
29 DictionaryHelper::get(options, "mode", mode);
30 DictionaryHelper::get(options, "credentials", credentials);
31
32 v8::Local<v8::Value> body;
33 if (!DictionaryHelper::get(options, "body", body) || body->IsUndefined() || body->IsNull())
34 return;
35 OwnPtr<BlobData> blobData = BlobData::create();
36 v8::Isolate* isolate = toIsolate(context);
37 if (body->IsArrayBuffer()) {
38 ArrayBuffer* arrayBuffer = V8ArrayBuffer::toNative(v8::Handle<v8::Object >::Cast(body));
39 ASSERT(arrayBuffer);
40 blobData->appendArrayBuffer(arrayBuffer);
41 } else if (body->IsArrayBufferView()) {
42 ArrayBufferView* arrayBufferView = V8ArrayBufferView::toNative(v8::Handl e<v8::Object>::Cast(body));
43 ASSERT(arrayBufferView);
44 blobData->appendArrayBufferView(arrayBufferView);
45 } else if (V8Blob::hasInstance(body, isolate)) {
46 Blob* blob = V8Blob::toNative(v8::Handle<v8::Object>::Cast(body));
47 ASSERT(blob);
48 blob->appendTo(*blobData);
49 blobData->setContentType(blob->type());
50 } else if (V8FormData::hasInstance(body, isolate)) {
51 DOMFormData* domFormData = V8FormData::toNative(v8::Handle<v8::Object>:: Cast(body));
52 ASSERT(domFormData);
53 RefPtr<FormData> httpBody = domFormData->createMultiPartFormData();
54 for (size_t i = 0; i < httpBody->elements().size(); ++i) {
55 const FormDataElement& element = httpBody->elements()[i];
56 switch (element.m_type) {
57 case FormDataElement::data: {
58 RefPtr<RawData> rawData = RawData::create();
59 rawData->mutableData()->append(element.m_data.data(), element.m_ data.size());
60 blobData->appendData(rawData, 0, -1);
61 break;
62 }
63 case FormDataElement::encodedFile:
64 blobData->appendFile(element.m_filename, element.m_fileStart, el ement.m_fileLength, element.m_expectedFileModificationTime);
65 break;
66 case FormDataElement::encodedBlob:
67 if (element.m_optionalBlobDataHandle)
68 blobData->appendBlob(element.m_optionalBlobDataHandle, 0, el ement.m_optionalBlobDataHandle->size());
69 break;
70 case FormDataElement::encodedFileSystemURL:
71 blobData->appendFileSystemURL(element.m_fileSystemURL, element.m _fileStart, element.m_fileLength, element.m_expectedFileModificationTime);
72 break;
73 default:
74 ASSERT_NOT_REACHED();
75 }
76 }
77 blobData->setContentType(AtomicString("multipart/form-data; boundary=", AtomicString::ConstructFromLiteral) + httpBody->boundary().data());
78 } else if (body->IsString()) {
79 String stringValue(toScalarValueString(body, exceptionState));
80 blobData->appendText(stringValue, false);
81 blobData->setContentType("text/plain;charset=UTF-8");
82 } else {
83 return;
84 }
85 const long long blobSize = blobData->length();
86 bodyBlobHandle = BlobDataHandle::create(blobData.release(), blobSize);
87 }
88
89 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698