2016-11-21 12:24:50 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2016-11-22 20:02:06 +00:00
|
|
|
"os"
|
2016-11-22 21:33:50 +00:00
|
|
|
"log"
|
2016-12-08 08:16:43 +00:00
|
|
|
"github.com/dannyvankooten/ana/db"
|
2016-11-21 12:24:50 +00:00
|
|
|
"github.com/dannyvankooten/ana/api"
|
2016-11-22 19:57:16 +00:00
|
|
|
"github.com/gorilla/mux"
|
2016-11-22 20:02:06 +00:00
|
|
|
"github.com/gorilla/handlers"
|
2016-11-22 21:33:50 +00:00
|
|
|
"github.com/joho/godotenv"
|
2016-11-21 12:24:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2016-11-26 14:39:29 +00:00
|
|
|
// load .env file
|
2016-11-22 21:33:50 +00:00
|
|
|
err := godotenv.Load()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal("Error loading .env file")
|
|
|
|
}
|
|
|
|
|
2016-12-08 08:16:43 +00:00
|
|
|
conn := db.SetupDatabaseConnection()
|
|
|
|
defer conn.Close()
|
2016-11-22 19:57:16 +00:00
|
|
|
|
2016-12-08 17:44:49 +00:00
|
|
|
db.Seed(1000)
|
|
|
|
|
2016-11-22 21:33:50 +00:00
|
|
|
// register routes
|
2016-12-08 08:16:43 +00:00
|
|
|
r := mux.NewRouter()
|
2016-11-22 21:33:50 +00:00
|
|
|
r.HandleFunc("/collect", api.CollectHandler).Methods("GET")
|
2016-12-08 17:44:49 +00:00
|
|
|
r.Handle("/api/session", api.LoginHandler).Methods("POST")
|
|
|
|
r.Handle("/api/session", api.LogoutHandler).Methods("DELETE")
|
2016-11-26 14:39:29 +00:00
|
|
|
r.Handle("/api/visits/count", api.Authorize(api.GetVisitsCountHandler)).Methods("GET")
|
2016-12-05 20:48:33 +00:00
|
|
|
r.Handle("/api/visits/count/group/{period}", api.Authorize(api.GetVisitsPeriodCountHandler)).Methods("GET")
|
2016-11-26 14:39:29 +00:00
|
|
|
r.Handle("/api/visits/count/realtime", api.Authorize(api.GetVisitsRealtimeCountHandler)).Methods("GET")
|
2016-11-22 21:33:50 +00:00
|
|
|
r.Handle("/api/visits", api.Authorize(api.GetVisitsHandler)).Methods("GET")
|
2016-11-26 14:39:29 +00:00
|
|
|
r.Handle("/api/pageviews/count", api.Authorize(api.GetPageviewsCountHandler)).Methods("GET")
|
2016-12-05 20:48:33 +00:00
|
|
|
r.Handle("/api/pageviews/count/group/{period}", api.Authorize(api.GetPageviewsPeriodCountHandler)).Methods("GET")
|
2016-11-22 21:33:50 +00:00
|
|
|
r.Handle("/api/pageviews", api.Authorize(api.GetPageviewsHandler)).Methods("GET")
|
2016-11-24 12:55:59 +00:00
|
|
|
r.Handle("/api/languages", api.Authorize(api.GetLanguagesHandler)).Methods("GET")
|
2016-11-24 13:18:40 +00:00
|
|
|
r.Handle("/api/screen-resolutions", api.Authorize(api.GetScreenResolutionsHandler)).Methods("GET")
|
|
|
|
r.Handle("/api/countries", api.Authorize(api.GetCountriesHandler)).Methods("GET")
|
2016-11-24 13:37:41 +00:00
|
|
|
r.Handle("/api/browsers", api.Authorize(api.GetBrowsersHandler)).Methods("GET")
|
2016-11-25 15:03:47 +00:00
|
|
|
|
2016-11-22 21:33:50 +00:00
|
|
|
r.PathPrefix("/static/").Handler(http.StripPrefix("/static/", http.FileServer(http.Dir("./static/"))))
|
2016-11-25 15:03:47 +00:00
|
|
|
r.Path("/tracker.js").Handler(http.FileServer(http.Dir("./static/js/")))
|
2016-11-22 21:33:50 +00:00
|
|
|
r.Handle("/", http.FileServer(http.Dir("./views/")))
|
2016-11-22 19:57:16 +00:00
|
|
|
|
2016-11-22 21:33:50 +00:00
|
|
|
http.ListenAndServe(":8080", handlers.LoggingHandler(os.Stdout, r))
|
2016-11-21 12:24:50 +00:00
|
|
|
}
|