mirror of
https://codeberg.org/andyscott/weather-cli.git
synced 2024-11-08 05:50:51 -05:00
61 lines
1.3 KiB
Go
61 lines
1.3 KiB
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"log"
|
|
"net/http"
|
|
)
|
|
|
|
// Get and store the current forecast
|
|
func getCurrent(app *Application) {
|
|
|
|
lat := "lat=" + app.Config.Latitude
|
|
lon := "&lon=" + app.Config.Longitude
|
|
units := "&units=" + app.Config.Units
|
|
key := "&appid=" + app.Config.ApiKey
|
|
url := "https://api.openweathermap.org/data/2.5/weather?" + lat + lon + units + key
|
|
|
|
res, err := http.Get(url)
|
|
if err != nil {
|
|
log.Printf("Error getting current forecast: %v", err)
|
|
}
|
|
defer res.Body.Close()
|
|
fmt.Println(res.Body)
|
|
body, err := ioutil.ReadAll(res.Body)
|
|
if err != nil {
|
|
log.Printf("Error reading response from server: %v\n", err)
|
|
}
|
|
|
|
err = json.Unmarshal(body, &app.Forecast)
|
|
if err != nil {
|
|
log.Printf("Error reading JSON from server: %v\n", err)
|
|
}
|
|
|
|
}
|
|
|
|
// Query forecast by zip code
|
|
func getCurrentByLoc(app *Application) {
|
|
|
|
zip := app.Config.Location
|
|
units := "&units=" + app.Config.Units
|
|
key := "&appid=" + app.Config.ApiKey
|
|
url := "https://api.openweathermap.org/data/2.5/weather?q=" + zip + units + key
|
|
|
|
res, err := http.Get(url)
|
|
if err != nil {
|
|
log.Println(err)
|
|
}
|
|
defer res.Body.Close()
|
|
|
|
body, err := ioutil.ReadAll(res.Body)
|
|
if err != nil {
|
|
log.Println(err)
|
|
}
|
|
|
|
err = json.Unmarshal(body, &app.Forecast)
|
|
if err != nil {
|
|
log.Println(err)
|
|
}
|
|
}
|