Support retrieving the server version via REST

The Gerrit server version can now be retrieved by GET on
/config/server/version.

Change-Id: Id784ff9af13c2327100acefe2d737a0243483204
Signed-off-by: Edwin Kempin <edwin.kempin@sap.com>
This commit is contained in:
Edwin Kempin
2013-07-04 16:03:32 +02:00
committed by Edwin Kempin
parent ba149cefc0
commit f2e3fe63f4
3 changed files with 53 additions and 0 deletions

View File

@@ -9,6 +9,28 @@ link:rest-api.html[REST API].
Config Endpoints
---------------
[[get-version]]
Get Version
~~~~~~~~~~~
[verse]
'GET /config/server/version'
Returns the version of the Gerrit server.
.Request
----
GET /config/server/version HTTP/1.0
----
.Response
----
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
)]}'
"2.7"
----
[[list-capabilities]]
List Capabilities
~~~~~~~~~~~~~~~~~

View File

@@ -0,0 +1,30 @@
// Copyright (C) 2013 The Android Open Source Project
//
// 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 com.google.gerrit.server.config;
import com.google.gerrit.common.Version;
import com.google.gerrit.extensions.restapi.ResourceNotFoundException;
import com.google.gerrit.extensions.restapi.RestReadView;
public class GetVersion implements RestReadView<ConfigResource> {
@Override
public String apply(ConfigResource resource) throws ResourceNotFoundException {
String version = Version.getVersion();
if (version == null) {
throw new ResourceNotFoundException();
}
return version;
}
}

View File

@@ -26,5 +26,6 @@ public class Module extends RestApiModule {
DynamicMap.mapOf(binder(), CONFIG_KIND);
DynamicMap.mapOf(binder(), CAPABILITY_KIND);
child(CONFIG_KIND, "capabilities").to(CapabilitiesCollection.class);
get(CONFIG_KIND, "version").to(GetVersion.class);
}
}