-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
282 lines (239 loc) · 7.82 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
package main
import (
"context"
"database/sql"
"encoding/json"
"fmt"
"log"
"net/http"
"strings"
_ "github.com/microsoft/go-mssqldb"
_ "github.com/microsoft/go-mssqldb/sharedmemory"
)
type CCount struct {
Country string
Count int64
}
type People struct {
Persons []Person `json:"people"`
}
type Person struct {
ID int `json:"id"`
Title sql.NullString `json:"title"`
FirstName string `json:"firstname"`
MiddleName sql.NullString `json:"middlename"`
LastName string `json:"lastname"`
Suffix sql.NullString `json:"suffix"`
Scode string `json:"scode"`
Ccode string `json:"ccode"`
State string `json:"state"`
Country string `json:"country"`
}
// server, database, driver configuration
var server, database, driver = "lpc:localhost", "AdventureWorks2022", "mssql" // "sqlserver" or "mssql"
// protocols: https://learn.microsoft.com/en-us/sql/sql-server/connect-to-database-engine?view=sql-server-ver16&tabs=sqldb
// trusted connection, and encryption configuraiton
var trusted_connection, encrypt = true, true
// db is global variable to pass between functions
var db *sql.DB
// use background context globally to pass between functions
var ctx = context.Background()
func main() {
log.SetFlags(log.Ldate | log.Lshortfile)
mssql, err := ConnectMSSQL(ctx, db, driver, server, database, trusted_connection, encrypt)
if err != nil {
log.Fatalf("Error creating connection pool: %v\n", err)
}
mux := http.NewServeMux()
mux.HandleFunc("/", homePage)
mux.HandleFunc("/people", func(w http.ResponseWriter, r *http.Request) {
SelectPeople(w, r, mssql)
})
mux.HandleFunc("/ccount", func(w http.ResponseWriter, r *http.Request) {
SelectCountryCount(w, r, mssql)
})
mux.HandleFunc("/country/", func(w http.ResponseWriter, r *http.Request) {
// fmt.Fprintf(w, "code %s", r.PathValue("code"))
remainder := r.URL.Path[len("/country/"):]
countryCode, _, _ := strings.Cut(remainder, "/")
if countryCode == "" {
SelectPeople(w, r, mssql)
} else {
SelectCountry(w, r, mssql, countryCode)
}
})
http.ListenAndServe(":3000", mux)
}
func homePage(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Welcome to the HomePage!")
fmt.Println("Endpoint Hit: homePage")
}
func ConnectMSSQL(
ctx context.Context,
db *sql.DB,
driver string,
server string,
database string,
trusted_connection bool,
encrypt bool) (*sql.DB, error) {
var err error
connString := fmt.Sprintf("server=%s;database=%s;TrustServerCertificate=%v;encrypt=%v", server, database, trusted_connection, encrypt)
db, err = sql.Open("mssql", connString)
if err != nil {
return nil, err
}
log.Printf("Connected!\n")
return db, nil
}
func SelectPeople(w http.ResponseWriter, r *http.Request, db *sql.DB) {
// defer db.Close()
// err = db.Ping(ctx)
// if err != nil {
// log.Fatalf("error after pinging PostgreSQL database: %v\n", err)
// }
query := `SELECT Person.Person.BusinessEntityID
,Person.Person.Title
,Person.Person.FirstName
,Person.Person.MiddleName
,Person.Person.LastName
,Person.Person.Suffix
,Person.StateProvince.StateProvinceCode
,Person.StateProvince.CountryRegionCode
,Person.StateProvince.Name
,Person.CountryRegion.Name
FROM Person.Person
JOIN Person.BusinessEntityAddress ON Person.Person.BusinessEntityID = Person.BusinessEntityAddress.BusinessEntityID
JOIN Person.Address ON Person.BusinessEntityAddress.AddressID = Person.Address.AddressID
JOIN Person.StateProvince ON Person.Address.StateProvinceID = Person.StateProvince.StateProvinceID
JOIN Person.CountryRegion ON Person.StateProvince.CountryRegionCode = Person.CountryRegion.CountryRegionCode;`
tsql := fmt.Sprintf(query)
// Execute query
rows, err := db.Query(tsql)
if err != nil {
log.Fatal("Error reading table: " + err.Error())
}
defer rows.Close()
people := []Person{}
// Iterate through the result set.
for rows.Next() {
var person Person
// Get values from row.
err = rows.Scan(
&person.ID,
&person.Title,
&person.FirstName,
&person.MiddleName,
&person.LastName,
&person.Suffix,
&person.Scode,
&person.Ccode,
&person.State,
&person.Country,
)
if err != nil {
log.Fatal("Error reading rows: " + err.Error())
}
people = append(people, person)
// person, err = json.MarshalIndent(person, "", "\t")
// people.AddPerson(person)
}
json.NewEncoder(w).Encode(people)
// c.IndentedJSON(http.StatusOK, people)
}
// func (peeps *People) AddPerson(per Person) {
// peeps.Persons = append(peeps.Persons, per)
// }
func SelectCountry(w http.ResponseWriter, r *http.Request, db *sql.DB, country string) {
// defer db.Close()
// err = db.Ping(ctx)
// if err != nil {
// log.Fatalf("error after pinging PostgreSQL database: %v\n", err)
// }
query := `SELECT Person.Person.BusinessEntityID
,Person.Person.Title
,Person.Person.FirstName
,Person.Person.MiddleName
,Person.Person.LastName
,Person.Person.Suffix
,Person.StateProvince.StateProvinceCode
,Person.StateProvince.CountryRegionCode
,Person.StateProvince.Name
,Person.CountryRegion.Name
FROM Person.Person
JOIN Person.BusinessEntityAddress ON Person.Person.BusinessEntityID = Person.BusinessEntityAddress.BusinessEntityID
JOIN Person.Address ON Person.BusinessEntityAddress.AddressID = Person.Address.AddressID
JOIN Person.StateProvince ON Person.Address.StateProvinceID = Person.StateProvince.StateProvinceID
JOIN Person.CountryRegion ON Person.StateProvince.CountryRegionCode = Person.CountryRegion.CountryRegionCode
WHERE Person.CountryRegion.CountryRegionCode = '%s';`
tsql := fmt.Sprintf(query, country)
// Execute query
rows, err := db.Query(tsql)
if err != nil {
log.Fatal("Error reading table: " + err.Error())
}
defer rows.Close()
people := []Person{}
// Iterate through the result set.
for rows.Next() {
var person Person
// Get values from row.
err = rows.Scan(
&person.ID,
&person.Title,
&person.FirstName,
&person.MiddleName,
&person.LastName,
&person.Suffix,
&person.Scode,
&person.Ccode,
&person.State,
&person.Country,
)
if err != nil {
log.Fatal("Error reading rows: " + err.Error())
}
people = append(people, person)
// person, err = json.MarshalIndent(person, "", "\t")
// people.AddPerson(person)
}
json.NewEncoder(w).Encode(people)
// c.IndentedJSON(http.StatusOK, people)
}
func SelectCountryCount(w http.ResponseWriter, r *http.Request, db *sql.DB) {
// Check if database is alive.
// err := db.PingContext(ctx)
// if err != nil {
// log.Fatal("Error pinging database: " + err.Error())
// }
query := `SELECT [Person].[CountryRegion].[Name] AS "Country"
,COUNT([Person].[Person].[BusinessEntityID]) AS "Business Sum"
FROM [Person].[Person]
JOIN [Person].[BusinessEntityAddress] ON [Person].[BusinessEntityAddress].[BusinessEntityID] = [Person].[Person].[BusinessEntityID]
JOIN [Person].[Address] ON [Person].[Address].[AddressID] = [Person].[BusinessEntityAddress].[AddressID]
JOIN [Person].[StateProvince] ON [Person].[StateProvince].[StateProvinceID] = [Person].[Address].[StateProvinceID]
JOIN [Person].[CountryRegion] ON [Person].[CountryRegion].[CountryRegionCode] = [Person].[StateProvince].[CountryRegionCode]
GROUP BY [Person].[CountryRegion].[Name]
ORDER BY COUNT([Person].[Person].[BusinessEntityID]) DESC`
tsql := fmt.Sprintf(query)
// Execute query
rows, err := db.Query(tsql)
if err != nil {
log.Fatal("Error reading table: " + err.Error())
}
defer rows.Close()
// var row_count int = 0
var ccount []CCount
// Iterate through the result set.
for rows.Next() {
// var count, country string
var cc CCount
// Get values from row.
// err := rows.Scan(&count, &country)
if err := rows.Scan(&cc.Country, &cc.Count); err != nil {
log.Fatal("Error reading rows: " + err.Error())
}
ccount = append(ccount, cc)
// fmt.Printf("Country: %s, Count: %v\n", cc.Country, cc.Count)
}
json.NewEncoder(w).Encode(ccount)
}