-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathctrl_telnet.go
231 lines (207 loc) · 6.81 KB
/
ctrl_telnet.go
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
//
// Copyright (c) 2016 Christian Pointner <[email protected]>
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
//
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * Neither the name of whawty.pond nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
package main
import (
"path"
"strings"
"github.com/spreadspace/telgo"
)
type TelnetInterface struct {
server *telgo.Server
}
type TelnetClientContext struct {
current_service string
}
func telnetClientSelectService(c *telgo.Client, name string) {
if c.UserData == nil {
c.UserData = &TelnetClientContext{}
}
(c.UserData.(*TelnetClientContext)).current_service = name
c.Prompt = name
if name != "" {
c.Prompt += " % "
}
}
func telnetClientGetSelectedService(c *telgo.Client, ctx *Context) *Service {
if c.UserData == nil {
return nil
}
name := (c.UserData.(*TelnetClientContext)).current_service
svc, exists := ctx.Services[name]
if !exists {
c.Sayln("selected service '%s' has vanished", name)
telnetClientSelectService(c, "")
return nil
}
return svc
}
func telnetAddService(c *telgo.Client, name string, args []string, ctx *Context) bool {
_, err := ctx.NewService(name, path.Join(volumeBasePath, name, "shared"))
if err != nil {
c.Sayln("failed to add service '%s': %v", name, err)
return false
}
c.Sayln("service '%s' successfully added", name)
return false
}
func telnetRemoveService(c *telgo.Client, name string, args []string, ctx *Context) bool {
// delete(ctx.Services, name)
c.Sayln("remove service %s: not yet implemented (args: %+v)", name, args)
return false
}
func telnetStartService(c *telgo.Client, name string, args []string, ctx *Context) bool {
c.Sayln("start service %s: not yet implemented (args: %+v)", name, args)
return false
}
func telnetStopService(c *telgo.Client, name string, args []string, ctx *Context) bool {
c.Sayln("stop service %s: not yet implemented (args: %+v)", name, args)
return false
}
func telnetService(c *telgo.Client, args []string, ctx *Context) bool {
if len(args) >= 3 {
if !serviceNameRe.MatchString(args[2]) {
c.Sayln("service name '%s' is invalid", args[2])
return false
}
switch strings.ToLower(args[1]) {
case "add":
return telnetAddService(c, args[2], args[3:], ctx)
case "remove":
return telnetRemoveService(c, args[2], args[3:], ctx)
case "start":
return telnetRemoveService(c, args[2], args[3:], ctx)
case "stop":
return telnetRemoveService(c, args[2], args[3:], ctx)
default:
c.Sayln("unknown sub command")
}
}
c.Sayln("too few arguments")
return false
}
func telnetShow(c *telgo.Client, args []string, ctx *Context) bool {
switch len(args) {
case 2:
switch strings.ToLower(args[1]) {
case "services":
c.Sayln("Services:")
for name, svc := range ctx.Services {
c.Sayln(" - %s: %+v", name, *svc)
}
return false
case "images":
svc := telnetClientGetSelectedService(c, ctx)
if svc == nil {
c.Sayln("please select a service")
return false
}
c.Sayln("Images:")
for name, img := range svc.Images {
c.Sayln(" - %s (type: %T): %+v", name, img, img)
}
return false
default:
c.Sayln("unknown type")
}
default:
c.Sayln("too few arguments")
}
return false
}
func telnetSelect(c *telgo.Client, args []string, ctx *Context) bool {
switch len(args) {
case 2:
if _, exists := ctx.Services[args[1]]; !exists {
c.Sayln("service '%s' does not exist", args[1])
return false
}
telnetClientSelectService(c, args[1])
default:
c.Sayln("too few arguments")
}
return false
}
func telnetHelp(c *telgo.Client, args []string) bool {
switch len(args) {
case 2:
switch strings.ToLower(args[1]) {
case "quit":
c.Sayln("usage: quit")
c.Sayln(" terminates the client connection. You may also use Ctrl-D to do this.")
return false
case "help":
c.Sayln("usage: help [ <cmd> ]")
c.Sayln(" prints command overview or detailed info to <cmd>.")
return false
case "show":
c.Sayln("usage: show (services|images|container)")
c.Sayln(" ...tba...")
return false
case "service":
c.Sayln("usage: service (add|remove|start|stop) <name>")
c.Sayln(" ...tba...")
return false
case "select":
c.Sayln("usage: select <service-name>")
c.Sayln(" ...tba...")
return false
}
fallthrough
default:
c.Sayln("usage: <cmd> [ [ <arg1> ] ... ]")
c.Sayln(" available commands:")
c.Sayln(" quit close connection (or use Ctrl-D)")
c.Sayln(" help [ <cmd> ] print this, or help for specific command")
c.Sayln(" show (services|images) list all services or images")
c.Sayln(" service <cmd> <name> [ <args..> ] manage services")
c.Sayln(" select <service-name> select service to manage")
}
return false
}
func telnetQuit(c *telgo.Client, args []string) bool {
return true
}
func (telnet *TelnetInterface) Run() {
wdl.Printf("telnet: handler running...")
if err := telnet.server.Run(); err != nil {
wel.Printf("telnet: server returned: %s", err)
}
}
func TelnetInit(addr string, ctx *Context) (telnet *TelnetInterface) {
telnet = &TelnetInterface{}
cmdlist := make(telgo.CmdList)
cmdlist["help"] = telnetHelp
cmdlist["quit"] = telnetQuit
cmdlist["show"] = func(c *telgo.Client, args []string) bool { return telnetShow(c, args, ctx) }
cmdlist["service"] = func(c *telgo.Client, args []string) bool { return telnetService(c, args, ctx) }
cmdlist["select"] = func(c *telgo.Client, args []string) bool { return telnetSelect(c, args, ctx) }
telnet.server = telgo.NewServer(addr, "pond> ", cmdlist, nil)
return
}