GUACAMOLE-5: Provide direct access via REST to the sharing profiles available for the active connection of a given tunnel.

This commit is contained in:
Michael Jumper
2016-07-16 00:37:52 -07:00
parent bb36045ff8
commit 7ea4af7016
3 changed files with 158 additions and 0 deletions

View File

@@ -68,6 +68,36 @@ angular.module('rest').factory('tunnelService', ['$injector',
};
/**
* Retrieves the set of sharing profiles that the current user can use to
* share the active connection of the given tunnel.
*
* @param {String} tunnel
* The UUID of the tunnel associated with the Guacamole connection
* whose sharing profiles are being retrieved.
*
* @returns {Promise.<Object.<String, SharingProfile>>}
* A promise which will resolve with a map of @link{SharingProfile}
* objects where each key is the identifier of the corresponding
* sharing profile.
*/
service.getSharingProfiles = function getSharingProfiles(tunnel) {
// Build HTTP parameters set
var httpParameters = {
token : authenticationService.getCurrentToken()
};
// Retrieve all associated sharing profiles
return $http({
method : 'GET',
url : 'api/session/tunnels/' + encodeURIComponent(tunnel)
+ '/activeConnection/connection/sharingProfiles',
params : httpParameters
});
};
/**
* Makes a request to the REST API to generate credentials which have
* access strictly to the active connection associated with the given

View File

@@ -0,0 +1,85 @@
/*
* 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 which defines the SharingProfile class.
*/
angular.module('rest').factory('SharingProfile', [function defineSharingProfile() {
/**
* The object returned by REST API calls when representing the data
* associated with a sharing profile.
*
* @constructor
* @param {SharingProfile|Object} [template={}]
* The object whose properties should be copied within the new
* SharingProfile.
*/
var SharingProfile = function SharingProfile(template) {
// Use empty object by default
template = template || {};
/**
* The unique identifier associated with this sharing profile.
*
* @type String
*/
this.identifier = template.identifier;
/**
* The unique identifier of the connection that this sharing profile
* can be used to share.
*
* @type String
*/
this.primaryConnectionIdentifier = template.primaryConnectionIdentifier;
/**
* The human-readable name of this sharing profile, which is not
* necessarily unique.
*
* @type String
*/
this.name = template.name;
/**
* Connection configuration parameters, as dictated by the protocol in
* use by the primary connection, arranged as name/value pairs. This
* information may not be available until directly queried. If this
* information is unavailable, this property will be null or undefined.
*
* @type Object.<String, String>
*/
this.parameters = template.parameters;
/**
* Arbitrary name/value pairs which further describe this sharing
* profile. The semantics and validity of these attributes are dictated
* by the extension which defines them.
*
* @type Object.<String, String>
*/
this.attributes = {};
};
return SharingProfile;
}]);