123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- package docker
- import (
- "errors"
- "fmt"
- "os"
- "path/filepath"
- "strings"
- "text/template"
- "time"
- "github.com/logrusorgru/aurora"
- "github.com/tal-tech/go-zero/tools/goctl/util"
- ctlutil "github.com/tal-tech/go-zero/tools/goctl/util"
- "github.com/urfave/cli"
- )
- const (
- dockerfileName = "Dockerfile"
- etcDir = "etc"
- yamlEtx = ".yaml"
- cstOffset = 60 * 60 * 8 // 8 hours offset for Chinese Standard Time
- )
- type Docker struct {
- Chinese bool
- GoRelPath string
- GoFile string
- ExeFile string
- HasPort bool
- Port int
- Argument string
- }
- func DockerCommand(c *cli.Context) (err error) {
- defer func() {
- if err == nil {
- fmt.Println(aurora.Green("Done."))
- }
- }()
- goFile := c.String("go")
- if len(goFile) == 0 {
- return errors.New("-go can't be empty")
- }
- if !util.FileExists(goFile) {
- return fmt.Errorf("file %q not found", goFile)
- }
- port := c.Int("port")
- if _, err := os.Stat(etcDir); os.IsNotExist(err) {
- return generateDockerfile(goFile, port)
- }
- cfg, err := findConfig(goFile, etcDir)
- if err != nil {
- return err
- }
- if err := generateDockerfile(goFile, port, "-f", "etc/"+cfg); err != nil {
- return err
- }
- projDir, ok := util.FindProjectPath(goFile)
- if ok {
- fmt.Printf("Hint: run \"docker build ...\" command in dir %q\n", projDir)
- }
- return nil
- }
- func findConfig(file, dir string) (string, error) {
- var files []string
- err := filepath.Walk(dir, func(path string, f os.FileInfo, _ error) error {
- if !f.IsDir() {
- if filepath.Ext(f.Name()) == yamlEtx {
- files = append(files, f.Name())
- }
- }
- return nil
- })
- if err != nil {
- return "", err
- }
- if len(files) == 0 {
- return "", errors.New("no yaml file")
- }
- name := strings.TrimSuffix(filepath.Base(file), ".go")
- for _, f := range files {
- if strings.Index(f, name) == 0 {
- return f, nil
- }
- }
- return files[0], nil
- }
- func generateDockerfile(goFile string, port int, args ...string) error {
- projPath, err := getFilePath(filepath.Dir(goFile))
- if err != nil {
- return err
- }
- if len(projPath) == 0 {
- projPath = "."
- } else {
- pos := strings.IndexByte(projPath, os.PathSeparator)
- if pos >= 0 {
- projPath = projPath[pos+1:]
- }
- }
- out, err := util.CreateIfNotExist(dockerfileName)
- if err != nil {
- return err
- }
- defer out.Close()
- text, err := ctlutil.LoadTemplate(category, dockerTemplateFile, dockerTemplate)
- if err != nil {
- return err
- }
- var builder strings.Builder
- for _, arg := range args {
- builder.WriteString(`, "` + arg + `"`)
- }
- _, offset := time.Now().Zone()
- t := template.Must(template.New("dockerfile").Parse(text))
- return t.Execute(out, Docker{
- Chinese: offset == cstOffset,
- GoRelPath: projPath,
- GoFile: goFile,
- ExeFile: util.FileNameWithoutExt(filepath.Base(goFile)),
- HasPort: port > 0,
- Port: port,
- Argument: builder.String(),
- })
- }
- func getFilePath(file string) (string, error) {
- wd, err := os.Getwd()
- if err != nil {
- return "", err
- }
- projPath, ok := util.FindGoModPath(filepath.Join(wd, file))
- if !ok {
- projPath, err = util.PathFromGoSrc()
- if err != nil {
- return "", errors.New("no go.mod found, or not in GOPATH")
- }
- }
- return projPath, nil
- }
|