umami/pages/api/collect.ts

119 lines
3.0 KiB
TypeScript
Raw Normal View History

import isbot from 'isbot';
import ipaddr from 'ipaddr.js';
2023-02-08 01:29:25 +01:00
import { createToken, ok, send, badRequest, forbidden } from 'next-basics';
import { savePageView, saveEvent } from 'queries';
import { useCors, useSession } from 'lib/middleware';
2022-12-28 05:20:44 +01:00
import { getJsonBody, getIpAddress } from 'lib/detect';
import { secret } from 'lib/crypto';
2022-11-15 22:21:14 +01:00
import { NextApiRequest, NextApiResponse } from 'next';
2023-02-08 01:29:25 +01:00
import { Resolver } from 'dns/promises';
2022-11-15 22:21:14 +01:00
export interface NextApiRequestCollect extends NextApiRequest {
session: {
id: string;
websiteId: string;
hostname: string;
browser: string;
os: string;
device: string;
screen: string;
language: string;
country: string;
subdivision1: string;
subdivision2: string;
city: string;
2022-11-15 22:21:14 +01:00
};
}
export default async (req: NextApiRequestCollect, res: NextApiResponse) => {
await useCors(req, res);
if (isbot(req.headers['user-agent']) && !process.env.DISABLE_BOT_CHECK) {
2023-02-08 01:29:25 +01:00
return ok(res);
}
2022-11-23 00:06:52 +01:00
const { type, payload } = getJsonBody(req);
2023-03-01 19:53:57 +01:00
const { referrer, eventName, eventData, pageTitle } = payload;
2022-11-23 00:06:52 +01:00
let { url } = payload;
// Validate eventData is JSON
2022-12-13 05:46:43 +01:00
if (eventData && !(typeof eventData === 'object' && !Array.isArray(eventData))) {
2022-11-23 00:06:52 +01:00
return badRequest(res, 'Event Data must be in the form of a JSON Object.');
}
2022-12-29 23:51:51 +01:00
// Validate eventData is less than 100kB
if (eventData && new TextEncoder().encode(eventData).length / 1024 > 100) {
return badRequest(res, 'Event Data exceeds maximum size of 100 kB.');
}
const ignoreIps = process.env.IGNORE_IP;
const ignoreHostnames = process.env.IGNORE_HOSTNAME;
if (ignoreIps || ignoreHostnames) {
const ips = [];
if (ignoreIps) {
ips.push(...ignoreIps.split(',').map(n => n.trim()));
}
if (ignoreHostnames) {
const resolver = new Resolver();
const promises = ignoreHostnames
.split(',')
.map(n => resolver.resolve4(n.trim()).catch(() => {}));
await Promise.all(promises).then(resolvedIps => {
2023-02-08 01:29:25 +01:00
ips.push(...resolvedIps.filter(n => n).flatMap(n => n as string[]));
});
}
const clientIp = getIpAddress(req);
const blocked = ips.find(ip => {
if (ip === clientIp) return true;
// CIDR notation
if (ip.indexOf('/') > 0) {
const addr = ipaddr.parse(clientIp);
const range = ipaddr.parseCIDR(ip);
if (addr.kind() === range[0].kind() && addr.match(range)) return true;
}
return false;
});
if (blocked) {
return forbidden(res);
}
}
await useSession(req, res);
const session = req.session;
if (process.env.REMOVE_TRAILING_SLASH) {
url = url.replace(/\/$/, '');
}
if (type === 'pageview') {
2023-03-01 19:53:57 +01:00
await savePageView({ ...session, url, referrer, pageTitle });
} else if (type === 'event') {
await saveEvent({
...session,
url,
2022-11-15 22:21:14 +01:00
referrer,
2023-03-01 19:53:57 +01:00
pageTitle,
eventName,
eventData,
});
} else {
return badRequest(res);
}
const token = createToken(session, secret());
return send(res, token);
2020-07-17 10:03:38 +02:00
};