fix
wangpengfei
2023-09-05 20acdf9648c20c4b1e0b03af98bd0010bab66f7b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
package system
 
import (
    "errors"
    "fmt"
    "net/url"
    "os"
    "strings"
 
    "srm/global"
    "srm/model/common/response"
    "srm/model/system"
    "srm/utils"
 
    "github.com/gin-gonic/gin"
    "go.uber.org/zap"
)
 
type AutoCodeApi struct{}
 
// PreviewTemp
// @Tags      AutoCode
// @Summary   预览创建后的代码
// @Security  ApiKeyAuth
// @accept    application/json
// @Produce   application/json
// @Param     data  body      system.AutoCodeStruct                                      true  "预览创建代码"
// @Success   200   {object}  response.Response{data=map[string]interface{},msg=string}  "预览创建后的代码"
// @Router    /autoCode/preview [post]
func (autoApi *AutoCodeApi) PreviewTemp(c *gin.Context) {
    var a system.AutoCodeStruct
    _ = c.ShouldBindJSON(&a)
    if err := utils.Verify(a, utils.AutoCodeVerify); err != nil {
        response.FailWithMessage(err.Error(), c)
        return
    }
    a.Pretreatment() // 处理go关键字
    a.PackageT = utils.FirstUpper(a.Package)
    autoCode, err := autoCodeService.PreviewTemp(a)
    if err != nil {
        global.GVA_LOG.Error("预览失败!", zap.Error(err))
        response.FailWithMessage("预览失败", c)
    } else {
        response.OkWithDetailed(gin.H{"autoCode": autoCode}, "预览成功", c)
    }
}
 
// CreateTemp
// @Tags      AutoCode
// @Summary   自动代码模板
// @Security  ApiKeyAuth
// @accept    application/json
// @Produce   application/json
// @Param     data  body      system.AutoCodeStruct  true  "创建自动代码"
// @Success   200   {string}  string                 "{"success":true,"data":{},"msg":"创建成功"}"
// @Router    /autoCode/createTemp [post]
func (autoApi *AutoCodeApi) CreateTemp(c *gin.Context) {
    var a system.AutoCodeStruct
    _ = c.ShouldBindJSON(&a)
    if err := utils.Verify(a, utils.AutoCodeVerify); err != nil {
        response.FailWithMessage(err.Error(), c)
        return
    }
    a.Pretreatment()
    var apiIds []uint
    if a.AutoCreateApiToSql {
        if ids, err := autoCodeService.AutoCreateApi(&a); err != nil {
            global.GVA_LOG.Error("自动化创建失败!请自行清空垃圾数据!", zap.Error(err))
            c.Writer.Header().Add("success", "false")
            c.Writer.Header().Add("msg", url.QueryEscape("自动化创建失败!请自行清空垃圾数据!"))
            return
        } else {
            apiIds = ids
        }
    }
    a.PackageT = utils.FirstUpper(a.Package)
    err := autoCodeService.CreateTemp(a, apiIds...)
    if err != nil {
        if errors.Is(err, system.ErrAutoMove) {
            c.Writer.Header().Add("success", "true")
            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")
    }
}
 
// GetDB
// @Tags      AutoCode
// @Summary   获取当前所有数据库
// @Security  ApiKeyAuth
// @accept    application/json
// @Produce   application/json
// @Success   200  {object}  response.Response{data=map[string]interface{},msg=string}  "获取当前所有数据库"
// @Router    /autoCode/getDatabase [get]
func (autoApi *AutoCodeApi) GetDB(c *gin.Context) {
    businessDB := c.Query("businessDB")
    dbs, err := autoCodeService.Database(businessDB).GetDB(businessDB)
    var dbList []map[string]interface{}
    for _, db := range global.GVA_CONFIG.DBList {
        var item = make(map[string]interface{})
        item["aliasName"] = db.AliasName
        item["dbName"] = db.Dbname
        item["disable"] = db.Disable
        item["dbtype"] = db.Type
        dbList = append(dbList, item)
    }
    if err != nil {
        global.GVA_LOG.Error("获取失败!", zap.Error(err))
        response.FailWithMessage("获取失败", c)
    } else {
        response.OkWithDetailed(gin.H{"dbs": dbs, "dbList": dbList}, "获取成功", c)
    }
}
 
// GetTables
// @Tags      AutoCode
// @Summary   获取当前数据库所有表
// @Security  ApiKeyAuth
// @accept    application/json
// @Produce   application/json
// @Success   200  {object}  response.Response{data=map[string]interface{},msg=string}  "获取当前数据库所有表"
// @Router    /autoCode/getTables [get]
func (autoApi *AutoCodeApi) GetTables(c *gin.Context) {
    dbName := c.DefaultQuery("dbName", global.GVA_CONFIG.Mysql.Dbname)
    businessDB := c.Query("businessDB")
    tables, err := autoCodeService.Database(businessDB).GetTables(businessDB, dbName)
    if err != nil {
        global.GVA_LOG.Error("查询table失败!", zap.Error(err))
        response.FailWithMessage("查询table失败", c)
    } else {
        response.OkWithDetailed(gin.H{"tables": tables}, "获取成功", c)
    }
}
 
// GetColumn
// @Tags      AutoCode
// @Summary   获取当前表所有字段
// @Security  ApiKeyAuth
// @accept    application/json
// @Produce   application/json
// @Success   200  {object}  response.Response{data=map[string]interface{},msg=string}  "获取当前表所有字段"
// @Router    /autoCode/getColumn [get]
func (autoApi *AutoCodeApi) GetColumn(c *gin.Context) {
    businessDB := c.Query("businessDB")
    dbName := c.DefaultQuery("dbName", global.GVA_CONFIG.Mysql.Dbname)
    tableName := c.Query("tableName")
    columns, err := autoCodeService.Database(businessDB).GetColumn(businessDB, tableName, dbName)
    if err != nil {
        global.GVA_LOG.Error("获取失败!", zap.Error(err))
        response.FailWithMessage("获取失败", c)
    } else {
        response.OkWithDetailed(gin.H{"columns": columns}, "获取成功", c)
    }
}
 
// CreatePackage
// @Tags      AutoCode
// @Summary   创建package
// @Security  ApiKeyAuth
// @accept    application/json
// @Produce   application/json
// @Param     data  body      system.SysAutoCode                                         true  "创建package"
// @Success   200   {object}  response.Response{data=map[string]interface{},msg=string}  "创建package成功"
// @Router    /autoCode/createPackage [post]
func (autoApi *AutoCodeApi) CreatePackage(c *gin.Context) {
    var a system.SysAutoCode
    _ = c.ShouldBindJSON(&a)
    if err := utils.Verify(a, utils.AutoPackageVerify); err != nil {
        response.FailWithMessage(err.Error(), c)
        return
    }
    err := autoCodeService.CreateAutoCode(&a)
    if err != nil {
 
        global.GVA_LOG.Error("创建成功!", zap.Error(err))
        response.FailWithMessage("创建失败", c)
    } else {
        response.OkWithMessage("创建成功", c)
    }
}
 
// GetPackage
// @Tags      AutoCode
// @Summary   获取package
// @Security  ApiKeyAuth
// @accept    application/json
// @Produce   application/json
// @Success   200  {object}  response.Response{data=map[string]interface{},msg=string}  "创建package成功"
// @Router    /autoCode/getPackage [post]
func (autoApi *AutoCodeApi) GetPackage(c *gin.Context) {
    pkgs, err := autoCodeService.GetPackage()
    if err != nil {
        global.GVA_LOG.Error("获取失败!", zap.Error(err))
        response.FailWithMessage("获取失败", c)
    } else {
        response.OkWithDetailed(gin.H{"pkgs": pkgs}, "获取成功", c)
    }
}
 
// DelPackage
// @Tags      AutoCode
// @Summary   删除package
// @Security  ApiKeyAuth
// @accept    application/json
// @Produce   application/json
// @Param     data  body      system.SysAutoCode                                         true  "创建package"
// @Success   200   {object}  response.Response{data=map[string]interface{},msg=string}  "删除package成功"
// @Router    /autoCode/delPackage [post]
func (autoApi *AutoCodeApi) DelPackage(c *gin.Context) {
    var a system.SysAutoCode
    _ = c.ShouldBindJSON(&a)
    err := autoCodeService.DelPackage(a)
    if err != nil {
        global.GVA_LOG.Error("删除失败!", zap.Error(err))
        response.FailWithMessage("删除失败", c)
    } else {
        response.OkWithMessage("删除成功", c)
    }
}
 
// AutoPlug
// @Tags      AutoCode
// @Summary   创建插件模板
// @Security  ApiKeyAuth
// @accept    application/json
// @Produce   application/json
// @Param     data  body      system.SysAutoCode                                         true  "创建插件模板"
// @Success   200   {object}  response.Response{data=map[string]interface{},msg=string}  "创建插件模板成功"
// @Router    /autoCode/createPlug [post]
func (autoApi *AutoCodeApi) AutoPlug(c *gin.Context) {
    var a system.AutoPlugReq
    err := c.ShouldBindJSON(&a)
    if err != nil {
        response.FailWithMessage(err.Error(), c)
        return
    }
    a.Snake = strings.ToLower(a.PlugName)
    a.NeedModel = a.HasRequest || a.HasResponse
    err = autoCodeService.CreatePlug(a)
    if err != nil {
        global.GVA_LOG.Error("预览失败!", zap.Error(err))
        response.FailWithMessage("预览失败", c)
        return
    }
    response.Ok(c)
}
 
// InstallPlugin
// @Tags      AutoCode
// @Summary   安装插件
// @Security  ApiKeyAuth
// @accept    multipart/form-data
// @Produce   application/json
// @Param     plug  formData  file                                              true  "this is a test file"
// @Success   200   {object}  response.Response{data=[]interface{},msg=string}  "安装插件成功"
// @Router    /autoCode/installPlugin [post]
func (autoApi *AutoCodeApi) InstallPlugin(c *gin.Context) {
    header, err := c.FormFile("plug")
    if err != nil {
        response.FailWithMessage(err.Error(), c)
        return
    }
    web, server, err := autoCodeService.InstallPlugin(header)
    webStr := "web插件安装成功"
    serverStr := "server插件安装成功"
    if web == -1 {
        webStr = "web端插件未成功安装,请按照文档自行解压安装,如果为纯后端插件请忽略此条提示"
    }
    if server == -1 {
        serverStr = "server端插件未成功安装,请按照文档自行解压安装,如果为纯前端插件请忽略此条提示"
    }
    if err != nil {
        response.FailWithMessage(err.Error(), c)
        return
    }
    response.OkWithData([]interface{}{
        gin.H{
            "code": web,
            "msg":  webStr,
        },
        gin.H{
            "code": server,
            "msg":  serverStr,
        }}, c)
}
 
// PubPlug
// @Tags      AutoCode
// @Summary   打包插件
// @Security  ApiKeyAuth
// @accept    application/json
// @Produce   application/json
// @Param     data  body      system.SysAutoCode                                         true  "打包插件"
// @Success   200   {object}  response.Response{data=map[string]interface{},msg=string}  "打包插件成功"
// @Router    /autoCode/pubPlug [get]
func (autoApi *AutoCodeApi) PubPlug(c *gin.Context) {
    plugName := c.Query("plugName")
    snake := strings.ToLower(plugName)
    zipPath, err := autoCodeService.PubPlug(snake)
    if err != nil {
        global.GVA_LOG.Error("打包失败!", zap.Error(err))
        response.FailWithMessage("打包失败"+err.Error(), c)
        return
    }
    response.OkWithMessage(fmt.Sprintf("打包成功,文件路径为:%s", zipPath), c)
}