mirror of
https://github.com/Lissy93/web-check.git
synced 2024-11-22 16:23:56 +01:00
33 lines
778 B
JavaScript
33 lines
778 B
JavaScript
const traceroute = require('traceroute');
|
|
const url = require('url');
|
|
const middleware = require('./_common/middleware');
|
|
|
|
const handler = async (urlString, context) => {
|
|
// Parse the URL and get the hostname
|
|
const urlObject = url.parse(urlString);
|
|
const host = urlObject.hostname;
|
|
|
|
if (!host) {
|
|
throw new Error('Invalid URL provided');
|
|
}
|
|
|
|
// Traceroute with callback
|
|
const result = await new Promise((resolve, reject) => {
|
|
traceroute.trace(host, (err, hops) => {
|
|
if (err || !hops) {
|
|
reject(err || new Error('No hops found'));
|
|
} else {
|
|
resolve(hops);
|
|
}
|
|
});
|
|
});
|
|
|
|
return {
|
|
message: "Traceroute completed!",
|
|
result,
|
|
};
|
|
};
|
|
|
|
module.exports = middleware(handler);
|
|
module.exports.handler = middleware(handler);
|