weather-cli/cmd/advanced.go

78 lines
1.6 KiB
Go
Raw Normal View History

package main
import (
"bufio"
"fmt"
"log"
"os"
"strings"
)
2022-08-02 23:26:09 -04:00
func advancedMenu(app *Application) {
var option string
// Menu loop
for option != "0" {
fmt.Print("\nAdvanced Menu\n-------------\n\n")
2022-07-11 19:07:24 -04:00
fmt.Printf("1. Change units (Default: imperial; Current: %s)\n", app.Config.Units)
fmt.Println("2. Enter precise location")
2022-08-02 23:26:09 -04:00
fmt.Println("3. Get historical data")
fmt.Print("0. Back\n\n")
// Read user input
reader := bufio.NewReader(os.Stdin)
input, err := reader.ReadString('\n')
if err != nil {
log.Println(err)
}
option = strings.TrimSuffix(input, "\n")
// Check user input
if option == "1" {
current := app.Config.Units
if current == "imperial" {
app.Config.Units = "metric"
2022-07-07 23:43:16 -04:00
} else {
app.Config.Units = "imperial"
2022-07-07 23:43:16 -04:00
}
fmt.Printf("\nChanged units from %s to %s...\n\n", current, app.Config.Units)
} else if option == "2" {
// Loop to validate location entered
var validLoc bool
for !validLoc {
getPreciseLocation(app)
getCurrent(app)
if app.Forecast.Main.Temp != 0.00 {
validLoc = true
} else {
fmt.Println("I couldn't get any information for that location.")
fmt.Println("Are you sure the coordinates are valid?")
}
}
2022-08-02 23:26:09 -04:00
printWeather(app)
app.Forecast.Main.Temp = 0.00
} else if option == "3" {
var validLoc bool
for !validLoc {
getPreciseLocation(app)
getHistorical(app.Client)
}
2022-08-02 23:26:09 -04:00
if app.Forecast.Main.Temp != 0.00 {
validLoc = true
} else {
fmt.Println("I couldn't get any information for that location.")
fmt.Println("Are you sure the coordinates are valid?")
}
2022-07-09 15:33:10 -04:00
printWeather(app)
app.Forecast.Main.Temp = 0.00
}
}
}