forked from TaHB-CS-Project/Combined
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsession.go
481 lines (427 loc) · 17 KB
/
session.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
package main
import (
"database/sql"
"fmt"
"html/template"
"net/http"
"github.com/gorilla/sessions"
"golang.org/x/crypto/bcrypt"
)
type user_entity struct {
Username string `json:email`
Password_hash string `json:password`
Role int
}
var store = sessions.NewCookieStore([]byte("session"))
func SignUp(response http.ResponseWriter, request *http.Request) {
request.ParseForm()
username := request.Form.Get("email")
password := request.Form.Get("password")
repassword := request.Form.Get("psw-repeat")
firstname := request.Form.Get("fname")
lastname := request.Form.Get("lname")
hospital := request.Form.Get("hospital")
department := request.Form.Get("department")
checkrepassword := password == repassword
if !checkrepassword {
fmt.Printf("Passwords do not match")
}
response.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
response.Header().Set("Expires", "0")
passwordhash, err := bcrypt.GenerateFromPassword([]byte(password), bcrypt.DefaultCost)
if err != nil {
panic(err)
}
sqlStatementHospital := `
SELECT hospital_id
FROM hospital
WHERE hospital_name = $1
`
var hospitalstruct Hospital
rows := db.QueryRow(sqlStatementHospital, hospital)
error := rows.Scan(&hospitalstruct.Hospital_id)
switch error {
case sql.ErrNoRows:
fmt.Println("No rows were returned!")
case nil:
fmt.Println(hospitalstruct.Hospital_id)
default:
panic(error)
}
sqlStatementEmployee := `
INSERT INTO medical_employee (hospital_id, medicalemployee_firstname, medicalemployee_lastname, medicalemployee_department, medicalemployee_classification)
VALUES ($1, $2, $3, $4, $5)
RETURNING medicalemployee_id
`
var medicalemployee_id int64
error = db.QueryRow(sqlStatementEmployee, hospitalstruct.Hospital_id, firstname, lastname, department, "Admin").Scan(&medicalemployee_id)
if error != nil {
panic(error)
}
sqlStatementUser := `
INSERT INTO user_entity (medicalemployee_id, username, password_hash, role)
VALUES ($1, $2, $3, $4)
`
// var user_id int64
_, error = db.Exec(sqlStatementUser, medicalemployee_id, username, passwordhash, 2)
// error = db.QueryRow(sqlStatementUser,medicalemployee_id, username, passwordhash).Scan(&user_id)
if error != nil {
panic(error)
}
// fmt.Println("Created Account")
// fmt.Println("Created email:", username)
// fmt.Println("Created password:", password)
http.Redirect(response, request, "/index.html", http.StatusSeeOther)
}
func Hospitaladmin_signup(response http.ResponseWriter, request *http.Request) {
request.ParseForm()
username := request.Form.Get("email")
password := request.Form.Get("password")
repassword := request.Form.Get("psw-repeat")
firstname := request.Form.Get("fname")
lastname := request.Form.Get("lname")
classification := request.Form.Get("classification")
hospital := request.Form.Get("hospital")
department := request.Form.Get("department")
supervisor := request.Form.Get("supervisor")
checkrepassword := password == repassword
if !checkrepassword {
fmt.Printf("Passwords do not match")
}
passwordhash, err := bcrypt.GenerateFromPassword([]byte(password), bcrypt.DefaultCost)
if err != nil {
panic(err)
}
response.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
response.Header().Set("Expires", "0")
sqlStatementHospital := `
SELECT hospital_id
FROM hospital
WHERE hospital_name = $1
`
var hospitalstruct Hospital
rows := db.QueryRow(sqlStatementHospital, hospital)
error := rows.Scan(&hospitalstruct.Hospital_id)
switch error {
case sql.ErrNoRows:
fmt.Println("No rows were returned!")
case nil:
fmt.Println(hospitalstruct.Hospital_id)
default:
panic(error)
}
sqlStatementEmployee := `
INSERT INTO medical_employee (hospital_id, medicalemployee_firstname, medicalemployee_lastname, medicalemployee_department, medicalemployee_classification, medicalemployee_supervisor)
VALUES ($1, $2, $3, $4, $5, $6)
RETURNING medicalemployee_id
`
var medicalemployee_id int64
error = db.QueryRow(sqlStatementEmployee, hospitalstruct.Hospital_id, firstname, lastname, department, classification, supervisor).Scan(&medicalemployee_id)
if error != nil {
panic(error)
}
sqlStatementUser := `
INSERT INTO user_entity (medicalemployee_id, username, password_hash, role)
VALUES ($1, $2, $3, $4)
`
// var user_id int64
_, error = db.Exec(sqlStatementUser, medicalemployee_id, username, passwordhash, 1)
// error = db.QueryRow(sqlStatementUser,medicalemployee_id, username, passwordhash).Scan(&user_id)
if error != nil {
panic(error)
}
// fmt.Println("Created Hospital Admin Account")
// fmt.Println("Created email:", username)
// fmt.Println("Created password:", password)
http.Redirect(response, request, "/admin_dashboard.html", http.StatusSeeOther)
}
func Login(response http.ResponseWriter, request *http.Request) {
//read in the data from the login page bar
request.ParseForm()
username := request.Form.Get("email")
password := request.Form.Get("password")
user := user_entity{}
//create a bcrypt hash to compare with the database stored hash
// hash, err := bcrypt.GenerateFromPassword([]byte(password), bcrypt.DefaultCost)
// if err != nil {
// // TODO: Properly handle error
// panic(err)
// }
sqlStatement := `
SELECT password_hash
FROM user_entity
WHERE username=$1`
result := db.QueryRow(sqlStatement, username)
err := result.Scan(&user.Password_hash)
if err != nil {
fmt.Println("User/Pass was invalid")
}
response.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
response.Header().Set("Expires", "0")
//compare the two hashes
if check := bcrypt.CompareHashAndPassword([]byte(user.Password_hash), []byte(password)); check != nil {
fmt.Println("Invalid Username or Password.")
// fmt.Println("Password Hash", []byte(user.Password_hash))
// fmt.Println("Hash", []byte(user.Password_hash))
tmp, _ := template.ParseFiles("Template/index.html")
tmp.Execute(response, nil)
} else {
sessions, _ := store.Get(request, "session")
sessions.Values["username"] = username
//save before the redirect
sessions.Save(request, response)
//if their username and password matches then redirect them to the dashboard(?) or whatever is the
//main page of a successful login
sqlStatement := `
SELECT role
FROM user_entity
WHERE username = $1`
error := db.QueryRow(sqlStatement, username).Scan(&user.Role)
if error != nil {
fmt.Println("Role not found")
}
sessions.Values["role"] = user.Role
sessions.Save(request, response)
if sessions.Values["role"] == 0 && sessions.Values["username"] != "" {
fmt.Println("Got to dashboard with role 0")
http.Redirect(response, request, "/admin_dashboard.html", http.StatusSeeOther)
} else if sessions.Values["role"] == 1 && sessions.Values["username"] != "" {
fmt.Println("Got to dashboard with role 1")
http.Redirect(response, request, "/hospital_admin_dashboard.html", http.StatusSeeOther)
} else if sessions.Values["role"] == 2 && sessions.Values["username"] != "" {
fmt.Println("Got to dashboard with role 2")
http.Redirect(response, request, "/user_dashboard.html", http.StatusSeeOther)
}
}
}
func Logout(response http.ResponseWriter, request *http.Request) {
//get the current session
sessions, _ := store.Get(request, "session")
// //set the sessions time
sessions.Options.MaxAge = -1
sessions.Values["username"] = ""
// //save the new session
response.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
response.Header().Set("Expires", "0")
sessions.Save(request, response)
http.Redirect(response, request, "/signin", http.StatusSeeOther)
}
func Index(response http.ResponseWriter, request *http.Request) {
tmp, _ := template.ParseFiles("Template/index.html")
tmp.Execute(response, nil)
}
func Create_account_registerd(response http.ResponseWriter, request *http.Request) {
tmp, _ := template.ParseFiles("Template/create-account_registerd.html")
tmp.Execute(response, nil)
}
func Create_account(response http.ResponseWriter, request *http.Request) {
gethospital_list(response, request)
tmp, _ := template.ParseFiles("Template/create-account.html")
tmp.Execute(response, nil)
}
func Forgot_password_submit(response http.ResponseWriter, request *http.Request) {
tmp, _ := template.ParseFiles("Template/forgot-password-submit.html")
tmp.Execute(response, nil)
}
func Forgot_password(response http.ResponseWriter, request *http.Request) {
tmp, _ := template.ParseFiles("Template/forgot-password.html")
tmp.Execute(response, nil)
}
//User Pages
///////////////////////////////////////////////////////////////////////////////////////
func user_add_record(response http.ResponseWriter, request *http.Request) {
sessions, _ := store.Get(request, "session")
response.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
response.Header().Set("Expires", "0")
if sessions.Values["role"] == 2 && sessions.Values["username"] != "" {
tmp, _ := template.ParseFiles("Template/user_add-record.html")
tmp.Execute(response, nil)
} else {
http.Redirect(response, request, "/signin", http.StatusSeeOther)
}
}
func user_dashboard(response http.ResponseWriter, request *http.Request) {
sessions, _ := store.Get(request, "session")
response.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
response.Header().Set("Expires", "0")
if sessions.Values["role"] == 2 && sessions.Values["username"] != "" {
tmp, _ := template.ParseFiles("Template/user_dashboard.html")
tmp.Execute(response, nil)
} else {
http.Redirect(response, request, "/signin", http.StatusSeeOther)
}
}
func user_diagnosis(response http.ResponseWriter, request *http.Request) {
sessions, _ := store.Get(request, "session")
response.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
response.Header().Set("Expires", "0")
if sessions.Values["role"] == 2 && sessions.Values["username"] != "" {
getdiagnosis(response, request)
tmp, _ := template.ParseFiles("Template/user_diagnosis.html")
tmp.Execute(response, nil)
} else {
http.Redirect(response, request, "/signin", http.StatusSeeOther)
}
}
func user_procedure(response http.ResponseWriter, request *http.Request) {
sessions, _ := store.Get(request, "session")
response.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
response.Header().Set("Expires", "0")
if sessions.Values["role"] == 2 && sessions.Values["username"] != "" {
getprocedure(response, request)
tmp, _ := template.ParseFiles("Template/user_procedure.html")
tmp.Execute(response, nil)
} else {
http.Redirect(response, request, "/signin", http.StatusSeeOther)
}
}
func user_record_draft(response http.ResponseWriter, request *http.Request) {
sessions, _ := store.Get(request, "session")
response.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
response.Header().Set("Expires", "0")
if sessions.Values["role"] == 2 && sessions.Values["username"] != "" {
getrecord_draft_list(response, request)
tmp, _ := template.ParseFiles("Template/user_record-draft.html")
tmp.Execute(response, nil)
} else {
http.Redirect(response, request, "/signin", http.StatusSeeOther)
}
}
func user_record_list(response http.ResponseWriter, request *http.Request) {
sessions, _ := store.Get(request, "session")
response.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
response.Header().Set("Expires", "0")
if sessions.Values["role"] == 2 && sessions.Values["username"] != "" {
getrecord_list(response, request)
tmp, _ := template.ParseFiles("Template/user_record-list.html")
tmp.Execute(response, nil)
} else {
http.Redirect(response, request, "/signin", http.StatusSeeOther)
}
}
//Hospital Admin Pages
///////////////////////////////////////////////////////////////////////////////////////
func hospital_admin_dashboard(response http.ResponseWriter, request *http.Request) {
sessions, _ := store.Get(request, "session")
response.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
response.Header().Set("Expires", "0")
if sessions.Values["role"] == 1 && sessions.Values["username"] != "" {
tmp, _ := template.ParseFiles("Template/hospital_admin_dashboard.html")
tmp.Execute(response, nil)
} else {
http.Redirect(response, request, "/signin", http.StatusSeeOther)
}
}
func hospital_admin_diagnosis(response http.ResponseWriter, request *http.Request) {
sessions, _ := store.Get(request, "session")
response.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
response.Header().Set("Expires", "0")
if sessions.Values["role"] == 1 && sessions.Values["username"] != "" {
getdiagnosis(response, request)
tmp, _ := template.ParseFiles("Template/hospital_admin_diagnosis.html")
tmp.Execute(response, nil)
} else {
http.Redirect(response, request, "/signin", http.StatusSeeOther)
}
}
func hospital_admin_procedure(response http.ResponseWriter, request *http.Request) {
sessions, _ := store.Get(request, "session")
response.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
response.Header().Set("Expires", "0")
if sessions.Values["role"] == 1 && sessions.Values["username"] != "" {
getprocedure(response, request)
tmp, _ := template.ParseFiles("Template/hospital_admin_procedure.html")
tmp.Execute(response, nil)
} else {
http.Redirect(response, request, "/signin", http.StatusSeeOther)
}
}
func hospital_admin_record_list(response http.ResponseWriter, request *http.Request) {
sessions, _ := store.Get(request, "session")
response.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
response.Header().Set("Expires", "0")
if sessions.Values["role"] == 1 && sessions.Values["username"] != "" {
getrecord_list(response, request)
tmp, _ := template.ParseFiles("Template/hospital_admin_record-list.html")
tmp.Execute(response, nil)
} else {
http.Redirect(response, request, "/signin", http.StatusSeeOther)
}
}
func hospital_admin_staff_list(response http.ResponseWriter, request *http.Request) {
sessions, _ := store.Get(request, "session")
response.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
response.Header().Set("Expires", "0")
if sessions.Values["role"] == 1 && sessions.Values["username"] != "" {
getstaff_list(response, request)
tmp, _ := template.ParseFiles("Template/hospital_admin_staff-list.html")
tmp.Execute(response, nil)
} else {
http.Redirect(response, request, "/signin", http.StatusSeeOther)
}
}
//Admin Pages
///////////////////////////////////////////////////////////////////////////////////////
func admin_create_account_second(response http.ResponseWriter, request *http.Request) {
tmp, _ := template.ParseFiles("Template/admin_create-account-second.html")
tmp.Execute(response, nil)
}
func admin_dashboard(response http.ResponseWriter, request *http.Request) {
sessions, _ := store.Get(request, "session")
response.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
response.Header().Set("Expires", "0")
if sessions.Values["role"] == 0 && sessions.Values["username"] != "" {
tmp, _ := template.ParseFiles("Template/admin_dashboard.html")
tmp.Execute(response, nil)
} else {
http.Redirect(response, request, "/signin", http.StatusSeeOther)
}
}
func admin_diagnosis(response http.ResponseWriter, request *http.Request) {
sessions, _ := store.Get(request, "session")
response.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
response.Header().Set("Expires", "0")
if sessions.Values["role"] == 0 && sessions.Values["username"] != "" {
getdiagnosis(response, request)
tmp, _ := template.ParseFiles("Template/admin_diagnosis.html")
tmp.Execute(response, nil)
} else {
http.Redirect(response, request, "/signin", http.StatusSeeOther)
}
}
func admin_procedure(response http.ResponseWriter, request *http.Request) {
sessions, _ := store.Get(request, "session")
response.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
response.Header().Set("Expires", "0")
if sessions.Values["role"] == 0 && sessions.Values["username"] != "" {
getprocedure(response, request)
tmp, _ := template.ParseFiles("Template/admin_procedure.html")
tmp.Execute(response, nil)
} else {
http.Redirect(response, request, "/signin", http.StatusSeeOther)
}
}
func admin_record_list(response http.ResponseWriter, request *http.Request) {
sessions, _ := store.Get(request, "session")
response.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
response.Header().Set("Expires", "0")
if sessions.Values["role"] == 0 && sessions.Values["username"] != "" {
getrecord_list(response, request)
tmp, _ := template.ParseFiles("Template/admin_record-list.html")
tmp.Execute(response, nil)
} else {
http.Redirect(response, request, "/signin", http.StatusSeeOther)
}
}
func admin_staff_list(response http.ResponseWriter, request *http.Request) {
sessions, _ := store.Get(request, "session")
response.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
response.Header().Set("Expires", "0")
if sessions.Values["role"] == 0 && sessions.Values["username"] != "" {
getstaff_list(response, request)
tmp, _ := template.ParseFiles("Template/admin_staff-list.html")
tmp.Execute(response, nil)
} else {
http.Redirect(response, request, "/signin", http.StatusSeeOther)
}
}