forked from railwayapp/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
144 lines (133 loc) · 3.95 KB
/
main.go
File metadata and controls
144 lines (133 loc) · 3.95 KB
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
package main
import (
"context"
"fmt"
"os"
"runtime/debug"
"strings"
"github.com/railwayapp/cli/cmd"
"github.com/railwayapp/cli/constants"
"github.com/railwayapp/cli/entity"
"github.com/spf13/cobra"
)
var rootCmd = &cobra.Command{
Use: "railway",
SilenceUsage: true,
SilenceErrors: true,
Version: constants.Version,
Short: "🚅 Railway. Infrastructure, Instantly.",
Long: "Interact with 🚅 Railway via CLI \n\n Deploy infrastructure, instantly. Docs: https://railway.app/docs",
}
/* contextualize converts a HandlerFunction to a cobra function
*/
func contextualize(fn entity.HandlerFunction, panicFn entity.PanicFunction) entity.CobraFunction {
return func(cmd *cobra.Command, args []string) error {
ctx := context.Background()
defer func() {
if r := recover(); r != nil {
panicFn(ctx, fmt.Sprint(r), string(debug.Stack()), cmd.Name(), args)
}
}()
req := &entity.CommandRequest{
Cmd: cmd,
Args: args,
}
err := fn(ctx, req)
if err != nil {
// TODO: Make it *pretty*
fmt.Println(err.Error())
}
return nil
}
}
func init() {
// Initializes all commands
handler := cmd.New()
loginCmd := &cobra.Command{
Use: "login",
Short: "Login to Railway",
RunE: contextualize(handler.Login, handler.Panic),
}
loginCmd.Flags().Bool("browserless", false, "--browserless")
rootCmd.AddCommand(loginCmd)
rootCmd.AddCommand(&cobra.Command{
Use: "logout",
Short: "Logout of Railway",
RunE: contextualize(handler.Logout, handler.Panic),
})
rootCmd.AddCommand(&cobra.Command{
Use: "whoami",
Short: "Show the currently logged in user",
RunE: contextualize(handler.Whoami, handler.Panic),
})
rootCmd.AddCommand(&cobra.Command{
Use: "init",
Short: "Initialize Railway",
PersistentPreRunE: contextualize(handler.CheckVersion, handler.Panic),
RunE: contextualize(handler.Init, handler.Panic),
})
rootCmd.AddCommand(&cobra.Command{
Use: "env",
Short: "Show environment variables",
RunE: contextualize(handler.Env, handler.Panic),
})
rootCmd.AddCommand(&cobra.Command{
Use: "status",
Short: "Show status",
RunE: contextualize(handler.Status, handler.Panic),
})
rootCmd.AddCommand(&cobra.Command{
Use: "environment",
Short: "Select an environment",
RunE: contextualize(handler.Environment, handler.Panic),
})
rootCmd.AddCommand(&cobra.Command{
Use: "open",
Short: "Open the project in railway",
RunE: contextualize(handler.Open, handler.Panic),
})
rootCmd.AddCommand(&cobra.Command{
Use: "list",
Short: "Show all your projects",
RunE: contextualize(handler.List, handler.Panic),
})
rootCmd.AddCommand(&cobra.Command{
Use: "run",
Short: "Run command inside the Railway environment",
PersistentPreRunE: contextualize(handler.CheckVersion, handler.Panic),
RunE: contextualize(handler.Run, handler.Panic),
})
rootCmd.AddCommand(&cobra.Command{
Use: "version",
Short: "Get version of the Railway CLI",
PersistentPreRunE: contextualize(handler.CheckVersion, handler.Panic),
RunE: contextualize(handler.Version, handler.Panic),
})
rootCmd.AddCommand(&cobra.Command{
Use: "up",
Short: "Upload and deploy",
RunE: contextualize(handler.Up, handler.Panic),
})
rootCmd.AddCommand(&cobra.Command{
Use: "docs",
Short: "Open Railway Docs in browser",
RunE: contextualize(handler.Docs, handler.Panic),
})
}
func main() {
if err := rootCmd.Execute(); err != nil {
if strings.Contains(err.Error(), "unknown command") {
suggStr := "\nS"
suggestions := rootCmd.SuggestionsFor(os.Args[1])
if len(suggestions) > 0 {
suggStr = fmt.Sprintf(" Did you mean \"%s\"?\nIf not, s", suggestions[0])
}
fmt.Println(fmt.Sprintf("Unknown command \"%s\" for \"%s\".%s"+
"ee \"railway --help\" for available commands.",
os.Args[1], rootCmd.CommandPath(), suggStr))
} else {
fmt.Println(err)
}
os.Exit(1)
}
}