2017-09-25 10:16:47 +00:00
|
|
|
// 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.
|
|
|
|
|
2017-10-25 10:27:44 +00:00
|
|
|
package routing
|
2017-09-25 10:16:47 +00:00
|
|
|
|
|
|
|
import (
|
2018-03-13 15:55:45 +00:00
|
|
|
"net/http"
|
|
|
|
|
2020-09-02 15:18:08 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal"
|
2017-09-25 10:16:47 +00:00
|
|
|
"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 {
|
2020-09-02 15:18:08 +00:00
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusOK,
|
|
|
|
JSON: &version{
|
|
|
|
server{
|
|
|
|
Name: "Dendrite",
|
|
|
|
Version: internal.VersionString(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2017-09-25 10:16:47 +00:00
|
|
|
}
|