-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathcommands.go
142 lines (122 loc) · 3.4 KB
/
commands.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
/*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package commands
import (
"sort"
"github.com/fnproject/cli/common"
"github.com/fnproject/cli/objects/app"
"github.com/fnproject/cli/objects/context"
"github.com/fnproject/cli/objects/fn"
"github.com/fnproject/cli/objects/server"
"github.com/fnproject/cli/objects/trigger"
"github.com/urfave/cli"
)
//Cmd is a mapping from a commands name to its corresponding structure
type Cmd map[string]cli.Command
// Commands map of all top-level commands
var Commands = Cmd{
"build": BuildCommand(),
"build-server": BuildServerCommand(),
"bump": common.BumpCommand(),
"invoke": InvokeCommand(),
"configure": ConfigureCommand(),
"create": CreateCommand(),
"delete": DeleteCommand(),
"deploy": DeployCommand(),
"get": GetCommand(),
"init": InitCommand(),
"inspect": InspectCommand(),
"list": ListCommand(),
"migrate": MigrateCommand(),
"push": PushCommand(),
"start": StartCommand(),
"stop": StopCommand(),
"unset": UnsetCommand(),
"update": UpdateCommand(),
"use": UseCommand(),
}
var CreateCmds = Cmd{
"apps": app.Create(),
"functions": fn.Create(),
"triggers": trigger.Create(),
"context": context.Create(),
}
var ConfigCmds = Cmd{
"apps": app.SetConfig(),
"functions": fn.SetConfig(),
}
var ConfigListCmds = Cmd{
"apps": app.ListConfig(),
"functions": fn.ListConfig(),
}
var ConfigGetCmds = Cmd{
"apps": app.GetConfig(),
"functions": fn.GetConfig(),
}
var ConfigSetCmds = Cmd{
"apps": app.SetConfig(),
"functions": fn.SetConfig(),
}
var ConfigUnsetCmds = Cmd{
"apps": app.UnsetConfig(),
"functions": fn.UnsetConfig(),
}
var DeleteCmds = Cmd{
"apps": app.Delete(),
"functions": fn.Delete(),
"context": context.Delete(),
"triggers": trigger.Delete(),
"config": ConfigCommand("delete"),
}
var GetCmds = Cmd{
"config": ConfigCommand("get"),
}
var InspectCmds = Cmd{
"apps": app.Inspect(),
"context": context.Inspect(),
"functions": fn.Inspect(),
"triggers": trigger.Inspect(),
}
var ListCmds = Cmd{
"config": ConfigCommand("list"),
"apps": app.List(),
"functions": fn.List(),
"triggers": trigger.List(),
"contexts": context.List(),
}
var UnsetCmds = Cmd{
"config": ConfigCommand("unset"),
"context": context.Unset(),
}
var UpdateCmds = Cmd{
"apps": app.Update(),
"functions": fn.Update(),
"context": context.Update(),
"server": server.Update(),
"trigger": trigger.Update(),
}
var UseCmds = Cmd{
"context": context.Use(),
}
// GetCommands returns a list of cli.commands
func GetCommands(commands map[string]cli.Command) []cli.Command {
cmds := []cli.Command{}
for _, cmd := range commands {
cmds = append(cmds, cmd)
}
sort.Sort(cli.CommandsByName(cmds))
return cmds
}