-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
78 lines (61 loc) · 1.73 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
package main
import (
"fmt"
"net/http"
"os"
"path/filepath"
"runtime"
auth "./auth"
db "./database"
download "./download"
private "./private"
public "./static"
upload "./upload"
utils "./utils"
"github.com/go-chi/chi"
cors "github.com/go-chi/cors"
)
func init() {
// establish database connection
go db.EstablishConnection()
}
// welcome router
func welcome(w http.ResponseWriter, r *http.Request) {
username := "saiumesh"
w.Write([]byte(fmt.Sprintf("Article %s has been created", username)))
}
func main() {
r := chi.NewRouter()
n := runtime.NumCPU();
runtime.GOMAXPROCS(n);
cors := cors.New(cors.Options{
AllowedOrigins: []string{"*"}, // you can add routes here www.example.com
AllowedMethods: []string{"GET", "POST", "PUT", "DELETE", "OPTIONS"},
AllowedHeaders: []string{"Accept", "Authorization", "Content-Type", "X-CSRF-Token"},
ExposedHeaders: []string{"Link"},
AllowCredentials: true,
MaxAge: 300, // Maximum value not ignored by any of major browsers
})
r.Use(cors.Handler)
r.NotFound(utils.Errorhandler)
r.Get("/", welcome)
// sending static files
workDir, _ := os.Getwd()
filesDir := filepath.Join(workDir, "public")
// now visit http://localhost:4321/public/
// it will serve index.html
// for http://localhost:4321/public/someother.html
// it will serve someother.html file
public.FileServer(r, "/public", http.Dir(filesDir))
// all auth routers
r.Mount("/auth", auth.Handler())
// all upload files
r.Mount("/upload", upload.Handler())
r.Get("/downloadFile", download.SmallFiles)
// private routes which requires jwt token
r.Mount("/private", private.Handler())
err := http.ListenAndServe(":4321", r)
if err != nil {
fmt.Println("Error in creating server ", err)
}
}