2021-04-02 03:36:11 +02:00
|
|
|
import * as mfm from 'mfm-js';
|
|
|
|
import { unique } from '@/prelude/array';
|
|
|
|
|
|
|
|
// unique without hash
|
|
|
|
// [ http://a/#1, http://a/#2, http://b/#3 ] => [ http://a/#1, http://b/#3 ]
|
|
|
|
const removeHash = (x: string) => x.replace(/#[^#]*$/, '');
|
|
|
|
|
|
|
|
export function extractUrlFromMfm(nodes: mfm.MfmNode[], respectSilentFlag = true): string[] {
|
2021-04-10 10:50:18 +02:00
|
|
|
let urls = [] as string[];
|
2021-04-02 03:36:11 +02:00
|
|
|
|
2021-04-10 10:50:18 +02:00
|
|
|
mfm.inspect(nodes, (node) => {
|
|
|
|
if (node.type === 'url') {
|
|
|
|
urls.push(node.props.url);
|
|
|
|
} else if (node.type === 'link' && (!respectSilentFlag || !node.props.silent)) {
|
|
|
|
urls.push(node.props.url);
|
2021-04-02 03:36:11 +02:00
|
|
|
}
|
2021-04-10 10:50:18 +02:00
|
|
|
});
|
2021-04-02 03:36:11 +02:00
|
|
|
|
2021-04-10 10:50:18 +02:00
|
|
|
urls = unique(urls);
|
2021-04-02 03:36:11 +02:00
|
|
|
|
|
|
|
return urls.reduce((array, url) => {
|
2021-04-10 10:50:18 +02:00
|
|
|
const urlWithoutHash = removeHash(url);
|
|
|
|
if (!array.map(x => removeHash(x)).includes(urlWithoutHash)) array.push(url);
|
2021-04-02 03:36:11 +02:00
|
|
|
return array;
|
|
|
|
}, [] as string[]);
|
|
|
|
}
|