GUACAMOLE-5: Define connection and sharing profile parameters separately.

This commit is contained in:
Michael Jumper
2016-08-07 22:50:26 -07:00
parent 989ad39513
commit 14365ff72e
7 changed files with 108 additions and 33 deletions

View File

@@ -24,9 +24,10 @@ import java.util.Collection;
import org.apache.guacamole.form.Form; import org.apache.guacamole.form.Form;
/** /**
* Describes a protocol and all forms associated with it, as required by * Describes a protocol and all parameters associated with it, as required by
* a protocol plugin for guacd. This class allows known forms for a * a protocol plugin for guacd. Each parameter is described with a Form, which
* protocol to be exposed to the user as friendly fields. * allows the parameters of a protocol to be exposed to the user as friendly
* groupings of fields.
* *
* @author Michael Jumper * @author Michael Jumper
*/ */
@@ -38,15 +39,45 @@ public class ProtocolInfo {
private String name; private String name;
/** /**
* A collection of all associated protocol forms. * A collection of forms describing all known parameters for a connection
* using this protocol.
*/ */
private Collection<Form> forms; private Collection<Form> connectionForms;
/**
* A collection of forms describing all known parameters relevant to a
* sharing profile whose primary connection uses this protocol.
*/
private Collection<Form> sharingProfileForms;
/**
* Creates a new ProtocolInfo having the given name and forms. The given
* collections of forms are used to describe the parameters for connections
* and sharing profiles respectively.
*
* @param name
* The unique name associated with the protocol.
*
* @param connectionForms
* A collection of forms describing all known parameters for a
* connection using this protocol.
*
* @param sharingProfileForms
* A collection of forms describing all known parameters relevant to a
* sharing profile whose primary connection uses this protocol.
*/
public ProtocolInfo(String name, Collection<Form> connectionForms,
Collection<Form> sharingProfileForms) {
this.name = name;
this.connectionForms = connectionForms;
this.sharingProfileForms = sharingProfileForms;
}
/** /**
* Creates a new ProtocolInfo with no associated name or forms. * Creates a new ProtocolInfo with no associated name or forms.
*/ */
public ProtocolInfo() { public ProtocolInfo() {
this.forms = new ArrayList<Form>(); this(null);
} }
/** /**
@@ -56,22 +87,24 @@ public class ProtocolInfo {
* The unique name associated with the protocol. * The unique name associated with the protocol.
*/ */
public ProtocolInfo(String name) { public ProtocolInfo(String name) {
this.name = name; this(name, new ArrayList<Form>());
this.forms = new ArrayList<Form>();
} }
/** /**
* Creates a new ProtocolInfo having the given name and forms. * Creates a new ProtocolInfo having the given name and forms. The given
* forms are used to describe the parameters for both connections and
* sharing profiles.
* *
* @param name * @param name
* The unique name associated with the protocol. * The unique name associated with the protocol.
* *
* @param forms * @param forms
* The forms to associate with the protocol. * A collection of forms describing all known parameters for this
* protocol, regardless of whether it is used in the context of a
* connection or a sharing profile.
*/ */
public ProtocolInfo(String name, Collection<Form> forms) { public ProtocolInfo(String name, Collection<Form> forms) {
this.name = name; this(name, forms, new ArrayList<Form>(forms));
this.forms = forms;
} }
/** /**
@@ -95,25 +128,57 @@ public class ProtocolInfo {
} }
/** /**
* Returns a mutable collection of the protocol forms associated with * Returns a mutable collection of forms describing all known parameters for
* this protocol. Changes to this collection affect the forms exposed * a connection using this protocol. Changes to this collection affect the
* to the user. * forms exposed to the user.
* *
* @return A mutable collection of protocol forms. * @return
* A mutable collection of forms describing all known parameters for a
* connection using this protocol.
*/ */
public Collection<Form> getForms() { public Collection<Form> getConnectionForms() {
return forms; return connectionForms;
} }
/** /**
* Sets the collection of protocol forms associated with this * Sets the collection of forms describing all known parameters for a
* protocol. * connection using this protocol. The provided collection must be mutable.
* *
* @param forms * @param connectionForms
* The collection of forms to associate with this protocol. * A mutable collection of forms describing all known parameters for a
* connection using this protocol.
*/ */
public void setForms(Collection<Form> forms) { public void setConnectionForms(Collection<Form> connectionForms) {
this.forms = forms; this.connectionForms = connectionForms;
} }
/**
* Returns a mutable collection of forms describing all known parameters
* relevant to a sharing profile whose primary connection uses this
* protocol. Changes to this collection affect the forms exposed to the
* user.
*
* @return
* A mutable collection of forms describing all known parameters
* relevant to a sharing profile whose primary connection uses this
* protocol.
*/
public Collection<Form> getSharingProfileForms() {
return sharingProfileForms;
}
/**
* Sets the collection of forms describing all known parameters relevant to
* a sharing profile whose primary connection uses this protocol. The
* provided collection must be mutable.
*
* @param sharingProfileForms
* A mutable collection of forms describing all known parameters
* relevant to a sharing profile whose primary connection uses this
* protocol.
*/
public void setSharingProfileForms(Collection<Form> sharingProfileForms) {
this.sharingProfileForms = sharingProfileForms;
}
} }

View File

@@ -1,6 +1,6 @@
{ {
"name" : "rdp", "name" : "rdp",
"forms" : [ "connectionForms" : [
{ {
"name" : "network", "name" : "network",

View File

@@ -1,6 +1,6 @@
{ {
"name" : "ssh", "name" : "ssh",
"forms" : [ "connectionForms" : [
{ {
"name" : "network", "name" : "network",

View File

@@ -1,6 +1,6 @@
{ {
"name" : "telnet", "name" : "telnet",
"forms" : [ "connectionForms" : [
{ {
"name" : "network", "name" : "network",

View File

@@ -1,6 +1,6 @@
{ {
"name" : "vnc", "name" : "vnc",
"forms" : [ "connectionForms" : [
{ {
"name" : "network", "name" : "network",

View File

@@ -47,7 +47,7 @@
<h2 class="header">{{'MANAGE_CONNECTION.SECTION_HEADER_PARAMETERS' | translate}}</h2> <h2 class="header">{{'MANAGE_CONNECTION.SECTION_HEADER_PARAMETERS' | translate}}</h2>
<div class="section connection-parameters" ng-class="{loading: !parameters}"> <div class="section connection-parameters" ng-class="{loading: !parameters}">
<guac-form namespace="getNamespace(connection.protocol)" <guac-form namespace="getNamespace(connection.protocol)"
content="protocols[connection.protocol].forms" content="protocols[connection.protocol].connectionForms"
model="parameters"></guac-form> model="parameters"></guac-form>
</div> </div>

View File

@@ -44,13 +44,23 @@ angular.module('rest').factory('Protocol', [function defineProtocol() {
this.name = template.name; this.name = template.name;
/** /**
* An array of forms containing all known parameters for this protocol, * An array of forms describing all known parameters for a connection
* their types, and other information. * using this protocol, including their types and other information.
* *
* @type Form[] * @type Form[]
* @default [] * @default []
*/ */
this.forms = template.forms || []; this.connectionForms = template.connectionForms || [];
/**
* An array of forms describing all known parameters relevant to a
* sharing profile whose primary connection uses this protocol,
* including their types, and other information.
*
* @type Form[]
* @default []
*/
this.sharingProfileForms = template.sharingProfileForms || [];
}; };