gostations/stations.go

48 lines
1.1 KiB
Go
Raw Normal View History

2021-03-16 12:32:59 +00:00
package main
2021-03-16 13:09:27 +00:00
import (
"flag"
"fmt"
"os"
)
2021-03-16 12:32:59 +00:00
func main(){
2021-03-16 13:09:27 +00:00
argCount := len(os.Args[1:])
var (
name string
country string
state string
tags string
notok bool
2021-03-16 13:09:27 +00:00
)
flag.Usage = func() {
fmt.Printf("Usage: \n")
fmt.Printf(" gostations ")
fmt.Printf(" [-n \"name\"] [-c \"home country\"] [-s \"home state\"] [-t \"ordered,tag,list\"] [-x]\n")
flag.PrintDefaults()
fmt.Printf(" -h (or none)\n")
fmt.Printf("\tThis help message\n")
}
2021-03-16 13:09:27 +00:00
flag.StringVar(&name, "n", "", "Station name (or identifier).")
flag.StringVar(&country, "c", "", "Home country.")
flag.StringVar(&state, "s", "", "Home state (if in the United States).")
flag.StringVar(&tags, "t", "", "Tag (or comma-separated tag list)")
flag.BoolVar(&notok, "x", false,"If toggled, will show stations that are down")
2021-03-16 13:09:27 +00:00
flag.Parse()
if argCount == 0 {
flag.Usage()
os.Exit(0)
2021-03-16 13:09:27 +00:00
}
2021-03-16 12:32:59 +00:00
stations, _ := StationSearch(name, country, state, tags, notok)
for _, station := range stations {
fmt.Printf("%+v\n", station)
}
fmt.Println(len(stations))
2021-03-16 19:55:59 +00:00
//mainMenu = RadioMenu(station_list)
2021-03-16 12:32:59 +00:00
}