2016-11-24 13:18:40 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2016-12-11 10:53:03 +00:00
|
|
|
"github.com/dannyvankooten/ana/count"
|
2016-11-24 13:18:40 +00:00
|
|
|
"encoding/json"
|
|
|
|
)
|
|
|
|
|
|
|
|
// URL: /api/screen-resolutions
|
|
|
|
var GetScreenResolutionsHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
2016-11-26 16:19:15 +00:00
|
|
|
before, after := getRequestedPeriods(r)
|
2016-11-24 13:18:40 +00:00
|
|
|
|
|
|
|
// get total
|
2016-12-11 10:57:51 +00:00
|
|
|
total := count.Visitors(before, after)
|
2016-11-24 13:18:40 +00:00
|
|
|
|
|
|
|
// get rows
|
2016-12-11 11:52:10 +00:00
|
|
|
results := count.Custom(`
|
2016-11-24 13:18:40 +00:00
|
|
|
SELECT
|
2016-12-10 13:16:05 +00:00
|
|
|
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
|
2016-12-11 11:52:10 +00:00
|
|
|
LIMIT ?`, before, after, getRequestedLimit(r), total)
|
2016-11-24 13:18:40 +00:00
|
|
|
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
json.NewEncoder(w).Encode(results)
|
|
|
|
})
|