Gate One's JavaScript (source) is made up of several modules (aka plugins), each pertaining to a specific type of activity. These modules are laid out like so:
The properties and functions of each respective module are outlined below.
Note
Why is GateOne.Base before GateOne? Two reasons: 1) Because that's how it is laid out in the code. 2) The module-loading functions are all inside GateOne.Base.
The Base module is mostly copied from MochiKit and consists of the following:
- GateOne.Base.module(parent, name, version, deps)¶
Creates a new name module in a parent namespace. This function will create a new empty module object with NAME, VERSION, toString and __repr__ properties. It will also verify that all the strings in deps are defined in parent, or an error will be thrown.
Arguments:
- parent (object) -- The parent module or namespace (object).
- name -- A string representing the new module name.
- version -- The version string for this module (e.g. "1.0").
- deps -- An array of module dependencies, as strings.
The following example would create a new object named, "Net", attach it to the GateOne object, at version "0.9", with GateOne.Base and GateOne.Utils as dependencies:
> GateOne.Base.module(GateOne, 'Net', '1.0', ['Base', 'Utils']); > GateOne.Net.__repr__(); "[GateOne.Net 1.0]" > GateOne.Net.NAME; "GateOne.Net"
- GateOne.Base.update(self, obj[, obj2, ...])¶
Mutate self by replacing its key:value pairs with those from other object(s). Key:value pairs from later objects will overwrite those from earlier objects.
If self is null, a new Object instance will be created and returned.
Warning
This mutates and returns self.
Arguments:
- self (object) -- The object you wish to mutate with obj.
- obj -- Any given JavaScript object (e.g. {}).
Returns: self
The following example would mutate GateOne.Net with a new function, "someFunc()".
> GateOne.Base.update(GateOne.Net, {someFunc: function(i) { return "someFunc() was just executed with " + i + "."; }}); > GateOne.Net.someFunc('1234'); "someFunc() was just executed with 1234."Note
In this example, if GateOne.Net.someFunc() already existed, it would be overridden.
GateOne.Base.update() can be used to combine multiple sets of objects into one single object with latter objects taking precedence. Essentially, it's a way to emulate Python-style class mixins with JavaScript objects.
GateOne is the base object for all of GateOne's client-side JavaScript. Besides the aforementioned modules (Utils, Net, Input, Visual, Terminal, and User), it contains the following properties, objects, and methods:
Note
These are ordered by importance/usefulness.
Type : | Boolean |
---|
This gets set to true after GateOne.initialize() has completed all of its tasks.
Type : | Object |
---|
This is where all of Gate One's client-side preferences are kept. If the client changes them they will be saved in localStorage['prefs']. Also, these settings can be passed to GateOne.init() as an object in the first argument like so:
GateOne.init({fillContainer: false, style: {'width': '50em', 'height': '32em'}, theme: 'white'});
Each individual setting is outlined below:
Type : | String |
---|
GateOne.prefs.url = window.location.href;
URL of the Gate One server. Gate One will open a WebSocket to this URL, converting 'http://' and 'https://' to 'ws://' and 'wss://'.
Type : | Boolean |
---|
GateOne.prefs.fillContainer = true;
If set to true, GateOne.prefs.goDiv (e.g. #gateone) will fill itself out to the full size of its parent element.
Type : | Object |
---|
GateOne.prefs.style = {};
An object that will be used to apply styles to GateOne.prefs.goDiv element (#gateone by default). Example:
GateOne.prefs.style = {'padding': '1em', 'margin': '0.5em'};
Note
width and height will be ignored if GateOne.prefs.fillContainer is true.
Type : | String |
---|
GateOne.prefs.goDiv = '#gateone';
The element to place Gate One inside of. It can be any block element (or element set with display: block or display: inline-block) on the page embedding Gate One.
Note
To keep things simple it is recommended that a <div> be used (hence the name).
Type : | Integer |
---|
GateOne.prefs.scrollback = 500;
The default number of lines of scrollback that clients will be instructed to use. The higher the number the longer it will take for the browser to re-enable the scrollback buffer after the 3.5-second screen update timeout is reached. 500 lines should only take a few milliseconds even on a slow computer (very high resolutions notwithstanding).
Note
Clients will still be able to change this value in the preferences panel even if you pass it to GateOne.init().
Type : | Integer |
---|
GateOne.prefs.rows = null;
This will force the number of rows in the terminal. If null, Gate One will automatically figure out how many will fit within GateOne.prefs.goDiv.
Type : | Integer |
---|
GateOne.prefs.cols = null;
This will force the number of columns in the terminal. If null, Gate One will automatically figure out how many will fit within GateOne.prefs.goDiv.
Type : | String |
---|
GateOne.prefs.prefix = 'go_';
Instructs Gate One to prefix the 'id' of all elements it creates with this string (except GateOne.prefs.goDiv itself). You usually won't want to change this unless you're embedding Gate One into a page where a name conflict exists (e.g. you already have an element named #go_notice). The Gate One server will be made aware of this setting when the client connects so it can apply it to all generated templates where necessary.
Type : | String |
---|
GateOne.prefs.theme = 'black';
This sets the default CSS theme. Clients will still be able to change it in the preferences if they wish.
Type : | String |
---|
GateOne.prefs.colors = 'default'; // 'gnome-terminal' is another text color scheme that comes with Gate One.
This sets the CSS text color scheme. These are the colors that text renditions will use (i.e. when the terminal text is bold, red, etc).
Type : | String |
---|
GateOne.prefs.fontSize = '100%'; // Alternatives: '1em', '12pt', '15px', etc.
This sets the base font size for everything in GateOne.prefs.goDiv (e.g. #gateone).
Tip
If you're embedding Gate One into something else this can be really useful for matching up Gate One's font size with the rest of your app.
Type : | String |
---|
GateOne.prefs.autoConnectURL = null;
If the SSH plugin is installed, this setting can be used to ensure that whenever a client connects it will automatically connect to the given SSH URL. Here's an example where Gate One would auto-connect as a guest user to localhost (hypothetical terminal program demo):
GateOne.prefs.autoConnectURL = 'ssh://guest:guest@localhost:22';
Warning
If you provide a password in the ssh:// URL clients will be able to see it.
Type : | Boolean |
---|
GateOne.prefs.embedded = false;
This option tells Gate One (at the client) to run in embedded mode. In embedded mode there will be no toolbar, no side information panel, and new terminals will not be opened automatically. In essence, it just connects to the Gate One server, downloads additional JavaScript/CSS (plugins/themes), and calls each plugin's init() and postInit() functions (which may also behave differently in embedded mode). The point is to provide developers with the flexibility to control every aspect of Gate One's look and feel.
In GateOne's 'tests' directory there is a walkthrough/tutorial of embedded mode called "hello_embedded". To run it simply execute ./hello_embedded.py and connect to https://localhost/ in your browser.
Note
Why is the hello_embedded tutorial separate from this documentation? It needs to be run on a different address/port than the Gate One server itself in order to properly demonstrate how Gate One would be embedded "in the wild." Also note that the documentation you're reading is meant to be viewable offline (e.g. file:///path/to/the/docs in your browser) but web browsers don't allow WebSocket connections from documents loaded via file:// URLs.
Type : | Boolean |
---|
GateOne.prefs.skipChecks = false;
If this is set to true Gate One will skip performing browser capabilities checks/alerts when GateOne.init() is called.
Type : | Boolean |
---|
GateOne.prefs.showTitle = true;
If this is set to false Gate One will not show the terminal title in the sidebar.
Type : | Boolean |
---|
GateOne.prefs.showToolbar = true;
If this is set to false Gate One will not show the toolbar (no icons on the right).
Type : | Boolean |
---|
GateOne.prefs.audibleBell = true;
If this is set to false Gate One will not play a sound when a bell is encountered in any given terminal.
Note
A visual bell indiciator will still be displayed even if this is set to false.
Type : | String |
---|
GateOne.prefs.bellSound = "data:audio/ogg;base64,T2dnUwACAAAAAAAAA...";
Stores the user's chosen (or the default) bell sound as a data URI.
Note
This is much more efficient than having to download this file from the server every time Gate One is loaded!
Type : | String |
---|
GateOne.prefs.bellSound = "audio/ogg";
Stores the mimetype associated with GateOne.prefs.bellSound.
Type : | Boolean |
---|
GateOne.prefs.disableTermTransitions = false;
With this enabled Gate One won't use fancy CSS3 transitions when switching between open terminals. Such switching will be instantaneous (i.e. not smooth/pretty).
Type : | Integer |
---|
GateOne.prefs.colAdjust = 0;
When the terminal size is calculated the number of columns will be decreased by this amount (e.g. to make room for an extra toolbar).
Type : | Integer |
---|
GateOne.prefs.rowAdjust = 0;
When the terminal size is calculated the number of rows will be decreased by this amount (e.g. to make room for the playback controls).
Type : | String |
---|
GateOne.prefs.webWorker = "https://gateone.company.com/static/go_process.js";
This is the fallback path to Gate One's Web Worker. You should only ever have to change this when embedding Gate One into another application and your Gate One server is listening on a different port than your app's web server. Otherwise Gate One will just use the Web Worker located at GateOne.prefs.url/static/go_process.js.
Type : | Object |
---|
GateOne.prefs.auth = { // This is just an example--not a default
'api_key': 'MjkwYzc3MDI2MjhhNGZkNDg1MjJkODgyYjBmN2MyMTM4M',
'upn': 'joe@company.com',
'timestamp': 1323391717238,
'signature': <encrypted gibberish>,
'signature_method': 'HMAC-SHA1',
'api_version': '1.0'
};
This is used to pre-authenticate users when Gate One is embedded into another application. It works like this: You enroll your app by creating an API key and secret via "./gateone.py --new_api_key". Then you use those generated values to sign the combined values of upn, timestamp, and api_key via HMAC-SHA1 using the secret that was created when you generated your API key. When Gate One sees these values it will verify them against the API keys/secrets it knows about and if everything lines up it will inherently trust the 'upn' (aka username) it has been given via this mechanism.
This process allows parent applications (embedding Gate One) to authenticate a user just once instead of having users authenticate once for their own app and then once again for Gate One.
Note
If your app doesn't authenticate users you can still embed Gate One using the default (anonymous) authentication method. In these instances there's no need to pass an 'auth' parameter to GateOne.init().
More information about API-based authentication can be found in the "Embedding Gate One" documentation.
Type : | Object |
---|
Properties in this object that match the names of objects in GateOne.prefs will get ignored when they are saved to localStorage.
Note
Plugin Authors: If you want to have your own property in GateOne.prefs but it isn't a per-user setting, add your property here (e.g. GateOne.prefs['myPref'] = 'foo'; GateOne.noSavePrefs['myPref'] = null;).
Here's what this object contains by default:
GateOne.noSavePrefs = {
url: null, // These are all things that shouldn't be modified by the user.
webWorker: null,
fillContainer: null,
style: null,
goDiv: null,
prefix: null,
autoConnectURL: null,
embedded: null,
auth: null,
showTitle: null,
showToolbar: null,
rowAdjust: null,
colAdjust: null
}
Type : | Array |
---|
Functions placed in this array will be called immediately after GateOne.Utils.savePrefs() is called. This gives plugins the ability to save their own preferences (in their own way) when the user clicks the "Save" button in the preferences panel.
Type : | Object |
---|
Terminal-specific settings and information are stored within this object like so:
GateOne.terminals[1] = { X11Title = "Gate One", backspace: String.fromCharCode(127), columns: 165, created: Date(), mode: "default", node: <pre>, pasteNode: <textarea>, playbackFrames: Array(), prevScreen: Array(), rows: 45, screen: Array(), screenNode: <span>, scrollback: Array(), scrollbackNode: <span>, scrollbackTimer: 2311, scrollbackVisible: true, scrollbackWriteTimer: 2649 sshConnectString: "user@localhost:22" };
Each terminal in Gate One has its own object--referenced by terminal number--attached to terminals that gets created when a new terminal is opened (in GateOne.Terminal.newTerminal()). Theses values and what they mean are outlined below:
Type : | String |
---|
GateOne.terminals[num].X11Title = "New Terminal";
When the server detects an X11 title escape sequence it sends it to the client and that value gets stored in this variable. This is separated from the terminal node's title attribute so that the user can restore the X11 title after they have overridden it.
Type : | String |
---|
GateOne.terminals[num].backspace = String.fromCharCode(127);
The backspace key used by this terminal. One of ^? (String.fromCharCode(127)) or ^H (String.fromCharCode(8)).
Note
Not configurable yet. Should be soon.
Type : | Integer |
---|
GateOne.terminals[num].columns = GateOne.prefs.cols;
The number of columns this terminal is configured to use. Unless the user changed it, it will match whatever is in GateOne.prefs.cols.
Type : | Date() |
---|
GateOne.terminals[num].created = new Date();
The date and time a terminal was originally created.
Type : | String |
---|
GateOne.terminals[num].mode = "default";
The current keyboard input mode of the terminal. One of "default" or "appmode" representing whether or not the terminal is in standard or "application cursor keys" mode (which changes what certain keystrokes send to the Gate One server).
Type : | DOM Node |
---|
GateOne.terminals[num].node = <pre node object>
Used as a quick reference to the terminal's <pre> node so we don't have to call GateOne.Utils.getNode() every time we need it.
Type : | DOM Node |
---|
GateOne.terminals[num].node = <textarea node object>
Used as a quick reference to the terminal's pastearea node (which hovers above all terminals so you can paste in a natural fashion).
Type : | Array |
---|
GateOne.terminals[num].playbackFrames = Array();
This is where Gate One stores the frames of your session so they can be played back on-the-fly.
Note
playbackFrames only gets used if the playback plugin is available.
Type : | Array |
---|
GateOne.terminals[num].prevScreen = Array(); // Whatever was last in GateOne.terminals[num].screen
This stores the previous screen array from the last time the terminal was updated. Gate One's terminal update protocol only sends lines that changed since the last screen was sent. This variable allows us to create an updated screen from just the line that changed.
Type : | Integer |
---|
GateOne.terminals[num].rows = GateOne.prefs.rows;
The number of rows this terminal is configured to use. Unless the user changed it, it will match whatever is in GateOne.prefs.rows.
Type : | Array |
---|
GateOne.terminals[num].screen = Array();
This stores the current terminal's screen as an array of lines.
Type : | DOM Node |
---|
GateOne.terminals[num].node = <span node object>
Used as a quick reference to the terminal's screen node (which is a span).
Type : | Array |
---|
GateOne.terminals[num].scrollback = Array();
Stores the given terminal's scrollback buffer (so we can remove/replace it at-will).
Type : | DOM Node |
---|
GateOne.terminals[num].scrollbackNode = <span node object>
Used as a quick reference to the terminal's scrollback node (which is a span).
Type : | Boolean |
---|
GateOne.terminals[num].scrollbackVisible = true;
Kept up to date on the current status of whether or not the scrollback buffer is visible in the terminal (so we don't end up replacing it or removing it when we don't have to).
Type : | String |
---|
GateOne.terminals[num].scrollbackWriteTimer = <timeout object>;
Whenever the scrollback buffer is updated a timer is set to write that scrollback to localStorage. If an update comes in before that timer finishes the existing timer will be cancelled and replaced. The idea is to prevent queueing up timers for scrollback that will just end up getting overwritten. The scrollbackWriteTimer attribute holds the reference to this timer.
Type : | String |
---|
GateOne.terminals[num].sshConnectString = "ssh://user@somehost:22"; // Will actually be whatever the user connected to
If the SSH plugin is enabled, this variable contains the connection string used by the SSH client to connect to the server.
Note
This is a good example of a plugin using GateOne.terminals to great effect.
Type : | String |
---|
GateOne.terminals[num].title = "user@somehost:~";
Stores the title of the terminal. Unless the user has set it manually this will be the same value as GateOne.terminals[num].X11Title.
Type : | Array |
---|
This is where Gate One stores all of its (inline) SVG icons. If your plugin has its own icons they can be kept in here. Here's a (severely shortened) example from the Bookmarks plugin:
GateOne.Icons['bookmark'] = '<svg xmlns:rdf="blah blah">svg stuff here</svg>';
For reference, using an existing icon is as easy as:
someElement.appendChild(GateOne.Icons['close']);
Note
All of Gate One's icons use a linearGradient that has stop points--stop1, stop2, stop3, and stop4--defined in CSS. This allows the SVG icons to change color with the CSS theme. If you're writing your own plugin with it's own icon(s) it would be best to use the same stop points.
Type : | Array |
---|
All modules (aka plugins) loaded via GateOne.Base.module() are kept here as a quick reference. For example:
> GateOne.loadedModules;
[
"GateOne.Base",
"GateOne.Utils",
"GateOne.Net",
"GateOne.Input",
"GateOne.Visual",
"GateOne.Terminal",
"GateOne.User",
"GateOne.Bookmarks",
"GateOne.Help",
"GateOne.Logging",
"GateOne.Mobile",
"GateOne.Playback",
"GateOne.SSH"
]
GateOne contains two functions: init() and initialize(). These functions are responsible for setting up Gate One's interface, authenticating the user (if necessary), connecting to the server, (re)loading user preferences, and calling the init() function of each module/plugin:
- GateOne.init(prefs)¶
Sets up preferences, loads the CSS theme/colors, loads JavaScript plugins, and calls GateOne.Net.connect() (which calls initialize() after the successfully connecting). Additionally, it will check if the user is authenticated and will force a re-auth if the credentials stored in the encrypted cookie don't check out.
Arguments:
- prefs (object) -- An object containing the settings that will be used by Gate One. See GateOne.prefs under Properties for details on what can be set.
Example:
GateOne.init({url: 'https://console12.serialconcentrators.mycompany.com/', theme: 'black'});
- GateOne.initialize()¶
Sets up Gate One's graphical elements and starts Gate One capturing keyboard input.
This module consists of a collection of utility functions used throughout Gate One. Think of it like a mini JavaScript library of useful tools.
Like all plugin init() functions this gets called from GateOne.Utils.runPostInit() which itself is called at the end of GateOne.initialize(). It simply attaches a few actions like, 'save_file' to their respective functions in GateOne.Net.actions. Literally:
GateOne.Net.addAction('save_file', GateOne.Utils.saveAsAction);
GateOne.Net.addAction('load_style', GateOne.Utils.loadStyle);
GateOne.Net.addAction('themes_list', GateOne.Utils.enumerateThemes);
Returns a Blob() object using the given array and mimetype. If mimetype is omitted it will default to 'text/plain'. Optionally, array may be given as a string in which case it will be automatically wrapped in an array.
Arguments: |
|
---|---|
Returns: | A Blob() |
Examples:
blob = GateOne.Utils.createBlob('some data here', 'text/plain);
A simplified version of MochiKit's createDOM function, it creates a tagname (e.g. "div") element using the given properties.
Arguments: |
|
---|---|
Returns: | A node suitable for adding to the DOM. |
Examples:
myDiv = GateOne.Utils.createElement('div', {'id': 'foo', 'style': {'opacity': 0.5, 'color': 'black'}});
myAnchor = GateOne.Utils.createElement('a', {'id': 'liftoff', 'href': 'http://liftoffsoftware.com/'});
myParagraph = GateOne.Utils.createElement('p', {'id': 'some_paragraph'});
Note
createElement will automatically apply GateOne.prefs.prefix to the 'id' of the created elements (if an 'id' was given).
Deletes the given cookie (name) from path for the given domain.
Arguments: |
|
---|
Examples:
GateOne.Utils.deleteCookie('gateone_user', '/', ''); // Deletes the 'gateone_user' cookie
Returns true if str ends with substr.
Arguments: |
|
---|---|
Returns: | true/false |
Examples:
> GateOne.Utils.endsWith('.txt', 'somefile.txt');
true
> GateOne.Utils.endsWith('.txt', 'somefile.svg');
false
Attached to the 'themes_list' action, updates the preferences panel with the list of themes stored on the server.
Returns the given cookie (name).
Arguments: |
|
---|
Examples:
GateOne.Utils.getCookie(GateOne.prefs.prefix + 'gateone_user'); // Returns the 'gateone_user' cookie
Returns the height and width of 1em inside the given elem (e.g. '#term1_pre'). The returned object will be in the form of:
{'w': <width in px>, 'h': <height in px>}
Arguments: |
|
---|---|
Returns: | An object containing the width and height as obj.w and obj.h. |
Example:
> GateOne.Utils.getEmDimensions('#gateone');
{'w': 8, 'h': 15}
Returns a DOM node if given a querySelector-style string or an existing DOM node (will return the node as-is).
Note
The benefit of this over just document.querySelector() is that if it is given a node it will return the node as-is (so functions can accept both without having to worry about such things). See removeElement() below for a good example.
Arguments: |
|
---|---|
Returns: | A DOM node or null if not found. |
Example:
goDivNode = GateOne.Utils.getNode('#gateone');
> GateOne.Utils.getEmDimensions('#gateone');
{'w': 8, 'h': 15}
Given a CSS querySelectorAll string (e.g. '.some_class') or NodeList (in case we're not sure), lookup the node using document.querySelectorAll() and return the result (which will be a NodeList).
Note
The benefit of this over just document.querySelectorAll() is that if it is given a nodeList it will just return the nodeList as-is (so functions can accept both without having to worry about such things).
Arguments: |
|
---|---|
Returns: | A NodeList or [] (an empty Array) if not found. |
Example:
panels = GateOne.Utils.getNodes('#gateone .panel');
Calculates and returns the number of text rows and colunmns that will fit in the given element (elem) as an object like so:
{'cols': 165, 'rows': 45}
Arguments: |
|
---|---|
Returns: | An object with obj.cols and obj.rows representing the maximum number of columns and rows of text that will fit inside elem. |
Warning
elem must be a basic block element such as DIV, SPAN, P, PRE, etc. Elements that require sub-elements such as TABLE (requires TRs and TDs) probably won't work.
Note
This function only works properly with monospaced fonts but it does work with high-resolution displays (so users with properly-configured high-DPI displays will be happy =). Other similar functions I've found on the web had hard-coded pixel widths for known fonts at certain point sizes. These break on any display with a resolution higher than 96dpi.
Example:
> GateOne.Utils.getRowsAndColumns('#gateone');
{'cols': 165, 'rows': 45}
Returns: | An object representing elem.offsetTop and elem.offsetLeft. |
---|
Example:
> GateOne.Utils.getOffset(someNode);
{"top":130, "left":50}
Returns: | The text that is currently highlighted in the browser. |
---|
Example:
> GateOne.Utils.getSelText();
"localhost" // Assuming the user had highlighted the word, "localhost"
This function is a work in progress... Doesn't do anything right now, but will (likely) eventually return time-based token (based on a random seed provided by the Gate One server) for use in an anti-session-hijacking mechanism.
Almost a direct copy of MochiKit.DOM.hasElementClass... Returns true if className is found on element. element is looked up with getNode() so querySelector-style identifiers or DOM nodes are acceptable.
Arguments: |
|
---|---|
Returns: | true/false |
Example:
> GateOne.Utils.hasElementClass('#go_panel_info', 'panel');
true
> GateOne.Utils.hasElementClass('#go_panel_info', 'foo');
false
Hides the given element by setting elem.style.display = 'none'.
Arguments: |
|
---|
Example:
> GateOne.Utils.hideElement('#go_icon_newterm');
Hides the given elements by setting elem.style.display = 'none' on all of them.
Arguments: |
|
---|
Example:
> GateOne.Utils.hideElements('.pastearea');
Returns true if obj is an Array.
Arguments: |
|
---|---|
Returns: | true/false |
Example:
> GateOne.Utils.isArray(GateOne.terminals['1'].screen);
true
Returns true if obj is an HTMLElement.
Arguments: |
|
---|---|
Returns: | true/false |
Example:
> GateOne.Utils.isElement(GateOne.Utils.getNode('#gateone'));
true
Returns true if someNumber is even.
Arguments: |
|
---|---|
Returns: | true/false |
Example:
> GateOne.Utils.isEven(2);
true
> GateOne.Utils.isEven(3);
false
Returns true if obj is an HTMLCollection. HTMLCollection objects come from DOM level 1 and are what is returned by some browsers when you execute functions like document.getElementsByTagName. This function lets us know if the Array-like object we've got is an actual HTMLCollection (as opposed to a NodeList or just an Array).
Arguments: |
|
---|---|
Returns: | true/false |
Example:
> GateOne.Utils.isHTMLCollection(document.getElementsByTagName('pre'));
true // Will vary from browser to browser. Don't you just love JavaScript programming? Sigh.
Returns true if obj is a NodeList. NodeList objects come from DOM level 3 and are what is returned by some browsers when you execute functions like document.getElementsByTagName. This function lets us know if the Array-like object we've got is an actual NodeList (as opposed to an HTMLCollection or just an Array).
Arguments: |
|
---|---|
Returns: | true/false |
Example:
> GateOne.Utils.isHTMLCollection(document.getElementsByTagName('pre'));
true // Just like isHTMLCollection this will vary
Returns true if the page (browser tab) is hidden (e.g. inactive). Returns false otherwise.
Example:
> GateOne.Utils.isPageHidden();
false
Returns true if n is a prime number.
Arguments: |
|
---|---|
Returns: | true/false |
Example:
> GateOne.Utils.isPrime(13);
true
> GateOne.Utils.isPrime(14);
false
Returns true if node is visible (checks parent nodes recursively too). node may be a DOM node or a selector string.
Example:
> GateOne.Utils.isVisible('#'+GateOne.prefs.prefix+'pastearea1');
true
Note
Relies on checking elem.style.opacity and elem.style.display. Does not check transforms.
Copied from MochiKit.Base.itemgetter. Returns a function(obj) that returns obj[name].
Arguments: |
|
---|---|
Returns: | A function. |
To better understand what this function does it is probably best to simply provide the code:
itemgetter: function (name) {
return function (arg) {
return arg[name];
}
}
Here's an example of how to use it:
> var object1 = {};
> var object2 = {};
> object1.someNumber = 12;
> object2.someNumber = 37;
> var numberGetter = GateOne.Utils.itemgetter("someNumber");
> numberGetter(object1);
12
> numberGetter(object2);
37
Note
Yes, it can be confusing. Especially when thinking up use cases but it actually is incredibly useful when the need arises!
Copied from MochiKit.Base.items. Returns an Array of [propertyName, propertyValue] pairs for the given obj.
Arguments: |
|
---|---|
Returns: | Array |
Example:
> GateOne.Utils.items(GateOne.terminals).forEach(function(item) { console.log(item) });
["1", Object]
["2", Object]
Note
Can be very useful for debugging.
Loads and applies the CSS at url. When the <link> element is created it will use id like so:
{'id': GateOne.prefs.prefix + id}
Arguments: |
|
---|
Note
If an existing <link> element already exists with the same id it will be overridden.
Example:
GateOne.Utils.loadCSS("static/themes/black.css", "black_theme");
Populates GateOne.prefs with values from localStorage[GateOne.prefs.prefix+'prefs'].
Loads the JavaScript (.js) file at URL and appends it to document.body. If callback is given, it will be called after the script has been loaded.
Arguments: |
|
---|
Example:
var myfunc = function() { console.log("finished loading whatever.js"); };
GateOne.Utils.loadScript("/static/someplugin/whatever.js", myfunc);
Loads the stylesheet sent by the server via the 'load_style' WebSocket action.
Loads the GateOne CSS theme(s) for the given themeObj which should be in the form of:
{'theme': 'black'}
// or:
{'colors': 'gnome-terminal'}
// ...or an object containing both:
{'theme': 'black', 'colors': 'gnome-terminal'}
If themeObj is not provided, will load the defaults.
Returns string minus left-hand whitespace
AKA "No Operation". Returns whatever is given to it (if anything at all). In other words, this function doesn't do anything and that's exactly what it is supposed to do!
Arguments: |
|
---|---|
Returns: | a |
Example:
var functionList = {'1': GateOne.Utils.noop, '2': GateOne.Utils.noop};
Note
This function is most useful as a placeholder for when you plan to update something in-place later. In the event that something never gets replaced, you can be assured that nothing bad will happen if it gets called (no exceptions).
Returns: | A partially-applied function. |
---|
Similar to MochiKit.Base.partial. Returns partially applied function.
Arguments: |
|
---|
Example:
> addNumbers = function (a, b) {
return a + b;
}
> addOne = GateOne.Utils.partial(addNumbers, 1);
> addOne(3);
4
Note
This function can also be useful to simply save yourself a lot of typing. If you're planning on calling a function with the same parameters a number of times it is a good idea to use partial() to create a new function with all the parameters pre-applied. Can make code easier to read too.
Called by GateOne.runPostInit(), iterates over the list of plugins in GateOne.loadedModules calling the init() function of each (if present). When that's done it does the same thing with each respective plugin's postInit() function.
Returns: | A random prime number <= 9 digits. |
---|
Example:
> GateOne.Utils.randomPrime();
618690239
Returns: | A random string of the given length using the given chars. |
---|
If chars is omitted the returned string will consist of lower-case ASCII alphanumerics.
Arguments: |
|
---|
Example:
> GateOne.Utils.randomString(8);
"oa2f9txf"
> GateOne.Utils.randomString(8, '123abc');
"1b3ac12b"
Removes the given elem from the DOM.
Arguments: |
|
---|
Example:
GateOne.Utils.removeElement('#go_infocontainer');
Returns: | text with URLs transformed into links. |
---|
Turns textual URLs like 'http://whatever.com/' into links.
Arguments: |
|
---|
Example:
> GateOne.Utils.replaceURLWithHTMLLinks('Downloading http://foo.bar.com/some/file.zip');
"Downloading <a href='http://foo.bar.com/some/file.zip'>http://foo.bar.com/some/file.zip</a>"
Returns string minus right-hand whitespace
Calls all module/plugin init() functions followed by all postInit() functions after the page is loaded and the WebSocket has been connected. Specifically it is called right near the end of GateOne.initialize() just before keyboard input is enabled.
Saves the given blob (which must be a proper Blob object with data inside of it) as filename (as a file) in the browser. Just as if you clicked on a link to download it.
Note
This is amazingly handy for downloading files over the WebSocket.
Note
This function is attached to the 'save_file' WebSocket action (in GateOne.Net.actions) via GateOne.Utils.init().
Saves to disk the file contained in message. message should contain the following:
- message['result'] - Either 'Success' or a descriptive error message.
- message['filename'] - The name we'll give to the file when we save it.
- message['data'] - The content of the file we're saving.
- message['mimetype'] - Optional: The mimetype we'll be instructing the browser to associate with the file (so it will handle it appropriately). Will default to 'text/plain' if not given.
Saves what's set in GateOne.prefs to localStorage['GateOne.prefs.prefix+prefs'] as JSON; skipping anything that's set in GateOne.noSavePrefs.
Scrolls the given element (elem) by the number given in lines. It will automatically determine the line height using getEmDimensions(). lines can be a positive or negative integer (to scroll down or up, respectively).
Arguments: |
|
---|
Example:
GateOne.Utils.scrollLines('#go_term1_pre', -3);
Note
There must be a scrollbar visible (and overflow-y = "auto" or equivalent) for this to work.
Scrolls the given element (elem) to the very bottom (all the way down).
Arguments: |
|
---|
Example:
GateOne.Utils.scrollLines('#term1_pre');
Sets the stylesheet matching title to be active.
Thanks to Paul Sowden at A List Apart for this function. See: http://www.alistapart.com/articles/alternate/ for a great article on how to control active/alternate stylesheets in JavaScript.
Arguments: |
|
---|
Example:
GateOne.Utils.setActiveStyleSheet("myplugin_stylesheet");
Sets the cookie of the given name to the given value with the given number of expiration days.
Arguments: |
|
---|
Examples:
GateOne.Utils.setCookie('test', 'some value', 30); // Sets the 'test' cookie to 'some value' with an expiration of 30 days
Shows the given element (if previously hidden via hideElement()) by setting elem.style.display = 'block'.
Arguments: |
|
---|
Example:
> GateOne.Utils.showElement('#go_icon_newterm');
Shows the given elements (if previously hidden via hideElement() or hideElements()) by setting elem.style.display = 'block'.
Arguments: |
|
---|
Example:
> GateOne.Utils.showElements('.pastearea');
Returns true if str starts with substr.
Arguments: |
|
---|---|
Returns: | true/false |
Examples:
> GateOne.Utils.startsWith('some', 'somefile.txt');
true
> GateOne.Utils.startsWith('foo', 'somefile.txt');
false
Returns the contents of html minus the HTML.
Arguments: |
|
---|---|
Returns: | The string with all HTML formatting removed. |
Examples:
> GateOne.Utils.stripHTML('<span>This <b>is</b> a test</span>');
"This is a test"
Returns an actual Array() given an Array-like obj such as an HTMLCollection or a NodeList.
Arguments: |
|
---|---|
Returns: | Array |
Example:
> var terms = document.getElementsByClassName(GateOne.prefs.prefix+'terminal');
> GateOne.Utils.toArray(terms).forEach(function(termObj) {
GateOne.Terminal.closeTerminal(termObj.id.split('term')[1]);
});
Performs a GET on the given url and if given, calls callback with the responseText as the only argument.
Arguments: |
|
---|
Example:
> var mycallback = function(responseText) { console.log("It worked: " + responseText) };
> GateOne.Utils.xhrGet('https://demo.example.com/static/about.html', mycallback);
It worked: <!DOCTYPE html>
<html>
<head>
...
Just about all of Gate One's communications with the server are handled inside this module. It contains all the functions and properties to deal with setting up the WebSocket and issuing/receiving commands over it. The most important facet of GateOne.Net is GateOne.Net.actions which holds the mapping of what function maps to which command. More info on GateOne.Net.actions is below.
Type : | Object |
---|
This is where all of Gate One's WebSocket protocol actions are assigned to functions. Here's how they are defined by default:
Action Function bell GateOne.Visual.bellAction() gateone_user GateOne.User.storeSession() load_bell GateOne.User.loadBell() load_css GateOne.Visual.CSSPluginAction() load_style GateOne.Utils.loadStyle() load_webworker GateOne.Terminal.loadWebWorkerAction() log GateOne.Net.log() notice GateOne.Visual.serverMessageAction() ping GateOne.Net.ping() pong GateOne.Net.pong() reauthenticate GateOne.Net.reauthenticate() save_file GateOne.Utils.saveAsAction() set_mode GateOne.Terminal.setModeAction() set_title GateOne.Visual.setTitleAction() set_username GateOne.User.setUsername() term_ended GateOne.Terminal.closeTerminal() term_exists GateOne.Terminal.reconnectTerminalAction() terminals GateOne.Terminal.reattachTerminalsAction() termupdate GateOne.Terminal.updateTerminalAction() timeout GateOne.Terminal.timeoutAction()
Note
Most of the above is added via addAction() inside of each respective module's init() function.
For example, if we execute GateOne.Net.ping(), this will send a message over the WebSocket like so:
GateOne.ws.send(JSON.stringify({'ping': timestamp}));
The GateOne server will receive this message and respond with a pong message that looks like this (Note: Python code below):
message = {'pong': timestamp} # The very same timestamp we just sent via GateOne.Net.ping()
self.write_message(json_encode(message))
When GateOne.Net receives a message from the server over the WebSocket it will evaluate the object it receives as {action: message} and call the matching action in GateOne.Net.actions. In this case, our action "pong" matches GateOne.Net.actions['pong'] so it will be called like so:
GateOne.Net.actions['pong'](message);
Plugin authors can add their own arbitrary actions using GateOne.Net.addAction(). Here's an example taken from the SSH plugin:
GateOne.Net.addAction('sshjs_connect', GateOne.SSH.handleConnect);
GateOne.Net.addAction('sshjs_reconnect', GateOne.SSH.handleReconnect);
If no action can be found for a message it will be passed to GateOne.Visual.displayMessage() and displayed to the user like so:
GateOne.Visual.displayMessage('Message From Server: ' + <message>);
Arguments: |
|
---|
Adds an action to the GateOne.Net.actions object.
Example:
GateOne.Net.addAction('sshjs_connect', GateOne.SSH.handleConnect);
Opens a connection to the WebSocket defined in GateOne.prefs.url and stores it as GateOne.ws. Once connected GateOne.initialize() will be called.
If an error is encountered while trying to connect to the WebSocket, connectionError() will be called to notify the user as such. After five seconds, if a connection has yet to be connected successfully it will be assumed that the user needs to accept the Gate One server's SSL certificate. This will invoke call to sslError() which will redirect the user to the accept_certificate.html page on the Gate One server. Once that page has loaded successfully (after the user has clicked through the interstitial page) the user will be redirected back to the page they were viewing that contained Gate One.
Note
This function gets called by GateOne.init() and there's really no reason why it should be called directly by anything else.
Called when there's an error communicating over the WebSocket... Displays a message to the user indicating there's a problem, logs the error (using logError()), and sets a five-second timeout to attempt reconnecting.
This function is attached to the WebSocket's onclose event and shouldn't be called directly.
Sends a message to the Gate One server asking it to send a full screen refresh (i.e. send us the whole thing as opposed to just the difference from the last screen).
Arguments: |
|
---|
Normally called when the user closes a terminal, it sends a message to the server telling it to end the process associated with term. Normally this function would not be called directly. To close a terminal cleanly, plugins should use GateOne.Terminal.closeTerminal(term) (which calls this function).
Arguments: |
|
---|
This function can be used in debugging actions; it logs whatever message is received from the Gate One server: GateOne.Logging.logInfo(msg) (which would equate to console.log under most circumstances).
When developing a new action, you can test out or debug your server-side messages by attaching the respective action to GateOne.Net.log() like so:
GateOne.Net.addAction('my_action', GateOne.Net.log);
Then you can view the exact messages received by the client in the JavaScript console in your browser.
Tip
Setting GateOne.Logging.level = 'DEBUG' in your JS console will also log all incoming messages from the server (though it can be a bit noisy).
Arguments: |
|
---|
This gets attached to GateOne.ws.onmessage inside of connect(). It takes care of decoding (JSON) messages sent from the server and calling any matching actions. If no matching action can be found inside event.data it will fall back to passing the message directly to GateOne.Visual.displayMessage().
This gets attached to GateOne.ws.onopen inside of connect(). It clears any error message that might be displayed to the user and asks the server to send us the (currently-selected) theme CSS, all plugin CSS, the bell sound (if not already stored in GateOne.prefs.bellSound), and the go_process.js Web Worker (go.ws.send(JSON.stringify({'get_webworker': null}));). Lastly, it sends an authentication message and calls ping() after a short timeout (to let things settle down lest they interfere with the ping time calculation).
Sends a ping to the server with a client-generated timestamp attached. The expectation is that the server will return a 'pong' respose with the timestamp as-is so we can measure the round-trip time.
> GateOne.Net.ping();
2011-10-09 21:13:08 INFO PONG: Gate One server round-trip latency: 2ms
Note
That response was actually logged by pong() below.
Arguments: |
|
---|
Simply logs timestamp using GateOne.Logging.logInfo() and includes a measurement of the round-trip time in milliseconds.
Called when the Gate One server wants us to re-authenticate our session (e.g. our cookie expired). Deletes the 'gateone_user' cookie and reloads the current page with the following code:
GateOne.Utils.deleteCookie('gateone_user', '/', '');
window.location.reload();
This will force the client to re-authenticate with the Gate One server.
Note
This function will likely change in the future as a reload shoud not be necessary to force a re-auth.
Sends a message to the Gate One server telling it to perform a screen refresh with just the difference from the last refresh.
Sends the current character queue to the Gate One server and empties it out. Typically it would be used like this:
GateOne.Input.queue("echo 'This text will be sent to the server'\n");
GateOne.Net.sendChars(); // Send it off and empty the queue
Arguments: |
|
---|
Sends the current dimensions of term to the Gate One server. Typically used when the user resizes their browser window.
GateOne.Net.sendDimensions();
Arguments: |
|
---|
Sends chars to term. If term is omitted the currently-selected terminal will be used.
GateOne.Input.sendString("echo 'This text will be sent to terminal 1'\n", 1);
Arguments: |
|
---|
Tells the Gate One server which is our active terminal and sets localStorage['selectedTerminal'] = *term*.
GateOne.Net.setTerminal(1);
Called when we fail to connect due to an SSL error (user must accept the SSL certificate). It opens a dialog where the user can accept the Gate One server's SSL certificate (via an iframe).
Arguments: |
|
---|
This module handles mouse and keyboard input for Gate One. It consists of a few tables of information that tell Gate One how to act upon a given keystroke as well as functions that make working with keyboard and mouse events a bit easier.
Note
Properties that have to do with temporary, internal states (e.g. GateOne.Input.metaHeld) were purposefully left out of this documentation since there's really no reason to ever reference them.
This is an Array that temporarily stores characters before sending them to the Gate One server. The charBuffer gets sent to the server and emptied when GateOne.Net.sendChars() is called.
Typically, characters wind up in the buffer by way of GateOne.Input.queue().
This is an object that houses all of Gate One's special key mappings. Here's an example from the default keyTable:
'KEY_2': {'default': "2", 'shift': "@", 'ctrl': String.fromCharCode(0)}
This entry tells Gate One how to respond when the '2' key is pressed; by default, when the shift key is held, or when the Ctrl key is held. If no entry existed for the '2' key, Gate One would simply use the standard keyboard defaults (for the key itself and when shift is held).
Note
This property is used by both GateOne.Input.emulateKey() and GateOne.Input.emulateKeyCombo().
Warning
Entries in GateOne.Input.shortcuts will supersede anything in GateOne.Input.keyTable. So if you use GateOne.Input.registerShortcut() to bind the '2' key to some JavaScript action, that action will need to ALSO send the proper character or the user will wind up dazed and confused as to why their '2' key doesn't work.
Keyboard shortcuts that get added using GateOne.Input.registerShortcut() are stored here like so:
> GateOne.Input.shortcuts;
{'KEY_N': [
{
'modifiers': {'ctrl': true, 'alt': true, 'meta': false, 'shift': false},
'action': 'GateOne.Terminal.newTerminal()'
}
]}
Note
A single key can have multiple entries depending on which modifier is held.
Arguments: |
|
---|
Prepends an ESC character to chars and adds it to the charBuffer
// This would send the same as the up arrow key:
GateOne.Input.bufferEscSeq("[A") // Would end up as ^[[A
Sets the browser's focus to GateOne.prefs.goDiv and enables the capture of keyboard and mouse events. It also a very important part of Gate One's ability to support copy & paste without requiring the use of browser plugins.
Disables the capture of keyboard and mouse events by setting all of the relevant events tied to GateOne.prefs.goDiv to null like so:
GateOne.prefs.goDiv.onpaste = null;
GateOne.prefs.goDiv.tabIndex = null;
GateOne.prefs.goDiv.onkeydown = null;
GateOne.prefs.goDiv.onkeyup = null;
GateOne.prefs.goDiv.onmousedown = null;
GateOne.prefs.goDiv.onmouseup = null;
Typically you would call this function if a user needed to fill out a form or use a non-terminal portion of the web page. GateOne.prefs.capture() can be called to turn it all back on.
Typically called by GateOne.Input.onKeyDown(), converts a keyboard event (e) into a string (using GateOne.Input.keyTable) and appends it to the charBuffer using GateOne.Input.queue(). This function also has logic that allows the user to double-tap the F11 key to send the browser's native keystroke (enable/disable fullscreen). This is to prevent the user from getting stuck in fullscreen mode (since we call e.preventDefault() for nearly all events).
Arguments: |
|
---|
Arguments: |
|
---|
Typically called by GateOne.prefs.onKeyDown(), converts a keyboard event (e) into a string. The difference between this function and emulateKey() is that this funcion handles key combinations that include non-shift modifiers (Ctrl, Alt, and Meta).
Arguments: |
|
---|
This gets attached to the goDiv.onkeypress event... It Queues the (character) result of a keypress event if an unknown modifier key is held. Without this, 3rd and 5th level keystroke events (i.e. the stuff you get when you hold down various combinations of AltGr+<key>) would not work.
Arguments: |
|
---|
Given an event (e), returns a very straightforward (e.g. easy to read/understand) object representing any keystrokes contained within it. The object will look like this:
{
type: <event type>, // Just preserves it.
code: <the key code>, // e.g. 27
string: 'KEY_<key string>' // e.g. KEY_N or KEY_F11
}
This makes keystroke-handling code a lot easier to read and more consistent across browsers and platforms. For example, here's a hypothetical function that gets passed a keystroke event:
var keystrokeHandler(e) {
var key = GateOne.Input.key(e);
console.log('key.code: ' + key.code + ', key.string: ' + key.string);
}
The key.string comes from GateOne.Input.specialKeys, GateOne.Input.specialMacKeys, and the key event itself (onkeydown events provide an upper-case string for most keys).
Arguments: |
|
---|
Like GateOne.Input.key(), this function returns a well-formed object for a fairly standard JavaScript event. This object looks like so:
{
shift: false,
alt: false,
ctrl: false,
meta: false
}
Since some browsers (i.e. Chrome) don't register the 'meta' key (aka "the Windows key") as a proper modifier, modifiers() will emulate it by examining the GateOne.Input.metaHeld property. The state of the meta key is tracked via GateOne.Input.metaHeld by way of the GateOne.Input.onKeyDown() and GateOne.Input.onKeyUp() functions.
Arguments: |
|
---|
Just like GateOne.Input.key() and GateOne.Input.modifiers(), this function returns a well-formed object for a fairly standard JavaScript event:
{
type: <event type>, // Just preserves it
left: <true/false>,
right: <true/false>,
middle: <true/false>,
}
Very convient for figuring out which mouse button was pressed on any given mouse event.
Arguments: |
|
---|
This function gets attached to GateOne.prefs.goDiv.onkeydown by way of GateOne.Input.capture(). It keeps track of the state of the meta key (see modifiers() above), executes any matching keyboard shortcuts defined in GateOne.Input.shortcuts, and calls GateOne.Input.emulateKey() or GateOne.Input.emulateKeyCombo() depending on which (if any) modifiers were held during the keystroke event.
Arguments: |
|
---|
This function gets attached to GateOne.prefs.goDiv.onkeyup by way of GateOne.Input.capture(). It is used in conjunction with GateOne.Input.modifiers() and GateOne.Input.onKeyDown() to emulate the meta key modifier using KEY_WINDOWS_LEFT and KEY_WINDOWS_RIGHT since "meta" doesn't work as an actual modifier on some browsers/platforms.
Arguments: |
|
---|
Adds text to GateOne.Input.charBuffer.
Arguments: |
|
---|
Registers the given shortcutObj for the given keyString by adding a new object to GateOne.Input.shortcuts. Here's an example:
GateOne.Input.registerShortcut('KEY_ARROW_LEFT', {
'modifiers': {
'ctrl': false,
'alt': false,
'meta': false,
'shift': true
},
'action': 'GateOne.Visual.slideLeft()'
});
Note
The 'action' may be a string that gets invoked via eval(). This allows plugin authors to register shortcuts that call objects and functions that may not have been available at the time they were registered.
This module contains all of Gate One's visual effect functions. It is just like GateOne.Utils but specific to visual effects and DOM manipulations.
Stores the dimensions of the GateOne.prefs.goDiv element in the form of {w: '800', h: '600'} where 'w' and 'h' represent the width and height in pixels. It is used by several functions in order to calculate how far to slide terminals, how many rows and columns will fit, etc.
Tip
In most of Gate One's JavaScript, term refers to the terminal number (e.g. 1).
Arguments: |
|
---|
Called by createGrid(); creates a terminal div and appends it to GateOne.Visual.squares (which is just a temporary holding space). Probably not useful for anything else.
Note
In fact, this function would only ever get called if you were debugging the grid... You'd call createGrid() with, say, an Array containing a dozen pre-determined terminal names as the second argument. This would save you the trouble of opening a dozen terminals by hand.
Arguments: |
|
---|
Displays a dialog using the given title containing the given message along with an OK button. When the OK button is clicked, callback will be called.
GateOne.Visual.alert('Test Alert', 'This is an alert box.');
Note
This function is meant to be a less-intrusive form of JavaScript's alert().
Arguments: |
|
---|
A convenience function that allows us to apply multiple style changes in one go. For example:
GateOne.Visual.applyStyle('#somediv', {'opacity': 0.5, 'color': 'black'});
Arguments: |
|
---|
This function is Gate One's bread and butter: It applies the given CSS3 transform to obj. obj can be one of the following:
- A querySelector-like string (e.g. "#some_element_id").
- A DOM node.
- An Array or an Array-like object containing DOM nodes such as HTMLCollection or NodeList (it will apply the transform to all of them).
The transform should be just the actual transform function (e.g. scale(0.5)). applyTransform() will take care of applying the transform according to how each browser implements it. For example:
GateOne.Visual.applyTransform('#somediv', 'translateX(500%)');
...would result in #somediv getting styles applied to it like this:
#somediv {
-webkit-transform: translateX(500%); /* Chrome/Safari/Webkit-based stuff */
-moz-transform: translateX(500%); /* Mozilla/Firefox/Gecko-based stuff */
-o-transform: translateX(500%); /* Opera */
-ms-transform: translateX(500%); /* IE9+ */
-khtml-transform: translateX(500%); /* Konqueror */
transform: translateX(500%); /* Some day this will be all that is necessary */
}
Arguments: |
|
---|
Plays a bell sound and pops up a message indiciating which terminal the bell came from (visual bell is always enabled). If GateOne.prefs.bellSound == false only thwe visual indicator will be displayed.
Note
This takes a JavaScript object (bellObj) as an argument because it is meant to be registered as an action in GateOne.Net.actions as it is the Gate One server that tells us when a bell has been encountered.
The format of bellObj is as simple as can be: {'term': 1}. The bell sound will be whatever <source> is attached to an <audio> tag with ID #bell. By default, Gate One's index.html template includes a such an <audio> tag with a data:URI as the <source> that gets created from '<gateone dir>/static/bell.ogg'.
GateOne.Visual.bellAction({'term': 1}); // This is how it is called
Note
Why is the visual bell always enabled? Without a visual indicator, if you had more than one terminal open it would be impossible to tell which terminal the bell came from.
Arguments: |
|
---|
Creates a container for housing terminals and optionally, pre-creates them using terminalNames (useful in debugging). The container will be laid out in a 2x2 grid.
GateOne.Visual.createGrid("#"+GateOne.prefs.prefix+"termwrapper");
Note
Work is being done to replace the usage of the grid with more abiguous functions in order to make it possible for plugins to override the default behavior to, say, have a 4x4 grid. Or use some other terminal-switching mechanism/layout altogether (cube, anyone? =). Will probably be available in Gate One v1.5 since it is merely time consuming to replace a zillion function calls with a wrapper.
Arguments: |
|
---|
Note
This function gets attached to the 'load_css' action in GateOne.Net.actions.
Loads the CSS for a given plugin by adding a <link> tag to the <head>.
Arguments: |
|
---|---|
Returns: | A function that will close the dialog. |
Creates a dialog with the given title and content. Returns a function that will close the dialog when called. Example:
var closeDialog = GateOne.Visual.dialog("Test Dialog", "Dialog content goes here.");
Arguments: |
|
---|
Disables CSS3 transform transitions on the given element.
GateOne.Visual.disableTransitions(someNode);
Arguments: |
|
---|
Replaces the contents of term with just the visible screen (i.e. no scrollback buffer). This makes terminal manipulations considerably faster since the browser doesn't have to reflow as much text. If no term is given, replace the contents of all terminals with just their visible screens.
While this function itself causes a reflow, it is still a good idea to call it just before performing a manipulation of the DOM since the presence of scrollbars really slows down certain CSS3 transformations. Just don't forget to cancel GateOne.terminals[term]['scrollbackTimer'] or any effects underway might get very choppy right in the middle of execution.
GateOne.Visual.disableScrollback(1);
Note
A convenience function for enabling/disabling the scrollback buffer is available: GateOne.Visual.toggleScrollback() (detailed below).
Arguments: |
|
---|
Displays message to the user via a transient pop-up DIV that will appear inside GateOne.prefs.goDiv. How long the message lasts can be controlled via timeout and removeTimeout (which default to 1000 and 5000, respectively).
If id is given, it will be prefixed with GateOne.prefs.prefix and used as the DIV ID for the pop-up. i.e. GateOne.prefs.prefix+id. The default is GateOne.prefs.prefix+"notice".
GateOne.Visual.displayMessage('This is a test.');
Note
The default is to display the message in the lower-right corner of GateOne.prefs.goDiv but this can be controlled via CSS.
Arguments: |
|
---|
Displays the terminal number and terminal title of the given term via a transient pop-up DIV that starts fading away after one second.
GateOne.Visual.displayTermInfo(1);
Note
Like displayMessage(), the location and effect of the pop-up can be controlled via CSS. The DIV ID will be GateOne.prefs.prefix+'infocontainer'.
Arguments: |
|
---|
Replaces the contents of term with the visible scren + scrollback buffer. Use this to restore scrollback after calling disableScrollback(). If no term is given, re-enable the scrollback buffer in all terminals.
GateOne.Visual.enableScrollback(1);
Note
A convenience function for enabling/disabling the scrollback buffer is available: GateOne.Visual.toggleScrollback() (detailed below).
Arguments: |
|
---|
Enables CSS3 transform transitions on the given element.
GateOne.Visual.enableTransitions(someNode);
Arguments: |
|
---|
Returns the transform string applied to the style of the given elem
> GateOne.Visual.getTransform('#go_term1_pre');
"translateY(-3px)"
Called by GateOne.init(), performs the following:
Adds an icon to the panel for toggling the grid.
Adds GateOne.Visual.bellAction() as the 'bell' action in GateOne.Net.actions.
Adds GateOne.Visual.setTitleAction() as the 'set_title' action in GateOne.Net.actions.
Registers the following keyboard shortcuts:
Function
Shortcut
GateOne.Visual.toggleGridView()
Control-Alt-G
GateOne.Visual.slideLeft()
Shift-LeftArrow
GateOne.Visual.slideRight()
Shift-RightArrow
GateOne.Visual.slideUp()
Shift-UpArrow
GateOne.Visual.slideDown()
Shift-DownArrow
Plays the bell sound attached to the <audio> tag with ID #bell without any visual notification.
GateOne.Visual.playBell();
Resets the grid to its default state where all terminals are visible but have CSS3 transforms applied that make the currently-selected terminal visible on the page.
Note
This turns off all terminal transitions so they will need to be reset after running this function if you want to move terminals around with a fancy animation.
GateOne.Visual.resetGrid();
Arguments: |
|
---|
Note
This function gets attached to the 'notice' action in GateOne.Net.actions.
Displays an incoming message from the Gate One server. As simple as can be. This is the entire function:
serverMessageAction: function(message) {
// Displays a *message* sent from the server
GateOne.Visual.displayMessage(message);
},
Why not just attach displayMessage() to the 'notice' action? Two reasons:
- So plugins can override this method.
- We might want to apply extra formatting or perform additional functions in the future.
Arguments: |
|
---|
Note
This function gets attached to the 'set_title' action in GateOne.Net.actions.
Given that titleObj is a JavaScript object such as, {'term': 1, 'title': "user@host:~"}, sets the title of the terminal provided by titleObj['term'] to titleObj['title'].
GateOne.Visual.setTitleAction({'term': 1, 'title': "user@host:~"});
Grid specific: Slides the view downward one terminal by pushing all the others up.
GateOne.Visual.slideDown();
Grid specific: Slides the view left one terminal by pushing all the others to the right.
GateOne.Visual.slideLeft();
Grid specific: Slides the view right one terminal by pushing all the others to the left.
GateOne.Visual.slideRight();
Arguments: |
|
---|
Grid specific: Slides the view to term. If changeSelected is true, this will also set the current terminal to the one we're sliding to.
GateOne.Visual.slideToTerm(1, true);
Note
Generally speaking, you'll want changeSelected to always be true.
Grid specific: Slides the view upward one terminal by pushing all the others down.
GateOne.Visual.slideUp();
Arguments: |
|
---|
Brings up the terminal grid view (by scaling all the terminals to 50%) or returns to a single, full-size terminal. If goBack is true (the default), go back to the previously-selected terminal when un-toggling the grid view. This argument is primarily meant for use internally within the function when assigning onclick events to each downsized terminal.
GateOne.Visual.toggleGridView();
Toggles the overlay that visually indicates whether or not Gate One is ready for input. Normally this function gets called automatically by GateOne.Input.capture() and GateOne.Input.disableCapture() which are attached to mousedown and blur events, respectively.
Arguments: |
|
---|
Toggles the given panel in or out of view. panel is expected to be the ID of an element with the GateOne.prefs.prefix+"panel" class. If panel is null or false, all open panels will be toggled out of view.
GateOne.Visual.togglePanel('#'+GateOne.prefs.prefix+'panel_bookmarks');
Toggles the scrollback buffer for all terminals by calling GateOne.Visual.disableScrollback() or GateOne.Visual.enableScrollback() depending on the state of the toggle.
GateOne.Visual.toggleScrollback();
Sets GateOne.Visual.goDimensions to the current width/height of GateOne.prefs.goDiv. Typically called when the browser window is resized.
GateOne.Visual.updateDimensions();
Arguments: |
|
---|
Creates an on-screen widget with the given title and content that hovers above Gate One's terminals or a specific terminal (depending on options). Returns a function that will remove the widget when called. Options:
A function that will be called with the parent widget node as an argument when the widget is opened.
A function that will be called with the parent widget node as an argument when the widget is closed.
If a function is assigned to this parameter a gear icon will be visible in the title bar of the widget that when clicked will call this function.
If provided the widget will be attached to this specific terminal (as opposed to floating above all terminals).
By default widgets are transparent and have no border:
GateOne.Visual.widget("Example Widget", "This is the content of the widget.");
However, if the user holds their mouse over the widget a title will be drawn and they will be able to move it around:
When an onconfig function is set a configuration icon (gear) will appear to the left of the widget title that when clicked calls that function:
GateOne.Visual.widget("Configurable Widget", "This widget can be configured.", {'onconfig': configFunc});
GateOne.Terminal contains terminal-specific properties and functions. Really, there's not much more to it than that :)
Type : | Array |
---|
If a plugin wants to perform an action whenever a terminal is closed it can register a callback here like so:
GateOne.Terminal.closeTermCallbacks.push(GateOne.MyPlugin.termClosed);
All callbacks in closeTermCallbacks will be called whenever a terminal is closed with the terminal number as the only argument.
Type : | Object |
---|
An object containing a collection of functions that will be called whenever a matching terminal (expanded) mode is encountered. For example, terminal mode '1' (which maps to escape sequences '[?1h' and '[?1l') controls "application cursor keys" mode. In this mode, the cursor keys are meant to send different escape sequences than they normally do.
Functions inside GateOne.Terminal.modes are called with a boolean as their only argument; true meaning 'set this mode' and false meaning 'reset this mode'. These translate back to terminal.Terminal which calls whatever is assigned to Terminal.callbacks[CALLBACK_MODE] with the mode number and a boolean as the only two arguments.
Terminal.callbacks[CALLBACK_MODE] is assigned inside of gateone.py to TerminalWebSocket.mode_handler which sends a message to the Gate One client containing a JSON-encoded object like so:
{'set_mode': {
'mode': setting, # Would be '1' for application cursor keys mode
'boolean': True, # Set this mode
'term': term # On this terminal
}}
This maps directly to the 'set_mode' action in GateOne.Net.actions which calls GateOne.Terminal.modes.
Type : | Array |
---|
If a plugin wants to perform an action whenever a terminal is opened it can register a callback here like so:
GateOne.Terminal.newTermCallbacks.push(GateOne.MyPlugin.termOpened);
All callbacks in newTermCallbacks will be called whenever a new terminal is opened with the terminal number as the only argument.
Type : | Integer |
---|
The first time GateOne.Terminal.termUpdateFromWorker() is executed it calculates the width of the scrollbar inside of the terminal it is updating (in order to make sure the toolbar doesn't overlap). The result of this calculation is stored in this attribute.
Type : | Web Worker |
---|
This is a Web Worker (go_process.js) that is used by GateOne.Terminal.updateTerminalAction() to process the text received from the Gate One server. This allows things like linkifying text to take place asynchronously so it doesn't lock or slow down your browser while the CPU does its work.
Type : | Arrray |
---|
If a plugin wants to perform an action whenever a terminal screen is updated it can register a callback here like so:
GateOne.Terminal.updateTermCallbacks.push(GateOne.MyPlugin.termUpdated);
All callbacks in updateTermCallbacks will be called whenever a new terminal is opened with the terminal number as the only argument.
Arguments: |
|
---|
Uses screen (an array of HTML-formatted lines) to update term. If term is not provided, the currently-selected terminal will be updated.
// Pretend screenArray is an array of lines we want to place in terminal 1:
GateOne.Terminal.applyScreen(screenArray, 1);
Arguments: |
|
---|
Closes the given term and tells the Gate One server to end the process associated with it.
GateOne.Terminal.closeTerm(2);
Creates the terminal information panel, initializes the terminal updates Web Worker (which is contained in go_process.js), and registers the following keyboard shortcuts and WebSocket actions:
Keyboard Shortcuts
Function | Shortcut | Enabled in Embedded Mode? |
---|---|---|
GateOne.Terminal.newTerminal() | Control-Alt-N | No |
GateOne.Terminal.closeTerminal(localStorage["selectedTerminal"]) | Control-Alt-W | No |
GateOne.Terminal.paste() | Shift-INS | Yes |
WebSocket Actions
Action | Function |
---|---|
load_webworker | GateOne.Terminal.loadWebWorkerAction() |
set_mode | GateOne.Terminal.setModeAction() |
term_ended | GateOne.Terminal.closeTerminal() |
terminals | GateOne.Terminal.reattachTerminalsAction() |
termupdate | GateOne.Terminal.updateTerminalAction() |
term_exists | GateOne.Terminal.reconnectTerminalAction() |
timeout | GateOne.Terminal.timeoutAction() |
Arguments: |
|
---|
This function gets attached to the 'load_webworker' action in GateOne.Net.actions and gets called by the server in response to a 'get_webworker' request. The 'get_webworker' request is sent by GateOne.Net.onOpen() after the WebSocket is opened. It loads our Web Worker (go_process.js) given it's source.
Note
This is a clever way to work around the origin limiations of Web Workers. Something that is necessary when Gate One is embedded into another application and being served up from a completely different domain.
Arguments: |
|
---|
Creates a new terminal and gets it updating itself by way of the Gate One server. Also, if GateOne.prefs.autoConnectURL is set GateOne.Net.onOpen() will send that value to the server 500ms after the terminal is opened.
If where is provided the new terminal elements will be placed inside that container... Which doesn't have to be inside GateOne.prefs.goDiv but it's a good idea since that will ensure everything lines up and has the correct formatting.
GateOne.Terminal.newTerminal();
Arguments: |
|
---|
Notifies the user when there's activity in term by displaying a message and playing the bell.
GateOne.Terminal.notifyActivity(1);
Note
You wouldn't normally call this function directly. It is meant to be called from GateOne.Terminal.updateTerminal() when the right conditions are met.
Arguments: |
|
---|
Notifies the user when the inactivity timeout in term has been reached by displaying a message and playing the bell.
GateOne.Terminal.notifyInactivity(1);
Note
You wouldn't normally call this function directly. It is meant to be called from GateOne.Terminal.updateTerminal() when the right conditions are met.
Arguments: |
|
---|
This gets attached to Shift-Insert (KEY_INSERT) as a shortcut and the 'paste' event attached to GateOne.prefs.goDiv in order to support pasting text into a terminal via those mechanisms. It shifts focus to the pastearea just before the actual paste event takes place in order for the input to be captured. Also, if the browser allows it will perform a commandExec('paste') into the pastearea as part of the process (with logic to prevent double pastes).
Arguments: |
|
---|
This function gets attached to the 'terminals' action in GateOne.Net.actions and gets called after we authenticate with the Gate One server (the server is what tells us to call this function). The terminals argument is expected to be an Array of terminal numbers that are currently running on the Gate One server.
If no terminals currently exist (we received an empty Array), GateOne.Terminal.newTerminal() will be called to create a new one (if embedded mode is not enabled).
Arguments: |
|
---|
This function gets attached to the 'term_exists' action in GateOne.Net.actions and gets called when the server reports that the terminal number supplied via 'new_terminal' already exists. It doesn't actually do anything right now but there might be use case for handling this condition in the future.
Arguments: |
|
---|
Adds to or replaces existing text transformations in GateOne.Terminal.textTransforms using pattern and newString with the given name. Example:
// If your company's ticket system uses the following format: IM123456789 the code
// below will turn it into a clickable link in the user's terminal!
var pattern = /(\bIM\d{9,10}\b)/g,
newString = "<a href='https://support.company.com/tracker?ticket=$1' target='new'>$1</a>";
GateOne.Terminal.registerTextTransform("ticketIDs", pattern, newString);
// If you typed "Ticket: IM123456789" into a terminal it would be transformed thusly:
// "Ticket number: <a href='https://support.company.com/tracker?ticket=IM123456789' target='new'>IM123456789</a>"
What is a text transformation? Why should I care?
Text transformations allow one to arbitrarily replace any single-line strings in the incoming terminal screen with one of your choosing. In the example code above it turns ticket numbers like IM0123456789 into clickable links but you can also match things like credit card numbers, man page commands, etc and do what you want with them.
Tip
A single .js file in gateone/plugins/yourplugin/static/ is all it takes to use your own text transformations on a Gate One server!
Note
To keep things smooth and prevent blocking the interactivity of the browser all text transformations are processed within Gate One's Web Worker (go_process.js). In fact, this is exactly how Gate One transforms URLs into clickable links.
Note
Text transformations only apply to the terminal's screen; not the scrollback buffer.
Instead of providing a regular expression and replacement string, a function may be given as the second parameter. Example:
var replaceFoo = function(line) {
return line.replace('foo', 'bar');
}
GateOne.Terminal.registerTextTransform("foo", replaceFoo);
This would result in the replacefoo() function being called for each line of the incoming screen like so:
line = replaceFoo(line);
Note
Why is it called on each line individually and not on the text as a whole? Because Gate One uses a line-based difference protocol to communicate between the client and server. So when the only thing that changes is a single line, only a single line will be sent to the client.
Arguments: |
|
---|
Clears the screen and the scrollback buffer (in memory and in localStorage) of the given term.
Arguments: |
|
---|
This function gets attached to the 'set_mode' action in GateOne.Net.actions and gets called when the server encounters either a "set expanded mode" or "reset expanded mode" escape sequence. Essentially, it uses the values provided by modeObj to call GateOne.Net.actions[modeObj['mode']](modeObj['term'], modeObj['boolean']).
See also
Arguments: |
|
---|
Calls GateOne.Net.setTerminal() then calls whatever function is assigned to GateOne.Terminal.termSelectCallback (default is GateOne.Visual.slideToTerm()) with the given term as the only argument.
Tip
If you want to write your own animation/function for switching terminals you can make it happen by assigning your function to GateOne.Terminal.termSelectCallback.
Arguments: |
|
---|
When the go_process.js Web Worker has completed processing the incoming terminal screen it pushes the resulting data back to the main page via this function which performs the following:
- Sets the terminal title if it changed.
- Creates the screen and scrollback buffer nodes if they don't already exist.
- Applies the incoming screen and scrollback buffer updates (using GateOne.Terminal.applyScreen()).
- Automatically increases or decreases the size of the screen node if it has changed since the last update.
- Only Once: Adjusts the position of the toolbar so that it lines up properly next to the the scrollbar.
- Schedules writing the scrollback buffer to localStorage making sure that there's only ever one such write going on at once.
- Generates log messages sent from the Web Worker (only used when debugging).
- Notifies the user of activity/inactivity in terminals and keeps track of those timers.
- Calls GateOne.Terminal.updateTermCallbacks when all of the aformentioned activities are complete.
This function gets attached to the 'timeout' action in GateOne.Net.actions and gets called when the user's session has timed out on the Gate One server. It writes a message to the screen indicating a timeout has occurred and closes the WebSocket.
Arguments: |
|
---|
Removes the text transform of the given name from GateOne.Terminal.textTransforms.
Arguments: |
|
---|
Takes the updated screen information from termUpdateObj and posts it to the go_process.js Web Worker for processing.
This function gets attached to the 'termupdate' action in GateOne.Net.actions and gets called when a terminal has been modified on the server. The termObj that the this function will receive from the Gate One server will look like this:
{
'term': term,
'scrollback': scrollback,
'screen' : screen,
'ratelimiter': false
}
The number of the terminal that is being updated.
An Array of lines of scrollback that the server has preserved for us (in the event that the screen scrolled text faster than we could send it to the client).
An Array of HTML-formatted lines representing the updated terminal.
A boolean value representing whether or not the rate limiter has been engaged (if the program running on this terminal is updating the screen too fast).
Arguments: |
|
---|
Saves the scrollback buffer in localStorage for retrieval later if the user reloads the page.
Note
Normally this function would only get called by termUpdateFromWorker()
GateOne.User is for things like logging out, synchronizing preferences with the server (not implemented yet), and it is also meant to provide hooks for plugins to tie into so that actions can be taken when user-specific events occur. It also provides the UI elements necessary for the user to change their bell sound.
If a plugin wants to perform an action immediately after the user is authenticated a callback may be appended to this array like so:
GateOne.User.userLoginCallbacks.push(GateOne.MyPlugin.userAuthenticated);
This is very useful if you want to ensure that a function does not get executed until after username has been set.
All callbacks in userLoginCallbacks will be called with the authenticated user's username as the only argument like so:
myCallback(username);
Stores the authenticated user's username. If Gate One is configured with anonymous authenticationn ( auth = none in server.conf) the username will be set to 'ANONYMOUS'.
Like all plugin init() functions this gets called from GateOne.Utils.postInit() which itself is called at the end of GateOne.initialize(). It adds the username to the preferences panel as well as a link that allows the user to logout. It also attaches the 'set_username', 'load_bell', and 'gateone_user' actions to GateOne.Net.actions.
This is what gets attached to the 'set_username' WebSocket action in GateOne.Net.actions and gets called immediately after the user is successfully authenticated.
This function will log the user out by deleting all Gate One cookies and forcing them to re-authenticate. By default this is what is attached to the 'logout' link in the preferences panel.
redirectURL if provided, will be used to automatically redirect the user to the given URL after they are logged out (as opposed to just reloading the main Gate One page).
This gets attached to the 'load_bell' WebSocket action in GateOne.Net.actions and gets called by the server whenever it is asked to perform the 'get_bell' action. The server-side 'get_bell' action is normally called by GateOne.Net.onOpen() if a bell sound doesn't already exist in GateOne.Prefs.bellSound. This will download the default bell sound from the server and store it in GateOne.Prefs.bellSound.
Displays a dialog/form where the user can set a replacement bell sound or reset it to the default (which is whatever is at '<gateone>/static/bell.ogg' on the server).
Note
When the user sets a custom bell sound it doesn't involve the server at all (no network traffic). It is set locally using the HTML5 File API; the FileReader() function, specifically.
This gets attached to the 'gateone_user' WebSocket action in GateOne.Net.actions. It stores the incoming (encrypted) 'gateone_user' session data in localStorage in a nearly identical fashion to how it gets stored in the 'gateone_user' cookie.
Note
The reason for storing data in localStorage instead of in the cookie is so that applications embedding Gate One can remain authenticated to the user without having to deal with the cross-origin limitations of cookies.