Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
234f7985
Commit
234f7985
authored
Mar 04, 2016
by
liuzheng712
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(webterminal): change it to HTML5 websocket
parent
f73d34b9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
86 additions
and
64 deletions
+86
-64
webterminal.js
static/js/webterminal.js
+86
-64
No files found.
static/js/webterminal.js
View file @
234f7985
/**
* Created by liuzheng on 3/3/16.
*/
var
rowHeight
=
1
;
var
colWidth
=
1
;
function
WSSHClient
()
{
}
WSSHClient
.
prototype
.
_generateEndpoint
=
function
(
options
)
{
console
.
log
(
options
);
//var rowHeight = 1;
//var colWidth = 1;
//function WSSHClient() {
//}
//WSSHClient.prototype._generateEndpoint = function (options) {
// console.log(options);
// if (window.location.protocol == 'https:') {
// var protocol = 'wss://';
// } else {
// var protocol = 'ws://';
// }
//
// var endpoint = protocol + document.URL.match(RegExp('//(.*?)/'))[1] + '/ws/terminal' + document.URL.match(/(\?.*)/);
// return endpoint;
//};
//WSSHClient.prototype.connect = function (options) {
// var endpoint = this._generateEndpoint(options);
//
// if (window.WebSocket) {
// this._connection = new WebSocket(endpoint);
// }
// else if (window.MozWebSocket) {
// this._connection = MozWebSocket(endpoint);
// }
// else {
// options.onError('WebSocket Not Supported');
// return;
// }
//
// this._connection.onopen = function () {
// options.onConnect();
// };
//
// this._connection.onmessage = function (evt) {
// var data = JSON.parse(evt.data.toString());
// if (data.error !== undefined) {
// options.onError(data.error);
// }
// else {
// options.onData(data.data);
// }
// };
//
// this._connection.onclose = function (evt) {
// options.onClose();
// };
//};
//
//WSSHClient.prototype.send = function (data) {
// this._connection.send(JSON.stringify({'data': data}));
//};
function
openTerminal
(
options
)
{
if
(
window
.
location
.
protocol
==
'https:'
)
{
var
protocol
=
'wss://'
;
}
else
{
...
...
@@ -14,47 +62,8 @@ WSSHClient.prototype._generateEndpoint = function (options) {
}
var
endpoint
=
protocol
+
document
.
URL
.
match
(
RegExp
(
'//(.*?)/'
))[
1
]
+
'/ws/terminal'
+
document
.
URL
.
match
(
/
(\?
.*
)
/
);
return
endpoint
;
};
WSSHClient
.
prototype
.
connect
=
function
(
options
)
{
var
endpoint
=
this
.
_generateEndpoint
(
options
);
if
(
window
.
WebSocket
)
{
this
.
_connection
=
new
WebSocket
(
endpoint
);
}
else
if
(
window
.
MozWebSocket
)
{
this
.
_connection
=
MozWebSocket
(
endpoint
);
}
else
{
options
.
onError
(
'WebSocket Not Supported'
);
return
;
}
this
.
_connection
.
onopen
=
function
()
{
options
.
onConnect
();
};
this
.
_connection
.
onmessage
=
function
(
evt
)
{
var
data
=
JSON
.
parse
(
evt
.
data
.
toString
());
if
(
data
.
error
!==
undefined
)
{
options
.
onError
(
data
.
error
);
}
else
{
options
.
onData
(
data
.
data
);
}
};
this
.
_connection
.
onclose
=
function
(
evt
)
{
options
.
onClose
();
};
};
WSSHClient
.
prototype
.
send
=
function
(
data
)
{
this
.
_connection
.
send
(
JSON
.
stringify
({
'data'
:
data
}));
};
function
openTerminal
(
options
)
{
var
client
=
new
WSSHClient
();
var
sock
=
new
WebSocket
(
endpoint
);
//var client = new WSSHClient();
var
term
=
new
Terminal
({
rows
:
rowHeight
,
cols
:
colWidth
,
...
...
@@ -63,29 +72,42 @@ function openTerminal(options) {
});
term
.
open
();
term
.
on
(
'data'
,
function
(
data
)
{
client
.
send
(
data
)
sock
.
send
(
data
)
});
$
(
'.terminal'
).
detach
().
appendTo
(
'#term'
);
term
.
resize
(
80
,
24
);
term
.
write
(
'Connecting...'
);
client
.
connect
(
$
.
extend
(
options
,
{
onError
:
function
(
error
)
{
term
.
write
(
'Error: '
+
error
+
'
\
r
\
n'
);
},
onConnect
:
function
()
{
// Erase our connecting message
term
.
write
(
'
\
r'
);
},
onClose
:
function
()
{
term
.
write
(
'Connection Reset By Peer'
);
},
onData
:
function
(
data
)
{
term
.
write
(
data
);
}
}));
sock
.
onopen
=
function
()
{
// Erase our connecting message
term
.
write
(
'
\
r'
);
};
sock
.
onclose
=
function
()
{
term
.
write
(
'Connection Reset By Peer'
);
};
sock
.
onmessage
=
function
(
data
)
{
term
.
write
(
data
);
};
sock
.
onerror
=
function
()
{
term
.
write
(
'Connection Reset By Peer'
);
};
//client.connect($.extend(options, {
// onError: function (error) {
// term.write('Error: ' + error + '\r\n');
// },
// onConnect: function () {
// // Erase our connecting message
// term.write('\r');
// },
// onClose: function () {
// term.write('Connection Reset By Peer');
// },
// onData: function (data) {
// term.write(data);
// }
//}));
rowHeight
=
0.0
+
1.00
*
$
(
'.terminal'
).
height
()
/
24
;
colWidth
=
0.0
+
1.00
*
$
(
'.terminal'
).
width
()
/
80
;
return
{
'term'
:
term
,
'client'
:
client
};
return
{
'term'
:
term
,
'client'
:
sock
};
}
function
resize
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment