summaryrefslogtreecommitdiffstats
path: root/remoting/webapp/host_session.js
blob: 8c25a8f0ffece35bae4ef3f4fe217bcf5201a038 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

/**
 * @fileoverview
 * Class handling creation and teardown of a remoting host session.
 *
 * This abstracts a <embed> element and controls the plugin which does the
 * actual remoting work.  There should be no UI code inside this class.  It
 * should be purely thought of as a controller of sorts.
 */

'use strict';

/** @suppress {duplicate} */
var remoting = remoting || {};

/**
 * @constructor
 */
remoting.HostSession = function() {
};

/** @type {remoting.HostPlugin} */
remoting.HostSession.prototype.plugin = null;

// Note that these values are copied directly from host_script_object.h and
// must be kept in sync.
/** @enum {number} */
remoting.HostSession.State = {
  UNKNOWN: -1,
  DISCONNECTED: 0,
  STARTING: 1,
  REQUESTED_ACCESS_CODE: 2,
  RECEIVED_ACCESS_CODE: 3,
  CONNECTED: 4,
  DISCONNECTING: 5,
  ERROR: 6,
  INVALID_DOMAIN_ERROR: 7
};

/**
 * Create an instance of the host plugin.
 * @return {remoting.HostPlugin} The new plugin instance.
 */
remoting.HostSession.createPlugin = function() {
  var plugin = document.createElement('embed');
  plugin.type = remoting.PLUGIN_MIMETYPE;
  // Hiding the plugin means it doesn't load, so make it size zero instead.
  plugin.width = 0;
  plugin.height = 0;
  return /** @type {remoting.HostPlugin} */ (plugin);
};

/**
 * Create the host plugin and initiate a connection.
 * @param {Element} container The parent element to which to add the plugin.
 * @param {string} email The user's email address.
 * @param {string} accessToken A valid OAuth2 access token.
 * @param {function(boolean):void} onNatTraversalPolicyChanged Callback
 *     for notification of changes to the NAT traversal policy.
 * @param {function(remoting.HostSession.State):void} onStateChanged
 *     Callback for notifications of changes to the host plugin's state.
 * @param {function(string):void} logDebugInfo Callback allowing the plugin
 *     to log messages to the debug log.
 */
remoting.HostSession.prototype.createPluginAndConnect =
    function(container, email, accessToken,
             onNatTraversalPolicyChanged, onStateChanged, logDebugInfo) {
  this.plugin = remoting.HostSession.createPlugin();
  container.appendChild(this.plugin);
  this.plugin.onNatTraversalPolicyChanged = onNatTraversalPolicyChanged;
  this.plugin.onStateChanged = onStateChanged;
  this.plugin.logDebugInfo = logDebugInfo;
  this.plugin.localize(chrome.i18n.getMessage);
  this.plugin.connect(email, 'oauth2:' + accessToken);
};

/**
 * Get the access code generated by the host plugin. Valid only after the
 * plugin state is RECEIVED_ACCESS_CODE.
 * @return {string} The access code.
 */
remoting.HostSession.prototype.getAccessCode = function() {
  return this.plugin.accessCode;
};

/**
 * Get the lifetime for the access code. Valid only after the plugin state is
 * RECEIVED_ACCESS_CODE.
 * @return {number} The access code lifetime, in seconds.
 */
remoting.HostSession.prototype.getAccessCodeLifetime = function() {
  return this.plugin.accessCodeLifetime;
};

/**
 * Get the email address of the connected client. Valid only after the plugin
 * state is CONNECTED.
 * @return {string} The client's email address.
 */
remoting.HostSession.prototype.getClient = function() {
  return this.plugin.client;
};

/**
 * Disconnect the client.
 * @return {void} Nothing.
 */
remoting.HostSession.prototype.disconnect = function() {
  this.plugin.disconnect();
};


/**
 * Remove the plugin element from the document.
 * @return {void} Nothing.
 */
remoting.HostSession.prototype.removePlugin = function() {
  this.plugin.parentNode.removeChild(this.plugin);
};