mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
306 lines
7.4 KiB
JavaScript
306 lines
7.4 KiB
JavaScript
import { PrismaClient } from '@prisma/client';
|
|
import { ClickHouse } from 'clickhouse';
|
|
import chalk from 'chalk';
|
|
import {
|
|
MYSQL,
|
|
MYSQL_DATE_FORMATS,
|
|
POSTGRESQL,
|
|
POSTGRESQL_DATE_FORMATS,
|
|
CLICKHOUSE,
|
|
RELATIONAL,
|
|
FILTER_IGNORED,
|
|
} from 'lib/constants';
|
|
import moment from 'moment-timezone';
|
|
import { CLICKHOUSE_DATE_FORMATS } from './constants';
|
|
|
|
BigInt.prototype.toJSON = function () {
|
|
return Number(this);
|
|
};
|
|
|
|
const options = {
|
|
log: [
|
|
{
|
|
emit: 'event',
|
|
level: 'query',
|
|
},
|
|
],
|
|
};
|
|
|
|
function logQuery(e) {
|
|
console.log(chalk.yellow(e.params), '->', e.query, chalk.greenBright(`${e.duration}ms`));
|
|
}
|
|
|
|
function getPrismaClient(options) {
|
|
const prisma = new PrismaClient(options);
|
|
|
|
if (process.env.LOG_QUERY) {
|
|
prisma.$on('query', logQuery);
|
|
}
|
|
|
|
return prisma;
|
|
}
|
|
|
|
function getClickhouseClient() {
|
|
if (!process.env.ANALYTICS_URL) {
|
|
return null;
|
|
}
|
|
|
|
const url = new URL(process.env.ANALYTICS_URL);
|
|
const database = url.pathname.replace('/', '');
|
|
|
|
return new ClickHouse({
|
|
url: url.hostname,
|
|
port: Number(url.port),
|
|
basicAuth: url.password
|
|
? {
|
|
username: url.username || 'default',
|
|
password: url.password,
|
|
}
|
|
: null,
|
|
format: 'json',
|
|
config: {
|
|
database,
|
|
},
|
|
});
|
|
}
|
|
|
|
const prisma = global.prisma || getPrismaClient(options);
|
|
const clickhouse = global.clickhouse || getClickhouseClient();
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
global.prisma = prisma;
|
|
global.clickhouse = clickhouse;
|
|
}
|
|
|
|
export { prisma, clickhouse };
|
|
|
|
export function getDatabase() {
|
|
const type =
|
|
process.env.DATABASE_TYPE ||
|
|
(process.env.DATABASE_URL && process.env.DATABASE_URL.split(':')[0]);
|
|
|
|
if (type === 'postgres') {
|
|
return POSTGRESQL;
|
|
}
|
|
|
|
return type;
|
|
}
|
|
|
|
export function getAnalyticsDatabase() {
|
|
const type =
|
|
process.env.ANALYTICS_TYPE ||
|
|
(process.env.ANALYTICS_URL && process.env.ANALYTICS_URL.split(':')[0]);
|
|
|
|
if (type === 'postgres') {
|
|
return POSTGRESQL;
|
|
}
|
|
|
|
if (!type) {
|
|
return getDatabase();
|
|
}
|
|
|
|
return type;
|
|
}
|
|
|
|
export function getDateStringQueryClickhouse(data, unit) {
|
|
return `formatDateTime(${data}, '${CLICKHOUSE_DATE_FORMATS[unit]}')`;
|
|
}
|
|
|
|
export function getDateQuery(field, unit, timezone) {
|
|
const db = getDatabase();
|
|
|
|
if (db === POSTGRESQL) {
|
|
if (timezone) {
|
|
return `to_char(date_trunc('${unit}', ${field} at time zone '${timezone}'), '${POSTGRESQL_DATE_FORMATS[unit]}')`;
|
|
}
|
|
return `to_char(date_trunc('${unit}', ${field}), '${POSTGRESQL_DATE_FORMATS[unit]}')`;
|
|
}
|
|
|
|
if (db === MYSQL) {
|
|
if (timezone) {
|
|
const tz = moment.tz(timezone).format('Z');
|
|
|
|
return `date_format(convert_tz(${field},'+00:00','${tz}'), '${MYSQL_DATE_FORMATS[unit]}')`;
|
|
}
|
|
|
|
return `date_format(${field}, '${MYSQL_DATE_FORMATS[unit]}')`;
|
|
}
|
|
}
|
|
|
|
export function getDateQueryClickhouse(field, unit, timezone) {
|
|
if (timezone) {
|
|
return `date_trunc('${unit}', ${field},'${timezone}')`;
|
|
}
|
|
return `date_trunc('${unit}', ${field})`;
|
|
}
|
|
|
|
export function getDateFormatClickhouse(date) {
|
|
return `parseDateTimeBestEffort('${date.toUTCString()}')`;
|
|
}
|
|
|
|
export function getBetweenDatesClickhouse(field, start_at, end_at) {
|
|
return `${field} between ${getDateFormatClickhouse(start_at)}
|
|
and ${getDateFormatClickhouse(end_at)}`;
|
|
}
|
|
|
|
export function getTimestampInterval(field) {
|
|
const db = getDatabase();
|
|
|
|
if (db === POSTGRESQL) {
|
|
return `floor(extract(epoch from max(${field}) - min(${field})))`;
|
|
}
|
|
|
|
if (db === MYSQL) {
|
|
return `floor(unix_timestamp(max(${field})) - unix_timestamp(min(${field})))`;
|
|
}
|
|
}
|
|
|
|
export function getFilterQuery(table, column, filters = {}, params = []) {
|
|
const query = Object.keys(filters).reduce((arr, key) => {
|
|
const filter = filters[key];
|
|
|
|
if (filter === undefined || filter === FILTER_IGNORED) {
|
|
return arr;
|
|
}
|
|
|
|
switch (key) {
|
|
case 'url':
|
|
if (table === 'pageview' || table === 'event') {
|
|
arr.push(`and ${table}.${key}=$${params.length + 1}`);
|
|
params.push(decodeURIComponent(filter));
|
|
}
|
|
break;
|
|
|
|
case 'os':
|
|
case 'browser':
|
|
case 'device':
|
|
case 'country':
|
|
if (table === 'session') {
|
|
arr.push(`and ${table}.${key}=$${params.length + 1}`);
|
|
params.push(decodeURIComponent(filter));
|
|
}
|
|
break;
|
|
|
|
case 'event_name':
|
|
if (table === 'event') {
|
|
arr.push(`and ${table}.${key}=$${params.length + 1}`);
|
|
params.push(decodeURIComponent(filter));
|
|
}
|
|
break;
|
|
|
|
case 'referrer':
|
|
if (table === 'pageview' || table === 'event') {
|
|
arr.push(`and ${table}.referrer like $${params.length + 1}`);
|
|
params.push(`%${decodeURIComponent(filter)}%`);
|
|
}
|
|
break;
|
|
|
|
case 'domain':
|
|
if (table === 'pageview') {
|
|
arr.push(`and ${table}.referrer not like $${params.length + 1}`);
|
|
arr.push(`and ${table}.referrer not like '/%'`);
|
|
params.push(`%://${filter}/%`);
|
|
}
|
|
break;
|
|
|
|
case 'query':
|
|
if (table === 'pageview') {
|
|
arr.push(`and ${table}.url like '%?%'`);
|
|
}
|
|
}
|
|
|
|
return arr;
|
|
}, []);
|
|
|
|
return query.join('\n');
|
|
}
|
|
|
|
export function parseFilters(table, column, filters = {}, params = [], sessionKey = 'session_id') {
|
|
const { domain, url, event_url, referrer, os, browser, device, country, event_name, query } =
|
|
filters;
|
|
|
|
console.log({ table, column, filters, params });
|
|
|
|
const pageviewFilters = { domain, url, referrer, query };
|
|
const sessionFilters = { os, browser, device, country };
|
|
const eventFilters = { url: event_url, event_name };
|
|
|
|
return {
|
|
pageviewFilters,
|
|
sessionFilters,
|
|
eventFilters,
|
|
event: { event_name },
|
|
joinSession:
|
|
os || browser || device || country
|
|
? `inner join session on ${table}.${sessionKey} = session.${sessionKey}`
|
|
: '',
|
|
pageviewQuery: getFilterQuery('pageview', column, pageviewFilters, params),
|
|
sessionQuery: getFilterQuery('session', column, sessionFilters, params),
|
|
eventQuery: getFilterQuery('event', column, eventFilters, params),
|
|
};
|
|
}
|
|
|
|
export function replaceQueryClickhouse(string, params = []) {
|
|
let formattedString = string;
|
|
|
|
params.forEach((a, i) => {
|
|
let replace = a;
|
|
|
|
if (typeof a === 'string' || a instanceof String) {
|
|
replace = `'${replace}'`;
|
|
}
|
|
|
|
formattedString = formattedString.replace(`$${i + 1}`, replace);
|
|
});
|
|
|
|
return formattedString;
|
|
}
|
|
|
|
export async function runQuery(query) {
|
|
return query.catch(e => {
|
|
throw e;
|
|
});
|
|
}
|
|
|
|
export async function rawQuery(query, params = []) {
|
|
const db = getDatabase();
|
|
|
|
if (db !== POSTGRESQL && db !== MYSQL) {
|
|
return Promise.reject(new Error('Unknown database.'));
|
|
}
|
|
|
|
const sql = db === MYSQL ? query.replace(/\$[0-9]+/g, '?') : query;
|
|
|
|
return runQuery(prisma.$queryRawUnsafe.apply(prisma, [sql, ...params]));
|
|
}
|
|
|
|
export async function rawQueryClickhouse(query, params = [], debug = false) {
|
|
let formattedQuery = replaceQueryClickhouse(query, params);
|
|
|
|
if (debug || process.env.LOG_QUERY) {
|
|
console.log(formattedQuery);
|
|
}
|
|
|
|
return clickhouse.query(formattedQuery).toPromise();
|
|
}
|
|
|
|
export async function findUnique(data) {
|
|
if (data.length > 1) {
|
|
throw `${data.length} records found when expecting 1.`;
|
|
}
|
|
|
|
return data[0] ?? null;
|
|
}
|
|
|
|
export async function runAnalyticsQuery(queries) {
|
|
const db = getAnalyticsDatabase();
|
|
|
|
if (db === POSTGRESQL || db === MYSQL) {
|
|
return queries[RELATIONAL]();
|
|
}
|
|
|
|
if (db === CLICKHOUSE) {
|
|
return queries[CLICKHOUSE]();
|
|
}
|
|
}
|