n8n
Version:
n8n Workflow Automation Tool
152 lines • 5.9 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.PostHogClient = void 0;
const api_types_1 = require("@n8n/api-types");
const config_1 = require("@n8n/config");
const di_1 = require("@n8n/di");
const n8n_core_1 = require("n8n-core");
const POSTHOG_GROUP_TYPE_INSTANCE = 'company';
const FLAGS_CACHE_TTL_MS = 10 * 60 * 1000;
let PostHogClient = class PostHogClient {
constructor(instanceSettings, globalConfig) {
this.instanceSettings = instanceSettings;
this.globalConfig = globalConfig;
this.flagsCache = new Map();
}
async init() {
const { enabled, posthogConfig } = this.globalConfig.diagnostics;
if (!enabled) {
return;
}
const { PostHog } = await Promise.resolve().then(() => __importStar(require('posthog-node')));
this.postHog = new PostHog(posthogConfig.apiKey, {
host: posthogConfig.apiHost,
});
}
async stop() {
if (this.postHog) {
return this.postHog.shutdown();
}
}
track(payload) {
const instanceId = payload?.properties?.instance_id;
this.postHog?.capture({
event: payload.event,
distinctId: payload.userId,
sendFeatureFlags: true,
properties: payload.properties,
...(typeof instanceId === 'string' && {
groups: { [POSTHOG_GROUP_TYPE_INSTANCE]: instanceId },
}),
});
}
groupIdentify({ instanceId, distinctId, properties, }) {
if (!instanceId)
return;
this.postHog?.capture({
distinctId: distinctId || instanceId,
event: '$groupidentify',
sendFeatureFlags: true,
properties: {
$group_type: POSTHOG_GROUP_TYPE_INSTANCE,
$group_key: instanceId,
$group_set: properties,
},
groups: {
[POSTHOG_GROUP_TYPE_INSTANCE]: instanceId,
},
});
}
identify({ distinctId, properties, }) {
if (!distinctId)
return;
this.postHog?.identify({
distinctId,
properties: properties ?? undefined,
});
}
async getFeatureFlags(user) {
let flags = {};
try {
flags = await this.fetchFlagsFromPostHog(user);
}
catch {
}
return this.applyEnvOverrides(flags);
}
async fetchFlagsFromPostHog(user) {
if (!this.postHog)
return {};
const { instanceId } = this.instanceSettings;
const fullId = [instanceId, user.id].join('#');
const cached = this.flagsCache.get(fullId);
if (cached && cached.expiresAt > Date.now()) {
return cached.flags;
}
const flags = await this.postHog.getAllFlags(fullId, {
personProperties: {
created_at_timestamp: user.createdAt.getTime().toString(),
},
...(instanceId && { groups: { [POSTHOG_GROUP_TYPE_INSTANCE]: instanceId } }),
});
if (flags && Object.keys(flags).length > 0) {
this.flagsCache.set(fullId, { flags, expiresAt: Date.now() + FLAGS_CACHE_TTL_MS });
}
return flags ?? {};
}
applyEnvOverrides(flags) {
if (this.globalConfig.evaluation.parallelExecutionEnabled) {
return { ...flags, [api_types_1.EVAL_PARALLEL_EXECUTION_FLAG]: true };
}
return flags;
}
};
exports.PostHogClient = PostHogClient;
exports.PostHogClient = PostHogClient = __decorate([
(0, di_1.Service)(),
__metadata("design:paramtypes", [n8n_core_1.InstanceSettings,
config_1.GlobalConfig])
], PostHogClient);
//# sourceMappingURL=index.js.map