avoid url_metadata to react to chat internal links

This commit is contained in:
mose 2019-09-14 15:32:31 +08:00
parent 7d01477469
commit 156282f571
1 changed files with 10 additions and 8 deletions

View File

@ -3,15 +3,17 @@ const bot = require('bbot');
const request = require('request');
bot.global.text(/(https?:\/\/.*)[, $]?/i, (b) => {
request(b.match[1], (err, res, body) => {
if (!err) {
var re = /<title>([^<]*)<\/title>/gi;
var match = re.exec(body);
if (match && match[1]) {
b.respond("[:link:](" + b.match[1] + ") _" + match[1] + "_");
if (!b.match[1].match(/coa\.crapaud-fou\.org/)) {
request(b.match[1], (err, res, body) => {
if (!err) {
var re = /<title>([^<]*)<\/title>/gi;
var match = re.exec(body);
if (match && match[1]) {
b.respond("[:link:](" + b.match[1] + ") _" + match[1] + "_");
}
}
}
});
});
}
}, {
id: 'get-url-metadata'
});