Compare commits

..

No commits in common. "2fb2e5f151e8bd4845885fdea099fef311faf4c2" and "cf9678d7126e1951f9e4aabaa30d7350eb76973b" have entirely different histories.

4 changed files with 8 additions and 2 deletions

View file

@ -27,7 +27,7 @@ func Root(resp *types.SpaceAPIResponseV14) func(http.ResponseWriter, *http.Reque
}
w.Header().Set("Access-Control-Allow-Origin", "*")
w.Header().Set("Content-Type", "application/json; charset=utf-8")
w.Header().Set("Content-Type", "application/json")
_, _ = w.Write(response)
}
}

View file

@ -1,6 +1,7 @@
package handlers
import (
"io"
"log"
"math"
"net/http"
@ -33,5 +34,7 @@ func EnvironmentSensor(
// Set SpaceAPI response values
resp.Value = newState
resp.LastChange = time.Now().Unix()
_, _ = io.WriteString(w, "Update Successful")
}
}

View file

@ -1,6 +1,7 @@
package handlers
import (
"io"
"log"
"net/http"
"strconv"
@ -32,5 +33,7 @@ func StateOpen(
// Set SpaceAPI response values
resp.Open = newState
resp.LastChange = time.Now().Unix()
_, _ = io.WriteString(w, "Update Successful")
}
}

View file

@ -19,7 +19,7 @@ func updateEndpointValidator(
// Check BasicAuth credentials
username, password, ok := r.BasicAuth()
if !ok || !util.CheckCredentials(authDB, validCredentials, username, password) {
w.Header()["WWW-Authenticate"] = []string{"Basic realm=\"spaceapid\""}
w.Header().Set("WWW-Authenticate", "Basic realm=\"space-api\"")
http.Error(w, "", http.StatusUnauthorized)
return []byte{}, errors.New(fmt.Sprintf("Unauthorized request from %s Username: %s Password: %s", r.RemoteAddr, username, password))
}