import * as yup from 'yup'; import { canViewWebsite } from 'lib/auth'; import { useAuth, useCors, useValidate } from 'lib/middleware'; import { getRequestFilters, getRequestDateRange } from 'lib/request'; import { NextApiRequestQueryBody, WebsitePageviews } from 'lib/types'; import { NextApiResponse } from 'next'; import { methodNotAllowed, ok, unauthorized } from 'next-basics'; import { getPageviewStats, getSessionStats } from 'queries'; import { TimezoneTest, UnitTypeTest } from 'lib/yup'; import { getCompareDate } from 'lib/date'; export interface WebsitePageviewRequestQuery { websiteId: string; startAt: number; endAt: number; unit?: string; timezone?: string; url?: string; referrer?: string; host?: string; title?: string; os?: string; browser?: string; device?: string; country?: string; region: string; city?: string; compare?: string; } const schema = { GET: yup.object().shape({ websiteId: yup.string().uuid().required(), startAt: yup.number().required(), endAt: yup.number().required(), unit: UnitTypeTest, timezone: TimezoneTest, url: yup.string(), referrer: yup.string(), host: yup.string(), title: yup.string(), os: yup.string(), browser: yup.string(), device: yup.string(), country: yup.string(), region: yup.string(), city: yup.string(), compare: yup.string(), }), }; export default async ( req: NextApiRequestQueryBody, res: NextApiResponse, ) => { await useCors(req, res); await useAuth(req, res); await useValidate(schema, req, res); const { websiteId, timezone, compare } = req.query; if (req.method === 'GET') { if (!(await canViewWebsite(req.auth, websiteId))) { return unauthorized(res); } const { startDate, endDate, unit } = await getRequestDateRange(req); const filters = { ...getRequestFilters(req), startDate, endDate, timezone, unit, }; const [pageviews, sessions] = await Promise.all([ getPageviewStats(websiteId, filters), getSessionStats(websiteId, filters), ]); if (compare) { const { startDate: compareStartDate, endDate: compareEndDate } = getCompareDate( compare, startDate, endDate, ); const [comparePageviews, compareSessions] = await Promise.all([ getPageviewStats(websiteId, { ...filters, startDate: compareStartDate, endDate: compareEndDate, }), getSessionStats(websiteId, { ...filters, startDate: compareStartDate, endDate: compareEndDate, }), ]); return ok(res, { pageviews, sessions, startDate, endDate, compare: { pageviews: comparePageviews, sessions: compareSessions, startDate: compareStartDate, endDate: compareEndDate, }, }); } return ok(res, { pageviews, sessions }); } return methodNotAllowed(res); };