* 🌟Synchronization of the user with LDAP (#206)

* Add configuration with LDAP attributes mappings
* Add default company and remove application check since it's not configurable
* Change error handling, now all the requests are independent
This commit is contained in:
Anton Shepilov
2023-09-12 16:20:37 +02:00
committed by GitHub
parent 15d3602cf8
commit 79764988b8
7 changed files with 106 additions and 40 deletions
+88 -23
View File
@@ -1,5 +1,5 @@
import ldap from "ldapjs";
import axios from "axios";
import axios, { AxiosError } from "axios";
import dotenv from "dotenv";
interface UserAttributes {
@@ -8,27 +8,93 @@ interface UserAttributes {
email: string;
}
dotenv.config();
export interface IApiServiceApplicationTokenRequestParams {
id: string;
secret: string;
}
export interface IApiServiceApplicationTokenResponse {
resource: {
access_token: {
time: number;
expiration: number;
value: string;
type: string;
};
};
}
dotenv.config();
console.log("Run script with the following env: ");
console.log(process.env);
// LDAP server configuration
const ldapConfig = {
url: process.env.LDAP_URL|| "localhost",
url: process.env.LDAP_URL || "localhost",
bindDN: process.env.LDAP_BIND_DN || "",
bindCredentials: process.env.LDAP_BIND_CREDENTIALS || "",
searchBase: process.env.LDAP_SEARCH_BASE || "dc=example,dc=com",
searchFilter: process.env.LDAP_SEARCH_FILTER || "(objectClass=inetorgperson)",
mappings: JSON.parse(process.env.LDAP_ATTRIBUTE_MAPPINGS || "{}"),
timeout: 120,
version: 3,
};
const tdriveConfig = {
url: process.env.TDRIVE_URL || "http://localhost:4000/)",
credentials: {
id: process.env.TDRIVE_CREDENTIALS_ID || "application-name",
secret: process.env.TDRIVE_CREDENTIALS_SECRET || "application-secret",
}
};
const refreshToken = async (): Promise<string> => {
try {
const response = await axios.post<IApiServiceApplicationTokenRequestParams, { data: IApiServiceApplicationTokenResponse }>(
`${tdriveConfig.url.replace(/\/$/, '')}/api/console/v1/login`,
{
id: tdriveConfig.credentials.id,
secret: tdriveConfig.credentials.secret,
},
{
headers: {
Authorization: `Basic ${Buffer.from(`${tdriveConfig.credentials.id}:${tdriveConfig.credentials.secret}`).toString('base64')}`,
},
},
);
const {
resource: {
access_token: { value },
},
} = response.data;
//axiosClient.interceptors.response.use(this.handleResponse, this.handleErrors);
return value;
} catch (error) {
console.error('failed to get application token', error);
console.info('Using token ', tdriveConfig.credentials.id, tdriveConfig.credentials.secret);
console.info(`POST ${tdriveConfig.url.replace(/\/$/, '')}/api/console/v1/login`);
console.info(`Basic ${Buffer.from(`${tdriveConfig.credentials.id}:${tdriveConfig.credentials.secret}`).toString('base64')}`);
throw new Error("Unable to get access to token, see precious errors for details.");
}
};
// Create LDAP client
const client = ldap.createClient({
url: ldapConfig.url,
});
const accessToken = await refreshToken()
const axiosClient = axios.create({
baseURL: tdriveConfig.url,
headers: {
Authorization: `Bearer ${accessToken}`,
},
});
// Bind to LDAP server
client.bind(ldapConfig.bindDN, ldapConfig.bindCredentials, (err) => {
if (err) {
@@ -41,7 +107,7 @@ client.bind(ldapConfig.bindDN, ldapConfig.bindCredentials, (err) => {
ldapConfig.searchBase,
{
filter: ldapConfig.searchFilter,
attributes: ["uid", "mail", "cn", "sn", "mobile"],
attributes: [ldapConfig.mappings.firstName, ldapConfig.mappings.lastName, ldapConfig.mappings.email],
scope: "sub",
derefAliases: 2,
},
@@ -54,15 +120,24 @@ client.bind(ldapConfig.bindDN, ldapConfig.bindCredentials, (err) => {
const apiRequests: Promise<any>[] = [];
searchRes.on("searchEntry", (entry: any) => {
console.log('Receive entry:: ' + JSON.stringify(entry.pojo));
// Handle each search result entry
const userAttributes: UserAttributes = {
first_name: entry.attributes[1]?.values[0],
last_name: entry.attributes[2]?.values[0],
email: entry.attributes[3]?.values[0],
first_name: entry.attributes[0]?.values[0],
last_name: entry.attributes[1]?.values[0],
email: entry.attributes[2]?.values[0],
};
// Make API call to tdrive backend with the userAttributes
apiRequests.push(axios.post(process.env.API_URL || "", userAttributes));
if (userAttributes.email) {
//Make API call to tdrive backend with the userAttributes
apiRequests.push(axiosClient.post(process.env.API_URL || "", userAttributes)
.catch((e: AxiosError<any>) => {
console.log(`Error for ${JSON.stringify(userAttributes)}: ${e.message}, body: ${e.response?.data?.message}`);
}));
} else {
console.log(`user ${JSON.stringify(userAttributes)} doesn't have an email`);
}
});
searchRes.on("error", (err) => {
@@ -75,19 +150,9 @@ client.bind(ldapConfig.bindDN, ldapConfig.bindCredentials, (err) => {
if (unbindErr) {
console.error("LDAP unbind error:", unbindErr);
} else {
Promise.all(apiRequests)
.then((responses) => {
console.log(
"API responses:",
responses.map((r) => r.data)
);
})
.catch((error) => {
console.error("API error:", error);
})
.finally(() => {
console.log("LDAP search completed successfully.");
});
Promise.allSettled(apiRequests)
.finally(() => console.log("LDAP search COMPLETED."));
}
});
});