-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
154 lines (129 loc) · 4.16 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
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
package main
import (
"flag"
"net/http"
_ "net/http/pprof"
"github.com/NYTimes/gziphandler"
"github.com/tedyst/spotifyutils/api/playlistview"
"github.com/tedyst/spotifyutils/api/utils"
"github.com/weaveworks/promrus"
"gorm.io/plugin/prometheus"
log "github.com/sirupsen/logrus"
"github.com/wader/gormstore/v2"
"github.com/tedyst/spotifyutils/api/compare"
"github.com/tedyst/spotifyutils/api/comparenousername"
"github.com/tedyst/spotifyutils/api/docs"
"github.com/tedyst/spotifyutils/api/recenttracks"
"github.com/tedyst/spotifyutils/api/settings"
"github.com/tedyst/spotifyutils/api/trackapi"
"github.com/tedyst/spotifyutils/api/top"
"github.com/tedyst/spotifyutils/api/topsince"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/tedyst/spotifyutils/api/status"
"github.com/gorilla/csrf"
"github.com/gorilla/mux"
"github.com/tedyst/spotifyutils/auth"
"github.com/tedyst/spotifyutils/config"
)
func main() {
// Flag parsing
flag.Parse()
if !(*config.MockExternalCalls) {
config.SpotifyAPI.SetAuthInfo(*config.SpotifyClientID, *config.SpotifyClientSecret)
} else {
log.Warn("MockExternalCalls is enabled! No external service will be used!")
if *config.MockUser == "" {
log.Warn("MockUser is not set! You will not be able to login!")
}
}
if *config.Debug {
log.SetLevel(log.DebugLevel)
csrf.Secure(false)
}
log.SetReportCaller(true)
initCache()
initDB()
// Setup session store
sessionOptions := gormstore.Options{
TableName: "sessions",
}
config.SessionStore = gormstore.NewOptions(config.DB, sessionOptions, config.Secret)
config.SessionStore.SessionOpts.Secure = true
config.SessionStore.SessionOpts.SameSite = http.SameSiteStrictMode
config.SessionStore.SessionOpts.HttpOnly = true
m := mux.NewRouter()
m.HandleFunc("/logout", auth.Logout)
api := m.PathPrefix("/api").Subrouter()
api.Use(limitAPIRequests)
api.HandleFunc("", docs.DocsHandler)
api.HandleFunc("/swagger.json", docs.SwaggerJSONHandler)
api.HandleFunc("/auth", auth.Auth)
api.HandleFunc("/auth-url", auth.AuthURL)
api.HandleFunc("/logout", auth.Logout)
api.HandleFunc("/status", status.StatusHandler)
loggedin := api.NewRoute().Subrouter()
loggedin.Use(auth.Middleware)
loggedin.HandleFunc("/top", top.Handler)
loggedin.HandleFunc("/playlist/{playlist}", playlistview.Handler)
loggedin.HandleFunc("/top/old/{unixdate}", topsince.Handler)
loggedin.HandleFunc("/compare", comparenousername.Handler)
loggedin.HandleFunc("/recent", recenttracks.Handler)
loggedin.HandleFunc("/track/{track}", trackapi.Handler)
loggedin.HandleFunc("/compare/{code}", compare.Handler)
loggedin.HandleFunc("/settings", settings.Handler)
// Serve react app
spa := spaHandler{
buildPath: *config.BuildPath,
}
m.PathPrefix("/").Handler(spa)
// Setup CSRF protection
opts := []csrf.Option{}
opts = append(opts, csrf.ErrorHandler(http.HandlerFunc(
func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
utils.ErrorString(w, r, "CSRF token mismatch")
},
)))
if *config.Debug {
opts = append(opts, csrf.Secure(false))
}
opts = append(opts, csrf.Path("/"))
opts = append(opts, csrf.SameSite(csrf.SameSiteStrictMode))
CSRF := csrf.Protect(config.Secret, opts...)
// Enable pprof
if *config.Debug {
go func() {
log.Println(http.ListenAndServe(":6060", nil))
}()
}
// Setup metrics
if *config.Metrics {
hook := promrus.MustNewPrometheusHook()
log.AddHook(hook)
if config.IsMySQL {
config.DB.Use(prometheus.New(prometheus.Config{
DBName: "spotifyutils",
StartServer: false,
MetricsCollector: []prometheus.MetricsCollector{
&prometheus.MySQL{VariableNames: []string{"threads_running"}},
},
}))
} else {
config.DB.Use(prometheus.New(prometheus.Config{
DBName: "spotifyutils",
StartServer: false,
}))
}
go func() {
// http.Handle("/metrics", promhttp.Handler())
http.ListenAndServe(":5001", promhttp.Handler())
}()
}
log.Infof("Starting server on address http://%s", *config.Address)
m.Use(CSRF)
m.Use(securityHeaders)
m.Use(gziphandler.GzipHandler)
if err := http.ListenAndServe(*config.Address, timingMiddleware(m)); err != nil {
log.Fatal(err)
}
}