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

Unified 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, 4 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 side-by-side diff with in-line comments
Download patch
Index: Source/modules/serviceworkers/RequestInit.cpp
diff --git a/Source/modules/serviceworkers/RequestInit.cpp b/Source/modules/serviceworkers/RequestInit.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..5ec22e0ef0ffc2ef5479383430aecdc3126bbdc1
--- /dev/null
+++ b/Source/modules/serviceworkers/RequestInit.cpp
@@ -0,0 +1,89 @@
+// Copyright 2014 The Chromium 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 "config.h"
+#include "RequestInit.h"
+
+#include "bindings/core/v8/Dictionary.h"
+#include "bindings/core/v8/V8Binding.h"
+#include "bindings/core/v8/V8Blob.h"
+#include "bindings/core/v8/V8FormData.h"
+#include "bindings/core/v8/custom/V8ArrayBufferCustom.h"
+#include "bindings/core/v8/custom/V8ArrayBufferViewCustom.h"
+#include "core/fileapi/Blob.h"
+#include "modules/serviceworkers/Headers.h"
+#include "platform/blob/BlobData.h"
+#include "platform/network/FormData.h"
+#include "wtf/ArrayBuffer.h"
+
+namespace blink {
+
+RequestInit::RequestInit(ExecutionContext* context, const Dictionary& options, ExceptionState& exceptionState)
+{
+ DictionaryHelper::get(options, "method", method);
+ DictionaryHelper::get(options, "headers", headers);
+ if (!headers) {
+ DictionaryHelper::get(options, "headers", headersDictionary);
+ }
+ DictionaryHelper::get(options, "mode", mode);
+ DictionaryHelper::get(options, "credentials", credentials);
+
+ v8::Local<v8::Value> body;
+ if (!DictionaryHelper::get(options, "body", body) || body->IsUndefined() || body->IsNull())
+ return;
+ OwnPtr<BlobData> blobData = BlobData::create();
+ v8::Isolate* isolate = toIsolate(context);
+ if (body->IsArrayBuffer()) {
+ ArrayBuffer* arrayBuffer = V8ArrayBuffer::toNative(v8::Handle<v8::Object>::Cast(body));
+ ASSERT(arrayBuffer);
+ blobData->appendArrayBuffer(arrayBuffer);
+ } else if (body->IsArrayBufferView()) {
+ ArrayBufferView* arrayBufferView = V8ArrayBufferView::toNative(v8::Handle<v8::Object>::Cast(body));
+ ASSERT(arrayBufferView);
+ blobData->appendArrayBufferView(arrayBufferView);
+ } else if (V8Blob::hasInstance(body, isolate)) {
+ Blob* blob = V8Blob::toNative(v8::Handle<v8::Object>::Cast(body));
+ ASSERT(blob);
+ blob->appendTo(*blobData);
+ blobData->setContentType(blob->type());
+ } else if (V8FormData::hasInstance(body, isolate)) {
+ DOMFormData* domFormData = V8FormData::toNative(v8::Handle<v8::Object>::Cast(body));
+ ASSERT(domFormData);
+ RefPtr<FormData> httpBody = domFormData->createMultiPartFormData();
+ for (size_t i = 0; i < httpBody->elements().size(); ++i) {
+ const FormDataElement& element = httpBody->elements()[i];
+ switch (element.m_type) {
+ case FormDataElement::data: {
+ RefPtr<RawData> rawData = RawData::create();
+ rawData->mutableData()->append(element.m_data.data(), element.m_data.size());
+ blobData->appendData(rawData, 0, -1);
+ break;
+ }
+ case FormDataElement::encodedFile:
+ blobData->appendFile(element.m_filename, element.m_fileStart, element.m_fileLength, element.m_expectedFileModificationTime);
+ break;
+ case FormDataElement::encodedBlob:
+ if (element.m_optionalBlobDataHandle)
+ blobData->appendBlob(element.m_optionalBlobDataHandle, 0, element.m_optionalBlobDataHandle->size());
+ break;
+ case FormDataElement::encodedFileSystemURL:
+ blobData->appendFileSystemURL(element.m_fileSystemURL, element.m_fileStart, element.m_fileLength, element.m_expectedFileModificationTime);
+ break;
+ default:
+ ASSERT_NOT_REACHED();
+ }
+ }
+ blobData->setContentType(AtomicString("multipart/form-data; boundary=", AtomicString::ConstructFromLiteral) + httpBody->boundary().data());
+ } else if (body->IsString()) {
+ String stringValue(toScalarValueString(body, exceptionState));
+ blobData->appendText(stringValue, false);
+ blobData->setContentType("text/plain;charset=UTF-8");
+ } else {
+ return;
+ }
+ const long long blobSize = blobData->length();
+ bodyBlobHandle = BlobDataHandle::create(blobData.release(), blobSize);
+}
+
+}

Powered by Google App Engine
This is Rietveld 408576698