OpenWeather-gRPC-API/server/current.go

38 lines
937 B
Go
Raw Normal View History

package main
import (
"context"
"fmt"
"io/ioutil"
"log"
"net/http"
pb "codeberg.org/andcscott/OpenWeatherMap-gRPC-API/proto"
)
2022-07-26 19:42:25 -04:00
// Receives a gRPC request for the current forecast
// Returns a SendCurrent message containing the forecast in JSON
func (s *Server) Current(ctx context.Context, in *pb.RequestCurrent) (*pb.SendCurrent, error) {
log.Println("'Current' function called...")
url := "https://pro.openweathermap.org/data/2.5/weather?"
2022-07-27 02:42:40 -04:00
lat, lon := getLocation(in.City, s.ApiKey)
units := "&units=imperial"
2022-07-27 02:42:40 -04:00
token := "&appid=" + s.ApiKey
url = url + fmt.Sprintf("lat=%f", lat) + fmt.Sprintf("&lon=%f", lon) + units + token
res, err := http.Get(url)
if err != nil {
log.Printf("Error fetching weather: %v\n", err)
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
log.Printf("Error reading weather response: %v", err)
}
2022-07-27 02:42:40 -04:00
return &pb.SendCurrent{Payload: string(body)}, nil
}