This repository was archived by the owner on Oct 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
74 lines (65 loc) · 1.76 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
package main
import (
"fmt"
"log"
"net/http"
"os"
"text/template"
"github.com/joho/godotenv"
"github.com/passageidentity/passage-go"
)
func main() {
err := godotenv.Load(".env")
if err != nil {
log.Fatal("Failed to read .env variables")
}
port := os.Getenv("PORT")
if port == "" {
log.Fatal("PORT environment variable required")
}
http.HandleFunc("/", indexHandler)
http.HandleFunc("/dashboard", dashboardHandler)
http.Handle("/assets/", http.FileServer(http.Dir("./templates")))
http.ListenAndServe(":"+port, nil)
}
func indexHandler(w http.ResponseWriter, r *http.Request) {
inputArgs := map[string]interface{}{"appID": os.Getenv("PASSAGE_APP_ID")}
outputHTML(w, "templates/index.html", inputArgs)
}
func outputHTML(w http.ResponseWriter, filename string, data interface{}) {
t, err := template.ParseFiles(filename)
if err != nil {
http.Error(w, err.Error(), 500)
return
}
if err := t.Execute(w, data); err != nil {
http.Error(w, err.Error(), 500)
return
}
}
func dashboardHandler(w http.ResponseWriter, r *http.Request) {
// Authenticate this request using the Passage SDK.
psg, err := passage.New(os.Getenv("PASSAGE_APP_ID"), &passage.Config{APIKey: os.Getenv("PASSAGE_API_KEY")})
if err != nil {
fmt.Println("Cannot create psg: ", err)
}
userID, err := psg.AuthenticateRequest(r)
if err != nil {
fmt.Println("Authentication Failed:", err)
http.ServeFile(w, r, "templates/unauthorized.html")
return
}
user, err := psg.GetUser(userID)
if err != nil {
fmt.Println("Could not get user: ", err)
return
}
var identifier string
if user.Email != "" {
identifier = user.Email
} else {
identifier = user.Phone
}
inputArgs := map[string]interface{}{"identifier": identifier}
outputHTML(w, "templates/dashboard.html", inputArgs)
}