2024-05-05 20:55:51 +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-06 21:22:57 +00:00
|
|
|
//takes address and returns coords in obj as {lat: number, lng: number}
|
|
|
|
export async function getLocation(searchLocation: string): Promise<coordType>{
|
2024-05-08 08:43:33 +00:00
|
|
|
const placesKey = process.env.PLACES_API;
|
2024-05-06 21:22:57 +00:00
|
|
|
const url = `https://maps.googleapis.com/maps/api/geocode/json?address=${searchLocation}&key=${placesKey}`;
|
2024-05-05 20:55:51 +00:00
|
|
|
const res = await fetch(url);
|
|
|
|
if (!res.ok) {
|
|
|
|
throw new Error(`There was an error fetching the data`);
|
|
|
|
}
|
2024-05-06 21:22:57 +00:00
|
|
|
const data: LocationType = await res.json();
|
2024-05-12 19:58:10 +00:00
|
|
|
if (!data.results[0].formatted_address){
|
|
|
|
throw new Error(`Unable to find the address`);
|
|
|
|
}
|
2024-05-09 23:00:26 +00:00
|
|
|
return {
|
|
|
|
name: data.results[0].formatted_address,
|
|
|
|
geo: data.results[0].geometry.location
|
|
|
|
}
|
2024-05-06 21:22:57 +00:00
|
|
|
}
|
|
|
|
|
2024-05-09 23:10:37 +00:00
|
|
|
|
2024-05-09 21:40:14 +00:00
|
|
|
|
2024-05-12 05:32:14 +00:00
|
|
|
export async function getHourlyForecast(geoLocation: coordType): Promise<Forecast> {
|
2024-05-09 23:00:26 +00:00
|
|
|
const { lat, lng } = geoLocation.geo;
|
|
|
|
const tz = Intl.DateTimeFormat().resolvedOptions().timeZone;
|
|
|
|
const url = `https://api.open-meteo.com/v1/forecast?latitude=${lat}&longitude=${lng}¤t=temperature_2m,apparent_temperature,is_day,precipitation,rain,showers,snowfall,weather_code,cloud_cover,wind_speed_10m,wind_direction_10m&hourly=temperature_2m,apparent_temperature,precipitation_probability,precipitation,weather_code,wind_speed_10m,is_day&daily=weather_code,temperature_2m_max,temperature_2m_min,apparent_temperature_max,apparent_temperature_min,sunrise,sunset,daylight_duration,sunshine_duration,uv_index_max,precipitation_sum,precipitation_hours,wind_speed_10m_max&timezone=${tz}`
|
|
|
|
const res = await fetch(url);
|
2024-05-09 21:40:14 +00:00
|
|
|
if (!res.ok) {
|
|
|
|
throw new Error(`Failed to fetch the weather data`);
|
|
|
|
}
|
2024-05-12 05:32:14 +00:00
|
|
|
const data: Forecast = await res.json();
|
2024-05-09 21:40:14 +00:00
|
|
|
return data;
|
|
|
|
}
|