-
Notifications
You must be signed in to change notification settings - Fork 8
/
api.go
689 lines (520 loc) · 14.5 KB
/
api.go
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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
package main
import (
"errors"
"fmt"
"path/filepath"
"strconv"
"strings"
"github.com/gin-gonic/gin"
)
//Mime types for different files
var MimeTypes = map[string]string{
".css": "text/css",
".js": "application/javascript",
".icon": "image-x-icon",
".svg": "image/svg+xml",
}
//Error struct
type Error struct {
Message string `json:"error"`
}
type Info struct {
Connection []Connection `json:"connections"`
}
//NewError creates new Error struct from go's error
func NewError(err error) Error {
return Error{err.Error()}
}
func assetContentType(name string) string {
mime := MimeTypes[filepath.Ext(name)]
if mime != "" {
return mime
}
return "text/plain"
}
//APIHome load home page
func APIHome(c *gin.Context) {
data, err := Asset("static/index.html")
if err != nil {
c.String(400, err.Error())
return
}
c.Data(200, "text/html; charset=utf-8", data)
}
//APIConnect will connect to our mysql database
func APIConnect(c *gin.Context) {
url := c.Request.FormValue("url")
if url == "" {
c.JSON(400, Error{"Url parameter is required"})
return
}
clientKey, err := NewClientFromURL(url)
if err != nil {
c.JSON(400, Error{err.Error()})
return
}
client := dbClientMap[clientKey]
err = client.Test()
if err != nil {
c.JSON(400, Error{err.Error()})
return
}
user, host, database, port := getConnParametersFromString(url)
dbConn := Connection{
Host: host,
Port: port,
Username: user,
Database: database,
ConnID: clientKey,
}
dbConnArr = append(dbConnArr, dbConn)
info, err := client.Info()
formatedRes := info.Format()[0]
formatedRes["connId"] = clientKey
c.JSON(200, formatedRes)
}
func APIClose(c *gin.Context) {
//Read client id from the headers
dbClientKey := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[dbClientKey]
err := dbClient.Close()
if err != nil {
c.JSON(400, NewError(err))
}
//Remove from
delete(dbClientMap, dbClientKey)
for index, element := range dbConnArr {
thisConnId := element.ConnID
if thisConnId == dbClientKey {
dbConnArr = append(dbConnArr[:index], dbConnArr[index+1:]...)
break
}
}
c.Writer.WriteHeader(204)
}
//APIGetDatabases will get you all databases in system
func APIGetDatabases(c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[yoConnID]
names, err := dbClient.Databases()
if err != nil {
c.JSON(400, NewError(err))
return
}
c.JSON(200, names)
}
//APIGetDatabaseTables will give the tables of a database
func APIGetDatabaseTables(c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[yoConnID]
res, err := dbClient.DatabaseTables(c.Params.ByName("database"))
if err != nil {
c.JSON(400, NewError(err))
return
}
c.JSON(200, res)
}
//APIGetDatabaseViews will give the views of a database
func APIGetDatabaseViews(c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[yoConnID]
res, err := dbClient.DatabaseViews(c.Params.ByName("database"))
if err != nil {
c.JSON(400, NewError(err))
return
}
c.JSON(200, res)
}
//APIGetDatabaseProcedures will give the stored procedures of a database
func APIGetDatabaseProcedures(c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[yoConnID]
res, err := dbClient.DatabaseProcedures(c.Params.ByName("database"))
if err != nil {
c.JSON(400, NewError(err))
return
}
c.JSON(200, res)
}
//APIGetDatabaseFunctions will give the functions of a database
func APIGetDatabaseFunctions(c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[yoConnID]
res, err := dbClient.DatabaseFunctions(c.Params.ByName("database"))
if err != nil {
c.JSON(400, NewError(err))
return
}
c.JSON(200, res)
}
//APISetDefaultDatabase will set the database as default db for connection
func APISetDefaultDatabase(c *gin.Context) {
dbName := c.Params.ByName("database")
query := fmt.Sprintf("use %s;", dbName)
APIHandleQuery(query, c)
}
//APIRunQuery will run the user's sql query
func APIRunQueryGet(c *gin.Context) {
query := strings.TrimSpace(c.Request.FormValue("query"))
if query == "" {
c.JSON(400, errors.New("Query parameter is missing"))
return
}
APIHandleQuery(query, c)
}
func APIRunQuery(c *gin.Context) {
query := strings.TrimSpace(c.Request.FormValue("query"))
if query == "" {
c.JSON(400, errors.New("Query parameter is missing"))
return
}
APIHandleQuery(query, c)
}
//APIExplainQuery will run explain on the sql query and return the output
func APIExplainQuery(c *gin.Context) {
query := strings.TrimSpace(c.Request.FormValue("query"))
if query == "" {
c.JSON(400, errors.New("Query parameter is missing"))
return
}
APIHandleQuery(fmt.Sprintf("EXPLAIN %s", query), c)
}
func APIGetColumnOfTable(c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[yoConnID]
res, err := dbClient.TableColumns(c.Params.ByName("database"), c.Params.ByName("table"))
if err != nil {
c.JSON(400, NewError(err))
return
}
c.JSON(200, res)
}
//APIGetTableInfo returns info about table like row_count, data size etc.
func APIGetTableInfo(c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[yoConnID]
res, err := dbClient.TableInfo(c.Params.ByName("table"))
if err != nil {
c.JSON(400, NewError(err))
return
}
c.JSON(200, res.Format()[0])
}
//APIHistory will return query history of current dbClient
func APIHistory(c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[yoConnID]
c.JSON(200, dbClient.history)
}
//APIInfo returns information about the current db connecction
func APIInfo(c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[yoConnID]
if dbClient == nil {
//Also send the available connections list
formatedRes := &Info{
Connection: dbConnArr,
}
c.JSON(400, formatedRes)
return
}
res, err := dbClient.Info()
if err != nil {
c.JSON(400, NewError(err))
return
}
formatedRes := res.Format()[0]
formatedRes["host"] = dbClient.host
formatedRes["user"] = dbClient.user
c.JSON(200, formatedRes)
}
//APITableIndexes returns the indexs of a table
func APITableIndexes(c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[yoConnID]
res, err := dbClient.TableIndexes(c.Params.ByName("table"))
if err != nil {
c.JSON(400, NewError(err))
return
}
c.JSON(200, res)
}
//APIProcedureParameters returns the parameters of a procedure
func APIProcedureParameters(c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[yoConnID]
res, err := dbClient.ProcedureParameters(c.Params.ByName("procedure"), c.Request.FormValue("database"))
if err != nil {
c.JSON(400, NewError(err))
return
}
c.JSON(200, res)
}
//APIGetCollationCharSet returns the character sets and collation available in
//database
func APIGetCollationCharSet(c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[yoConnID]
res, err := dbClient.DatabaseCollationCharSet()
if err != nil {
c.JSON(400, NewError(err))
return
}
c.JSON(200, res)
}
//APIAlterDatabase alter database to change charset & collation
func APIAlterDatabase(c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[yoConnID]
res, err := dbClient.AlterDatabase(c.Params.ByName("database"),
c.Request.FormValue("charset"), c.Request.FormValue("collation"))
if err != nil {
c.JSON(400, NewError(err))
return
}
c.JSON(201, res)
}
//APIDropDatabase drops the given database from the system
func APIDropDatabase(c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[yoConnID]
_, err := dbClient.DropDatabase(c.Params.ByName("database"))
if err != nil {
c.JSON(400, NewError(err))
return
}
c.Writer.WriteHeader(204)
}
//APIDropTable will drop the table from this database
func APIDropTable(c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[yoConnID]
_, err := dbClient.DropTable(c.Params.ByName("database"), c.Params.ByName("table"))
if err != nil {
c.JSON(400, NewError(err))
return
}
c.Writer.WriteHeader(204)
}
//APITruncateTable truncates the table
func APITruncateTable(c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[yoConnID]
_, err := dbClient.TruncateTable(c.Params.ByName("database"), c.Params.ByName("table"))
if err != nil {
c.JSON(400, NewError(err))
return
}
c.Writer.WriteHeader(204)
}
//APIProcedureDefinition get definition of a procedure
func APIProcedureDefinition(c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[yoConnID]
res, err := dbClient.ProcedureDefinition("procedure", c.Params.ByName("database"), c.Params.ByName("procedure"))
if err != nil {
c.JSON(400, NewError(err))
return
}
c.JSON(200, res)
}
//APIFunctionDefinition get definition of a function
func APIFunctionDefinition(c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[yoConnID]
res, err := dbClient.ProcedureDefinition("function", c.Params.ByName("database"), c.Params.ByName("function"))
if err != nil {
c.JSON(400, NewError(err))
return
}
c.JSON(200, res)
}
//APICreateProcedure creates/edits a stored procedure
func APICreateProcedure(c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[yoConnID]
dbName := c.Params.ByName("database")
procName := c.Params.ByName("procedure")
procDef := c.Request.FormValue("definition")
_, err := dbClient.ProcedureCreate("PROCEDURE", dbName, procName, procDef)
if err != nil {
c.JSON(400, NewError(err))
return
}
c.Writer.WriteHeader(200)
}
//APICreateFunction creates/edits a function
func APICreateFunction(c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[yoConnID]
dbName := c.Params.ByName("database")
procName := c.Params.ByName("function")
procDef := c.Request.FormValue("definition")
_, err := dbClient.ProcedureCreate("FUNCTION", dbName, procName, procDef)
if err != nil {
c.JSON(400, NewError(err))
return
}
c.Writer.WriteHeader(200)
}
//APIDropProcedure drops the procedure
func APIDropProcedure(c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[yoConnID]
_, err := dbClient.DropProcedure("PROCEDURE", c.Params.ByName("database"), c.Params.ByName("procedure"))
if err != nil {
c.JSON(400, NewError(err))
return
}
c.Writer.WriteHeader(204)
}
//APIViewDefinition gets the definition of a view
func APIViewDefinition(c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[yoConnID]
res, err := dbClient.ViewDefinition(c.Params.ByName("database"), c.Params.ByName("view"))
if err != nil {
c.JSON(400, NewError(err))
return
}
c.JSON(200, res)
}
func apiSearch(c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
dbClient := dbClientMap[yoConnID]
res, err := dbClient.Search(c.Params.ByName("query"))
if err != nil {
c.JSON(400, NewError(err))
return
}
c.JSON(200, res)
}
//APIHandleQuery handles thq query and return the resultset as JSON
func APIHandleQuery(query string, c *gin.Context) {
//Read client id from the headers
yoConnID := c.Request.Header.Get("X-CONN-ID")
// If id missing from header, check in query string
if yoConnID == "" {
yoConnID = c.Request.FormValue("conn_id")
}
if yoConnID == "" {
c.JSON(400, Error{"Invalid connection"})
return
}
dbClient := dbClientMap[yoConnID]
// 31 Aug
// Make it mandatory to have WHERE for UPDATE & DELETE
// TODO: Make this enforcing a setting
if strings.Contains(strings.ToUpper(query), "UPDATE") ||
strings.Contains(strings.ToUpper(query), "DELETE") {
if !strings.Contains(strings.ToUpper(query), "WHERE") {
c.JSON(400, Error{"WHERE statement is mandatory with UPDATE & DELETE statements"})
return
}
}
result, err := dbClient.Query(query)
if err != nil {
c.JSON(400, NewError(err))
return
}
q := c.Request.URL.Query()
if len(q["format"]) > 0 {
if q["format"][0] == "csv" {
c.Data(200, "text/csv", result.CSV())
return
}
}
c.JSON(200, result)
}
func APIGetBookmarks(c *gin.Context) {
bookmarks, err := readBookmarks(getBookmarkPath())
if err != nil {
c.JSON(400, NewError(err))
return
}
c.JSON(200, bookmarks)
}
func APISaveBookmark(c *gin.Context) {
bookName := c.Params.ByName("name")
conHost := c.Request.FormValue("host")
strConPort := c.Request.FormValue("port")
intConPort, err := strconv.Atoi(strConPort)
if err != nil {
c.JSON(400, NewError(err))
return
}
conUser := c.Request.FormValue("user")
conDatabase := c.Request.FormValue("database")
objBookmark := Bookmark{
Name: bookName,
Connection: Connection{
Host: conHost,
Port: intConPort,
Username: conUser,
Database: conDatabase,
},
}
i, err := saveBookmark(objBookmark, getBookmarkPath())
if i == -1 {
c.JSON(400, NewError(errors.New("A connection with this name already exists")))
return
}
c.Writer.WriteHeader(204)
}
func APIDeleteBookmark(c *gin.Context) {
bookName := c.Params.ByName("name")
err := deleteBookmark(bookName, getBookmarkPath())
if err != nil {
c.JSON(400, NewError(err))
return
}
c.Writer.WriteHeader(204)
}
//APIServeAsset serves the static assets
func APIServeAsset(c *gin.Context) {
file := fmt.Sprintf(
"static%s",
c.Params.ByName("filepath"),
)
data, err := Asset(file)
if err != nil {
c.String(400, err.Error())
return
}
if len(data) == 0 {
c.String(404, "Asset is empty")
return
}
c.Data(200, assetContentType(file), data)
}
func getUpdate(c *gin.Context) {
update := checkForUpdate(VERSION)
if update == nil {
c.Writer.WriteHeader(204)
return
}
c.JSON(200, update)
}