| |
| |
| |
|
|
| |
| |
| |
| |
| |
|
|
| ;(async function () { |
| |
| |
| |
| |
| function sendMessage(message) { |
| window.parent.postMessage(message, '*') |
| } |
|
|
| |
| |
| |
| const origin = __TEMPLATE_origin__ |
|
|
| |
| |
| |
| const aesGcmKeyRaw = new Uint8Array(__TEMPLATE_runtime_aes_gcm_key__) |
|
|
| |
| |
| |
| const aesGcmKey = await window.crypto.subtle.importKey( |
| 'raw', |
| aesGcmKeyRaw, |
| 'AES-GCM', |
| false, |
| ['encrypt'] |
| ) |
|
|
| |
| |
| |
| |
| async function encrypt(payload) { |
| const algorithm = Object.create(null) |
| algorithm.name = 'AES-GCM' |
| algorithm.iv = window.crypto.getRandomValues(new Uint8Array(12)) |
|
|
| const { contentType, data } = __RAW_process_ipc_message_fn__(payload) |
|
|
| const message = |
| typeof data === 'string' |
| ? new TextEncoder().encode(data) |
| : ArrayBuffer.isView(data) || data instanceof ArrayBuffer |
| ? data |
| : new Uint8Array(data) |
|
|
| return window.crypto.subtle |
| .encrypt(algorithm, aesGcmKey, message) |
| .then((payload) => { |
| const result = Object.create(null) |
| result.nonce = Array.from(new Uint8Array(algorithm.iv)) |
| result.payload = Array.from(new Uint8Array(payload)) |
| result.contentType = contentType |
| return result |
| }) |
| } |
|
|
| |
| |
| |
| |
| |
| |
| function isIsolationMessage(data) { |
| if (typeof data === 'object' && typeof data.payload === 'object') { |
| const keys = data.payload ? Object.keys(data.payload) : [] |
| return ( |
| keys.length > 0 |
| && keys.every( |
| (key) => key === 'nonce' || key === 'payload' || key === 'contentType' |
| ) |
| ) |
| } |
| return false |
| } |
|
|
| |
| |
| |
| |
| |
| |
| function isIsolationPayload(data) { |
| return ( |
| typeof data === 'object' |
| && 'callback' in data |
| && 'error' in data |
| && !isIsolationMessage(data) |
| ) |
| } |
|
|
| |
| |
| |
| |
| async function payloadHandler(event) { |
| if (event.origin !== origin || !isIsolationPayload(event.data)) { |
| return |
| } |
|
|
| let data = event.data |
|
|
| if (typeof window.__TAURI_ISOLATION_HOOK__ === 'function') { |
| |
| data = await window.__TAURI_ISOLATION_HOOK__(data) |
| } |
|
|
| const message = Object.create(null) |
| message.cmd = data.cmd |
| message.callback = data.callback |
| message.error = data.error |
| message.options = data.options |
| message.payload = await encrypt(data.payload) |
| sendMessage(message) |
| } |
|
|
| window.addEventListener('message', payloadHandler, false) |
|
|
| |
| |
| |
| const readyIntervalMs = 50 |
|
|
| |
| |
| |
| function waitUntilReady() { |
| |
| if ( |
| typeof window.__TAURI_ISOLATION_HOOK__ === 'function' |
| || window.__TAURI_ISOLATION_HOOK__ === null |
| ) { |
| sendMessage('__TAURI_ISOLATION_READY__') |
| } else { |
| setTimeout(waitUntilReady, readyIntervalMs) |
| } |
| } |
|
|
| setTimeout(waitUntilReady, readyIntervalMs) |
| })() |
|
|
| document.currentScript?.remove() |
|
|