fathom/api/countries.go

31 lines
789 B
Go
Raw Normal View History

package api
import (
2016-12-11 13:50:01 +00:00
"encoding/json"
"github.com/dannyvankooten/ana/count"
"net/http"
)
// URL: /api/countries
var GetCountriesHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
2016-12-11 13:50:01 +00:00
before, after := getRequestedPeriods(r)
2016-12-11 13:50:01 +00:00
// get total
total := count.Visitors(before, after)
2016-12-11 13:50:01 +00:00
// get rows
results := count.Custom(`
SELECT
v.country,
COUNT(DISTINCT(pv.visitor_id)) AS count
FROM pageviews pv
LEFT JOIN visitors v ON v.id = pv.visitor_id
WHERE UNIX_TIMESTAMP(pv.timestamp) <= ? AND UNIX_TIMESTAMP(pv.timestamp) >= ? AND v.country IS NOT NULL
GROUP BY v.country
2016-11-24 13:37:41 +00:00
ORDER BY count DESC
LIMIT ?`, before, after, getRequestedLimit(r), total)
2016-12-11 13:50:01 +00:00
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(results)
})