Delete types/v14.go, replace with v15.go.
Rename internal types to not include message version.
I don't currently see the need to support multiple message
versions that have incompatible layouts.
v15 is backwards compatible with v14, so the config example now
specifies both.
Rename the "response" field in the config file to "static" as
dynamic/static makes more sense from the user's perspective.
(Internally it's still SpaceapidConfig.{Dynamic,Response}
to align with type names and usage.)
70 lines
1.8 KiB
Go
70 lines
1.8 KiB
Go
package handlers
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
"strconv"
|
|
"time"
|
|
|
|
"git.hamburg.ccc.de/ccchh/spaceapid/config"
|
|
"git.hamburg.ccc.de/ccchh/spaceapid/types"
|
|
)
|
|
|
|
func StateOpen(
|
|
authDB config.HTTPBACredentials, validCredentials []config.HTTPBACredentialID,
|
|
resp *types.SpaceAPIState,
|
|
) func(http.ResponseWriter, *http.Request) {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
body, err := updateEndpointValidator(authDB, validCredentials, w, r)
|
|
if err != nil {
|
|
log.Println(err)
|
|
return
|
|
}
|
|
|
|
// Parse request body
|
|
newState, err := strconv.ParseBool(string(body))
|
|
if err != nil {
|
|
log.Println("Failed to parse request body from", r.RemoteAddr, "with error:", err)
|
|
http.Error(w, "HTTP request body should either be true or false", http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
// Set SpaceAPI response values
|
|
resp.Open = newState
|
|
resp.LastChange = time.Now().Unix()
|
|
}
|
|
}
|
|
|
|
func StateMessagePUT(
|
|
authDB config.HTTPBACredentials, validCredentials []config.HTTPBACredentialID,
|
|
resp *types.SpaceAPIState,
|
|
) func(http.ResponseWriter, *http.Request) {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
body, err := updateEndpointValidator(authDB, validCredentials, w, r)
|
|
if err != nil {
|
|
log.Println(err)
|
|
return
|
|
}
|
|
|
|
// Set SpaceAPI response values
|
|
resp.Message = string(body)
|
|
resp.LastChange = time.Now().Unix()
|
|
}
|
|
}
|
|
|
|
func StateMessageDELETE(
|
|
authDB config.HTTPBACredentials, validCredentials []config.HTTPBACredentialID,
|
|
resp *types.SpaceAPIState,
|
|
) func(http.ResponseWriter, *http.Request) {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
_, err := updateEndpointValidator(authDB, validCredentials, w, r)
|
|
if err != nil {
|
|
log.Println(err)
|
|
return
|
|
}
|
|
|
|
// Set SpaceAPI response values
|
|
resp.Message = ""
|
|
resp.LastChange = time.Now().Unix()
|
|
}
|
|
}
|