forked from vitessio/vitess
-
Notifications
You must be signed in to change notification settings - Fork 1
/
block_cmd.go
75 lines (63 loc) · 1.88 KB
/
block_cmd.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
// Copyright 2016, Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package worker
import (
"flag"
"fmt"
"html/template"
"net/http"
"github.com/youtube/vitess/go/vt/wrangler"
"golang.org/x/net/context"
)
const blockHTML = `
<!DOCTYPE html>
<head>
<title>Block Action</title>
</head>
<body>
<h1>Block Action</h1>
{{if .Error}}
<b>Error:</b> {{.Error}}</br>
{{else}}
<form action="/Debugging/Block" method="post">
<INPUT type="submit" name="submit" value="Block (until canceled)"/>
</form>
{{end}}
</body>
`
var blockTemplate = mustParseTemplate("block", blockHTML)
func commandBlock(wi *Instance, wr *wrangler.Wrangler, subFlags *flag.FlagSet, args []string) (Worker, error) {
if err := subFlags.Parse(args); err != nil {
return nil, err
}
if subFlags.NArg() != 0 {
subFlags.Usage()
return nil, fmt.Errorf("command Block does not accept any parameter")
}
worker, err := NewBlockWorker(wr)
if err != nil {
return nil, fmt.Errorf("Could not create Block worker: %v", err)
}
return worker, nil
}
func interactiveBlock(ctx context.Context, wi *Instance, wr *wrangler.Wrangler, w http.ResponseWriter, r *http.Request) (Worker, *template.Template, map[string]interface{}, error) {
if err := r.ParseForm(); err != nil {
return nil, nil, nil, fmt.Errorf("Cannot parse form: %s", err)
}
if submit := r.FormValue("submit"); submit == "" {
result := make(map[string]interface{})
return nil, blockTemplate, result, nil
}
wrk, err := NewBlockWorker(wr)
if err != nil {
return nil, nil, nil, fmt.Errorf("Could not create Block worker: %v", err)
}
return wrk, nil, nil, nil
}
func init() {
AddCommand("Debugging", Command{"Block",
commandBlock, interactiveBlock,
"<message>",
"For internal tests only. When triggered, the command will block until canceled."})
}