mirror of
https://codeberg.org/andyscott/OpenWeather-gRPC-API.git
synced 2024-11-04 05:10:48 -05:00
40 lines
818 B
Go
40 lines
818 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"io/ioutil"
|
|
"log"
|
|
"net/http"
|
|
"os"
|
|
|
|
pb "codeberg.org/andcscott/OpenWeatherMap-gRPC-API/proto"
|
|
)
|
|
|
|
func getCurrent(in *pb.RequestCurrent) string {
|
|
|
|
city := in.City
|
|
url := "https://pro.openweathermap.org/data/2.5/weather?q="
|
|
token := "&appid=" + os.Getenv("API_KEY")
|
|
|
|
url = url + city + "&units=imperial" + 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)
|
|
}
|
|
return string(body)
|
|
}
|
|
|
|
func (s *Server) Current(ctx context.Context, in *pb.RequestCurrent) (*pb.SendCurrent, error) {
|
|
log.Println("'Current' function called...")
|
|
|
|
return &pb.SendCurrent{
|
|
Payload: getCurrent(in),
|
|
}, nil
|
|
}
|