cowyo/main.go

150 lines
3.2 KiB
Go
Raw Normal View History

2017-03-22 05:46:05 +03:00
package main
import (
2017-06-23 17:32:46 +03:00
"fmt"
"os"
"time"
2017-03-22 05:46:05 +03:00
"gopkg.in/urfave/cli.v1"
2017-03-22 05:46:05 +03:00
)
var version string
var pathToData string
2017-03-22 05:46:05 +03:00
func main() {
app := cli.NewApp()
app.Name = "cowyo"
app.Usage = "a simple wiki"
app.Version = version
app.Compiled = time.Now()
app.Action = func(c *cli.Context) error {
if !c.GlobalBool("debug") {
turnOffDebugger()
}
pathToData = c.GlobalString("data")
os.MkdirAll(pathToData, 0755)
host := c.GlobalString("host")
2017-06-23 16:40:35 +03:00
crt_f := c.GlobalString("cert") // crt flag
key_f := c.GlobalString("key") // key flag
if host == "" {
host = GetLocalIP()
}
2017-06-23 16:40:35 +03:00
TLS := false
if crt_f != "" && key_f != "" {
TLS = true
}
if TLS {
fmt.Printf("\nRunning cowyo server (version %s) at https://%s:%s\n\n", version, host, c.GlobalString("port"))
} else {
fmt.Printf("\nRunning cowyo server (version %s) at http://%s:%s\n\n", version, host, c.GlobalString("port"))
}
allowInsecureHtml = c.GlobalBool("allow-insecure-markup")
serve(
c.GlobalString("host"),
c.GlobalString("port"),
c.GlobalString("cert"),
c.GlobalString("key"),
TLS,
c.GlobalString("css"),
c.GlobalString("default-page"),
c.GlobalString("lock"),
c.GlobalInt("debounce"),
c.GlobalBool("diary"),
)
return nil
2017-03-22 05:46:05 +03:00
}
app.Flags = []cli.Flag{
cli.StringFlag{
Name: "data",
Value: "data",
Usage: "data folder to use",
},
cli.StringFlag{
Name: "olddata",
Value: "",
Usage: "data folder for migrating",
},
cli.StringFlag{
Name: "host",
Value: "",
Usage: "host to use",
},
cli.StringFlag{
Name: "port,p",
Value: "8050",
Usage: "port to use",
},
2017-06-23 16:40:35 +03:00
cli.StringFlag{
Name: "cert",
Value: "",
2017-06-23 22:02:56 +03:00
Usage: "absolute path to SSL public sertificate",
2017-06-23 16:40:35 +03:00
},
cli.StringFlag{
Name: "key",
Value: "",
2017-06-23 22:02:56 +03:00
Usage: "absolute path to SSL private key",
2017-06-23 16:40:35 +03:00
},
cli.StringFlag{
Name: "css",
Value: "",
Usage: "use a custom CSS file",
},
2017-11-04 13:21:51 +03:00
cli.StringFlag{
Name: "default-page",
Value: "",
Usage: "show default-page/read instead of editing (default: show random editing)",
},
cli.BoolFlag{
Name: "allow-insecure-markup",
Usage: "Skip HTML sanitization",
},
cli.StringFlag{
Name: "lock",
Value: "",
Usage: "password to lock editing all files (default: all pages unlocked)",
2017-11-04 13:21:51 +03:00
},
cli.IntFlag{
Name: "debounce",
Value: 500,
Usage: "debounce time for saving data, in milliseconds",
},
cli.BoolFlag{
Name: "debug, d",
Usage: "turn on debugging",
},
cli.BoolFlag{
Name: "diary",
Usage: "turn diary mode (doing New will give a timestamped page)",
},
2017-03-22 05:46:05 +03:00
}
app.Commands = []cli.Command{
{
Name: "migrate",
Aliases: []string{"m"},
Usage: "migrate from the old cowyo",
Action: func(c *cli.Context) error {
if !c.GlobalBool("debug") {
turnOffDebugger()
}
pathToData = c.GlobalString("data")
pathToOldData := c.GlobalString("olddata")
if len(pathToOldData) == 0 {
fmt.Printf("You need to specify folder with -olddata")
return nil
}
os.MkdirAll(pathToData, 0755)
if !exists(pathToOldData) {
fmt.Printf("Can not find '%s', does it exist?", pathToOldData)
return nil
}
migrate(pathToOldData, pathToData)
return nil
},
},
2017-03-22 05:46:05 +03:00
}
app.Run(os.Args)
}