ripple-api/app/v1/404.go

30 lines
540 B
Go
Raw Normal View History

2016-04-03 17:59:27 +00:00
package v1
import (
"encoding/json"
"github.com/valyala/fasthttp"
2019-02-25 21:04:55 +00:00
"github.com/osuyozora/api/common"
2016-04-03 17:59:27 +00:00
)
2016-04-16 16:05:24 +00:00
type response404 struct {
common.ResponseBase
Cats string `json:"cats"`
}
2016-04-03 17:59:27 +00:00
// Handle404 handles requests with no implemented handlers.
func Handle404(c *fasthttp.RequestCtx) {
c.Response.Header.Add("X-Real-404", "yes")
data, err := json.MarshalIndent(response404{
2016-04-16 16:05:24 +00:00
ResponseBase: common.ResponseBase{
Code: 404,
2016-04-16 16:05:24 +00:00
},
Cats: surpriseMe(),
}, "", "\t")
if err != nil {
panic(err)
}
c.SetStatusCode(404)
c.Write(data)
2016-04-03 17:59:27 +00:00
}