blob: 157ff5743928aba022d1f7fcfb1fa03fc4a13565 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*******************************************************************************
* Copyright (c) 2016 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials are made
* available under the terms of the Eclipse Public License v1.0
* (http://www.eclipse.org/legal/epl-v10.html), and the Eclipse Distribution
* License v1.0 (http://www.eclipse.org/org/documents/edl-v10.html).
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/*eslint-env node */
var express = require('express');
module.exports = {};
var BUILD_ID = "unknown";
module.exports.router = function(options) {
var configParams = options.configParams;
if (!configParams) { throw new Error('options.configParams is required'); }
return express.Router()
.get('*', /* @callback */ function (req, res) {
var buildID = configParams["orion.buildId"] || BUILD_ID;
res.setHeader("Cache-Control", "no-cache");
return res.status(200).json({
build: buildID
});
});
};
|