259 lines
5.5 KiB
JavaScript
259 lines
5.5 KiB
JavaScript
/* global URL */
|
|
|
|
const { isNumber, compact } = require('lodash');
|
|
const he = require('he');
|
|
const nodeUrl = require('url');
|
|
const LinkifyIt = require('linkify-it');
|
|
|
|
const linkify = LinkifyIt();
|
|
const { concatenateBytes, getViewOfArrayBuffer } = require('../../ts/Crypto');
|
|
|
|
module.exports = {
|
|
assembleChunks,
|
|
findLinks,
|
|
getChunkPattern,
|
|
getDomain,
|
|
getTitleMetaTag,
|
|
getImageMetaTag,
|
|
isLinkInWhitelist,
|
|
isMediaLinkInWhitelist,
|
|
isLinkSneaky,
|
|
isStickerPack,
|
|
};
|
|
|
|
const SUPPORTED_DOMAINS = [
|
|
'youtube.com',
|
|
'www.youtube.com',
|
|
'm.youtube.com',
|
|
'youtu.be',
|
|
'reddit.com',
|
|
'www.reddit.com',
|
|
'm.reddit.com',
|
|
'imgur.com',
|
|
'www.imgur.com',
|
|
'm.imgur.com',
|
|
'instagram.com',
|
|
'www.instagram.com',
|
|
'm.instagram.com',
|
|
'pinterest.com',
|
|
'www.pinterest.com',
|
|
'pin.it',
|
|
'signal.art',
|
|
];
|
|
|
|
function isLinkInWhitelist(link) {
|
|
try {
|
|
const url = new URL(link);
|
|
|
|
if (url.protocol !== 'https:') {
|
|
return false;
|
|
}
|
|
|
|
if (!url.pathname || url.pathname.length < 2) {
|
|
return false;
|
|
}
|
|
|
|
const lowercase = url.host.toLowerCase();
|
|
if (!SUPPORTED_DOMAINS.includes(lowercase)) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
} catch (error) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
function isStickerPack(link) {
|
|
return (link || '').startsWith('https://signal.art/addstickers/');
|
|
}
|
|
|
|
const SUPPORTED_MEDIA_DOMAINS = /^([^.]+\.)*(ytimg\.com|cdninstagram\.com|redd\.it|imgur\.com|fbcdn\.net|pinimg\.com)$/i;
|
|
function isMediaLinkInWhitelist(link) {
|
|
try {
|
|
const url = new URL(link);
|
|
|
|
if (url.protocol !== 'https:') {
|
|
return false;
|
|
}
|
|
|
|
if (!url.pathname || url.pathname.length < 2) {
|
|
return false;
|
|
}
|
|
|
|
if (!SUPPORTED_MEDIA_DOMAINS.test(url.host)) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
} catch (error) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
const META_TITLE = /<meta\s+property="og:title"[^>]+?content="([\s\S]+?)"[^>]*>/im;
|
|
const META_IMAGE = /<meta\s+property="og:image"[^>]+?content="([\s\S]+?)"[^>]*>/im;
|
|
function _getMetaTag(html, regularExpression) {
|
|
const match = regularExpression.exec(html);
|
|
if (match && match[1]) {
|
|
return he.decode(match[1]).trim();
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
function getTitleMetaTag(html) {
|
|
return _getMetaTag(html, META_TITLE);
|
|
}
|
|
function getImageMetaTag(html) {
|
|
return _getMetaTag(html, META_IMAGE);
|
|
}
|
|
|
|
function findLinks(text, caretLocation) {
|
|
const haveCaretLocation = isNumber(caretLocation);
|
|
const textLength = text ? text.length : 0;
|
|
|
|
const matches = linkify.match(text || '') || [];
|
|
return compact(
|
|
matches.map(match => {
|
|
if (!haveCaretLocation) {
|
|
return match.text;
|
|
}
|
|
|
|
if (match.lastIndex === textLength && caretLocation === textLength) {
|
|
return match.text;
|
|
}
|
|
|
|
if (match.index > caretLocation || match.lastIndex < caretLocation) {
|
|
return match.text;
|
|
}
|
|
|
|
return null;
|
|
})
|
|
);
|
|
}
|
|
|
|
function hasAuth(url) {
|
|
try {
|
|
const urlObject = new URL(url);
|
|
return Boolean(urlObject.username);
|
|
} catch (e) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
function getDomain(url) {
|
|
try {
|
|
const urlObject = new URL(url);
|
|
return urlObject.hostname;
|
|
} catch (error) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
const MB = 1024 * 1024;
|
|
const KB = 1024;
|
|
|
|
function getChunkPattern(size, initialOffset) {
|
|
if (size > MB) {
|
|
return _getRequestPattern(size, MB, initialOffset);
|
|
} else if (size > 500 * KB) {
|
|
return _getRequestPattern(size, 500 * KB, initialOffset);
|
|
} else if (size > 100 * KB) {
|
|
return _getRequestPattern(size, 100 * KB, initialOffset);
|
|
} else if (size > 50 * KB) {
|
|
return _getRequestPattern(size, 50 * KB, initialOffset);
|
|
} else if (size > 10 * KB) {
|
|
return _getRequestPattern(size, 10 * KB, initialOffset);
|
|
} else if (size > KB) {
|
|
return _getRequestPattern(size, KB, initialOffset);
|
|
}
|
|
|
|
return {
|
|
start: {
|
|
start: initialOffset,
|
|
end: size - 1,
|
|
},
|
|
};
|
|
}
|
|
|
|
function _getRequestPattern(size, increment, initialOffset) {
|
|
const results = [];
|
|
|
|
let offset = initialOffset || 0;
|
|
while (size - offset > increment) {
|
|
results.push({
|
|
start: offset,
|
|
end: offset + increment - 1,
|
|
overlap: 0,
|
|
});
|
|
offset += increment;
|
|
}
|
|
|
|
if (size - offset > 0) {
|
|
results.push({
|
|
start: size - increment,
|
|
end: size - 1,
|
|
overlap: increment - (size - offset),
|
|
});
|
|
}
|
|
|
|
return results;
|
|
}
|
|
|
|
function assembleChunks(chunkDescriptors) {
|
|
const chunks = chunkDescriptors.map((chunk, index) => {
|
|
if (index !== chunkDescriptors.length - 1) {
|
|
return chunk.data;
|
|
}
|
|
|
|
if (!chunk.overlap) {
|
|
return chunk.data;
|
|
}
|
|
|
|
return getViewOfArrayBuffer(
|
|
chunk.data,
|
|
chunk.overlap,
|
|
chunk.data.byteLength
|
|
);
|
|
});
|
|
|
|
return concatenateBytes(...chunks);
|
|
}
|
|
|
|
const ASCII_PATTERN = new RegExp('[\\u0000-\\u007F]', 'g');
|
|
|
|
function isLinkSneaky(link) {
|
|
// Any links which contain auth are considered sneaky
|
|
if (hasAuth(link)) {
|
|
return true;
|
|
}
|
|
|
|
const domain = getDomain(link);
|
|
// If the domain is falsy, something fishy is going on
|
|
if (!domain) {
|
|
return true;
|
|
}
|
|
|
|
// Domains cannot contain encoded characters
|
|
if (domain.includes('%')) {
|
|
return true;
|
|
}
|
|
|
|
// This is necesary because getDomain returns domains in punycode form.
|
|
const unicodeDomain = nodeUrl.domainToUnicode
|
|
? nodeUrl.domainToUnicode(domain)
|
|
: domain;
|
|
|
|
const withoutPeriods = unicodeDomain.replace(/\./g, '');
|
|
|
|
const hasASCII = ASCII_PATTERN.test(withoutPeriods);
|
|
const withoutASCII = withoutPeriods.replace(ASCII_PATTERN, '');
|
|
|
|
const isMixed = hasASCII && withoutASCII.length > 0;
|
|
if (isMixed) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|