-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
609 lines (519 loc) · 17.8 KB
/
main.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
package main
import (
"database/sql"
"encoding/json"
"fmt"
"net/http"
"regexp"
"strconv"
"strings"
// "firebase.google.com/go/db"
_ "github.com/mattn/go-sqlite3"
)
func init() {
initSQLite()
initializeRoutes()
}
func initSQLite() {
database, _ := sql.Open("sqlite3", "./question.db")
createGateWayQuery, _ := database.Prepare("CREATE TABLE IF NOT EXISTS gateways (id INTEGER PRIMARY KEY AUTOINCREMENT, name VARCHAR(255))")
createGateWayQuery.Exec()
createGateWayIPAdressesQuery, _ := database.Prepare("CREATE TABLE IF NOT EXISTS gateway_ip_addresses (id INTEGER PRIMARY KEY AUTOINCREMENT, gateway_id INTEGER, ip VARCHAR(16))")
createGateWayIPAdressesQuery.Exec()
createRouteMappingQuery1, _ := database.Prepare("CREATE TABLE IF NOT EXISTS route_mapping (id INTEGER PRIMARY KEY AUTOINCREMENT, gateway_id INTEGER, prefix VARCHAR(16))")
createRouteMappingQuery1.Exec()
}
func initializeRoutes() {
http.HandleFunc("/gateway/", createGateWay)
http.HandleFunc("/route/", createRouteMapping)
http.HandleFunc("/search/route/", searchRoute)
}
func getDatabaseConnection() (*sql.DB, error) {
database, err := sql.Open("sqlite3", "./question.db")
if err != nil {
return nil, err
}
return database, nil
}
func main() {
http.ListenAndServe(":8000", nil)
}
type createGateWayRequest struct {
Name string `json:"name,required"`
IpAddresses []string `json:"ip_addresses,required"`
}
type createGateWayResponse struct {
Message string
Param string
}
type createGateWaySuccessResponse struct {
ID int `json:"id"`
Name string `json:"name"`
IPAddresses []string `json:"ip_addresses"`
}
type showGateWayRequest struct {
ID int
}
type createRouteMappingRequest struct {
Prefix string `json:"prefix"`
GateWayId int `json:"gateway_id"`
}
type createRouteMappingResponse struct {
ID int
Prefix string
Gateway createGateWaySuccessResponse
}
func searchRoute(w http.ResponseWriter, r *http.Request) {
switch r.Method {
case "GET":
num := strings.Split(r.URL.Path, "/")[3]
// num := "918008270250"
validationErrorRes := createGateWayResponse{}
successRes := createRouteMappingResponse{}
nonDigitChar, _ := regexp.MatchString(`[^\d]`, num)
if len(num) > 12 || nonDigitChar {
validationErrorRes.Message = "Invalid Phone number"
w.WriteHeader(http.StatusBadRequest)
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(validationErrorRes)
return
}
db, databaseConnErr := getDatabaseConnection()
// If there is a issue getting the database connection
if databaseConnErr != nil {
w.WriteHeader(http.StatusInternalServerError)
return
}
// Get all the prefixes from the table
getAllPrefixesQueryString := "SELECT id, prefix FROM route_mapping"
rows, err := db.Query(getAllPrefixesQueryString)
if err != nil {
if err == sql.ErrNoRows {
validationErrorRes.Message = "no routes exist in the database"
w.WriteHeader(http.StatusBadRequest)
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(validationErrorRes)
return
}
fmt.Println(err)
w.WriteHeader(http.StatusInternalServerError)
return
}
idPrefixMap := make(map[string]string)
for rows.Next() {
var id, prefix string
rows.Scan(&id, &prefix)
idPrefixMap[id] = prefix
}
var routeIDInt int
for k, v := range idPrefixMap {
if strings.Contains(num, v) {
kInt, _ := strconv.Atoi(k)
if kInt > routeIDInt {
routeIDInt = kInt
}
}
}
// Get the prefix, gateway_id from the table
getRouteNameQuery := `SELECT prefix, gateway_id FROM route_mapping where id = '%d' limit 1`
getRouteNameQueryString := fmt.Sprintf(getRouteNameQuery, routeIDInt)
row := db.QueryRow(getRouteNameQueryString)
err = row.Scan(&successRes.Prefix, &successRes.Gateway.ID)
if err != nil {
if err == sql.ErrNoRows {
validationErrorRes.Message = "No gateway supports this mobile number"
w.WriteHeader(http.StatusNotFound)
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(validationErrorRes)
return
}
w.WriteHeader(http.StatusInternalServerError)
return
}
// Get the gateway name from the table
getGateWayNameQuery := `SELECT name FROM gateways where id = '%d' limit 1`
getGateWayNameQueryString := fmt.Sprintf(getGateWayNameQuery, successRes.Gateway.ID)
row = db.QueryRow(getGateWayNameQueryString)
err = row.Scan(&successRes.Gateway.Name)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
return
}
// Get the gateway ip address details
getGateWayIPQuery := `SELECT ip FROM gateway_ip_addresses where gateway_id = '%d'`
getGateWayIPQueryString := fmt.Sprintf(getGateWayIPQuery, successRes.Gateway.ID)
rows, err = db.Query(getGateWayIPQueryString)
if err != nil {
fmt.Println(err)
w.WriteHeader(http.StatusInternalServerError)
return
}
var ipAddresses []string
for rows.Next() {
var ipAddress string
rows.Scan(&ipAddress)
ipAddresses = append(ipAddresses, ipAddress)
}
successRes.Gateway.IPAddresses = ipAddresses
w.WriteHeader(http.StatusCreated)
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(successRes)
default:
fmt.Fprintf(w, "Sorry, only GET method is supported.")
}
}
func createGateWay(w http.ResponseWriter, r *http.Request) {
matched, _ := regexp.MatchString(`gateway/[0-9]+`, r.URL.Path)
if matched && r.Method == "POST" {
fmt.Fprintf(w, "Sorry, only GET method is supported for this API.")
}
if !matched && r.Method == "GET" {
fmt.Fprintf(w, "Sorry, only POST method is supported for this API.")
}
switch r.Method {
case "POST":
if !matched {
var req createGateWayRequest
res := createGateWayResponse{}
decodeErr := json.NewDecoder(r.Body).Decode(&req)
db, databaseConnErr := getDatabaseConnection()
// If there is a issue in decoding the req or getting the database connection
if decodeErr != nil || databaseConnErr != nil {
res.Message = "Internal Server Error"
w.WriteHeader(http.StatusInternalServerError)
return
}
// 1. Check if any gateway exists with the same name
// 2. Name Can't be Empty
// 3. Atleast one IP Address should be present
validationErr := false
validationErrReason := ""
badIPAddress := false
for _, address := range req.IpAddresses {
if is_ipv4(address) {
badIPAddress = true
break
}
}
if req.Name == "" {
validationErr = true
validationErrReason = "name"
} else if badIPAddress || len(req.IpAddresses) < 1 {
validationErr = true
validationErrReason = "ip_addresses"
} else {
dbQuery := `SELECT name FROM gateways where name = '%s' limit 1`
dbQueryString := fmt.Sprintf(dbQuery, req.Name)
row := db.QueryRow(dbQueryString)
var thisGateWayObj gateWay
err := row.Scan(&thisGateWayObj.Name)
if err != nil {
if err == sql.ErrNoRows {
// Insert into gateway table
insertGateWayQuery := `INSERT INTO gateways (name) values ('%s')`
insertGateWayQueryString := fmt.Sprintf(insertGateWayQuery, req.Name)
insertGateWayQueryStmt, _ := db.Prepare(insertGateWayQueryString)
insertGateWayQueryStmt.Exec()
// Get the gateway id from the table
getGateWayIDQuery := `SELECT id FROM gateways where name = '%s' limit 1`
getGateWayIDQueryString := fmt.Sprintf(getGateWayIDQuery, req.Name)
row := db.QueryRow(getGateWayIDQueryString)
var thisGateWayObj1 gateWay
err := row.Scan(&thisGateWayObj1.ID)
if err != nil {
res.Message = "Internal Server Error"
w.WriteHeader(http.StatusInternalServerError)
json.NewEncoder(w).Encode(res)
return
}
// Insert into gateway_ip_address table
for _, v := range req.IpAddresses {
insertGateWayIPAddressQuery := `INSERT INTO gateway_ip_addresses (gateway_id, ip) values ('%d','%s')`
insertGateWayIPAddressQueryString := fmt.Sprintf(insertGateWayIPAddressQuery, thisGateWayObj1.ID, v)
insertGateWayIPAddressQueryStmt, _ := db.Prepare(insertGateWayIPAddressQueryString)
insertGateWayIPAddressQueryStmt.Exec()
}
w.WriteHeader(http.StatusCreated)
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(createGateWaySuccessResponse{
ID: thisGateWayObj1.ID,
Name: req.Name,
IPAddresses: req.IpAddresses,
})
return
} else {
// If Actual Error exists
res.Message = "Internal Server Error"
w.WriteHeader(http.StatusInternalServerError)
json.NewEncoder(w).Encode(res)
return
}
} else {
// Returned a row
validationErr = true
validationErrReason = "name"
}
}
if validationErr {
res.Message = "gateway with this name already exists"
res.Param = validationErrReason
w.WriteHeader(http.StatusBadRequest)
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(res)
return
}
}
case "GET":
if matched {
gateWayID := strings.Split(r.URL.Path, "/")[2]
gateWayIDInt, _ := strconv.Atoi(gateWayID)
validationErrorRes := createGateWayResponse{}
successRes := createGateWaySuccessResponse{}
successRes.ID = gateWayIDInt
db, databaseConnErr := getDatabaseConnection()
// If there is a issue getting the database connection
if databaseConnErr != nil {
w.WriteHeader(http.StatusInternalServerError)
return
}
// Get the gateway id from the table
getGateWayNameQuery := `SELECT name FROM gateways where id = '%d' limit 1`
getGateWayNameQueryString := fmt.Sprintf(getGateWayNameQuery, gateWayIDInt)
row := db.QueryRow(getGateWayNameQueryString)
err := row.Scan(&successRes.Name)
if err != nil {
if err == sql.ErrNoRows {
validationErrorRes.Message = "gateway with this id doesn't exist"
validationErrorRes.Param = "gateway_id"
w.WriteHeader(http.StatusNotFound)
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(validationErrorRes)
return
} else {
w.WriteHeader(http.StatusInternalServerError)
return
}
}
// Get the gateway ip address details
getGateWayIPQuery := `SELECT ip FROM gateway_ip_addresses where gateway_id = '%d'`
getGateWayIPQueryString := fmt.Sprintf(getGateWayIPQuery, gateWayIDInt)
rows, err := db.Query(getGateWayIPQueryString)
if err != nil {
fmt.Println(err)
w.WriteHeader(http.StatusInternalServerError)
return
}
var ipAddresses []string
for rows.Next() {
var ipAddress string
rows.Scan(&ipAddress)
ipAddresses = append(ipAddresses, ipAddress)
}
successRes.IPAddresses = ipAddresses
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusCreated)
json.NewEncoder(w).Encode(successRes)
}
default:
fmt.Fprintf(w, "Sorry, only POST method is supported.")
}
}
func createRouteMapping(w http.ResponseWriter, r *http.Request) {
matched, _ := regexp.MatchString(`route/[0-9]+`, r.URL.Path)
if matched && r.Method == "POST" {
fmt.Fprintf(w, "Sorry, only GET method is supported for this API.")
}
if !matched && r.Method == "GET" {
fmt.Fprintf(w, "Sorry, only POST method is supported for this API.")
}
switch r.Method {
case "POST":
if !matched {
var req createRouteMappingRequest
res := createRouteMappingResponse{}
validationFailureRes := createGateWayResponse{}
decodeErr := json.NewDecoder(r.Body).Decode(&req)
db, databaseConnErr := getDatabaseConnection()
// If there is a issue in decoding the req or getting the database connection
if decodeErr != nil || databaseConnErr != nil {
w.WriteHeader(http.StatusInternalServerError)
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(res)
return
}
if req.Prefix == "" {
validationFailureRes.Message = "prefix empty"
validationFailureRes.Param = "prefix"
w.WriteHeader(http.StatusBadRequest)
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(validationFailureRes)
return
} else if req.GateWayId == 0 {
validationFailureRes.Message = "gateway empty"
validationFailureRes.Param = "gateway"
w.WriteHeader(http.StatusBadRequest)
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(validationFailureRes)
return
}
dbQuery := `SELECT id FROM route_mapping where prefix = '%s' limit 1`
dbQueryString := fmt.Sprintf(dbQuery, req.Prefix)
row := db.QueryRow(dbQueryString)
var thisRouteMappingObj routeMapping
err := row.Scan(&thisRouteMappingObj.ID)
if err != nil {
if err == sql.ErrNoRows {
createRouteMappingQuery := `INSERT INTO route_mapping (prefix, gateway_id) values ('%s', '%d')`
createRouteMappingQueryString := fmt.Sprintf(createRouteMappingQuery, req.Prefix, req.GateWayId)
createRouteMappingQueryStmt, _ := db.Prepare(createRouteMappingQueryString)
createRouteMappingQueryStmt.Exec()
// Get the route details from the table
getRouteMappingQuery := `SELECT id, prefix FROM route_mapping where prefix = '%s' limit 1`
getRouteMappingQueryString := fmt.Sprintf(getRouteMappingQuery, req.Prefix)
row := db.QueryRow(getRouteMappingQueryString)
var thisRouteMappingResponse createRouteMappingResponse
err := row.Scan(&thisRouteMappingResponse.ID, &thisRouteMappingResponse.Prefix)
if err != nil {
fmt.Println(err)
w.WriteHeader(http.StatusInternalServerError)
return
}
// Get the gateway id, name from the table
getGateWayNameQuery := `SELECT id, name FROM gateways where id = '%d' limit 1`
getGateWayNameQueryString := fmt.Sprintf(getGateWayNameQuery, req.GateWayId)
row = db.QueryRow(getGateWayNameQueryString)
err = row.Scan(&thisRouteMappingResponse.Gateway.ID, &thisRouteMappingResponse.Gateway.Name)
if err != nil {
fmt.Println(err)
w.WriteHeader(http.StatusInternalServerError)
return
}
// Get the gateway ip address details
getGateWayIPQuery := `SELECT ip FROM gateway_ip_addresses where gateway_id = '%d'`
getGateWayIPQueryString := fmt.Sprintf(getGateWayIPQuery, req.GateWayId)
rows, err := db.Query(getGateWayIPQueryString)
if err != nil {
fmt.Println(err)
w.WriteHeader(http.StatusInternalServerError)
return
}
var ipAddresses []string
for rows.Next() {
var ipAddress string
rows.Scan(&ipAddress)
ipAddresses = append(ipAddresses, ipAddress)
}
thisRouteMappingResponse.Gateway.IPAddresses = ipAddresses
w.WriteHeader(http.StatusCreated)
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(thisRouteMappingResponse)
return
} else {
// If Actual Error exists
w.WriteHeader(http.StatusInternalServerError)
json.NewEncoder(w).Encode(res)
return
}
} else {
validationFailureRes.Message = "prefix already exists"
validationFailureRes.Param = "prefix"
w.WriteHeader(http.StatusBadRequest)
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(validationFailureRes)
return
}
}
case "GET":
if matched {
routeID := strings.Split(r.URL.Path, "/")[2]
routeIDInt, _ := strconv.Atoi(routeID)
validationErrorRes := createGateWayResponse{}
successRes := createRouteMappingResponse{}
successRes.ID = routeIDInt
db, databaseConnErr := getDatabaseConnection()
// If there is a issue getting the database connection
if databaseConnErr != nil {
w.WriteHeader(http.StatusInternalServerError)
return
}
// Get the prefix, gateway_id from the table
getRouteNameQuery := `SELECT prefix, gateway_id FROM route_mapping where id = '%d' limit 1`
getRouteNameQueryString := fmt.Sprintf(getRouteNameQuery, routeIDInt)
row := db.QueryRow(getRouteNameQueryString)
err := row.Scan(&successRes.Prefix, &successRes.Gateway.ID)
if err != nil {
if err == sql.ErrNoRows {
validationErrorRes.Message = "route with this id doesn't exist"
validationErrorRes.Param = "route_id"
w.WriteHeader(http.StatusNotFound)
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(validationErrorRes)
} else {
w.WriteHeader(http.StatusInternalServerError)
return
}
}
// Get the gateway name from the table
getGateWayNameQuery := `SELECT name FROM gateways where id = '%d' limit 1`
getGateWayNameQueryString := fmt.Sprintf(getGateWayNameQuery, successRes.Gateway.ID)
row = db.QueryRow(getGateWayNameQueryString)
err = row.Scan(&successRes.Gateway.Name)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
return
}
// Get the gateway ip address details
getGateWayIPQuery := `SELECT ip FROM gateway_ip_addresses where gateway_id = '%d'`
getGateWayIPQueryString := fmt.Sprintf(getGateWayIPQuery, successRes.Gateway.ID)
rows, err := db.Query(getGateWayIPQueryString)
if err != nil {
fmt.Println(err)
w.WriteHeader(http.StatusInternalServerError)
return
}
var ipAddresses []string
for rows.Next() {
var ipAddress string
rows.Scan(&ipAddress)
ipAddresses = append(ipAddresses, ipAddress)
}
successRes.Gateway.IPAddresses = ipAddresses
w.WriteHeader(http.StatusCreated)
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(successRes)
}
default:
fmt.Fprintf(w, "Sorry, only POST method is supported.")
}
}
func is_ipv4(host string) bool {
parts := strings.Split(host, ".")
if len(parts) < 4 {
return false
}
for _, x := range parts {
if i, err := strconv.Atoi(x); err == nil {
if i < 0 || i > 255 {
return false
}
} else {
return false
}
}
return true
}
// Models
type gateWay struct {
ID int
Name string
}
type gateWayIPAddress struct {
ID int
GatewayID int
IPAddress string
}
type routeMapping struct {
ID int
gatewayID int
Prefix string
}