This repository has been archived by the owner on Oct 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
app.go
67 lines (60 loc) · 1.34 KB
/
app.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
package main
import (
"fmt"
"os"
"time"
"github.com/urfave/cli"
)
func main() {
app := cli.NewApp()
app.Name = "swaggonmia"
app.Usage = "Insomnia to Swagger converter"
app.Version = "1.1.0"
app.Compiled = time.Now()
app.Authors = []*cli.Author{
&cli.Author{
Name: "Nick Wallace",
Email: "nwallace@fyberstudios.com",
},
}
app.Commands = []*cli.Command{
{
Name: "generate",
Aliases: []string{"g"},
Flags: []cli.Flag{
&cli.StringFlag{
Name: "config, c",
Usage: "Load configuration from `FILE`",
},
&cli.StringFlag{
Name: "insomnia, i",
Usage: "Insomnia JSON `FILE`",
},
&cli.StringFlag{
Name: "output, o",
Value: "yaml",
Usage: "Output json|yaml",
},
},
Usage: "Generate Swagger documentation",
Action: func(c *cli.Context) error {
var insomniaFile = c.String("insomnia")
var configFile = c.String("config")
var outputFormat = c.String("output")
if insomniaFile == "" || configFile == "" {
cli.ShowCompletions(c)
}
if outputFormat == "" {
outputFormat = "json"
}
swagger := &Swagger{}
swagger.Generate(insomniaFile, configFile, outputFormat)
return nil
},
},
}
app.CommandNotFound = func(c *cli.Context, command string) {
fmt.Fprintf(c.App.Writer, "Wrong command %q !", command)
}
app.Run(os.Args)
}