You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.0 KiB
52 lines
1.0 KiB
5 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
"path/filepath"
|
||
|
"strings"
|
||
|
|
||
|
"github.com/urfave/cli"
|
||
|
)
|
||
|
|
||
|
func runNew(ctx *cli.Context) (err error) {
|
||
|
if p.onlyGRPC && p.onlyHTTP {
|
||
|
p.onlyGRPC = false
|
||
|
p.onlyHTTP = false
|
||
|
}
|
||
|
if p.path != "" {
|
||
|
if p.path, err = filepath.Abs(p.path); err != nil {
|
||
|
return
|
||
|
}
|
||
|
p.path = filepath.Join(p.path, p.Name)
|
||
|
} else {
|
||
|
pwd, _ := os.Getwd()
|
||
|
p.path = filepath.Join(pwd, p.Name)
|
||
|
}
|
||
|
p.ModPrefix = modPath(p.path)
|
||
|
// creata a project
|
||
|
if err := create(); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
fmt.Printf("Project: %s\n", p.Name)
|
||
|
fmt.Printf("OnlyGRPC: %t\n", p.onlyGRPC)
|
||
|
fmt.Printf("OnlyHTTP: %t\n", p.onlyHTTP)
|
||
|
fmt.Printf("Directory: %s\n\n", p.path)
|
||
|
fmt.Println("项目创建成功.")
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func modPath(p string) string {
|
||
|
dir := filepath.Dir(p)
|
||
|
for {
|
||
|
if _, err := os.Stat(filepath.Join(dir, "go.mod")); err == nil {
|
||
|
return strings.TrimPrefix(filepath.Dir(p), filepath.Dir(dir)+string(os.PathSeparator)) + "/"
|
||
|
}
|
||
|
parent := filepath.Dir(dir)
|
||
|
if dir == parent {
|
||
|
return ""
|
||
|
}
|
||
|
dir = parent
|
||
|
}
|
||
|
}
|