2019-02-01 11:41:13 +01:00
|
|
|
import { parseFragment, DefaultTreeDocumentFragment } from 'parse5';
|
2020-11-07 16:38:50 +01:00
|
|
|
import { urlRegexFull } from './prelude';
|
2018-06-20 18:21:57 +02:00
|
|
|
|
2020-04-03 15:51:38 +02:00
|
|
|
export function fromHtml(html: string, hashtagNames?: string[]): string {
|
2019-02-01 11:41:13 +01:00
|
|
|
const dom = parseFragment(html) as DefaultTreeDocumentFragment;
|
2018-06-20 18:21:57 +02:00
|
|
|
|
|
|
|
let text = '';
|
|
|
|
|
2018-12-11 12:36:55 +01:00
|
|
|
for (const n of dom.childNodes) {
|
|
|
|
analyze(n);
|
|
|
|
}
|
2018-06-20 18:21:57 +02:00
|
|
|
|
|
|
|
return text.trim();
|
|
|
|
|
2019-03-14 13:23:15 +01:00
|
|
|
function getText(node: any): string {
|
2020-04-04 01:46:54 +02:00
|
|
|
if (node.nodeName === '#text') return node.value;
|
2018-06-20 18:21:57 +02:00
|
|
|
|
|
|
|
if (node.childNodes) {
|
|
|
|
return node.childNodes.map((n: any) => getText(n)).join('');
|
|
|
|
}
|
|
|
|
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
function analyze(node: any) {
|
|
|
|
switch (node.nodeName) {
|
|
|
|
case '#text':
|
|
|
|
text += node.value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'br':
|
|
|
|
text += '\n';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'a':
|
|
|
|
const txt = getText(node);
|
2020-04-04 01:46:54 +02:00
|
|
|
const rel = node.attrs.find((x: any) => x.name === 'rel');
|
|
|
|
const href = node.attrs.find((x: any) => x.name === 'href');
|
2018-06-20 18:21:57 +02:00
|
|
|
|
2020-04-03 15:51:38 +02:00
|
|
|
// ハッシュタグ
|
|
|
|
if (hashtagNames && href && hashtagNames.map(x => x.toLowerCase()).includes(txt.toLowerCase())) {
|
|
|
|
text += txt;
|
2018-06-20 18:21:57 +02:00
|
|
|
// メンション
|
2018-12-12 03:47:07 +01:00
|
|
|
} else if (txt.startsWith('@') && !(rel && rel.value.match(/^me /))) {
|
2018-06-20 18:21:57 +02:00
|
|
|
const part = txt.split('@');
|
|
|
|
|
2020-04-04 01:46:54 +02:00
|
|
|
if (part.length === 2) {
|
2018-06-20 18:21:57 +02:00
|
|
|
//#region ホスト名部分が省略されているので復元する
|
2018-09-01 16:12:51 +02:00
|
|
|
const acct = `${txt}@${(new URL(href.value)).hostname}`;
|
2018-06-20 18:21:57 +02:00
|
|
|
text += acct;
|
|
|
|
//#endregion
|
2020-04-04 01:46:54 +02:00
|
|
|
} else if (part.length === 3) {
|
2018-06-20 18:21:57 +02:00
|
|
|
text += txt;
|
|
|
|
}
|
2018-09-01 15:45:27 +02:00
|
|
|
// その他
|
|
|
|
} else {
|
2020-11-07 16:38:50 +01:00
|
|
|
text += !href ? txt
|
|
|
|
: txt === href.value
|
|
|
|
? txt.match(urlRegexFull) ? txt
|
|
|
|
: `<${txt}>`
|
|
|
|
: `[${txt}](${href.value})`;
|
2018-06-20 18:21:57 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'p':
|
|
|
|
text += '\n\n';
|
|
|
|
if (node.childNodes) {
|
2018-12-11 12:36:55 +01:00
|
|
|
for (const n of node.childNodes) {
|
|
|
|
analyze(n);
|
|
|
|
}
|
2018-06-20 18:21:57 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if (node.childNodes) {
|
2018-12-11 12:36:55 +01:00
|
|
|
for (const n of node.childNodes) {
|
|
|
|
analyze(n);
|
|
|
|
}
|
2018-06-20 18:21:57 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|