mirror of
https://github.com/xinliangnote/go-gin-api.git
synced 2024-04-21 12:31:46 +00:00
45 lines
965 B
Go
45 lines
965 B
Go
package gencode_handler
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"os/exec"
|
|
|
|
"github.com/xinliangnote/go-gin-api/configs"
|
|
"github.com/xinliangnote/go-gin-api/internal/pkg/core"
|
|
)
|
|
|
|
type gormExecuteRequest struct {
|
|
Tables string `form:"tables"`
|
|
}
|
|
|
|
func (h *handler) GormExecute() core.HandlerFunc {
|
|
return func(c core.Context) {
|
|
|
|
req := new(gormExecuteRequest)
|
|
if err := c.ShouldBindPostForm(req); err != nil {
|
|
c.Payload("参数传递有误")
|
|
return
|
|
}
|
|
|
|
mysqlConf := configs.Get().MySQL.Read
|
|
shellPath := fmt.Sprintf("./scripts/gormgen.sh %s %s %s %s %s", mysqlConf.Addr, mysqlConf.User, mysqlConf.Pass, mysqlConf.Name, req.Tables)
|
|
|
|
command := exec.Command("/bin/bash", "-c", shellPath) //初始化 Cmd
|
|
|
|
// windows 版本
|
|
//command := exec.Command("cmd", "/C", shellPath)
|
|
|
|
var stderr bytes.Buffer
|
|
command.Stderr = &stderr
|
|
|
|
output, err := command.Output()
|
|
if err != nil {
|
|
c.Payload(stderr.String())
|
|
return
|
|
}
|
|
|
|
c.Payload(string(output))
|
|
}
|
|
}
|