mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-08 14:11:21 +00:00
185 lines
5.7 KiB
JavaScript
185 lines
5.7 KiB
JavaScript
/*
|
|
* Guacamole - Clientless Remote Desktop
|
|
* Copyright (C) 2010 Michael Jumper
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* Main Guacamole web service namespace.
|
|
* @namespace
|
|
*/
|
|
var GuacamoleService = GuacamoleService || {};
|
|
|
|
/**
|
|
* An arbitrary Guacamole connection, consisting of an ID/protocol pair.
|
|
*
|
|
* @constructor
|
|
* @param {String} protocol The protocol used by this connection.
|
|
* @param {String} id The ID associated with this connection.
|
|
*/
|
|
GuacamoleService.Connection = function(protocol, id) {
|
|
|
|
/**
|
|
* The protocol associated with this connection.
|
|
*/
|
|
this.protocol = protocol;
|
|
|
|
/**
|
|
* The ID associated with this connection.
|
|
*/
|
|
this.id = id;
|
|
|
|
};
|
|
|
|
/**
|
|
* Collection of service functions which deal with connections. Each function
|
|
* makes an explicit HTTP query to the server, and parses the response.
|
|
*/
|
|
GuacamoleService.Connections = {
|
|
|
|
/**
|
|
* Returns an array of Connections for which the current user has access.
|
|
*
|
|
* @param {String} parameters Any parameters which should be passed to the
|
|
* server for the sake of authentication
|
|
* (optional).
|
|
* @return {GuacamoleService.Connection[]} An array of Connections for
|
|
* which the current user has
|
|
* access.
|
|
*/
|
|
"list" : function(parameters) {
|
|
|
|
// Construct request URL
|
|
var list_url = "connections";
|
|
if (parameters) list_url += "?" + parameters;
|
|
|
|
// Get connection list
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.open("GET", list_url, false);
|
|
xhr.send(null);
|
|
|
|
// If fail, throw error
|
|
if (xhr.status != 200)
|
|
throw new Error(xhr.statusText);
|
|
|
|
// Otherwise, get list
|
|
var connections = new Array();
|
|
|
|
var connectionElements = xhr.responseXML.getElementsByTagName("connection");
|
|
for (var i=0; i<connectionElements.length; i++) {
|
|
connections.push(new GuacamoleService.Connection(
|
|
connectionElements[i].getAttribute("protocol"),
|
|
connectionElements[i].getAttribute("id")
|
|
));
|
|
}
|
|
|
|
return connections;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
/**
|
|
* Collection of service functions which deal with users. Each function
|
|
* makes an explicit HTTP query to the server, and parses the response.
|
|
*/
|
|
GuacamoleService.Users = {
|
|
|
|
/**
|
|
* Returns an array of usernames for which the current user has access.
|
|
*
|
|
* @param {String} parameters Any parameters which should be passed to the
|
|
* server for the sake of authentication
|
|
* (optional).
|
|
* @return {String[]} An array of usernames for which the current user has
|
|
* access.
|
|
*/
|
|
"list" : function(parameters) {
|
|
|
|
// Construct request URL
|
|
var users_url = "users";
|
|
if (parameters) users_url += "?" + parameters;
|
|
|
|
// Get user list
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.open("GET", users_url, false);
|
|
xhr.send(null);
|
|
|
|
// If fail, throw error
|
|
if (xhr.status != 200)
|
|
throw new Error(xhr.statusText);
|
|
|
|
// Otherwise, get list
|
|
var users = new Array();
|
|
|
|
var userElements = xhr.responseXML.getElementsByTagName("user");
|
|
for (var i=0; i<userElements.length; i++)
|
|
users.push(userElements[i].getAttribute("name"));
|
|
|
|
return users;
|
|
|
|
},
|
|
|
|
/**
|
|
* Creates a new user having the given username.
|
|
*
|
|
* @param {String} username The username of the user to create.
|
|
* @param {String} parameters Any parameters which should be passed to the
|
|
* server for the sake of authentication
|
|
* (optional).
|
|
*/
|
|
"create" : function(username, parameters) {
|
|
|
|
// Construct request URL
|
|
var users_url = "users/create?name=" + encodeURIComponent(username);
|
|
if (parameters) users_url += "&" + parameters;
|
|
|
|
// Add user
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.open("GET", users_url, false);
|
|
xhr.send(null);
|
|
|
|
// If fail, throw error
|
|
if (xhr.status != 200)
|
|
throw new Error(xhr.statusText);
|
|
|
|
},
|
|
|
|
/**
|
|
* Deletes the user having the given username.
|
|
*
|
|
* @param {String} username The username of the user to delete.
|
|
* @param {String} parameters Any parameters which should be passed to the
|
|
* server for the sake of authentication
|
|
* (optional).
|
|
*/
|
|
"remove" : function(username, parameters) {
|
|
|
|
// Construct request URL
|
|
var users_url = "users/delete?name=" + encodeURIComponent(username);
|
|
if (parameters) users_url += "&" + parameters;
|
|
|
|
// Add user
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.open("GET", users_url, false);
|
|
xhr.send(null);
|
|
|
|
// If fail, throw error
|
|
if (xhr.status != 200)
|
|
throw new Error(xhr.statusText);
|
|
|
|
}
|
|
|
|
}; |