Compare commits

..

No commits in common. "main" and "v1.1" have entirely different histories.
main ... v1.1

2 changed files with 23 additions and 38 deletions

View File

@ -22,14 +22,6 @@ times:
- "09:00:00"
- "09:40:00"
# Whitelisted days of the week (Format: Monday)
days:
- "Monday"
- "Tuesday"
- "Wednesday"
- "Thursday"
- "Friday"
# AXIS Horn Config
horn:
url: "https://horn-ip/axis-cgi/playclip.cgi?location=soundtoplay.mp3&repeat=0&volume=100&audiooutput=1"

13
main.go
View File

@ -16,7 +16,6 @@ import (
type config struct {
Horn map[string]string `yaml:"horn"`
Times []string `yaml:"times"`
Days []string `yaml:"days"`
}
func (config *config) getConf() *config {
@ -32,7 +31,7 @@ func (config *config) getConf() *config {
logger.Error("Unmarshal", logger.Args(":", err))
}
logger.Info("Config loaded", logger.Args("Times", config.Times, "Days", config.Days, "API URL", config.Horn["url"]))
logger.Info("Config loaded", logger.Args("Times", config.Times, "API URL", config.Horn["url"]))
return config
}
@ -48,7 +47,7 @@ func main() {
pterm.DefaultCenter.Println(s)
pterm.DefaultCenter.Println("By Cody (" + pterm.LightBlue("https://oki.cx/tree") + ")")
pterm.DefaultCenter.Println("v1.2")
pterm.DefaultCenter.Println("v1.1")
pterm.Print("\n")
@ -61,10 +60,7 @@ func main() {
for {
ctime := time.Now().Format("15:04:05")
cday := time.Now().Weekday()
for _, day := range config.Days {
if day == cday.String() {
for _, time := range config.Times {
if time == ctime {
http.DefaultTransport.(*http.Transport).TLSClientConfig = &tls.Config{InsecureSkipVerify: true}
@ -85,10 +81,7 @@ func main() {
if resp.StatusCode != 200 {
logger.Error(fmt.Sprintf("HTTP request failed: %s", resp.Status))
} else {
logger.Info(fmt.Sprintf("Sending HTTP request to %s", config.Horn["url"]),
logger.Args("Reason", "Config File", "Time", ctime, "Status Code", resp.Status))
}
}
logger.Info(fmt.Sprintf("Sending HTTP request to %s", config.Horn["url"]), logger.Args("Reason", "Config File", "Time", ctime, "Status Code", resp.Status))
}
}
}