123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- package v1
- import (
- "errors"
- "fmt"
- "gin-vue-admin/global"
- "gin-vue-admin/model"
- "gin-vue-admin/model/response"
- "gin-vue-admin/service"
- "gin-vue-admin/utils"
- "net/url"
- "os"
- "github.com/gin-gonic/gin"
- "go.uber.org/zap"
- )
- // @Tags AutoCode
- // @Summary 预览创建后的代码
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body model.AutoCodeStruct true "预览创建代码"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"创建成功"}"
- // @Router /autoCode/preview [post]
- func PreviewTemp(c *gin.Context) {
- var a model.AutoCodeStruct
- _ = c.ShouldBindJSON(&a)
- if err := utils.Verify(a, utils.AutoCodeVerify); err != nil {
- response.FailWithMessage(err.Error(), c)
- return
- }
- autoCode, err := service.PreviewTemp(a)
- if err != nil {
- global.GVA_LOG.Error("预览失败!", zap.Any("err", err))
- response.FailWithMessage("预览失败", c)
- } else {
- response.OkWithDetailed(gin.H{"autoCode": autoCode}, "预览成功", c)
- }
- }
- // @Tags AutoCode
- // @Summary 自动代码模板
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body model.AutoCodeStruct true "创建自动代码"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"创建成功"}"
- // @Router /autoCode/createTemp [post]
- func CreateTemp(c *gin.Context) {
- var a model.AutoCodeStruct
- _ = c.ShouldBindJSON(&a)
- if err := utils.Verify(a, utils.AutoCodeVerify); err != nil {
- response.FailWithMessage(err.Error(), c)
- return
- }
- if a.AutoCreateApiToSql {
- if err := service.AutoCreateApi(&a); err != nil {
- global.GVA_LOG.Error("自动化创建失败!请自行清空垃圾数据!", zap.Any("err", err))
- c.Writer.Header().Add("success", "false")
- c.Writer.Header().Add("msg", url.QueryEscape("自动化创建失败!请自行清空垃圾数据!"))
- return
- }
- }
- err := service.CreateTemp(a)
- if err != nil {
- if errors.Is(err, model.AutoMoveErr) {
- c.Writer.Header().Add("success", "false")
- c.Writer.Header().Add("msgtype", "success")
- c.Writer.Header().Add("msg", url.QueryEscape(err.Error()))
- } else {
- c.Writer.Header().Add("success", "false")
- c.Writer.Header().Add("msg", url.QueryEscape(err.Error()))
- _ = os.Remove("./ginvueadmin.zip")
- }
- } else {
- c.Writer.Header().Add("Content-Disposition", fmt.Sprintf("attachment; filename=%s", "ginvueadmin.zip")) // fmt.Sprintf("attachment; filename=%s", filename)对下载的文件重命名
- c.Writer.Header().Add("Content-Type", "application/json")
- c.Writer.Header().Add("success", "true")
- c.File("./ginvueadmin.zip")
- _ = os.Remove("./ginvueadmin.zip")
- }
- }
- // @Tags AutoCode
- // @Summary 获取当前数据库所有表
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
- // @Router /autoCode/getTables [get]
- func GetTables(c *gin.Context) {
- dbName := c.DefaultQuery("dbName", global.GVA_CONFIG.Mysql.Dbname)
- err, tables := service.GetTables(dbName)
- if err != nil {
- global.GVA_LOG.Error("查询table失败!", zap.Any("err", err))
- response.FailWithMessage("查询table失败", c)
- } else {
- response.OkWithDetailed(gin.H{"tables": tables}, "获取成功", c)
- }
- }
- // @Tags AutoCode
- // @Summary 获取当前所有数据库
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
- // @Router /autoCode/getDatabase [get]
- func GetDB(c *gin.Context) {
- if err, dbs := service.GetDB(); err != nil {
- global.GVA_LOG.Error("获取失败!", zap.Any("err", err))
- response.FailWithMessage("获取失败", c)
- } else {
- response.OkWithDetailed(gin.H{"dbs": dbs}, "获取成功", c)
- }
- }
- // @Tags AutoCode
- // @Summary 获取当前表所有字段
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
- // @Router /autoCode/getColumn [get]
- func GetColumn(c *gin.Context) {
- dbName := c.DefaultQuery("dbName", global.GVA_CONFIG.Mysql.Dbname)
- tableName := c.Query("tableName")
- if err, columns := service.GetColumn(tableName, dbName); err != nil {
- global.GVA_LOG.Error("获取失败!", zap.Any("err", err))
- response.FailWithMessage("获取失败", c)
- } else {
- response.OkWithDetailed(gin.H{"columns": columns}, "获取成功", c)
- }
- }
|