2018-06-20 18:21:57 +02:00
|
|
|
const parse5 = require('parse5');
|
2018-09-28 13:54:14 +02:00
|
|
|
import { URL } from 'url';
|
2018-06-20 18:21:57 +02:00
|
|
|
|
|
|
|
export default function(html: string): string {
|
2018-07-07 05:50:09 +02:00
|
|
|
if (html == null) return null;
|
|
|
|
|
2018-06-20 18:21:57 +02:00
|
|
|
const dom = parse5.parseFragment(html);
|
|
|
|
|
|
|
|
let text = '';
|
|
|
|
|
|
|
|
dom.childNodes.forEach((n: any) => analyze(n));
|
|
|
|
|
|
|
|
return text.trim();
|
|
|
|
|
|
|
|
function getText(node: any) {
|
|
|
|
if (node.nodeName == '#text') return node.value;
|
|
|
|
|
|
|
|
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);
|
2018-09-01 15:45:27 +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
|
|
|
|
2018-09-01 15:45:27 +02:00
|
|
|
// ハッシュタグ / hrefがない / txtがURL
|
|
|
|
if ((rel && rel.value.match('tag') !== null) || !href || href.value == txt) {
|
|
|
|
text += txt;
|
2018-06-20 18:21:57 +02:00
|
|
|
// メンション
|
2018-09-01 15:45:27 +02:00
|
|
|
} else if (txt.startsWith('@')) {
|
2018-06-20 18:21:57 +02:00
|
|
|
const part = txt.split('@');
|
|
|
|
|
|
|
|
if (part.length == 2) {
|
|
|
|
//#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
|
|
|
|
} else if (part.length == 3) {
|
|
|
|
text += txt;
|
|
|
|
}
|
2018-09-01 15:45:27 +02:00
|
|
|
// その他
|
|
|
|
} else {
|
|
|
|
text += `[${txt}](${href.value})`;
|
2018-06-20 18:21:57 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'p':
|
|
|
|
text += '\n\n';
|
|
|
|
if (node.childNodes) {
|
|
|
|
node.childNodes.forEach((n: any) => analyze(n));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if (node.childNodes) {
|
|
|
|
node.childNodes.forEach((n: any) => analyze(n));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|