local-weather/app/api/location/route.ts

37 lines
1.1 KiB
TypeScript
Raw Normal View History

2024-05-17 22:54:39 +00:00
"use server";
2024-05-12 05:32:14 +00:00
import { Forecast, LocationType, coordType } from "@/types/types";
2024-05-05 20:55:51 +00:00
2024-05-17 22:54:39 +00:00
export async function getLocation(searchLocation: string): Promise<coordType> {
const placesKey = process.env.PLACES_API;
if (!placesKey) {
console.error("PLACES_API environment variable is not set");
throw new Error("PLACES_API environment variable is not set");
}
const url = `https://maps.googleapis.com/maps/api/geocode/json?address=${searchLocation}&key=${placesKey}`;
console.log(`Fetching location`);
try {
const res = await fetch(url);
if (!res.ok) {
console.error(`Fetch error: ${res.statusText}`);
throw new Error(`There was an error fetching the data`);
}
const data: LocationType = await res.json();
if (!data.results[0]?.formatted_address) {
console.error("Unable to find the address in the response");
throw new Error(`Unable to find the address`);
}
return {
name: data.results[0].formatted_address,
geo: data.results[0].geometry.location,
};
} catch (error) {
console.error("Error fetching location:", error);
throw new Error("Error fetching location");
2024-05-17 22:54:39 +00:00
}
}