blob: 96291e76aac365a080357ef0af6ca9a62bec194d [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.
*/
/**
* Service for operating on history records via the REST API.
*/
angular.module('rest').factory('historyService', ['$injector',
function historyService($injector) {
// Required services
var requestService = $injector.get('requestService');
var authenticationService = $injector.get('authenticationService');
var service = {};
/**
* Makes a request to the REST API to get the usage history of all
* accessible connections, returning a promise that provides the
* corresponding array of @link{ConnectionHistoryEntry} objects if
* successful.
*
* @param {String} dataSource
* The unique identifier of the data source containing the connection
* history records to be retrieved. This identifier corresponds to an
* AuthenticationProvider within the Guacamole web application.
*
* @param {String[]} [requiredContents]
* The set of arbitrary strings to filter with. A ConnectionHistoryEntry
* must contain each of these values within the associated username,
* connection name, start date, or end date to appear in the result. If
* null, no filtering will be performed.
*
* @param {String[]} [sortPredicates]
* The set of predicates to sort against. The resulting array of
* ConnectionHistoryEntry objects will be sorted according to the
* properties and sort orders defined by each predicate. If null, the
* order of the resulting entries is undefined. Valid values are listed
* within ConnectionHistoryEntry.SortPredicate.
*
* @returns {Promise.<ConnectionHistoryEntry[]>}
* A promise which will resolve with an array of
* @link{ConnectionHistoryEntry} objects upon success.
*/
service.getConnectionHistory = function getConnectionHistory(dataSource,
requiredContents, sortPredicates) {
var httpParameters = {};
// Filter according to contents if restrictions are specified
if (requiredContents)
httpParameters.contains = requiredContents;
// Sort according to provided predicates, if any
if (sortPredicates)
httpParameters.order = sortPredicates;
// Retrieve connection history
return authenticationService.request({
method : 'GET',
url : 'api/session/data/' + encodeURIComponent(dataSource) + '/history/connections',
params : httpParameters
});
};
return service;
}]);