mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
parent
fcac1ddd9f
commit
3a9c257f55
|
@ -513,6 +513,7 @@ export interface IN8nUISettings {
|
|||
enterprise: {
|
||||
sharing: boolean;
|
||||
ldap: boolean;
|
||||
saml: boolean;
|
||||
logStreaming: boolean;
|
||||
};
|
||||
hideUsagePage: boolean;
|
||||
|
|
|
@ -102,6 +102,10 @@ export class License {
|
|||
return this.isFeatureEnabled(LICENSE_FEATURES.LDAP);
|
||||
}
|
||||
|
||||
isSamlEnabled() {
|
||||
return this.isFeatureEnabled(LICENSE_FEATURES.SAML);
|
||||
}
|
||||
|
||||
getCurrentEntitlements() {
|
||||
return this.manager?.getCurrentEntitlements() ?? [];
|
||||
}
|
||||
|
|
10
packages/cli/src/Saml/helpers.ts
Normal file
10
packages/cli/src/Saml/helpers.ts
Normal file
|
@ -0,0 +1,10 @@
|
|||
import { getLicense } from '../License';
|
||||
import { isUserManagementEnabled } from '../UserManagement/UserManagementHelper';
|
||||
|
||||
/**
|
||||
* Check whether the SAML feature is licensed and enabled in the instance
|
||||
*/
|
||||
export function isSamlEnabled(): boolean {
|
||||
const license = getLicense();
|
||||
return isUserManagementEnabled() && license.isSamlEnabled();
|
||||
}
|
|
@ -145,6 +145,7 @@ import { AbstractServer } from './AbstractServer';
|
|||
import { configureMetrics } from './metrics';
|
||||
import { setupBasicAuth } from './middlewares/basicAuth';
|
||||
import { setupExternalJWTAuth } from './middlewares/externalJWTAuth';
|
||||
import { isSamlEnabled } from './Saml/helpers';
|
||||
|
||||
const exec = promisify(callbackExec);
|
||||
|
||||
|
@ -275,6 +276,7 @@ class Server extends AbstractServer {
|
|||
enterprise: {
|
||||
sharing: false,
|
||||
ldap: false,
|
||||
saml: false,
|
||||
logStreaming: config.getEnv('enterprise.features.logStreaming'),
|
||||
},
|
||||
hideUsagePage: config.getEnv('hideUsagePage'),
|
||||
|
@ -303,6 +305,7 @@ class Server extends AbstractServer {
|
|||
sharing: isSharingEnabled(),
|
||||
logStreaming: isLogStreamingEnabled(),
|
||||
ldap: isLdapEnabled(),
|
||||
saml: isSamlEnabled(),
|
||||
});
|
||||
|
||||
if (isLdapEnabled()) {
|
||||
|
|
|
@ -985,6 +985,10 @@ export const schema = {
|
|||
format: Boolean,
|
||||
default: false,
|
||||
},
|
||||
saml: {
|
||||
format: Boolean,
|
||||
default: false,
|
||||
},
|
||||
logStreaming: {
|
||||
format: Boolean,
|
||||
default: false,
|
||||
|
|
|
@ -69,6 +69,7 @@ export const SETTINGS_LICENSE_CERT_KEY = 'license.cert';
|
|||
export enum LICENSE_FEATURES {
|
||||
SHARING = 'feat:sharing',
|
||||
LDAP = 'feat:ldap',
|
||||
SAML = 'feat:saml',
|
||||
LOG_STREAMING = 'feat:logStreaming',
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue