Adrià Vilanova Martínez | ac2a561 | 2022-12-27 21:51:40 +0100 | [diff] [blame] | 1 | import {correctArrayKeys, inverseCorrectArrayKeys} from '../common/protojs'; |
Adrià Vilanova Martínez | 102d54b | 2022-12-18 11:12:11 +0100 | [diff] [blame] | 2 | |
| 3 | import xhrInterceptors from './interceptors.json5'; |
| 4 | |
| 5 | export {xhrInterceptors}; |
| 6 | |
| 7 | export function matchInterceptors(interceptFilter, url) { |
| 8 | return xhrInterceptors.interceptors.filter(interceptor => { |
| 9 | var regex = new RegExp(interceptor.urlRegex); |
| 10 | return interceptor.intercepts == interceptFilter && regex.test(url); |
| 11 | }); |
| 12 | } |
| 13 | |
| 14 | export function getResponseText(xhr, transformArrayPb = true) { |
| 15 | let response; |
| 16 | if (xhr.responseType === 'arraybuffer') { |
| 17 | var arrBuffer = xhr.response; |
| 18 | if (!arrBuffer) { |
| 19 | console.error('No array buffer.'); |
| 20 | return undefined; |
| 21 | } |
| 22 | let byteArray = new Uint8Array(arrBuffer); |
| 23 | let dec = new TextDecoder('utf-8'); |
| 24 | response = dec.decode(byteArray); |
| 25 | } else if (xhr.responseType === 'text' || xhr.responseType === '') { |
| 26 | response = xhr.responseText; |
| 27 | } else if (xhr.responseType === 'json') { |
| 28 | response = JSON.stringify(xhr.response); |
| 29 | } else { |
| 30 | console.error( |
| 31 | 'Unexpected responseType ' + xhr.responseType + '. Request url: ', |
| 32 | xhr.$TWPTRequestURL); |
| 33 | return undefined; |
| 34 | } |
| 35 | |
| 36 | if (xhr.$isArrayProto && transformArrayPb) |
| 37 | response = correctArrayKeys(response); |
| 38 | |
| 39 | return response; |
| 40 | } |
| 41 | |
| 42 | export function getResponseJSON(xhr) { |
| 43 | let response; |
| 44 | if (xhr.responseType === 'arraybuffer') { |
| 45 | var arrBuffer = xhr.response; |
| 46 | if (!arrBuffer) { |
| 47 | console.error('No array buffer.'); |
| 48 | return undefined; |
| 49 | } |
| 50 | let byteArray = new Uint8Array(arrBuffer); |
| 51 | let dec = new TextDecoder('utf-8'); |
| 52 | let rawResponse = dec.decode(byteArray); |
| 53 | response = JSON.parse(rawResponse); |
| 54 | } else if (xhr.responseType === 'text' || xhr.responseType === '') { |
Adrià Vilanova Martínez | ac2a561 | 2022-12-27 21:51:40 +0100 | [diff] [blame] | 55 | response = JSON.parse(xhr.response); |
Adrià Vilanova Martínez | 102d54b | 2022-12-18 11:12:11 +0100 | [diff] [blame] | 56 | } else if (xhr.responseType === 'json') { |
| 57 | response = xhr.response; |
| 58 | } else { |
| 59 | console.error( |
| 60 | 'Unexpected responseType ' + xhr.responseType + '. Request url: ', |
| 61 | xhr.$TWPTRequestURL); |
| 62 | return undefined; |
| 63 | } |
| 64 | |
| 65 | if (xhr.$isArrayProto) response = correctArrayKeys(response); |
| 66 | return response; |
| 67 | } |
| 68 | |
Adrià Vilanova Martínez | ac2a561 | 2022-12-27 21:51:40 +0100 | [diff] [blame] | 69 | export function convertJSONToResponse(xhr, json) { |
| 70 | if (xhr.$isArrayProto) json = inverseCorrectArrayKeys(json); |
| 71 | |
| 72 | switch (xhr.responseType) { |
| 73 | case 'json': |
| 74 | return json; |
| 75 | |
| 76 | case 'text': |
| 77 | case '': |
| 78 | return JSON.stringify(json); |
| 79 | |
| 80 | case 'arraybuffer': |
Adrià Vilanova Martínez | 8a17fa8 | 2023-02-04 19:19:27 +0100 | [diff] [blame] | 81 | var encoder = new TextEncoder(); |
Adrià Vilanova Martínez | ac2a561 | 2022-12-27 21:51:40 +0100 | [diff] [blame] | 82 | return encoder.encode(JSON.stringify(json)).buffer; |
| 83 | |
| 84 | default: |
| 85 | console.error( |
| 86 | 'Unexpected responseType ' + xhr.responseType + '. Request url: ', |
| 87 | xhr.$TWPTRequestURL || xhr.responseURL); |
| 88 | return undefined; |
| 89 | } |
| 90 | } |
| 91 | |
Adrià Vilanova Martínez | 8a17fa8 | 2023-02-04 19:19:27 +0100 | [diff] [blame] | 92 | export function convertJSONToResponseText(xhr, json) { |
| 93 | return convertJSONToResponse({ |
| 94 | $isArrayProto: xhr.$isArrayProto, |
| 95 | responseType: 'text', |
| 96 | }, json); |
| 97 | } |
| 98 | |
Adrià Vilanova Martínez | 102d54b | 2022-12-18 11:12:11 +0100 | [diff] [blame] | 99 | export function triggerEvent(eventName, body, id) { |
| 100 | var evt = new CustomEvent('TWPT_' + eventName, { |
| 101 | detail: { |
| 102 | body, |
| 103 | id, |
| 104 | } |
| 105 | }); |
| 106 | window.dispatchEvent(evt); |
| 107 | } |