-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandlers.go
627 lines (555 loc) · 17.7 KB
/
handlers.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
package main
import (
"bytes"
"context"
"encoding/json"
"fmt"
"io"
"log"
"net/http"
"os"
"strconv"
"strings"
"time"
"go.mongodb.org/mongo-driver/bson/primitive"
"golang.org/x/crypto/bcrypt"
"github.com/gorilla/mux"
"github.com/gorilla/sessions"
resp "github.com/vano2903/ipaas/responser"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/mongo"
)
type Handler struct {
cc *ContainerController
sess *sessions.CookieStore
util *Util
}
//!===========================GENERICS HANDLERS
// oauth handler, will handle the 2 steps of the oauth process
// all the procedure is in https://paleoid.stoplight.io/docs/api/YXBpOjQxNDY4NTk-paleo-id-o-auth2-api
func (h Handler) OauthHandler(w http.ResponseWriter, r *http.Request) {
//connect to the db
db, err := connectToDB()
if err != nil {
resp.Error(w, http.StatusInternalServerError, err.Error())
return
}
defer db.Client().Disconnect(context.TODO())
session, _ := h.sess.Get(r, "ipaas-session")
//read url parameters (code and state)
parameters := r.URL.Query()
UrlCode, okCode := parameters["code"]
UrlState, okState := parameters["state"]
//check if it's the second phase of the oauth
if okCode && okState {
//check if the state is valid (rsa encryption)
valid, redirectUri, state, err := CheckState(UrlState[0])
if err != nil {
resp.Error(w, http.StatusBadRequest, err.Error())
return
}
if !valid {
resp.Error(w, http.StatusBadRequest, "Invalid state")
return
}
//get the paleoid access token
paleoidAccessToken, err := GetPaleoIDAccessToken(UrlCode[0])
if err != nil {
resp.Error(w, http.StatusInternalServerError, err.Error())
return
}
//use this paleoid to generate a token pair and save the user on the db in case he is not already registered
response, isClientSide, err := registerOrGenerateTokenFromPaleoIDAccessToken(paleoidAccessToken, db)
if err != nil {
if isClientSide {
resp.Error(w, http.StatusBadRequest, err.Error())
} else {
resp.Error(w, http.StatusInternalServerError, err.Error())
}
return
}
ipaasAccessToken := response["ipaas-access-token"].(string)
ipaasRefreshToken := response["ipaas-refresh-token"].(string)
randomID, randomIDFound, err := GetPollingIDFromState(state, db)
fmt.Println("randomID", randomID)
fmt.Println("randomIDFound", randomIDFound)
fmt.Println("state:", state)
if randomIDFound {
if err := UpdatePollingID(randomID, paleoidAccessToken, ipaasRefreshToken); err != nil {
resp.Errorf(w, http.StatusInternalServerError, "error update value of pollingID: %v", err)
return
}
}
//!should set domain and path
http.SetCookie(w, &http.Cookie{
Name: "ipaas-access-token",
Path: "/",
Value: ipaasAccessToken,
Expires: time.Now().Add(time.Hour),
})
http.SetCookie(w, &http.Cookie{
Name: "ipaas-refresh-token",
Path: "/",
Value: ipaasRefreshToken,
Expires: time.Now().Add(time.Hour * 24 * 7),
})
http.SetCookie(w, &http.Cookie{
Name: "ipaas-session",
Value: "",
Path: "/",
Expires: time.Unix(0, 0),
})
//if redirect uri is set send a post request with the tokens to that uri
//if it's empty the token will be shown has a response of the server
if redirectUri != "" {
//convert response to post body
r := struct {
AccessToken string `json:"access_token"`
RefreshToken string `json:"refresh_token"`
UserID int `json:"user_id"`
}{
ipaasAccessToken,
ipaasRefreshToken,
response["userID"].(int),
}
//convert r to io.Reader
body, err := json.Marshal(r)
if err != nil {
resp.Error(w, http.StatusInternalServerError, err.Error())
return
}
//do post request to the redirect uri sending the body
bodyBuffer := bytes.NewBuffer(body)
_, err = http.Post(redirectUri, "application/json", bodyBuffer)
if err != nil {
resp.Errorf(w, http.StatusInternalServerError, "error sending port to %s: %v", redirectUri, err.Error())
return
}
resp.Successf(w, http.StatusOK, "Token generated successfully, a post request has been sent to %s", redirectUri)
return
}
//resp.SuccessParse(w, http.StatusOK, "Token generated successfully", response)
http.Redirect(w, r, "/user/", http.StatusSeeOther)
}
//check if a server generated state is stored in the session
if session.Values["state"] != nil {
oauthUrl := fmt.Sprintf("https://id.paleo.bg.it/oauth/authorize?client_id=%s&response_type=code&state=%s&redirect_uri=%s", os.Getenv("OAUTH_ID"), session.Values["state"], os.Getenv("REDIRECT_URI"))
// http.Redirect(w, r, oauthUrl, http.StatusFound)
resp.Success(w, http.StatusOK, oauthUrl)
return
}
redirectUri, redirectOK := parameters["redirect_uri"]
_, pollingIDOK := parameters["generate_polling_id"]
//generate a new base64url encoded signed with rsa encrypted state (random string) and stored on the db (plain)
var state, randomID string
if redirectOK {
state, randomID, err = CreateState(redirectUri[0], redirectOK, pollingIDOK)
} else {
state, randomID, err = CreateState("", redirectOK, pollingIDOK)
}
fmt.Println("state: ", state)
fmt.Println("randomID: ", randomID)
if err != nil {
resp.Error(w, http.StatusInternalServerError, err.Error())
return
}
//set the state on the session
session.Values["state"] = state
if err := session.Save(r, w); err != nil {
resp.Error(w, http.StatusInternalServerError, err.Error())
return
}
oauthUrl := fmt.Sprintf("https://id.paleo.bg.it/oauth/authorize?client_id=%s&response_type=code&state=%s&redirect_uri=%s", os.Getenv("OAUTH_ID"), state, os.Getenv("REDIRECT_URI"))
if pollingIDOK {
response := map[string]string{"oauthUrl": oauthUrl, "randomID": randomID}
resp.SuccessParse(w, http.StatusOK, "paleoid login url", response)
} else {
resp.Success(w, http.StatusOK, oauthUrl)
}
}
func (h Handler) CheckOauthState(w http.ResponseWriter, r *http.Request) {
pollingID, pollingIDexists := mux.Vars(r)["randomID"]
if !pollingIDexists {
resp.Error(w, http.StatusBadRequest, "no polling id found in the session")
return
}
db, err := connectToDB()
if err != nil {
resp.Errorf(w, http.StatusInternalServerError, "unable to connect to database: %s", err.Error())
return
}
id := make(map[string]interface{})
pollingCollection := db.Collection("pollingIDs")
err = pollingCollection.FindOne(context.Background(), bson.M{"id": pollingID}).Decode(&id)
if err != nil {
if err == mongo.ErrNoDocuments {
resp.Error(w, http.StatusBadRequest, "polling id not found")
} else {
resp.Errorf(w, http.StatusInternalServerError, "error getting the id from the database: %s", err.Error())
}
return
}
expDate := id["expDate"].(primitive.DateTime).Time()
if expDate.Before(time.Now()) {
_, err = pollingCollection.DeleteOne(context.TODO(), bson.M{"id": pollingID})
if err != nil {
resp.Errorf(w, http.StatusInternalServerError, "error deleting id from database: %s", err.Error())
} else {
resp.Error(w, http.StatusBadRequest, "id has expired")
}
return
}
response := make(map[string]interface{})
if !id["loginSuccessful"].(bool) {
response["loggedIn"] = false
resp.ErrorParse(w, http.StatusBadRequest, "user not logged in yet", response)
return
}
response["loggedIn"] = true
response["accessToken"] = id["accessToken"]
response["refreshToke"] = id["refreshToken"]
_, err = pollingCollection.DeleteOne(context.TODO(), bson.M{"id": pollingID})
if err != nil {
resp.Errorf(w, http.StatusInternalServerError, "error deleting id from database: %s", err.Error())
return
}
resp.SuccessParse(w, http.StatusBadRequest, "user logged in correctly, this token can't be used anymore now", response)
}
// get the user's information from the ipaas access token
func (h Handler) LoginHandler(w http.ResponseWriter, r *http.Request) {
db, err := connectToDB()
if err != nil {
resp.Error(w, http.StatusInternalServerError, err.Error())
return
}
defer db.Client().Disconnect(context.TODO())
log.Println("getting access token")
//get the access token from the cookie
cookie, err := r.Cookie("ipaas-access-token")
if err != nil {
if err == http.ErrNoCookie {
resp.Error(w, http.StatusBadRequest, "No access token")
return
}
resp.Error(w, http.StatusInternalServerError, err.Error())
return
}
accessToken := cookie.Value
log.Println("access token found:", accessToken)
//get the student generic infos from the access token
student, err := GetUserFromAccessToken(accessToken, db)
fmt.Println("studente:", student)
if err != nil {
resp.Error(w, http.StatusInternalServerError, err.Error())
return
}
resp.SuccessParse(w, http.StatusOK, "User", student)
}
// generate a new token pair from the refresh token saved in the cookies
func (h Handler) NewTokenPairFromRefreshTokenHandler(w http.ResponseWriter, r *http.Request) {
//get the refresh token from the cookie
cookie, err := r.Cookie("ipaas-refresh-token")
if err != nil {
if err == http.ErrNoCookie {
resp.Error(w, http.StatusBadRequest, "No refresh token")
return
}
resp.Error(w, http.StatusInternalServerError, err.Error())
return
}
refreshToken := cookie.Value
log.Println("refresh token found:", refreshToken)
//check if there is a refresh token
if refreshToken == "" {
resp.Error(w, 498, "No refresh token")
return
}
//connection to db
db, err := connectToDB()
if err != nil {
resp.Error(w, http.StatusInternalServerError, err.Error())
return
}
defer db.Client().Disconnect(context.TODO())
//check if the refresh token is expired
isExpired, err := IsRefreshTokenExpired(refreshToken, db)
if err != nil {
resp.Error(w, http.StatusInternalServerError, err.Error())
return
}
if isExpired {
//!should redirect to the oauth page
resp.Error(w, 498, "Refresh token is expired")
return
}
//generate a new token pair
accessToken, newRefreshToken, err := GenerateNewTokenPairFromRefreshToken(refreshToken, db)
if err != nil {
resp.Error(w, http.StatusInternalServerError, err.Error())
return
}
//delete the old tokens from the cookies
http.SetCookie(w, &http.Cookie{
Name: "ipaas-access-token",
Path: "/",
Value: "",
Expires: time.Unix(0, 0),
})
http.SetCookie(w, &http.Cookie{
Name: "ipaas-refresh-token",
Path: "/",
Value: "",
Expires: time.Unix(0, 0),
})
//set the new tokens
//!should set domain and path
http.SetCookie(w, &http.Cookie{
Name: "ipaas-access-token",
Path: "/",
Value: accessToken,
Expires: time.Now().Add(time.Hour),
})
http.SetCookie(w, &http.Cookie{
Name: "ipaas-refresh-token",
Path: "/",
Value: newRefreshToken,
Expires: time.Now().Add(time.Hour * 24 * 7),
})
//we also respond with the new tokens so the client doesn't have to depend on from the cookies
response := map[string]interface{}{
"ipaas-access-token": accessToken,
"ipaas-refresh-token": newRefreshToken,
}
resp.SuccessParse(w, http.StatusOK, "New token pair generated", response)
}
func (h Handler) ValidGithubUrlAndGetBranchesHandler(w http.ResponseWriter, r *http.Request) {
//read the body and conver to string
body, err := io.ReadAll(r.Body)
if err != nil {
resp.Errorf(w, http.StatusBadRequest, "error reading body: %v", err)
return
}
type Body struct {
Repo string `json:"repo"`
}
var bodyStruct Body
err = json.Unmarshal(body, &bodyStruct)
if err != nil {
resp.Errorf(w, http.StatusBadRequest, "error unmarshaling body: %v", err)
return
}
response := make(map[string]interface{})
//check if the url is valid
if err := h.util.ValidGithubUrl(bodyStruct.Repo); err != nil {
response["valid"] = false
resp.ErrorParse(w, http.StatusBadRequest, fmt.Sprintf("Invalid url: %v", err), response)
return
}
description, defaultBranch, branches, err := h.util.GetMetadataFromRepo(bodyStruct.Repo)
if err != nil {
resp.Error(w, http.StatusInternalServerError, err.Error())
return
}
response["defaultBranch"] = defaultBranch
response["description"] = description
response["branches"] = branches
response["valid"] = true
resp.SuccessParse(w, http.StatusOK, "valid github url", response)
}
func (h Handler) MockRegisterUserHandler(w http.ResponseWriter, r *http.Request) {
type Body struct {
//Email string `json:"email"`
Password string `json:"password"`
Name string `json:"name"`
UserID string `json:"userID"`
}
//read the body and conver to string
body, err := io.ReadAll(r.Body)
if err != nil {
resp.Errorf(w, http.StatusBadRequest, "error reading body: %v", err)
return
}
var bodyStruct Body
err = json.Unmarshal(body, &bodyStruct)
if err != nil {
resp.Errorf(w, http.StatusBadRequest, "error unmarshaling body: %v", err)
return
}
//bodyStruct.Email = strings.TrimSpace(strings.ToLower(bodyStruct.Email))
bodyStruct.Name = strings.TrimSpace(bodyStruct.Name)
if bodyStruct.Name == "" {
resp.Error(w, http.StatusBadRequest, "Name can't empty")
return
}
userIDInt, err := strconv.Atoi(bodyStruct.UserID)
if err != nil {
resp.Errorf(w, http.StatusBadRequest, "error converting userID to int: %v", err)
return
}
//connection to db
db, err := connectToDB()
if err != nil {
resp.Error(w, http.StatusInternalServerError, err.Error())
return
}
defer func(client *mongo.Client, ctx context.Context) {
err := client.Disconnect(ctx)
if err != nil {
log.Printf("[ERROR] Error disconnectiong from database: %v\n", err)
}
}(db.Client(), context.TODO())
//check if the user already exists
var student Student
err = db.Collection("users").FindOne(context.TODO(), bson.M{"userID": userIDInt}).Decode(student)
if err != nil {
if err != mongo.ErrNoDocuments {
resp.Error(w, http.StatusInternalServerError, err.Error())
return
}
}
if student.Name != "" {
resp.Error(w, http.StatusBadRequest, "User already exists")
return
}
//hash the password
hashedPassword, err := bcrypt.GenerateFromPassword([]byte(bodyStruct.Password), 8)
if err != nil {
resp.Error(w, http.StatusInternalServerError, err.Error())
return
}
//create the user
mockUser := struct {
//Email string `bson:"email"`
UserID int `bson:"userID"`
Password string `bson:"password"`
Name string `bson:"name"`
Pfp string `bson:"pfp"`
CreationDate time.Time `bson:"creationDate"`
IsMock bool `bson:"isMock"`
}{
UserID: userIDInt,
//Email: bodyStruct.Email,
Password: string(hashedPassword),
Name: bodyStruct.Name,
Pfp: fmt.Sprintf("https://avatars.dicebear.com/api/bottts/%d.svg", userIDInt),
IsMock: true,
CreationDate: time.Now(),
}
//insert the user
_, err = db.Collection("users").InsertOne(context.TODO(), mockUser)
if err != nil {
resp.Error(w, http.StatusInternalServerError, err.Error())
return
}
//create the access token
accessToken, refreshToken, err := GenerateTokenPair(userIDInt, db)
if err != nil {
resp.Error(w, http.StatusInternalServerError, err.Error())
return
}
//set the cookies
http.SetCookie(w, &http.Cookie{
Name: "ipaas-access-token",
Path: "/",
Value: accessToken,
Expires: time.Now().Add(time.Hour),
})
http.SetCookie(w, &http.Cookie{
Name: "ipaas-refresh-token",
Path: "/",
Value: refreshToken,
Expires: time.Now().Add(time.Hour * 24 * 7),
})
resp.Success(w, http.StatusCreated, "Mock user created")
}
func (h Handler) MockLoginHandler(w http.ResponseWriter, r *http.Request) {
type Body struct {
//Email string `json:"email"`
Password string `json:"password"`
Name string `json:"user"`
}
//read the body and conver to string
body, err := io.ReadAll(r.Body)
if err != nil {
resp.Errorf(w, http.StatusBadRequest, "error reading body: %v", err)
return
}
var bodyStruct Body
err = json.Unmarshal(body, &bodyStruct)
if err != nil {
resp.Errorf(w, http.StatusBadRequest, "error unmarshaling body: %v", err)
return
}
//bodyStruct.Email = strings.TrimSpace(strings.ToLower(bodyStruct.Email))
bodyStruct.Name = strings.TrimSpace(bodyStruct.Name)
if err != nil {
resp.Errorf(w, http.StatusBadRequest, "error converting userID to int: %v", err)
return
}
//connection to db
db, err := connectToDB()
if err != nil {
resp.Error(w, http.StatusInternalServerError, err.Error())
return
}
defer func(client *mongo.Client, ctx context.Context) {
err := client.Disconnect(ctx)
if err != nil {
log.Printf("[ERROR] Error disconnectiong from database: %v\n", err)
}
}(db.Client(), context.TODO())
hashedPassword, err := bcrypt.GenerateFromPassword([]byte(bodyStruct.Password), 8)
if err != nil {
resp.Error(w, http.StatusInternalServerError, err.Error())
return
}
//check if the user already exists
var student Student
err = db.Collection("users").FindOne(context.TODO(), bson.M{"isMock": true, "name": bodyStruct.Name, "password": string(hashedPassword)}).Decode(student)
if err != nil {
if err != mongo.ErrNoDocuments {
resp.Error(w, http.StatusInternalServerError, err.Error())
return
}
}
if strconv.Itoa(student.ID) == "" {
resp.Error(w, http.StatusBadRequest, "User does not exist")
return
}
//create the access token
accessToken, refreshToken, err := GenerateTokenPair(student.ID, db)
if err != nil {
resp.Error(w, http.StatusInternalServerError, err.Error())
return
}
//set the cookies
http.SetCookie(w, &http.Cookie{
Name: "ipaas-access-token",
Path: "/",
Value: accessToken,
Expires: time.Now().Add(time.Hour),
})
http.SetCookie(w, &http.Cookie{
Name: "ipaas-refresh-token",
Path: "/",
Value: refreshToken,
Expires: time.Now().Add(time.Hour * 24 * 7),
})
http.Redirect(w, r, "/user/", http.StatusSeeOther)
}
//!===========================PAGES HANDLERS
// constructor
func NewHandler() (*Handler, error) {
var h Handler
var err error
h.sess = sessions.NewCookieStore([]byte(os.Getenv("SESSION_KEY")))
h.cc, err = NewContainerController()
if err != nil {
return nil, err
}
h.util, err = NewUtil(h.cc.ctx)
if err != nil {
return nil, err
}
return &h, nil
}