blob: 317b997b56d33b988bc88b775cffd86336a2cd14 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
import angular from 'angular';
const MODULE_NAME = 'brooklyn.utils.api.brooklyn.server';
angular.module(MODULE_NAME, [])
.provider('serverApi', serverApiProvider);
export default MODULE_NAME;
export function serverApiProvider() {
let cacheName = '$http';
return {
cacheName: function (value) {
cacheName = value;
},
$get: ['$http', '$cacheFactory', ($http, $cacheFactory) => {
let cache = $cacheFactory.get(cacheName) || $cacheFactory(cacheName);
return new ServerApi($http, cache);
}]
};
}
function ServerApi($http, $q, cache) {
this.getVersion = getVersion;
this.getUser = getUser;
this.getHaStates = getHaStates;
this.getUpExtended = getUpExtended;
function getVersion(config) {
return $http.get('/v1/server/version', angular.extend({cache: cache}, config));
}
function getUser(config) {
return $http.get('/v1/server/user', angular.extend({cache: cache}, config));
}
function getHaStates(config) {
return $http.get('/v1/server/ha/states', angular.extend({cache: cache}, config));
}
function getUpExtended(config) {
return $http.get('/v1/server/up/extended', angular.extend({cache: cache}, config));
}
}