簡體   English   中英

在 ldapjs 中搜索

[英]Search in ldapjs

我正在嘗試在我的 node.js 代碼中使用 Ldap.js 的搜索方法。 這是我的客戶端代碼。 它成功添加了一個用戶,但搜索新添加的用戶不會產生任何結果。 (ldap 服務器在https://github.com/osixia/docker-openldap的 docker 容器中運行)

var ldap = require("ldapjs");
var assert = require("assert");

var client = ldap.createClient({
  url: "ldap://localhost:389",
});

client.bind("cn=admin,dc=example,dc=org", "admin", function (err) {
  assert.ifError(err);
  let newUser = {
    cn: "userId7",
    userPassword: "password",
    objectClass: "person",
    sn: "efub",
  };
  // Here i successfully add this user "userId7"
  client.add(
    "cn=userId7,dc=example,dc=org",
    newUser,
    (err, response) => {
      if (err) return console.log(err);
      return response;
    }
  );

  var options = {
    filter: "(objectClass=*)",
    scope: "sub",
  };
  // Now the search, it runs without error, but does never receive a searchEntry
  client.search(
    "cn=userId7,dc=example,dc=org",
    options,
    function (error, search) {
      console.log("Searching.....");

      client.on("searchEntry", function (entry) {
        console.log("I found a result in searchEntry");
      });

      client.on("error", function (error) {
        console.error("error: " + error.message);
      });

      client.unbind(function (error) {
        if (error) {
          console.log(error.message);
        } else {
          console.log("client disconnected");
        }
      });
    }
  );
});

client.on('error', function (err) {
  if (err.syscall == "connect") {
    console.log(err);
  }
});

Also, if it helps, this is how the newly added user looks like when i display all users from ldap by running docker exec my-openldap-container ldapsearch -x -H ldap://localhost:389 -b dc=example,dc=org -D "cn=admin,dc=example,dc=org" -w admin

# userId7, example.org
dn: cn=userId7,dc=example,dc=org
cn: userId7
userPassword:: cGFzc3dvcmQ=
objectClass: person
sn: efub

更新:我可以使用 shell 命令成功搜索用戶“userId7”: docker exec ldap-service ldapsearch -LLL -x -D "cn=admin,dc=example,dc=org" -w "admin" -b "cn=userId7,dc=example,dc=org" "(objectclass=*)" 我怎樣才能讓 ldapJS 也成功運行這個搜索?

更新 2:我還可以使用前端“phpLDAPadmin”成功搜索,如下面的屏幕截圖所示: 搜索掩碼 搜索結果

所以我解決了。 正確的client.search代碼是:

  client.search(
    "cn=userId7,dc=example,dc=org",
    options,
    function (error, res) {
      console.log("Searching.....");

      res.on("searchEntry", function (entry) {
        console.log("I found a result in searchEntry", JSON.stringify(entry.object));
      });

      res.on("error", function (error) {
        console.error("error: " + error.message);
      });

      client.unbind(function (error) {
        if (error) {
          console.log(error.message);
        } else {
          console.log("client disconnected");
        }
      });
    }
  );

function (error, res) {我通過client.on("searchEntry"而不是res.on("searchEntry" ) 監聽事件,因此從搜索結果中丟失了事件。根本原因是經典的復制和粘貼錯誤並在誤解事件起源的同時更改變量。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM