umami/lib/clickhouse.ts

147 lines
3.1 KiB
TypeScript
Raw Normal View History

2022-08-26 07:04:32 +02:00
import { ClickHouse } from 'clickhouse';
import dateFormat from 'dateformat';
2022-08-28 06:38:35 +02:00
import debug from 'debug';
import { CLICKHOUSE } from 'lib/db';
2023-08-04 22:18:30 +02:00
import { QueryFilters } from './types';
import { FILTER_COLUMNS, IGNORED_FILTERS } from './constants';
import { loadWebsite } from './load';
import { maxDate } from './date';
2022-08-28 06:38:35 +02:00
export const CLICKHOUSE_DATE_FORMATS = {
minute: '%Y-%m-%d %H:%M:00',
hour: '%Y-%m-%d %H:00:00',
day: '%Y-%m-%d',
month: '%Y-%m-01',
year: '%Y-01-01',
};
2022-08-29 05:20:54 +02:00
const log = debug('umami:clickhouse');
2022-08-26 07:04:32 +02:00
let clickhouse: ClickHouse;
2022-10-07 00:00:16 +02:00
const enabled = Boolean(process.env.CLICKHOUSE_URL);
2022-08-26 07:04:32 +02:00
function getClient() {
2022-08-28 06:38:35 +02:00
const {
hostname,
port,
pathname,
username = 'default',
password,
} = new URL(process.env.CLICKHOUSE_URL);
const client = new ClickHouse({
url: hostname,
port: Number(port),
2022-08-26 07:04:32 +02:00
format: 'json',
config: {
2022-08-28 06:38:35 +02:00
database: pathname.replace('/', ''),
2022-08-26 07:04:32 +02:00
},
2022-08-28 06:38:35 +02:00
basicAuth: password ? { username, password } : null,
2022-08-26 07:04:32 +02:00
});
2022-08-28 06:38:35 +02:00
if (process.env.NODE_ENV !== 'production') {
2022-08-29 19:47:01 +02:00
global[CLICKHOUSE] = client;
2022-08-28 06:38:35 +02:00
}
2022-08-26 07:04:32 +02:00
2022-08-28 06:38:35 +02:00
log('Clickhouse initialized');
2022-08-26 07:04:32 +02:00
2022-08-28 06:38:35 +02:00
return client;
}
2022-08-26 07:04:32 +02:00
2022-08-26 07:43:22 +02:00
function getDateStringQuery(data, unit) {
2022-08-26 07:04:32 +02:00
return `formatDateTime(${data}, '${CLICKHOUSE_DATE_FORMATS[unit]}')`;
}
function getDateQuery(field, unit, timezone?) {
2022-08-26 07:04:32 +02:00
if (timezone) {
return `date_trunc('${unit}', ${field}, '${timezone}')`;
}
return `date_trunc('${unit}', ${field})`;
}
2022-08-26 07:43:22 +02:00
function getDateFormat(date) {
2022-08-26 07:04:32 +02:00
return `'${dateFormat(date, 'UTC:yyyy-mm-dd HH:MM:ss')}'`;
}
2023-08-02 23:21:13 +02:00
function getFilterQuery(filters = {}) {
2022-08-26 07:04:32 +02:00
const query = Object.keys(filters).reduce((arr, key) => {
const filter = filters[key];
2023-08-04 22:18:30 +02:00
if (filter !== undefined && !IGNORED_FILTERS.includes(key)) {
2023-04-02 00:44:30 +02:00
const column = FILTER_COLUMNS[key] || key;
arr.push(`and ${column} = {${key}:String}`);
2022-08-26 07:04:32 +02:00
}
2023-08-04 09:51:52 +02:00
if (key === 'referrer') {
2023-08-04 22:18:30 +02:00
arr.push('and referrer_domain != {websiteDomain:String}');
2023-08-04 09:51:52 +02:00
}
2022-08-26 07:04:32 +02:00
return arr;
}, []);
return query.join('\n');
}
2023-08-04 22:18:30 +02:00
async function parseFilters(
websiteId: string,
filters: QueryFilters & { [key: string]: any } = {},
) {
const website = await loadWebsite(websiteId);
2022-08-26 07:04:32 +02:00
return {
2023-08-02 23:21:13 +02:00
filterQuery: getFilterQuery(filters),
2023-08-04 22:18:30 +02:00
params: {
...filters,
websiteId,
startDate: maxDate(filters.startDate, website.resetAt),
websiteDomain: website.domain,
},
2022-08-26 07:04:32 +02:00
};
}
2023-07-25 08:06:16 +02:00
async function rawQuery<T>(query: string, params: object = {}): Promise<T> {
2022-08-29 05:20:54 +02:00
if (process.env.LOG_QUERY) {
2023-03-30 18:44:04 +02:00
log('QUERY:\n', query);
log('PARAMETERS:\n', params);
2022-08-26 07:04:32 +02:00
}
2022-10-07 00:00:16 +02:00
await connect();
2023-05-12 01:42:58 +02:00
return clickhouse.query(query, { params }).toPromise() as Promise<T>;
2022-08-26 07:04:32 +02:00
}
2022-08-26 07:43:22 +02:00
async function findUnique(data) {
2022-08-26 07:04:32 +02:00
if (data.length > 1) {
throw `${data.length} records found when expecting 1.`;
}
return findFirst(data);
2022-08-26 07:04:32 +02:00
}
2022-08-26 07:20:30 +02:00
2022-08-26 07:43:22 +02:00
async function findFirst(data) {
2022-08-26 07:20:30 +02:00
return data[0] ?? null;
}
2022-08-26 07:43:22 +02:00
2022-10-07 00:00:16 +02:00
async function connect() {
2022-12-27 09:00:31 +01:00
if (enabled && !clickhouse) {
2022-10-07 00:00:16 +02:00
clickhouse = process.env.CLICKHOUSE_URL && (global[CLICKHOUSE] || getClient());
}
return clickhouse;
}
2022-08-28 06:38:35 +02:00
2022-08-26 07:43:22 +02:00
export default {
2022-10-07 00:00:16 +02:00
enabled,
2022-08-28 06:38:35 +02:00
client: clickhouse,
log,
2022-10-07 00:00:16 +02:00
connect,
2022-08-26 07:43:22 +02:00
getDateStringQuery,
getDateQuery,
getDateFormat,
getFilterQuery,
parseFilters,
findUnique,
findFirst,
2022-08-29 05:20:54 +02:00
rawQuery,
2022-08-26 07:43:22 +02:00
};