Fix for when Traceroute is not installed on host

This commit is contained in:
Alicia Sykes
2023-07-07 21:30:54 +01:00
parent 83272e4536
commit dd2baec866
2 changed files with 77 additions and 23 deletions

View File

@ -1,37 +1,88 @@
const traceroute = require('traceroute');
const util = require('util');
const url = require('url');
// Convert traceroute.trace method to return a Promise
const traceroutePromise = util.promisify(traceroute.trace);
exports.handler = async function(event, context) {
const urlString = event.queryStringParameters.url;
const startTime = Date.now();
try {
if (!urlString) {
throw new Error('URL parameter is missing!');
return {
statusCode: 400,
body: JSON.stringify({
error: 'URL parameter is missing!'
}),
};
}
// Parse the URL and get the hostname
const urlObject = url.parse(urlString);
const host = urlObject.hostname;
if (!host) {
throw new Error('Invalid URL provided');
return {
statusCode: 400,
body: JSON.stringify({
error: 'Invalid URL provided'
}),
};
}
const result = await traceroutePromise(host);
const timeTaken = Date.now() - startTime;
return {
statusCode: 200,
body: JSON.stringify({ message: "Traceroute completed!", result, timeTaken }),
};
// Traceroute with callback
return await new Promise((resolve, reject) => {
traceroute.trace(host, (err, hops) => {
if (err) {
reject(err);
} else if (hops) {
resolve(hops);
}
});
// Check if remaining time is less than 8.8 seconds, then reject promise
if (context.getRemainingTimeInMillis() < 8800) {
reject(new Error('Lambda is about to timeout'));
}
}).then((result) => {
const timeTaken = Date.now() - startTime;
return {
statusCode: 200,
body: JSON.stringify({
message: "Traceroute completed!",
result,
timeTaken
}),
};
}).catch((err) => {
return {
statusCode: 500,
body: JSON.stringify({
error: err.message
}),
};
});
} catch (err) {
return {
statusCode: 500,
body: JSON.stringify({ message: `Error: ${err.message}` }),
};
if (err.code === 'ENOENT') {
return {
statusCode: 400,
body: JSON.stringify({
error: 'Traceroute command is not installed on the host.'
}),
};
} else {
return {
statusCode: 500,
body: JSON.stringify({
error: err.message
}),
};
}
}
};