1
0
mirror of https://github.com/matrix-org/dendrite.git synced 2024-06-16 05:56:43 +00:00

Implement version endpoint (#262)

This commit is contained in:
Jan Christian Grünhage 2017-09-25 12:16:47 +02:00 committed by Mark Haines
parent 42f264119f
commit b2f6f89496
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,33 @@
// Copyright 2017 New Vector Ltd
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package readers
import (
"github.com/matrix-org/util"
)
type version struct {
Server server `json:"server"`
}
type server struct {
Version string `json:"version"`
Name string `json:"name"`
}
// Version returns the server version
func Version() util.JSONResponse {
return util.JSONResponse{Code: 200, JSON: &version{server{"dev", "Dendrite"}}}
}

View File

@ -106,4 +106,11 @@ func Setup(
)
},
)).Methods("GET")
v1fedmux.Handle("/version", common.MakeAPI(
"federation_version",
func(httpReq *http.Request) util.JSONResponse {
return readers.Version()
},
)).Methods("GET")
}