Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gdd-sigma-poc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Guillaume WANG
gdd-sigma-poc
Commits
953d93cc
Commit
953d93cc
authored
7 years ago
by
Guillaume WANG
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of gitlab.binets.fr:br/sigma-backend
parents
1c9f6889
78c315c9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/ldap_data/ldap_data.js
+46
-32
46 additions, 32 deletions
src/ldap_data/ldap_data.js
with
46 additions
and
32 deletions
src/ldap_data/ldap_data.js
+
46
−
32
View file @
953d93cc
...
...
@@ -4,41 +4,55 @@ var ldapescape = require("ldap-escape");
var
ldap
=
require
(
'
ldapjs
'
);
var
client
=
ldap
.
createClient
({
url
:
"
ldap://frankiz
"
,
timeout
:
10000
,
idleTimeout
:
10000
});
var
client
=
ldap
.
createClient
({
url
:
"
ldap://frankiz.eleves.polytechnique.fr
"
,
timeout
:
10000
,
idleTimeout
:
10000
});
// Pas nécessaire normalement car fait dans ldap_auth.js ; ici pour des besoins de debug
function
handshake
(
uid
,
passwd
)
{
client
.
bind
(
"
uid=${uid},ou=eleves,dc=frankiz,dc=net
"
,
passwd
,
(
err
)
=>
{
console
.
log
(
err
);
});
}
/**
* @summary Key function ; interrogates LDAP to get list of groups the person's in
* @arg {int} person_id
* @return {string} List of groups where the specified user is member
* @summary Fonction qui retrouve les groupes où une personne est membre
* @arg {int} uid - Identifiant de la personne à interroger
* @arg {string} passwd - Mdp de la personne à interroger
* @return {string} Liste des uid de groupes où l'id fournie est membre (noms flat des groupes)
*/
function
groupsUserIsMember
(
person_id
)
{
return
client
.
search
(
"
ou=groups,dc=frankiz,dc=net
"
,
{
scope
:
"
one
"
,
filter
:
ldapescape
.
filter
(
"
(|(memberUid=${id})(restrictedMemberUid={$id}))
"
,{
id
:
person_id
}),
attributes
:
"
uid
"
,
},
/**
* @summary Fonction gestion erreur ; sûrement un truc malin à faire
* @arg {Object} err - Code d'erreur
* @arg {Object} res - Résultat de la fonction
*/
function
(
err
,
res
)
{
return
err
;
/**
if (err) {
reject("LDAP ");
}
assert.ifError(err);
res.on('searchEntry', function(entry) {
console.log('entry: ' + JSON.stringify(entry.object));
});
res.on('searchReference', function(referral) {
console.log('referral: ' + referral.uris.join());
function
listGroups
(
uid
)
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
var
groupsList
=
[];
client
.
search
(
"
ou=groups,dc=frankiz,dc=net
"
,
{
scope
:
"
sub
"
,
attributes
:
"
uid
"
,
filter
:
ldapescape
.
filter
(
"
(restrictedMemberUid=${id})
"
,
{
id
:
uid
})},
function
(
err
,
res
)
{
if
(
err
)
{
reject
(
err
);
}
else
{
res
.
on
(
'
searchEntry
'
,
function
(
entry
)
{
groupsList
.
push
(
entry
.
object
.
uid
);
});
res
.
on
(
'
end
'
,
function
(
res
)
{
resolve
(
groupsList
);
});
}
});
res.on('error', function(err) {
console.error('error: ' + err.message);
});
}
// Synthaxe d'utilisation
handshake
(
"
user
"
,
"
xxx
"
);
listGroups
(
"
user
"
,
"
xxx
"
).
then
((
grList
)
=>
{
console
.
log
(
grList
);
});
/**
* @summary Fonction qui retrouve la liste des membres d'un binet
* @arg {int} uid - Identifiant de la personne interrogeant (pour des raisons d'identification)
* @arg {string} passwd - Mdp de la personne à interroger
* @return {string} Liste des uid de groupes où l'id fournie est membre (noms flat des groupes)
function listGroups(uid,passwd) {
client.bind("uid=${uid},ou=eleves,dc=frankiz,dc=net",passwd, (err) => { console.log(err); });
return new Promise(function(resolve, reject) {
var groupsList=[];
client.search("ou=groups,dc=frankiz,dc=net", {scope: "sub", attributes: "uid", filter: ldapescape.filter("(restrictedMemberUid=${id})", {id: uid})}, function(err, res) {
if (err) {
reject(err);
} else {
res.on('searchEntry', function(entry) { groupsList.push(entry.object.uid); });
res.on('end', function(res) { resolve(groupsList); });
}
});
res.on('end', function(result) {
console.log('status: ' + result.status);}); */
});
}
\ No newline at end of file
}*/
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment