2022-08-02 23:25:50 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2022-08-02 23:56:24 -04:00
|
|
|
"strconv"
|
2022-08-02 23:25:50 -04:00
|
|
|
|
|
|
|
pb "codeberg.org/andcscott/weather-cli/proto"
|
|
|
|
)
|
|
|
|
|
2022-08-02 23:40:40 -04:00
|
|
|
// Get a date from the user and save it to the config
|
|
|
|
func getDate(app *Application) {
|
2022-08-02 23:25:50 -04:00
|
|
|
|
|
|
|
fmt.Print("Enter 4-digit year: ")
|
2022-08-02 23:40:40 -04:00
|
|
|
_, err := fmt.Scanf("%d", &app.Config.Date.Year)
|
2022-08-02 23:25:50 -04:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println("Invalid year")
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Print("Enter month (1-12): ")
|
2022-08-02 23:40:40 -04:00
|
|
|
_, err = fmt.Scanf("%d", &app.Config.Date.Month)
|
2022-08-02 23:25:50 -04:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println("Invalid year")
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Print("Enter day (1-31): ")
|
2022-08-02 23:40:40 -04:00
|
|
|
_, err = fmt.Scanf("%d", &app.Config.Date.Day)
|
2022-08-02 23:25:50 -04:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println("Invalid year")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-02 23:40:40 -04:00
|
|
|
// Query SimplrWeather for date in Unix time
|
2022-08-02 23:25:50 -04:00
|
|
|
func getUnixTime(c pb.RouteGuideClient) int32 {
|
|
|
|
|
|
|
|
var year, month, day int32
|
|
|
|
|
|
|
|
res, err := c.GetUnixTime(context.Background(), &pb.Date{
|
|
|
|
Year: year,
|
|
|
|
Month: month,
|
|
|
|
Day: day,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Error getting Unix time: %v\n", err)
|
|
|
|
}
|
|
|
|
return res.Unixtime
|
|
|
|
}
|
|
|
|
|
2022-08-02 23:40:40 -04:00
|
|
|
// Query SimplrWeather for historical data
|
2022-08-02 23:28:57 -04:00
|
|
|
func getHistoricalData(c pb.RouteGuideClient, app *Application) {
|
2022-08-02 23:25:50 -04:00
|
|
|
|
2022-08-02 23:56:24 -04:00
|
|
|
var lat, lon int
|
|
|
|
lat, _ = strconv.Atoi(app.Config.Latitude)
|
|
|
|
lon, _ = strconv.Atoi(app.Config.Longitude)
|
2022-08-02 23:25:50 -04:00
|
|
|
|
|
|
|
res, err := c.GetHistoricalData(context.Background(), &pb.LocationDate{
|
2022-08-02 23:56:24 -04:00
|
|
|
Latitude: int32(lat),
|
|
|
|
Longitude: int32(lon),
|
|
|
|
Year: app.Config.Date.Year,
|
|
|
|
Month: app.Config.Date.Month,
|
|
|
|
Day: app.Config.Date.Day,
|
2022-08-02 23:25:50 -04:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Error getting historical data: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.Unmarshal([]byte(res.Data), &app.Forecast)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Error reading data from server: %v", err)
|
|
|
|
}
|
|
|
|
}
|