aboutsummaryrefslogtreecommitdiff
path: root/src/js/utils.js
blob: a5f34dc625eec6b14c7d2d3083c4010200a1e7c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Arching Kaos Utils
//
// Kaotisk Hund - 2024
//
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL v3.0
//

var showDebug = false;

export function setDebug(value)
{
    if ( value === true || value === false ) showDebug = value;
}

export function refreshChat()
{
    document.querySelector('#chat-iframe').src = 'https://irc.arching-kaos.net';
}

export function refreshRadio()
{
    document.querySelector('#radio-iframe').src = 'https://radio.arching-kaos.com';
}

export function debugLog(message)
{
    if (showDebug) console.log(message);
}

export function offerDownloadableData(data, filename)
{
    var link = document.createElement('a');
    link.download = filename === undefined ? 'data': filename;
    var blob = new Blob([data]); // , {type: 'text/plain'}
    link.href = window.URL.createObjectURL(blob);
    link.click();
}

export function decodeBase64ToHex(base64String) {
    const binaryString = atob(base64String);
    // Convert the binary string to a byte array
    const byteArray = new Uint8Array(binaryString.length);
    for (let i = 0; i < binaryString.length; i++) {
        byteArray[i] = binaryString.charCodeAt(i);
    }
    // Convert the byte array to a hex string representation
    return Array.from(byteArray)
        .map(byte => byte.toString(16).padStart(2, '0')) // Convert to hex and pad with zeros
        .join('');
}
// @license-end