2022-12-20 01:52:01 -08:00
|
|
|
import { LicenseManager, TEntitlement, TLicenseContainerStr } from '@n8n_io/license-sdk';
|
2022-11-21 06:41:24 -08:00
|
|
|
import { ILogger } from 'n8n-workflow';
|
|
|
|
import { getLogger } from './Logger';
|
|
|
|
import config from '@/config';
|
|
|
|
import * as Db from '@/Db';
|
2023-01-04 02:38:48 -08:00
|
|
|
import { LICENSE_FEATURES, N8N_VERSION, SETTINGS_LICENSE_CERT_KEY } from './constants';
|
2022-11-21 06:41:24 -08:00
|
|
|
|
|
|
|
async function loadCertStr(): Promise<TLicenseContainerStr> {
|
|
|
|
const databaseSettings = await Db.collections.Settings.findOne({
|
|
|
|
where: {
|
|
|
|
key: SETTINGS_LICENSE_CERT_KEY,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
return databaseSettings?.value ?? '';
|
|
|
|
}
|
|
|
|
|
|
|
|
async function saveCertStr(value: TLicenseContainerStr): Promise<void> {
|
|
|
|
await Db.collections.Settings.upsert(
|
|
|
|
{
|
|
|
|
key: SETTINGS_LICENSE_CERT_KEY,
|
|
|
|
value,
|
|
|
|
loadOnStartup: false,
|
|
|
|
},
|
|
|
|
['key'],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export class License {
|
|
|
|
private logger: ILogger;
|
|
|
|
|
|
|
|
private manager: LicenseManager | undefined;
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
this.logger = getLogger();
|
|
|
|
}
|
|
|
|
|
2023-01-04 02:38:48 -08:00
|
|
|
async init(instanceId: string) {
|
2022-11-21 06:41:24 -08:00
|
|
|
if (this.manager) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const server = config.getEnv('license.serverUrl');
|
|
|
|
const autoRenewEnabled = config.getEnv('license.autoRenewEnabled');
|
|
|
|
const autoRenewOffset = config.getEnv('license.autoRenewOffset');
|
|
|
|
|
|
|
|
try {
|
|
|
|
this.manager = new LicenseManager({
|
|
|
|
server,
|
2022-11-28 08:39:34 -08:00
|
|
|
tenantId: config.getEnv('license.tenantId'),
|
2023-01-04 02:38:48 -08:00
|
|
|
productIdentifier: `n8n-${N8N_VERSION}`,
|
2022-11-21 06:41:24 -08:00
|
|
|
autoRenewEnabled,
|
|
|
|
autoRenewOffset,
|
|
|
|
logger: this.logger,
|
|
|
|
loadCertStr,
|
|
|
|
saveCertStr,
|
|
|
|
deviceFingerprint: () => instanceId,
|
|
|
|
});
|
|
|
|
|
|
|
|
await this.manager.initialize();
|
|
|
|
} catch (e: unknown) {
|
|
|
|
if (e instanceof Error) {
|
|
|
|
this.logger.error('Could not initialize license manager sdk', e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async activate(activationKey: string): Promise<void> {
|
|
|
|
if (!this.manager) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-20 01:52:01 -08:00
|
|
|
await this.manager.activate(activationKey);
|
2022-11-21 06:41:24 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
async renew() {
|
|
|
|
if (!this.manager) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-20 01:52:01 -08:00
|
|
|
await this.manager.renew();
|
2022-11-21 06:41:24 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
isFeatureEnabled(feature: string): boolean {
|
|
|
|
if (!this.manager) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.manager.hasFeatureEnabled(feature);
|
|
|
|
}
|
|
|
|
|
|
|
|
isSharingEnabled() {
|
|
|
|
return this.isFeatureEnabled(LICENSE_FEATURES.SHARING);
|
|
|
|
}
|
2022-12-20 01:52:01 -08:00
|
|
|
|
2023-01-04 00:47:48 -08:00
|
|
|
isLogStreamingEnabled() {
|
|
|
|
return this.isFeatureEnabled(LICENSE_FEATURES.LOG_STREAMING);
|
|
|
|
}
|
|
|
|
|
2022-12-20 01:52:01 -08:00
|
|
|
getCurrentEntitlements() {
|
|
|
|
return this.manager?.getCurrentEntitlements() ?? [];
|
|
|
|
}
|
|
|
|
|
|
|
|
getFeatureValue(
|
|
|
|
feature: string,
|
|
|
|
requireValidCert?: boolean,
|
|
|
|
): undefined | boolean | number | string {
|
|
|
|
if (!this.manager) {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.manager.getFeatureValue(feature, requireValidCert);
|
|
|
|
}
|
|
|
|
|
|
|
|
getManagementJwt(): string {
|
|
|
|
if (!this.manager) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
return this.manager.getManagementJwt();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function to get the main plan for a license
|
|
|
|
*/
|
|
|
|
getMainPlan(): TEntitlement | undefined {
|
|
|
|
if (!this.manager) {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
const entitlements = this.getCurrentEntitlements();
|
|
|
|
if (!entitlements.length) {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
return entitlements.find(
|
|
|
|
(entitlement) =>
|
|
|
|
(entitlement.productMetadata.terms as unknown as { isMainPlan: boolean }).isMainPlan,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Helper functions for computed data
|
|
|
|
getTriggerLimit(): number {
|
|
|
|
return (this.getFeatureValue('quota:activeWorkflows') ?? -1) as number;
|
|
|
|
}
|
|
|
|
|
|
|
|
getPlanName(): string {
|
|
|
|
return (this.getFeatureValue('planName') ?? 'Community') as string;
|
|
|
|
}
|
2022-11-21 06:41:24 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
let licenseInstance: License | undefined;
|
|
|
|
|
|
|
|
export function getLicense(): License {
|
|
|
|
if (licenseInstance === undefined) {
|
|
|
|
licenseInstance = new License();
|
|
|
|
}
|
|
|
|
|
|
|
|
return licenseInstance;
|
|
|
|
}
|