123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- package gogen
- import (
- "errors"
- "fmt"
- "os"
- "path"
- "path/filepath"
- "strconv"
- "strings"
- "sync"
- "time"
- "github.com/gookit/color"
- "github.com/spf13/cobra"
- "github.com/wuntsong-org/go-zero-plus/core/logx"
- apiformat "github.com/wuntsong-org/go-zero-plus/tools/goctlwt/api/format"
- "github.com/wuntsong-org/go-zero-plus/tools/goctlwt/api/parser"
- apiutil "github.com/wuntsong-org/go-zero-plus/tools/goctlwt/api/util"
- "github.com/wuntsong-org/go-zero-plus/tools/goctlwt/config"
- "github.com/wuntsong-org/go-zero-plus/tools/goctlwt/pkg/golang"
- "github.com/wuntsong-org/go-zero-plus/tools/goctlwt/util"
- "github.com/wuntsong-org/go-zero-plus/tools/goctlwt/util/pathx"
- )
- const tmpFile = "%s-%d"
- var (
- tmpDir = path.Join(os.TempDir(), "goctl")
- // VarStringDir describes the directory.
- VarStringDir string
- // VarStringAPI describes the API.
- VarStringAPI string
- // VarStringHome describes the go home.
- VarStringHome string
- // VarStringRemote describes the remote git repository.
- VarStringRemote string
- // VarStringBranch describes the branch.
- VarStringBranch string
- // VarStringStyle describes the style of output files.
- VarStringStyle string
- )
- // GoCommand gen go project files from command line
- func GoCommand(_ *cobra.Command, _ []string) error {
- apiFile := VarStringAPI
- dir := VarStringDir
- namingStyle := VarStringStyle
- home := VarStringHome
- remote := VarStringRemote
- branch := VarStringBranch
- if len(remote) > 0 {
- repo, _ := util.CloneIntoGitHome(remote, branch)
- if len(repo) > 0 {
- home = repo
- }
- }
- if len(home) > 0 {
- pathx.RegisterGoctlHome(home)
- }
- if len(apiFile) == 0 {
- return errors.New("missing -api")
- }
- if len(dir) == 0 {
- return errors.New("missing -dir")
- }
- return DoGenProject(apiFile, dir, namingStyle)
- }
- // DoGenProject gen go project files with api file
- func DoGenProject(apiFile, dir, style string) error {
- api, err := parser.Parse(apiFile)
- if err != nil {
- return err
- }
- if err := api.Validate(); err != nil {
- return err
- }
- cfg, err := config.NewConfig(style)
- if err != nil {
- return err
- }
- logx.Must(pathx.MkdirIfNotExist(dir))
- rootPkg, err := golang.GetParentPackage(dir)
- if err != nil {
- return err
- }
- logx.Must(genEtc(dir, cfg, api))
- logx.Must(genConfig(dir, cfg, api))
- logx.Must(genMain(dir, rootPkg, cfg, api))
- logx.Must(genServiceContext(dir, rootPkg, cfg, api))
- logx.Must(genTypes(dir, cfg, api))
- logx.Must(genRoutes(dir, rootPkg, cfg, api))
- logx.Must(genHandlers(dir, rootPkg, cfg, api))
- logx.Must(genLogic(dir, rootPkg, cfg, api))
- logx.Must(genMiddleware(dir, cfg, api))
- if err := backupAndSweep(apiFile); err != nil {
- return err
- }
- if err := apiformat.ApiFormatByPath(apiFile, false); err != nil {
- return err
- }
- fmt.Println(color.Green.Render("Done."))
- return nil
- }
- func backupAndSweep(apiFile string) error {
- var err error
- var wg sync.WaitGroup
- wg.Add(2)
- _ = os.MkdirAll(tmpDir, os.ModePerm)
- go func() {
- _, fileName := filepath.Split(apiFile)
- _, e := apiutil.Copy(apiFile, fmt.Sprintf(path.Join(tmpDir, tmpFile), fileName, time.Now().Unix()))
- if e != nil {
- err = e
- }
- wg.Done()
- }()
- go func() {
- if e := sweep(); e != nil {
- err = e
- }
- wg.Done()
- }()
- wg.Wait()
- return err
- }
- func sweep() error {
- keepTime := time.Now().AddDate(0, 0, -7)
- return filepath.Walk(tmpDir, func(fpath string, info os.FileInfo, err error) error {
- if info.IsDir() {
- return nil
- }
- pos := strings.LastIndexByte(info.Name(), '-')
- if pos > 0 {
- timestamp := info.Name()[pos+1:]
- seconds, err := strconv.ParseInt(timestamp, 10, 64)
- if err != nil {
- // print error and ignore
- fmt.Println(color.Red.Sprintf("sweep ignored file: %s", fpath))
- return nil
- }
- tm := time.Unix(seconds, 0)
- if tm.Before(keepTime) {
- if err := os.RemoveAll(fpath); err != nil {
- fmt.Println(color.Red.Sprintf("failed to remove file: %s", fpath))
- return err
- }
- }
- }
- return nil
- })
- }
|