mirror of
https://github.com/Lissy93/web-check.git
synced 2024-11-22 16:23:56 +01:00
29 lines
598 B
JavaScript
29 lines
598 B
JavaScript
import got from 'got';
|
|
import middleware from './_common/middleware.js';
|
|
|
|
const redirectsHandler = async (url) => {
|
|
const redirects = [url];
|
|
try {
|
|
await got(url, {
|
|
followRedirect: true,
|
|
maxRedirects: 12,
|
|
hooks: {
|
|
beforeRedirect: [
|
|
(options, response) => {
|
|
redirects.push(response.headers.location);
|
|
},
|
|
],
|
|
},
|
|
});
|
|
|
|
return {
|
|
redirects: redirects,
|
|
};
|
|
} catch (error) {
|
|
throw new Error(`Error: ${error.message}`);
|
|
}
|
|
};
|
|
|
|
export const handler = middleware(redirectsHandler);
|
|
export default handler;
|