-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
66 lines (55 loc) · 1.63 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
package main
import (
"github.com/gorilla/mux"
"github.com/gorilla/sessions"
"github.com/joho/godotenv"
"github.com/lmittmann/tint"
"golang-encrypted-filesharing/handlers"
"golang-encrypted-filesharing/middleware"
"golang-encrypted-filesharing/mongodb"
"html/template"
"log/slog"
"net/http"
"os"
"time"
)
const (
tlsPort = ":8080"
certificate = "server/ssl/cert.pem"
key = "server/ssl/key.pem"
)
func main() {
//Connect to the database
coll, client := mongodb.Connect()
defer mongodb.Disconnect(client)
//Other stuff
if err := godotenv.Load(); err != nil {
slog.Error(err.Error())
os.Exit(1)
}
logger := slog.New(tint.NewHandler(os.Stdout, nil))
logger.Info("Starting encrypted file sharing system...")
tpl := template.Must(template.New("").ParseGlob("./templates/*.gohtml"))
store := sessions.NewCookieStore([]byte("example-key"))
h := handlers.NewHandlers(tpl, logger, coll, store)
m := middleware.New(logger)
r := mux.NewRouter()
r.Use(m.Logger)
r.HandleFunc("/", h.Upload).Methods("GET")
r.HandleFunc("/", h.UploadFile).Methods("POST")
r.HandleFunc("/files/{key}", h.Download).Methods("GET")
r.HandleFunc("/download/{id}", h.DownloadFile).Methods("GET")
r.HandleFunc("/auth", h.Authenticate).Methods("POST")
r.HandleFunc("/auth/token", h.AuthToken).Methods("POST")
r.PathPrefix("/static/").Handler(http.StripPrefix("/static/", http.FileServer(http.Dir("static"))))
srv := &http.Server{
Handler: r,
Addr: tlsPort,
WriteTimeout: 15 * time.Second,
ReadTimeout: 15 * time.Second,
}
err := srv.ListenAndServeTLS(certificate, key)
if err != nil {
logger.Error(err.Error())
}
}