web-check/api/sitemap.js

55 lines
1.5 KiB
JavaScript
Raw Normal View History

const middleware = require('./_common/middleware');
const axios = require('axios');
const xml2js = require('xml2js');
const handler = async (url) => {
2023-07-29 10:38:25 +02:00
let sitemapUrl = `${url}/sitemap.xml`;
try {
2023-07-29 10:38:25 +02:00
// Try to fetch sitemap directly
let sitemapRes;
try {
sitemapRes = await axios.get(sitemapUrl, { timeout: 5000 });
} catch (error) {
if (error.response && error.response.status === 404) {
// If sitemap not found, try to fetch it from robots.txt
const robotsRes = await axios.get(`${url}/robots.txt`, { timeout: 5000 });
const robotsTxt = robotsRes.data.split('\n');
2023-07-29 10:38:25 +02:00
for (let line of robotsTxt) {
if (line.toLowerCase().startsWith('sitemap:')) {
sitemapUrl = line.split(' ')[1].trim();
break;
}
}
2023-07-29 10:38:25 +02:00
if (!sitemapUrl) {
return { skipped: 'No sitemap found' };
2023-07-29 10:38:25 +02:00
}
sitemapRes = await axios.get(sitemapUrl, { timeout: 5000 });
} else {
throw error; // If other error, throw it
}
}
2023-07-29 10:38:25 +02:00
const parser = new xml2js.Parser();
const sitemap = await parser.parseStringPromise(sitemapRes.data);
return sitemap;
} catch (error) {
2023-07-29 10:38:25 +02:00
// If error occurs
console.log(error.message);
if (error.code === 'ECONNABORTED') {
return { error: 'Request timed out' };
2023-07-29 10:38:25 +02:00
} else {
return { error: error.message };
2023-07-29 10:38:25 +02:00
}
}
};
module.exports = middleware(handler);
module.exports.handler = middleware(handler);