2022-02-26 05:25:04 +01:00
|
|
|
import {rawEmojis} from "./emojis";
|
2022-03-09 21:58:21 +01:00
|
|
|
import beep from "../sounds/beep.mp3";
|
|
|
|
import juntos from "../sounds/juntos.mp3";
|
|
|
|
import pristine from "../sounds/pristine.mp3";
|
|
|
|
import ding from "../sounds/ding.mp3";
|
|
|
|
import dadum from "../sounds/dadum.mp3";
|
|
|
|
import pop from "../sounds/pop.mp3";
|
|
|
|
import popSwoosh from "../sounds/pop-swoosh.mp3";
|
2022-03-10 05:28:55 +01:00
|
|
|
import config from "./config";
|
2022-03-11 00:11:12 +01:00
|
|
|
import {Base64} from 'js-base64';
|
2022-02-24 18:26:07 +01:00
|
|
|
|
2022-02-18 20:41:01 +01:00
|
|
|
export const topicUrl = (baseUrl, topic) => `${baseUrl}/${topic}`;
|
2022-02-24 16:30:58 +01:00
|
|
|
export const topicUrlWs = (baseUrl, topic) => `${topicUrl(baseUrl, topic)}/ws`
|
2022-02-18 20:41:01 +01:00
|
|
|
.replaceAll("https://", "wss://")
|
|
|
|
.replaceAll("http://", "ws://");
|
2022-02-23 05:22:30 +01:00
|
|
|
export const topicUrlJson = (baseUrl, topic) => `${topicUrl(baseUrl, topic)}/json`;
|
|
|
|
export const topicUrlJsonPoll = (baseUrl, topic) => `${topicUrlJson(baseUrl, topic)}?poll=1`;
|
2022-02-26 17:45:39 +01:00
|
|
|
export const topicUrlJsonPollWithSince = (baseUrl, topic, since) => `${topicUrlJson(baseUrl, topic)}?poll=1&since=${since}`;
|
2022-02-25 19:40:03 +01:00
|
|
|
export const topicUrlAuth = (baseUrl, topic) => `${topicUrl(baseUrl, topic)}/auth`;
|
2022-02-26 05:25:04 +01:00
|
|
|
export const topicShortUrl = (baseUrl, topic) => shortUrl(topicUrl(baseUrl, topic));
|
2022-12-15 05:11:22 +01:00
|
|
|
export const accountUrl = (baseUrl) => `${baseUrl}/v1/account`;
|
2022-12-16 04:07:04 +01:00
|
|
|
export const accountPasswordUrl = (baseUrl) => `${baseUrl}/v1/account/password`;
|
2022-12-15 05:11:22 +01:00
|
|
|
export const accountTokenUrl = (baseUrl) => `${baseUrl}/v1/account/token`;
|
|
|
|
export const accountSettingsUrl = (baseUrl) => `${baseUrl}/v1/account/settings`;
|
|
|
|
export const accountSubscriptionUrl = (baseUrl) => `${baseUrl}/v1/account/subscription`;
|
|
|
|
export const accountSubscriptionSingleUrl = (baseUrl, id) => `${baseUrl}/v1/account/subscription/${id}`;
|
2023-01-12 16:50:09 +01:00
|
|
|
export const accountReservationUrl = (baseUrl) => `${baseUrl}/v1/account/reservation`;
|
|
|
|
export const accountReservationSingleUrl = (baseUrl, topic) => `${baseUrl}/v1/account/reservation/${topic}`;
|
2023-01-14 12:43:44 +01:00
|
|
|
export const accountCheckoutUrl = (baseUrl) => `${baseUrl}/v1/account/checkout`;
|
|
|
|
export const accountBillingPortalUrl = (baseUrl) => `${baseUrl}/v1/account/billing/portal`;
|
2022-02-18 20:41:01 +01:00
|
|
|
export const shortUrl = (url) => url.replaceAll(/https?:\/\//g, "");
|
2022-03-08 20:13:32 +01:00
|
|
|
export const expandUrl = (url) => [`https://${url}`, `http://${url}`];
|
2022-03-08 21:19:15 +01:00
|
|
|
export const expandSecureUrl = (url) => `https://${url}`;
|
2022-02-23 05:22:30 +01:00
|
|
|
|
2022-02-28 22:56:38 +01:00
|
|
|
export const validUrl = (url) => {
|
2022-04-10 21:13:12 +02:00
|
|
|
return url.match(/^https?:\/\/.+/);
|
2022-02-28 22:56:38 +01:00
|
|
|
}
|
|
|
|
|
2022-02-26 17:45:39 +01:00
|
|
|
export const validTopic = (topic) => {
|
2022-03-10 05:28:55 +01:00
|
|
|
if (disallowedTopic(topic)) {
|
|
|
|
return false;
|
|
|
|
}
|
2022-02-28 22:56:38 +01:00
|
|
|
return topic.match(/^([-_a-zA-Z0-9]{1,64})$/); // Regex must match Go & Android app!
|
2022-02-26 17:45:39 +01:00
|
|
|
}
|
|
|
|
|
2022-03-10 05:28:55 +01:00
|
|
|
export const disallowedTopic = (topic) => {
|
2023-01-05 04:47:12 +01:00
|
|
|
return config.disallowed_topics.includes(topic);
|
2022-03-10 05:28:55 +01:00
|
|
|
}
|
|
|
|
|
2022-06-29 21:57:56 +02:00
|
|
|
export const topicDisplayName = (subscription) => {
|
|
|
|
if (subscription.displayName) {
|
|
|
|
return subscription.displayName;
|
2023-01-05 04:47:12 +01:00
|
|
|
} else if (subscription.baseUrl === config.base_url) {
|
2022-06-29 21:57:56 +02:00
|
|
|
return subscription.topic;
|
|
|
|
}
|
|
|
|
return topicShortUrl(subscription.baseUrl, subscription.topic);
|
|
|
|
};
|
|
|
|
|
2022-02-24 18:26:07 +01:00
|
|
|
// Format emojis (see emoji.js)
|
|
|
|
const emojis = {};
|
|
|
|
rawEmojis.forEach(emoji => {
|
|
|
|
emoji.aliases.forEach(alias => {
|
|
|
|
emojis[alias] = emoji.emoji;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
const toEmojis = (tags) => {
|
|
|
|
if (!tags) return [];
|
|
|
|
else return tags.filter(tag => tag in emojis).map(tag => emojis[tag]);
|
|
|
|
}
|
|
|
|
|
2022-03-04 18:10:11 +01:00
|
|
|
export const formatTitleWithDefault = (m, fallback) => {
|
2022-02-26 17:45:39 +01:00
|
|
|
if (m.title) {
|
|
|
|
return formatTitle(m);
|
|
|
|
}
|
|
|
|
return fallback;
|
|
|
|
};
|
|
|
|
|
2022-02-24 18:26:07 +01:00
|
|
|
export const formatTitle = (m) => {
|
|
|
|
const emojiList = toEmojis(m.tags);
|
|
|
|
if (emojiList.length > 0) {
|
|
|
|
return `${emojiList.join(" ")} ${m.title}`;
|
|
|
|
} else {
|
|
|
|
return m.title;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export const formatMessage = (m) => {
|
|
|
|
if (m.title) {
|
|
|
|
return m.message;
|
|
|
|
} else {
|
|
|
|
const emojiList = toEmojis(m.tags);
|
|
|
|
if (emojiList.length > 0) {
|
|
|
|
return `${emojiList.join(" ")} ${m.message}`;
|
|
|
|
} else {
|
|
|
|
return m.message;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export const unmatchedTags = (tags) => {
|
|
|
|
if (!tags) return [];
|
|
|
|
else return tags.filter(tag => !(tag in emojis));
|
|
|
|
}
|
|
|
|
|
2022-12-27 03:27:07 +01:00
|
|
|
export const maybeWithAuth = (headers, user) => {
|
|
|
|
if (user && user.password) {
|
|
|
|
return withBasicAuth(headers, user.username, user.password);
|
|
|
|
} else if (user && user.token) {
|
|
|
|
return withBearerAuth(headers, user.token);
|
2022-02-26 05:25:04 +01:00
|
|
|
}
|
|
|
|
return headers;
|
|
|
|
}
|
|
|
|
|
2022-12-27 03:27:07 +01:00
|
|
|
export const withBasicAuth = (headers, username, password) => {
|
|
|
|
headers['Authorization'] = basicAuth(username, password);
|
2022-12-03 21:20:59 +01:00
|
|
|
return headers;
|
|
|
|
}
|
|
|
|
|
2022-02-26 05:25:04 +01:00
|
|
|
export const basicAuth = (username, password) => {
|
|
|
|
return `Basic ${encodeBase64(`${username}:${password}`)}`;
|
|
|
|
}
|
|
|
|
|
2022-12-27 03:27:07 +01:00
|
|
|
export const withBearerAuth = (headers, token) => {
|
|
|
|
headers['Authorization'] = bearerAuth(token);
|
|
|
|
return headers;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const bearerAuth = (token) => {
|
|
|
|
return `Bearer ${token}`;
|
|
|
|
}
|
|
|
|
|
2022-02-26 05:25:04 +01:00
|
|
|
export const encodeBase64 = (s) => {
|
2022-03-11 00:11:12 +01:00
|
|
|
return Base64.encode(s);
|
2022-02-26 05:25:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export const encodeBase64Url = (s) => {
|
2022-03-11 00:11:12 +01:00
|
|
|
return Base64.encodeURI(s);
|
2022-02-26 05:25:04 +01:00
|
|
|
}
|
|
|
|
|
2022-04-21 22:33:49 +02:00
|
|
|
export const maybeAppendActionErrors = (message, notification) => {
|
|
|
|
const actionErrors = (notification.actions ?? [])
|
|
|
|
.map(action => action.error)
|
|
|
|
.filter(action => !!action)
|
|
|
|
.join("\n")
|
|
|
|
if (actionErrors.length === 0) {
|
|
|
|
return message;
|
|
|
|
} else {
|
|
|
|
return `${message}\n\n${actionErrors}`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-11 04:58:24 +01:00
|
|
|
export const shuffle = (arr) => {
|
|
|
|
let j, x;
|
|
|
|
for (let index = arr.length - 1; index > 0; index--) {
|
|
|
|
j = Math.floor(Math.random() * (index + 1));
|
|
|
|
x = arr[index];
|
|
|
|
arr[index] = arr[j];
|
|
|
|
arr[j] = x;
|
|
|
|
}
|
|
|
|
return arr;
|
|
|
|
}
|
|
|
|
|
2022-03-29 21:22:26 +02:00
|
|
|
export const splitNoEmpty = (s, delimiter) => {
|
|
|
|
return s
|
|
|
|
.split(delimiter)
|
|
|
|
.map(x => x.trim())
|
|
|
|
.filter(x => x !== "");
|
|
|
|
}
|
|
|
|
|
2022-03-12 14:15:30 +01:00
|
|
|
/** Non-cryptographic hash function, see https://stackoverflow.com/a/8831937/1440785 */
|
|
|
|
export const hashCode = async (s) => {
|
|
|
|
let hash = 0;
|
|
|
|
for (let i = 0; i < s.length; i++) {
|
|
|
|
const char = s.charCodeAt(i);
|
|
|
|
hash = ((hash<<5)-hash)+char;
|
|
|
|
hash = hash & hash; // Convert to 32bit integer
|
|
|
|
}
|
|
|
|
return hash;
|
2022-03-04 02:07:35 +01:00
|
|
|
}
|
|
|
|
|
2022-03-03 20:51:56 +01:00
|
|
|
export const formatShortDateTime = (timestamp) => {
|
|
|
|
return new Intl.DateTimeFormat('default', {dateStyle: 'short', timeStyle: 'short'})
|
|
|
|
.format(new Date(timestamp * 1000));
|
|
|
|
}
|
|
|
|
|
|
|
|
export const formatBytes = (bytes, decimals = 2) => {
|
|
|
|
if (bytes === 0) return '0 bytes';
|
|
|
|
const k = 1024;
|
|
|
|
const dm = decimals < 0 ? 0 : decimals;
|
|
|
|
const sizes = ['bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
|
|
|
|
const i = Math.floor(Math.log(bytes) / Math.log(k));
|
|
|
|
return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + ' ' + sizes[i];
|
|
|
|
}
|
|
|
|
|
2022-03-04 17:08:32 +01:00
|
|
|
export const openUrl = (url) => {
|
|
|
|
window.open(url, "_blank", "noopener,noreferrer");
|
|
|
|
};
|
|
|
|
|
2022-03-09 21:58:21 +01:00
|
|
|
export const sounds = {
|
2022-04-10 21:13:12 +02:00
|
|
|
"ding": {
|
|
|
|
file: ding,
|
|
|
|
label: "Ding"
|
|
|
|
},
|
|
|
|
"juntos": {
|
|
|
|
file: juntos,
|
|
|
|
label: "Juntos"
|
|
|
|
},
|
|
|
|
"pristine": {
|
|
|
|
file: pristine,
|
|
|
|
label: "Pristine"
|
|
|
|
},
|
|
|
|
"dadum": {
|
|
|
|
file: dadum,
|
|
|
|
label: "Dadum"
|
|
|
|
},
|
|
|
|
"pop": {
|
|
|
|
file: pop,
|
|
|
|
label: "Pop"
|
|
|
|
},
|
|
|
|
"pop-swoosh": {
|
|
|
|
file: popSwoosh,
|
|
|
|
label: "Pop swoosh"
|
|
|
|
},
|
|
|
|
"beep": {
|
|
|
|
file: beep,
|
|
|
|
label: "Beep"
|
|
|
|
}
|
2022-03-09 21:58:21 +01:00
|
|
|
};
|
|
|
|
|
2022-04-10 21:13:12 +02:00
|
|
|
export const playSound = async (id) => {
|
|
|
|
const audio = new Audio(sounds[id].file);
|
2022-03-06 06:02:27 +01:00
|
|
|
return audio.play();
|
|
|
|
};
|
|
|
|
|
2022-02-23 05:22:30 +01:00
|
|
|
// From: https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch
|
2022-02-26 05:25:04 +01:00
|
|
|
export async function* fetchLinesIterator(fileURL, headers) {
|
2022-02-23 05:22:30 +01:00
|
|
|
const utf8Decoder = new TextDecoder('utf-8');
|
2022-02-26 05:25:04 +01:00
|
|
|
const response = await fetch(fileURL, {
|
|
|
|
headers: headers
|
|
|
|
});
|
2022-02-23 05:22:30 +01:00
|
|
|
const reader = response.body.getReader();
|
|
|
|
let { value: chunk, done: readerDone } = await reader.read();
|
|
|
|
chunk = chunk ? utf8Decoder.decode(chunk) : '';
|
|
|
|
|
|
|
|
const re = /\n|\r|\r\n/gm;
|
|
|
|
let startIndex = 0;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
let result = re.exec(chunk);
|
|
|
|
if (!result) {
|
|
|
|
if (readerDone) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
let remainder = chunk.substr(startIndex);
|
|
|
|
({ value: chunk, done: readerDone } = await reader.read());
|
|
|
|
chunk = remainder + (chunk ? utf8Decoder.decode(chunk) : '');
|
|
|
|
startIndex = re.lastIndex = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
yield chunk.substring(startIndex, result.index);
|
|
|
|
startIndex = re.lastIndex;
|
|
|
|
}
|
|
|
|
if (startIndex < chunk.length) {
|
|
|
|
yield chunk.substr(startIndex); // last line didn't end in a newline char
|
|
|
|
}
|
|
|
|
}
|
2022-12-08 15:16:59 +01:00
|
|
|
|
|
|
|
export const randomAlphanumericString = (len) => {
|
2022-12-09 21:28:12 +01:00
|
|
|
const alphabet = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
|
2022-12-08 15:16:59 +01:00
|
|
|
let id = "";
|
|
|
|
for (let i = 0; i < len; i++) {
|
|
|
|
id += alphabet[(Math.random() * alphabet.length) | 0];
|
|
|
|
}
|
|
|
|
return id;
|
|
|
|
}
|