handle multiple urls on same message

This commit is contained in:
mose 2019-09-14 21:29:56 +08:00
parent 7a2c6f607d
commit 03e20fced0
1 changed files with 16 additions and 10 deletions

View File

@ -2,18 +2,24 @@
const bot = require('bbot');
const request = require('request');
bot.global.text(/(https?:\/\/.*)[, $]?/i, (b) => {
if (!/coa\.crapaud-fou\.org/.test(b.match[1])) {
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] + "_");
bot.global.text(/(https?:\/\/[^ ,\)"]*)/ig, (b) => {
// console.log(JSON.stringify(b.match, null, 2));
for (url of b.match) {
// console.log(JSON.stringify(url, null, 2));
if (!/(coa|pad)\.crapaud-fou\.org/.test(url)) {
request(url, (err, res, body) => {
if (!err) {
var re = /<title[^>]*>([^<]*)<\/title>/gi;
var match = re.exec(body);
if (match && match[1]) {
// b.respondEnvelope({ attachments: [] })
b.respond("[:link:](" + url + ") _" + match[1] + "_");
}
}
}
});
});
}
}
}, {
id: 'get-url-metadata'
});