2024-08-22 02:10:37 -07:00
|
|
|
import { LDAP_DEFAULT_CONFIGURATION, LDAP_FEATURE_NAME } from '@/ldap/constants';
|
|
|
|
import type { LdapConfig } from '@/ldap/types';
|
2024-05-17 01:53:15 -07:00
|
|
|
import { SettingsRepository } from '@/databases/repositories/settings.repository';
|
|
|
|
import { jsonParse } from 'n8n-workflow';
|
|
|
|
import Container from 'typedi';
|
|
|
|
|
|
|
|
export const defaultLdapConfig = {
|
|
|
|
...LDAP_DEFAULT_CONFIGURATION,
|
|
|
|
loginEnabled: true,
|
|
|
|
loginLabel: '',
|
|
|
|
ldapIdAttribute: 'uid',
|
|
|
|
firstNameAttribute: 'givenName',
|
|
|
|
lastNameAttribute: 'sn',
|
|
|
|
emailAttribute: 'mail',
|
|
|
|
loginIdAttribute: 'mail',
|
|
|
|
baseDn: 'baseDn',
|
|
|
|
bindingAdminDn: 'adminDn',
|
|
|
|
bindingAdminPassword: 'adminPassword',
|
|
|
|
};
|
|
|
|
|
|
|
|
export const createLdapConfig = async (
|
|
|
|
attributes: Partial<LdapConfig> = {},
|
|
|
|
): Promise<LdapConfig> => {
|
|
|
|
const { value: ldapConfig } = await Container.get(SettingsRepository).save({
|
|
|
|
key: LDAP_FEATURE_NAME,
|
|
|
|
value: JSON.stringify({
|
|
|
|
...defaultLdapConfig,
|
|
|
|
...attributes,
|
|
|
|
}),
|
|
|
|
loadOnStartup: true,
|
|
|
|
});
|
|
|
|
return await jsonParse(ldapConfig);
|
|
|
|
};
|