From 4761cfbd1cb0caa2374fb7d125c04de9c3c8433b Mon Sep 17 00:00:00 2001 From: Chandler Swift Date: Thu, 12 Oct 2023 22:04:26 -0500 Subject: [PATCH] Add basic JSON API --- minecraft-site.go | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/minecraft-site.go b/minecraft-site.go index 0d03fd8..2b4bd64 100644 --- a/minecraft-site.go +++ b/minecraft-site.go @@ -93,6 +93,23 @@ func main() { } }) + http.HandleFunc("/data.json", func(w http.ResponseWriter, r *http.Request) { + // Update servers with current data + for i, s := range config.Servers { + // TODO: Query instead (opportunistically?) to get mod lists, etc + config.Servers[i].Status, err = minequery.Ping17(s.Host, s.Port) + if err != nil { + log.Printf("Error querying server: %v", err) + } + } + msg, err := json.Marshal(config.Servers) + if err != nil { + http.Error(w, err.Error(), 500) + } + w.Header().Set("Content-Type", "application/json") + w.Write(msg) + }) + // Serve backup directory if serveBackups { // TODO: add HTML http.Handle("/backups/", http.StripPrefix("/backups/", http.FileServer(http.Dir(config.BackupDir))))