fathom/api/screen-resolutions.go

31 lines
800 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/screen-resolutions
var GetScreenResolutionsHandler = 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.screen_resolution,
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) >= ?
GROUP BY v.screen_resolution
2016-11-25 12:38:20 +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)
})