-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmd.go
70 lines (58 loc) · 1.36 KB
/
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
package main
import (
"github.com/spf13/cobra"
)
var cmd = &cobra.Command{
Use: "rook",
Short: "build site",
RunE: buildSite,
}
var serverCmd = &cobra.Command{
Use: "server",
Short: "run development server",
Aliases: []string{"s", "serve"},
RunE: startServer,
}
var newSiteCmd = &cobra.Command{
Use: "new [site]",
Short: "create new rook site",
Args: cobra.ExactArgs(1),
RunE: createNewSite,
}
var addContentCmd = &cobra.Command{
Use: "add [page]",
Short: "add new content page",
Args: cobra.ExactArgs(1),
RunE: addNewContent,
}
var listen string
func init() {
serverCmd.Flags().StringVarP(&listen, "listen", "l", "localhost:1414", "Address to listen on")
cmd.AddCommand(serverCmd)
cmd.AddCommand(newSiteCmd)
cmd.AddCommand(addContentCmd)
}
func buildSite(c *cobra.Command, args []string) error {
a := newApplication(appDefault)
err := a.init("")
if err != nil {
return err
}
return a.build()
}
func startServer(c *cobra.Command, args []string) error {
a := newApplication(appRenderToMemory)
err := a.init(listen)
if err != nil {
return err
}
return a.startServer(listen)
}
func createNewSite(c *cobra.Command, args []string) error {
a := newApplication(appDefault)
return a.createSite(args[0])
}
func addNewContent(c *cobra.Command, args []string) error {
a := newApplication(appDefault)
return a.createPost(args[0])
}