Roll src/third_party/WebKit 3529d49:06e8485 (svn 202554:202555)
[chromium-blink-merge.git] / remoting / webapp / base / js / wcs_adapter.js
blob061dc541e06adb4aef59607b33e8889d37681ea7
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 'use strict';
7 /** @suppress {duplicate} */
8 var remoting = remoting || {};
10 /**
11  * WCS-based SignalStrategy implementation. Used instead of XMPPConnection
12  * when XMPP cannot be used (e.g. in V1 app).
13  *
14  * @constructor
15  * @implements {remoting.SignalStrategy}
16  */
17 remoting.WcsAdapter = function() {
18   /** @private {?function(remoting.SignalStrategy.State):void} */
19   this.onStateChangedCallback_ = null;
20   /** @private {?function(Element):void} */
21   this.onIncomingStanzaCallback_ = null;
22   /** @private */
23   this.state_ = remoting.SignalStrategy.State.NOT_CONNECTED;
24   /** @private */
25   this.jid_ = '';
26   /** @private */
27   this.error_ = remoting.Error.none();
30 /**
31  * @param {function(remoting.SignalStrategy.State):void} onStateChangedCallback
32  */
33 remoting.WcsAdapter.prototype.setStateChangedCallback = function(
34     onStateChangedCallback) {
35   this.onStateChangedCallback_ = onStateChangedCallback;
38 /**
39  * @param {?function(Element):void} onIncomingStanzaCallback Callback to call on
40  *     incoming messages.
41  */
42 remoting.WcsAdapter.prototype.setIncomingStanzaCallback =
43     function(onIncomingStanzaCallback) {
44   this.onIncomingStanzaCallback_ = onIncomingStanzaCallback;
47 /**
48  * @param {string} server
49  * @param {string} username
50  * @param {string} authToken
51  */
52 remoting.WcsAdapter.prototype.connect = function(server, username, authToken) {
53   console.assert(this.onStateChangedCallback_ != null,
54                 'No state-change callback registered.');
56   remoting.wcsSandbox.setOnIq(this.onIncomingStanza_.bind(this));
57   remoting.wcsSandbox.connect(this.onWcsConnected_.bind(this),
58                               this.onError_.bind(this));
61 /** @return {remoting.SignalStrategy.State} Current state */
62 remoting.WcsAdapter.prototype.getState = function() {
63   return this.state_;
66 /** @return {!remoting.Error} Error when in FAILED state. */
67 remoting.WcsAdapter.prototype.getError = function() {
68   return this.error_;
71 /** @return {string} Current JID when in CONNECTED state. */
72 remoting.WcsAdapter.prototype.getJid = function() {
73   return this.jid_;
76 /** @return {remoting.SignalStrategy.Type} The signal strategy type. */
77 remoting.WcsAdapter.prototype.getType = function() {
78   return remoting.SignalStrategy.Type.WCS;
81 remoting.WcsAdapter.prototype.dispose = function() {
82   this.setState_(remoting.SignalStrategy.State.CLOSED);
83   remoting.wcsSandbox.setOnIq(null);
86 /** @param {string} message */
87 remoting.WcsAdapter.prototype.sendMessage = function(message) {
88   // Extract the session id, so we can close the session later.
89   // HACK: Add 'x' prefix to the IDs of the outgoing messages to make sure that
90   // stanza IDs used by host and client do not match. This is necessary to
91   // workaround bug in the signaling endpoint used by chromoting.
92   // TODO(sergeyu): Remove this hack once the server-side bug is fixed.
93   var parser = new DOMParser();
94   var iqNode = parser.parseFromString(message, 'text/xml').firstChild;
95   var type = iqNode.getAttribute('type');
96   if (type == 'set') {
97     var id = iqNode.getAttribute('id');
98     iqNode.setAttribute('id', 'x' + id);
99     message = (new XMLSerializer()).serializeToString(iqNode);
100   }
102   // Send the stanza.
103   remoting.wcsSandbox.sendIq(message);
106 /** @param {string} jid */
107 remoting.WcsAdapter.prototype.onWcsConnected_ = function(jid) {
108   this.jid_ = jid;
109   this.setState_(remoting.SignalStrategy.State.CONNECTED);
112 /** @param {string} stanza */
113 remoting.WcsAdapter.prototype.onIncomingStanza_ = function(stanza) {
114   var parser = new DOMParser();
115   var parsed = parser.parseFromString(stanza, 'text/xml').firstChild;
117   // HACK: Remove 'x' prefix added to the id in sendMessage().
118   try {
119     var type = parsed.getAttribute('type');
120     var id = parsed.getAttribute('id');
121     if (type != 'set' && id.charAt(0) == 'x') {
122       parsed.setAttribute('id', id.substr(1));
123     }
124   } catch (err) {
125     // Pass message as is when it is malformed.
126   }
128   if (this.onIncomingStanzaCallback_) {
129     this.onIncomingStanzaCallback_(parsed);
130   }
133 /** @param {!remoting.Error} error */
134 remoting.WcsAdapter.prototype.onError_ = function(error) {
135   this.error_ = error;
136   this.setState_(remoting.SignalStrategy.State.FAILED);
140  * @param {remoting.SignalStrategy.State} newState
141  * @private
142  */
143 remoting.WcsAdapter.prototype.setState_ = function(newState) {
144   if (this.state_ != newState) {
145     this.state_ = newState;
146     this.onStateChangedCallback_(this.state_);
147   }