web-check/api/quality.js

23 lines
708 B
JavaScript
Raw Normal View History

import axios from 'axios';
import middleware from './_common/middleware.js';
2023-06-18 22:01:13 +02:00
const qualityHandler = async (url, event, context) => {
const apiKey = process.env.GOOGLE_CLOUD_API_KEY;
2023-06-18 22:01:13 +02:00
2023-07-23 01:05:04 +02:00
if (!apiKey) {
throw new Error(
'Missing Google API. You need to set the `GOOGLE_CLOUD_API_KEY` environment variable'
);
2023-07-23 01:05:04 +02:00
}
const endpoint = `https://www.googleapis.com/pagespeedonline/v5/runPagespeed?`
+ `url=${encodeURIComponent(url)}&category=PERFORMANCE&category=ACCESSIBILITY`
+ `&category=BEST_PRACTICES&category=SEO&category=PWA&strategy=mobile`
+ `&key=${apiKey}`;
return (await axios.get(endpoint)).data;
2023-06-18 22:01:13 +02:00
};
export const handler = middleware(qualityHandler);
export default handler;