-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathapi.go
More file actions
142 lines (120 loc) · 3.65 KB
/
api.go
File metadata and controls
142 lines (120 loc) · 3.65 KB
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
// Copyright 2015 Comcast Cable Communications Management, LLC
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"./outputFormatter"
"./sqlParser"
"./urlParser"
"encoding/json"
"flag"
"fmt"
"io/ioutil"
"net"
"net/http"
"os"
)
var (
addr = flag.Bool("addr", false, "find open address and print to final-port.txt")
username = os.Args[1]
password = os.Args[2]
database = os.Args[3]
//initializing the database connects and writes a column type map
//(see sqlParser for more details)
db = sqlParser.InitializeDatabase(username, password, database)
)
func requestHandler(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Access-Control-Allow-Origin", "*")
resp := sqlParser.GetTableNames()
enc := json.NewEncoder(w)
enc.Encode(resp)
}
//handles all calls to the API
func apiHandler(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Access-Control-Allow-Origin", "*")
w.Header().Set("Access-Control-Allow-Methods", "GET, PUT, POST, DELETE")
w.Header().Set("Access-Control-Allow-Headers", "Origin, Authorization, X-Requested-With, Content-Type")
//url of type "/table?parameterA=valueA¶meterB=valueB/id
path := r.URL.Path[1:]
if r.URL.RawQuery != "" {
path += "?" + r.URL.RawQuery
}
request := urlParser.ParseURL(path)
//note: tableName could also refer to a view
tableName := request.TableName
tableParameters := request.Parameters
//for error p urposes
var err error
errString := ""
isTable := sqlParser.IsTable(tableName)
if r.Method == "POST" {
bodyStr, _ := ioutil.ReadAll(r.Body)
tableName, err = sqlParser.Post(tableName, bodyStr)
if err != nil {
errString = err.Error()
}
} else if r.Method == "DELETE" {
dropTable, err := sqlParser.Delete(tableName, tableParameters)
if err != nil {
errString = err.Error()
} //clear if view
if dropTable {
tableName = ""
}
tableParameters = tableParameters[:0]
} else if r.Method == "PUT" {
bodyStr, _ := ioutil.ReadAll(r.Body)
err = sqlParser.Put(tableName, tableParameters, bodyStr)
if err != nil {
errString = err.Error()
}
tableParameters = tableParameters[:0]
}
var rows []map[string]interface{}
var columns []string
var columnAliases []string
var columnMap map[string]map[string]interface{}
//GETS the request
if tableName != "" {
rows, err = sqlParser.Get(tableName)
columns = sqlParser.GetColumnNames(tableName)
columnAliases, columnMap = sqlParser.GetForeignKeyColumns(tableName)
if err != nil {
errString = err.Error()
}
} else {
rows = nil
}
resp := outputFormatter.MakeApiWrapper(rows, columns, columnAliases, columnMap, errString, isTable)
//encoder writes the resultant "Response" struct (see outputFormatter) to writer
enc := json.NewEncoder(w)
enc.Encode(resp)
}
func main() {
fmt.Println("Starting server.")
flag.Parse()
http.HandleFunc("/api/", apiHandler)
http.HandleFunc("/request/", requestHandler)
if *addr {
//runs on home
l, err := net.Listen("tcp", "127.0.0.1:0")
if err != nil {
panic(err)
}
err = ioutil.WriteFile("final-port.txt", []byte(l.Addr().String()), 0644)
if err != nil {
panic(err)
}
s := &http.Server{}
s.Serve(l)
return
}
http.ListenAndServe(":8080", nil)
}