Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
haoqu.ma
/
gotty
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 25627da8
authored
Aug 21, 2015
by
Iwasaki Yudai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Restructure handler function
1 parent
7e2befa1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
65 additions
and
38 deletions
app/app.go
app/app.go
View file @
25627da
...
@@ -7,6 +7,7 @@ import (
...
@@ -7,6 +7,7 @@ import (
"log"
"log"
"math/big"
"math/big"
"net/http"
"net/http"
"os"
"os/exec"
"os/exec"
"strconv"
"strconv"
"strings"
"strings"
...
@@ -21,6 +22,8 @@ import (
...
@@ -21,6 +22,8 @@ import (
type
App
struct
{
type
App
struct
{
options
Options
options
Options
upgrader
*
websocket
.
Upgrader
}
}
type
Options
struct
{
type
Options
struct
{
...
@@ -35,6 +38,12 @@ type Options struct {
...
@@ -35,6 +38,12 @@ type Options struct {
func
New
(
options
Options
)
*
App
{
func
New
(
options
Options
)
*
App
{
return
&
App
{
return
&
App
{
options
:
options
,
options
:
options
,
upgrader
:
&
websocket
.
Upgrader
{
ReadBufferSize
:
1024
,
WriteBufferSize
:
1024
,
Subprotocols
:
[]
string
{
"gotty"
},
},
}
}
}
}
...
@@ -77,7 +86,7 @@ func (app *App) Run() error {
...
@@ -77,7 +86,7 @@ func (app *App) Run() error {
fs
:=
http
.
StripPrefix
(
path
,
http
.
FileServer
(
&
assetfs
.
AssetFS
{
Asset
:
Asset
,
AssetDir
:
AssetDir
,
Prefix
:
"bindata"
}))
fs
:=
http
.
StripPrefix
(
path
,
http
.
FileServer
(
&
assetfs
.
AssetFS
{
Asset
:
Asset
,
AssetDir
:
AssetDir
,
Prefix
:
"bindata"
}))
http
.
Handle
(
path
,
fs
)
http
.
Handle
(
path
,
fs
)
http
.
HandleFunc
(
path
+
"ws"
,
app
.
generateHandler
()
)
http
.
HandleFunc
(
path
+
"ws"
,
app
.
handler
)
endpoint
:=
app
.
options
.
Address
+
":"
+
app
.
options
.
Port
endpoint
:=
app
.
options
.
Address
+
":"
+
app
.
options
.
Port
log
.
Printf
(
"Server is running at %s, command: %s"
,
endpoint
+
path
,
strings
.
Join
(
app
.
options
.
Command
,
" "
))
log
.
Printf
(
"Server is running at %s, command: %s"
,
endpoint
+
path
,
strings
.
Join
(
app
.
options
.
Command
,
" "
))
...
@@ -94,51 +103,73 @@ func (app *App) Run() error {
...
@@ -94,51 +103,73 @@ func (app *App) Run() error {
return
nil
return
nil
}
}
func
(
app
*
App
)
generateHandler
()
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
func
(
app
*
App
)
handler
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
return
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
log
.
Printf
(
"New client connected: %s"
,
r
.
RemoteAddr
)
log
.
Printf
(
"New client connected: %s"
,
r
.
RemoteAddr
)
upgrader
:=
websocket
.
Upgrader
{
ReadBufferSize
:
1024
,
WriteBufferSize
:
1024
,
Subprotocols
:
[]
string
{
"gotty"
},
}
if
r
.
Method
!=
"GET"
{
if
r
.
Method
!=
"GET"
{
http
.
Error
(
w
,
"Method not allowed"
,
405
)
http
.
Error
(
w
,
"Method not allowed"
,
405
)
return
return
}
}
conn
,
err
:=
upgrader
.
Upgrade
(
w
,
r
,
nil
)
conn
,
err
:=
app
.
upgrader
.
Upgrade
(
w
,
r
,
nil
)
if
err
!=
nil
{
if
err
!=
nil
{
log
.
Print
(
"Failed to upgrade connection"
)
log
.
Print
(
"Failed to upgrade connection"
)
return
return
}
}
cmd
:=
exec
.
Command
(
app
.
options
.
Command
[
0
],
app
.
options
.
Command
[
1
:
]
...
)
cmd
:=
exec
.
Command
(
app
.
options
.
Command
[
0
],
app
.
options
.
Command
[
1
:
]
...
)
fio
,
err
:=
pty
.
Start
(
cmd
)
ptyIo
,
err
:=
pty
.
Start
(
cmd
)
log
.
Printf
(
"Command is running for client %s with PID %d"
,
r
.
RemoteAddr
,
cmd
.
Process
.
Pid
)
if
err
!=
nil
{
if
err
!=
nil
{
log
.
Print
(
"Failed to execute command"
)
log
.
Print
(
"Failed to execute command"
)
return
return
}
}
log
.
Printf
(
"Command is running for client %s with PID %d"
,
r
.
RemoteAddr
,
cmd
.
Process
.
Pid
)
context
:=
&
clientContext
{
request
:
r
,
connection
:
conn
,
command
:
cmd
,
pty
:
ptyIo
,
}
app
.
goHandleConnection
(
context
)
}
func
(
app
*
App
)
goHandleConnection
(
context
*
clientContext
)
{
exit
:=
make
(
chan
bool
,
2
)
exit
:=
make
(
chan
bool
,
2
)
go
func
()
{
go
func
()
{
defer
func
()
{
exit
<-
true
}()
defer
func
()
{
exit
<-
true
}()
app
.
processSend
(
context
)
}()
go
func
()
{
defer
func
()
{
exit
<-
true
}()
app
.
processReceive
(
context
)
}()
go
func
()
{
<-
exit
context
.
command
.
Wait
()
context
.
connection
.
Close
()
log
.
Printf
(
"Connection closed: %s"
,
context
.
request
.
RemoteAddr
)
}()
}
func
(
app
*
App
)
processSend
(
context
*
clientContext
)
{
buf
:=
make
([]
byte
,
1024
)
buf
:=
make
([]
byte
,
1024
)
utf8f
:=
utf8reader
.
New
(
fio
)
utf8f
:=
utf8reader
.
New
(
context
.
pty
)
for
{
for
{
size
,
err
:=
utf8f
.
Read
(
buf
)
size
,
err
:=
utf8f
.
Read
(
buf
)
if
err
!=
nil
{
if
err
!=
nil
{
log
.
Printf
(
"Command exited for: %s"
,
r
.
RemoteAddr
)
log
.
Printf
(
"Command exited for: %s"
,
context
.
request
.
RemoteAddr
)
return
return
}
}
writer
,
err
:=
con
n
.
NextWriter
(
websocket
.
TextMessage
)
writer
,
err
:=
context
.
connectio
n
.
NextWriter
(
websocket
.
TextMessage
)
if
err
!=
nil
{
if
err
!=
nil
{
return
return
}
}
...
@@ -146,13 +177,11 @@ func (app *App) generateHandler() func(w http.ResponseWriter, r *http.Request) {
...
@@ -146,13 +177,11 @@ func (app *App) generateHandler() func(w http.ResponseWriter, r *http.Request) {
writer
.
Write
(
buf
[
:
size
])
writer
.
Write
(
buf
[
:
size
])
writer
.
Close
()
writer
.
Close
()
}
}
}()
}
go
func
()
{
defer
func
()
{
exit
<-
true
}()
func
(
app
*
App
)
processReceive
(
context
*
clientContext
)
{
for
{
for
{
_
,
data
,
err
:=
con
n
.
ReadMessage
()
_
,
data
,
err
:=
context
.
connectio
n
.
ReadMessage
()
if
err
!=
nil
{
if
err
!=
nil
{
return
return
}
}
...
@@ -163,7 +192,7 @@ func (app *App) generateHandler() func(w http.ResponseWriter, r *http.Request) {
...
@@ -163,7 +192,7 @@ func (app *App) generateHandler() func(w http.ResponseWriter, r *http.Request) {
break
break
}
}
_
,
err
:=
fio
.
Write
(
data
[
1
:
])
_
,
err
:=
context
.
pty
.
Write
(
data
[
1
:
])
if
err
!=
nil
{
if
err
!=
nil
{
return
return
}
}
...
@@ -189,7 +218,7 @@ func (app *App) generateHandler() func(w http.ResponseWriter, r *http.Request) {
...
@@ -189,7 +218,7 @@ func (app *App) generateHandler() func(w http.ResponseWriter, r *http.Request) {
}
}
syscall
.
Syscall
(
syscall
.
Syscall
(
syscall
.
SYS_IOCTL
,
syscall
.
SYS_IOCTL
,
fio
.
Fd
(),
context
.
pty
.
Fd
(),
syscall
.
TIOCSWINSZ
,
syscall
.
TIOCSWINSZ
,
uintptr
(
unsafe
.
Pointer
(
&
window
)),
uintptr
(
unsafe
.
Pointer
(
&
window
)),
)
)
...
@@ -199,15 +228,17 @@ func (app *App) generateHandler() func(w http.ResponseWriter, r *http.Request) {
...
@@ -199,15 +228,17 @@ func (app *App) generateHandler() func(w http.ResponseWriter, r *http.Request) {
return
return
}
}
}
}
}()
}
go
func
()
{
func
generateRandomString
(
length
int
)
string
{
<-
exit
const
base
=
36
cmd
.
Wait
()
size
:=
big
.
NewInt
(
base
)
conn
.
Close
()
n
:=
make
([]
byte
,
length
)
log
.
Printf
(
"Connection closed: %s"
,
r
.
RemoteAddr
)
for
i
,
_
:=
range
n
{
}()
c
,
_
:=
rand
.
Int
(
rand
.
Reader
,
size
)
n
[
i
]
=
strconv
.
FormatInt
(
c
.
Int64
(),
base
)[
0
]
}
}
return
string
(
n
)
}
}
const
(
const
(
...
@@ -220,13 +251,9 @@ type argResizeTerminal struct {
...
@@ -220,13 +251,9 @@ type argResizeTerminal struct {
Rows
float64
Rows
float64
}
}
func
generateRandomString
(
length
int
)
string
{
type
clientContext
struct
{
const
base
=
36
request
*
http
.
Request
size
:=
big
.
NewInt
(
base
)
connection
*
websocket
.
Conn
n
:=
make
([]
byte
,
length
)
command
*
exec
.
Cmd
for
i
,
_
:=
range
n
{
pty
*
os
.
File
c
,
_
:=
rand
.
Int
(
rand
.
Reader
,
size
)
n
[
i
]
=
strconv
.
FormatInt
(
c
.
Int64
(),
base
)[
0
]
}
return
string
(
n
)
}
}
Write
Preview
Markdown
is supported
Attach a file
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 post a comment