Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
coco
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
coco
Commits
7fe48e88
Commit
7fe48e88
authored
Dec 12, 2017
by
liuzheng712
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: update
parent
38cae93c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
20 deletions
+29
-20
httpd.py
coco/httpd.py
+27
-19
models.py
coco/models.py
+2
-1
No files found.
coco/httpd.py
View file @
7fe48e88
...
...
@@ -5,6 +5,7 @@ import io
import
os
import
paramiko
import
logging
import
socket
from
flask_socketio
import
SocketIO
,
Namespace
,
emit
from
flask
import
Flask
,
send_from_directory
,
render_template
,
request
,
jsonify
...
...
@@ -20,24 +21,33 @@ logger = logging.getLogger(__file__)
class
BaseWebSocketHandler
:
def
prepare
(
self
):
self
.
app
=
self
.
settings
[
"app"
]
def
app
(
self
,
app
):
self
.
app
=
app
return
self
def
prepare
(
self
,
request
):
# self.app = self.settings["app"]
child
,
parent
=
socket
.
socketpair
()
request
=
Request
((
self
.
request
.
remote_ip
,
0
))
request
.
user
=
self
.
current_user
self
.
request
.
__dict__
.
update
(
request
.
__dict__
)
if
request
.
headers
.
getlist
(
"X-Forwarded-For"
):
remote_ip
=
request
.
headers
.
getlist
(
"X-Forwarded-For"
)[
0
]
else
:
remote_ip
=
request
.
remote_addr
self
.
request
=
Request
((
remote_ip
,
0
))
self
.
request
.
user
=
self
.
get_current_user
()
self
.
request
.
meta
=
{
"width"
:
self
.
cols
,
"height"
:
self
.
rows
}
# self.request.__dict__.update(request.__dict__)
self
.
client
=
Client
(
parent
,
self
.
request
)
self
.
proxy
=
WSProxy
(
self
,
child
)
self
.
app
.
clients
.
append
(
self
.
client
)
def
get_current_user
(
self
):
return
User
(
id
=
1
,
username
=
"guanghongwei"
,
name
=
"广宏伟
"
)
return
User
(
id
=
'bb318c484f50483ea16589d7f18e9e95'
,
username
=
"admin"
,
name
=
"admin
"
)
def
check_origin
(
self
,
origin
):
return
True
def
write_message
(
self
,
data
):
self
.
emit
(
'data'
,
data
[
'data'
])
def
close
(
self
):
pass
class
SSHws
(
Namespace
,
BaseWebSocketHandler
):
...
...
@@ -52,32 +62,30 @@ class SSHws(Namespace, BaseWebSocketHandler):
def
send_data
(
self
):
while
True
:
data
=
self
.
chan
.
recv
(
2048
)
.
decode
(
'utf-8'
,
'replace'
)
print
(
data
)
self
.
emit
(
'data'
,
data
)
def
on_connect
(
self
):
self
.
cols
=
int
(
request
.
cookies
.
get
(
'cols'
,
80
))
self
.
raws
=
int
(
request
.
cookies
.
get
(
'raws'
,
24
))
self
.
rows
=
int
(
request
.
cookies
.
get
(
'rows'
,
24
))
self
.
prepare
(
request
)
InteractiveServer
(
self
.
app
,
self
.
client
)
.
interact_async
()
def
on_data
(
self
,
message
):
# self.chan.send(message)
# while not self.chan.recv_ready():
self
.
proxy
.
send
(
message
)
self
.
proxy
.
send
(
{
"data"
:
message
}
)
# emit('data', self.chan.recv(2048).decode('utf-8', 'replace'))
# def on_event(self, message):
# self.evt_handle(message)
def
on_host
(
self
,
message
):
# 此处获取主机的信息
print
(
message
)
def
on_resize
(
self
,
message
):
# self.cols = message.get('cols', 80)
# self.raws = message.get('raws', 24)
# self.chan.resize_pty(width=self.cols, height=self.raws)
self
.
request
.
meta
[
'width'
]
=
message
.
get
(
'cols'
,
80
)
self
.
request
.
meta
[
'height'
]
=
message
.
get
(
'r
a
ws'
,
24
)
self
.
request
.
meta
[
'height'
]
=
message
.
get
(
'r
o
ws'
,
24
)
self
.
request
.
change_size_event
.
set
()
def
on_disconnect
(
self
):
...
...
@@ -96,8 +104,8 @@ class HttpServer:
def
__init__
(
self
,
app
):
self
.
app
=
app
self
.
settings
[
'cookie_secret'
]
=
self
.
app
.
config
[
'SECRET_KEY'
]
self
.
settings
[
'app'
]
=
self
.
app
#
self.settings['cookie_secret'] = self.app.config['SECRET_KEY']
#
self.settings['app'] = self.app
self
.
flask
=
Flask
(
__name__
,
template_folder
=
'dist'
)
self
.
flask
.
config
[
'SECRET_KEY'
]
=
self
.
app
.
config
[
'SECRET_KEY'
]
...
...
@@ -107,9 +115,9 @@ class HttpServer:
host
=
self
.
app
.
config
[
"BIND_HOST"
]
port
=
self
.
app
.
config
[
"HTTPD_PORT"
]
print
(
'Starting websocket server at {}:{}'
.
format
(
host
,
port
))
self
.
socketio
.
on_namespace
(
SSHws
(
'/ssh'
)
.
prepare
(
))
self
.
socketio
.
on_namespace
(
SSHws
(
'/ssh'
)
.
app
(
self
.
app
))
self
.
socketio
.
init_app
(
self
.
flask
)
self
.
socketio
.
run
(
self
.
flask
,
port
=
port
,
address
=
host
)
self
.
socketio
.
run
(
self
.
flask
,
port
=
port
,
host
=
host
)
def
shutdown
(
self
):
pass
...
...
coco/models.py
View file @
7fe48e88
...
...
@@ -71,6 +71,7 @@ class Server:
Because we don't want to using python dynamic feature, such asset
have the chan and system_user attr.
"""
# Todo: Server name is not very suitable
def
__init__
(
self
,
chan
,
asset
,
system_user
):
self
.
chan
=
chan
...
...
@@ -219,7 +220,7 @@ class WSProxy:
data
=
self
.
child
.
recv
(
BUF_SIZE
)
if
len
(
data
)
==
0
:
self
.
close
()
self
.
ws
.
write_message
(
json
.
dumps
({
"data"
:
data
.
decode
(
"utf-8"
)}
))
self
.
ws
.
emit
(
"data"
,
data
.
decode
(
"utf-8"
))
def
auto_forward
(
self
):
thread
=
threading
.
Thread
(
target
=
self
.
forward
,
args
=
())
...
...
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