mapserver/web/viewblock.go
BuckarooBanzay 288bf9361e go fmt ./...
2020-03-13 18:06:59 +01:00

55 lines
1.1 KiB
Go

package web
import (
"encoding/json"
"mapserver/app"
"mapserver/coords"
"net/http"
"strconv"
"strings"
)
type ViewBlock struct {
BlockMapping map[int]string `json:"blockmapping"`
ContentId []int `json:"contentid"`
}
type ViewMapblockHandler struct {
ctx *app.App
}
func (h *ViewMapblockHandler) ServeHTTP(resp http.ResponseWriter, req *http.Request) {
str := strings.TrimPrefix(req.URL.Path, "/api/viewblock/")
parts := strings.Split(str, "/")
if len(parts) != 3 {
resp.WriteHeader(500)
resp.Write([]byte("wrong number of arguments"))
return
}
x, _ := strconv.Atoi(parts[0])
y, _ := strconv.Atoi(parts[1])
z, _ := strconv.Atoi(parts[2])
c := coords.NewMapBlockCoords(x, y, z)
mb, err := h.ctx.MapBlockAccessor.GetMapBlock(c)
if err != nil {
resp.WriteHeader(500)
resp.Write([]byte(err.Error()))
} else {
var vb *ViewBlock
if mb != nil {
vb = &ViewBlock{}
vb.BlockMapping = mb.BlockMapping
vb.ContentId = mb.Mapdata.ContentId
}
resp.Header().Add("content-type", "application/json")
json.NewEncoder(resp).Encode(vb)
}
}