fathom/ana.go

38 lines
1.1 KiB
Go

package main
import (
"net/http"
"os"
"log"
"github.com/dannyvankooten/ana/core"
"github.com/dannyvankooten/ana/api"
"github.com/gorilla/mux"
"github.com/gorilla/handlers"
"github.com/joho/godotenv"
)
func main() {
// test .env file
err := godotenv.Load()
if err != nil {
log.Fatal("Error loading .env file")
}
db := core.SetupDatabaseConnection()
defer db.Close()
r := mux.NewRouter()
// register routes
r.Handle("/token", api.GetTokenHandler).Methods("GET")
r.HandleFunc("/collect", api.CollectHandler).Methods("GET")
r.Handle("/api/visits/count/day", api.Authorize(api.GetVisitsDayCountHandler)).Methods("GET")
r.Handle("/api/visits/count/realtime", api.Authorize(api.GetVisitsRealtimeCount)).Methods("GET")
r.Handle("/api/visits", api.Authorize(api.GetVisitsHandler)).Methods("GET")
r.Handle("/api/pageviews", api.Authorize(api.GetPageviewsHandler)).Methods("GET")
r.PathPrefix("/static/").Handler(http.StripPrefix("/static/", http.FileServer(http.Dir("./static/"))))
r.Handle("/", http.FileServer(http.Dir("./views/")))
http.ListenAndServe(":8080", handlers.LoggingHandler(os.Stdout, r))
}