More useful 404, particularly for API version change
This commit is contained in:
parent
4430013bae
commit
23f9d45ed5
1 changed files with 16 additions and 0 deletions
|
@ -21,6 +21,9 @@ const PathRegister = PathPrefix + "/signup"
|
||||||
const PathPassword = PathPrefix + "/password"
|
const PathPassword = PathPrefix + "/password"
|
||||||
const PathWallet = PathPrefix + "/wallet"
|
const PathWallet = PathPrefix + "/wallet"
|
||||||
|
|
||||||
|
const PathUnknownEndpoint = PathPrefix + "/"
|
||||||
|
const PathWrongApiVersion = "/api/"
|
||||||
|
|
||||||
type Server struct {
|
type Server struct {
|
||||||
auth auth.AuthInterface
|
auth auth.AuthInterface
|
||||||
store store.StoreInterface
|
store store.StoreInterface
|
||||||
|
@ -177,12 +180,25 @@ func validateEmail(email auth.Email) bool {
|
||||||
// TODO - both wallet and token requests should be PUT, not POST.
|
// TODO - both wallet and token requests should be PUT, not POST.
|
||||||
// PUT = "...creates a new resource or replaces a representation of the target resource with the request payload."
|
// PUT = "...creates a new resource or replaces a representation of the target resource with the request payload."
|
||||||
|
|
||||||
|
func (s *Server) unknownEndpoint(w http.ResponseWriter, req *http.Request) {
|
||||||
|
errorJson(w, http.StatusNotFound, "Unknown Endpoint")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *Server) wrongApiVersion(w http.ResponseWriter, req *http.Request) {
|
||||||
|
errorJson(w, http.StatusNotFound, "Wrong API version. Current version is "+ApiVersion+".")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
func (s *Server) Serve() {
|
func (s *Server) Serve() {
|
||||||
http.HandleFunc(PathAuthToken, s.getAuthToken)
|
http.HandleFunc(PathAuthToken, s.getAuthToken)
|
||||||
http.HandleFunc(PathWallet, s.handleWallet)
|
http.HandleFunc(PathWallet, s.handleWallet)
|
||||||
http.HandleFunc(PathRegister, s.register)
|
http.HandleFunc(PathRegister, s.register)
|
||||||
http.HandleFunc(PathPassword, s.changePassword)
|
http.HandleFunc(PathPassword, s.changePassword)
|
||||||
|
|
||||||
|
http.HandleFunc(PathUnknownEndpoint, s.unknownEndpoint)
|
||||||
|
http.HandleFunc(PathWrongApiVersion, s.wrongApiVersion)
|
||||||
|
|
||||||
fmt.Println("Serving at localhost:8090")
|
fmt.Println("Serving at localhost:8090")
|
||||||
http.ListenAndServe("localhost:8090", nil)
|
http.ListenAndServe("localhost:8090", nil)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue