OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 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 // Provides a way to implement POST requests via XMLHttpRequest. | |
6 // Works around https://bugs.webkit.org/show_bug.cgi?id=145410 on WKWebView. | |
7 | |
8 'use strict'; | |
9 | |
10 goog.provide('__crPostRequestHack'); | |
11 | |
12 /** | |
13 * Namespace for this file. | |
14 */ | |
15 __crPostRequestHack = {}; | |
16 | |
17 /** | |
18 * Executes a POST request with given parameters and replaces document body with | |
19 * the response. | |
20 * @param {string} url The url of the request. | |
21 * @param {Object<string,string>} headers Request headers to include in POST. | |
22 * Each header value must be expressed as a key-value pair in this object. | |
23 * @param {string} body Request body encoded with Base64. | |
24 * @param {string} contentType Content-Type header value. | |
25 */ | |
26 __crPostRequestHack.runPostRequest = function(url, headers, body, | |
27 contentType) { | |
28 | |
29 /** | |
30 * Converts a Base64-encoded string to a blob. | |
31 * @param {string} byteCharacters Base64-encoded data string. | |
32 * @param {string} contentType Corresponding content type. | |
33 * @return {Blob} Binary representation of byteCharacters. | |
34 */ | |
35 var base64ToBlob = function(byteCharacters, contentType) { | |
36 contentType = contentType || ''; | |
37 var sliceSize = 512; | |
38 var byteArrays = []; | |
39 for (var offset = 0; offset < byteCharacters.length; offset += sliceSize){ | |
Eugene But (OOO till 7-30)
2015/12/02 17:06:16
Space before |{|, here and everywhere.
stkhapugin
2015/12/03 15:43:02
Done.
| |
40 var slice = byteCharacters.slice(offset, offset + sliceSize); | |
41 var byteNumbers = new Array(slice.length); | |
42 for (var i = 0; i < slice.length; i++) { | |
43 byteNumbers[i] = slice.charCodeAt(i); | |
44 } | |
45 var byteArray = new Uint8Array(byteNumbers); | |
46 byteArrays.push(byteArray); | |
47 } | |
48 var blob = new Blob(byteArrays, {type: contentType}); | |
Eugene But (OOO till 7-30)
2015/12/02 17:06:16
return new Blob(byteArrays, {type: contentType});
stkhapugin
2015/12/03 15:43:02
Done.
| |
49 return blob; | |
50 } | |
51 | |
52 /** | |
53 * Creates and executes a POST request. | |
54 * @param {string} url The url of the request. | |
55 * @param {Object<string,string>} headers Request headers to include in POST. | |
56 * Each header value must be expressed as a key-value pair in this object. | |
57 * @param {string} body Request body encoded with Base64. | |
58 * @param {string} contentType Content-Type header value. | |
59 */ | |
60 var createAndSendPostRequest = function(url, headers, body, contentType){ | |
61 var request = new XMLHttpRequest(); | |
62 request.open('POST', url, false); | |
63 for (var key in headers) { | |
64 if (headers.hasOwnProperty(key)) { | |
65 request.setRequestHeader(key, headers[key]); | |
66 } | |
67 } | |
68 var blob = base64ToBlob(atob(body), contentType); | |
69 request.send(blob); | |
70 if (request.status != 200) { | |
71 throw request.status; | |
72 } | |
73 return request.responseText; | |
74 } | |
75 | |
76 document.open(); | |
77 try { | |
78 document.write(createAndSendPostRequest(url, headers, body, | |
79 contentType)); | |
Eugene But (OOO till 7-30)
2015/12/02 17:06:16
This does not look like correct formatting
stkhapugin
2015/12/03 15:43:02
Done.
| |
80 window.webkit.messageHandlers.POSTSuccess.postMessage(""); | |
81 } catch(error) { | |
82 window.webkit.messageHandlers.POSTErrorHandler.postMessage(error); | |
83 } | |
84 document.close(); | |
85 } | |
OLD | NEW |