135 lines
3.6 KiB
Go
135 lines
3.6 KiB
Go
package main
|
|
|
|
import (
|
|
a "github.com/tockins/realize/app"
|
|
c "github.com/tockins/realize/cli"
|
|
"fmt"
|
|
"gopkg.in/urfave/cli.v2"
|
|
"log"
|
|
"os"
|
|
)
|
|
|
|
var App *a.Realize
|
|
|
|
func main() {
|
|
App = &a.R
|
|
handle := func(err error) error {
|
|
if err != nil {
|
|
fmt.Println(c.Red(err.Error()))
|
|
return nil
|
|
}
|
|
return nil
|
|
}
|
|
header := func() error {
|
|
fmt.Println(c.Blue(App.Name) + " - " + c.Blue(App.Version))
|
|
fmt.Println(c.BlueS(App.Description) + "\n")
|
|
gopath := os.Getenv("GOPATH")
|
|
if gopath == "" {
|
|
log.Fatal(c.Red("$GOPATH isn't set up properly"))
|
|
}
|
|
return nil
|
|
}
|
|
c := &cli.App{
|
|
Name: App.Name,
|
|
Version: App.Version,
|
|
Authors: []*cli.Author{
|
|
{
|
|
Name: "Alessio Pracchia",
|
|
Email: "pracchia@hastega.it",
|
|
},
|
|
{
|
|
Name: "Daniele Conventi",
|
|
Email: "conventi@hastega.it",
|
|
},
|
|
},
|
|
Usage: App.Description,
|
|
Commands: []*cli.Command{
|
|
{
|
|
Name: "run",
|
|
Usage: "Build and watch file changes",
|
|
Action: func(p *cli.Context) error {
|
|
return handle(App.Blueprint.Run())
|
|
},
|
|
Before: func(c *cli.Context) error {
|
|
header()
|
|
return nil
|
|
},
|
|
},
|
|
{
|
|
Name: "fast",
|
|
Usage: "Build and watch file changes for a single project without any Configuration file",
|
|
Flags: []cli.Flag{
|
|
&cli.StringFlag{Name: "path", Aliases: []string{"b"}, Value: "", Usage: "Project base path"},
|
|
&cli.BoolFlag{Name: "build", Value: false, Usage: "Enables the build"},
|
|
&cli.BoolFlag{Name: "no-run", Usage: "Disables the run"},
|
|
&cli.BoolFlag{Name: "no-bin", Usage: "Disables the installation"},
|
|
&cli.BoolFlag{Name: "no-fmt", Usage: "Disables the fmt (go fmt)"},
|
|
&cli.BoolFlag{Name: "test", Value: false, Usage: "Enable the tests"},
|
|
&cli.BoolFlag{Name: "Configuration", Value: false, Usage: "Take the defined settings if exist a Configuration file."},
|
|
},
|
|
Action: func(p *cli.Context) error {
|
|
App.Blueprint.Add(p)
|
|
App.Server.Start()
|
|
return handle(App.Blueprint.Fast(p))
|
|
},
|
|
Before: func(c *cli.Context) error {
|
|
header()
|
|
return nil
|
|
},
|
|
},
|
|
{
|
|
Name: "add",
|
|
Category: "Configuration",
|
|
Aliases: []string{"a"},
|
|
Usage: "Add another project",
|
|
Flags: []cli.Flag{
|
|
&cli.StringFlag{Name: "name", Aliases: []string{"n"}, Value: c.WorkingDir(), Usage: "Project name"},
|
|
&cli.StringFlag{Name: "path", Aliases: []string{"b"}, Value: "/", Usage: "Project base path"},
|
|
&cli.BoolFlag{Name: "build", Value: false, Usage: "Enable the build"},
|
|
&cli.BoolFlag{Name: "no-run", Usage: "Disables the run"},
|
|
&cli.BoolFlag{Name: "no-bin", Usage: "Disables the installation"},
|
|
&cli.BoolFlag{Name: "no-fmt", Usage: "Disables the fmt (go fmt)"},
|
|
&cli.BoolFlag{Name: "test", Value: false, Usage: "Enable the tests"},
|
|
},
|
|
Action: func(p *cli.Context) error {
|
|
return handle(App.Blueprint.Insert(p))
|
|
},
|
|
Before: func(c *cli.Context) error {
|
|
header()
|
|
return nil
|
|
},
|
|
},
|
|
{
|
|
Name: "remove",
|
|
Category: "Configuration",
|
|
Aliases: []string{"r"},
|
|
Usage: "Remove a project",
|
|
Flags: []cli.Flag{
|
|
&cli.StringFlag{Name: "name", Aliases: []string{"n"}, Value: ""},
|
|
},
|
|
Action: func(p *cli.Context) error {
|
|
return handle(App.Blueprint.Remove(p))
|
|
},
|
|
Before: func(c *cli.Context) error {
|
|
header()
|
|
return nil
|
|
},
|
|
},
|
|
{
|
|
Name: "list",
|
|
Category: "Configuration",
|
|
Aliases: []string{"l"},
|
|
Usage: "Projects list",
|
|
Action: func(p *cli.Context) error {
|
|
return handle(App.Blueprint.List())
|
|
},
|
|
Before: func(c *cli.Context) error {
|
|
header()
|
|
return nil
|
|
},
|
|
},
|
|
},
|
|
}
|
|
c.Run(os.Args)
|
|
}
|