Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ldap-agent

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ldap-agent

Connected to ldap server

  • 1.0.7
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Ldap Agent

Connected to ldap server

Install

npm install --save ldap-agent

Examples

Config file

{
  "cn": ["Manager"],
  "dc": ["maxcrc", "com"],
  "url": "ldap://127.0.0.1:389",
  "password": "123456"
}

Add

// Module
const LdapAgent = require('ldap-agent');

// Config
const config = require('./config.json');

// Init client
const Client = new LdapAgent(config);

/* Connection */
// With promise
Client.Init()
  .then(() => {
    console.log('Connected to ldap server'); // Connected
    // Add entry
    const entry = {
      cn: 'foo',
      sn: 'bar',
      mail: 'sergio@telefonica.com',
      objectclass: [
        'person',
        'organizationalPerson',
        'inetOrgPerson',
      ],
    };
    return Client.Add(['usuarios'], ['testFolder'], entry, 'mail'); // Send query
  })
  .then((data) => {
    console.log('Field added:', data); // Query success
  })
  .catch((errorGeneric) => {
    console.error(`Error generic: ${errorGeneric.message}`);
  });

Connection (callback)

// Module
const LdapAgent = require('ldap-agent');

// Config
const config = require('./config.json');

// Init client
const Client = new LdapAgent(config);

/* Connection */
Client.Init((connectError) => {
  // Error handler
  if (connectError) {
    console.error(`Error connection: ${connectError.message}`);
    return;
  }
  // Connection ready
  console.log('Connected to ldap server (callback)');
});

Connection (promise)

// Module
const LdapAgent = require('ldap-agent');

// Config
const config = require('./config.json');

// Init client
const Client = new LdapAgent(config);

/* Connection */
Client.Init()
  .then(() => {
    console.log('Connected to ldap server (promise)');
  })
  .catch((connectError) => {
    console.error(`Error connection: ${connectError.message}`);
  });

Delete

// Module
const LdapAgent = require('ldap-agent');

// Config
const config = require('./config.json');

// Init client
const Client = new LdapAgent(config);

/* Connection */
// With promise
Client.Init()
  .then(() => {
    console.log('Connected to ldap server'); // Connected
    // Delete entry
    const condition = {
      mail: 'test@telefonica.com',
    };
    return Client.Delete(condition, ['usuarios'], ['testFolder']); // Send query
  })
  .then((data) => {
    console.log('Field deleted:', data); // Query success
  })
  .catch((errorGeneric) => {
    console.error(`Error generic: ${errorGeneric.message}`);
  });

Search all

// Module
const LdapAgent = require('ldap-agent');

// Config
const config = require('./config.json');

// Init client
const Client = new LdapAgent(config);

/* Connection */
// With promise
Client.Init()
  .then(() => {
    console.log('Connected to ldap server'); // Connected
    return Client.Find(['usuarios'], ['testFolder'], { attributes: 'sn' }); // Send query
  })
  .then((data) => {
    console.log(`${data.length} fields found!`); // Query success
  })
  .catch((errorGeneric) => {
    console.error(`Error generic: ${errorGeneric.message}`);
  });

Search with one filter

// Module
const LdapAgent = require('ldap-agent');

// Config
const config = require('./config.json');

// Init client
const Client = new LdapAgent(config);

/* Connection */
// With promise
Client.Init()
  .then(() => {
    console.log('Connected to ldap server'); // Connected
    // Config
    const options = {
      attributes: 'sn',
      filter: {
        mail: 'test@telefonica.com',
      },
    };
    return Client.Find(['usuarios'], ['testFolder'], options); // Send query
  })
  .then((data) => {
    console.log('Field found:', data); // Query success
  })
  .catch((errorGeneric) => {
    console.error(`Error generic: ${errorGeneric.message}`);
  });

Search two filters

// Module
const LdapAgent = require('ldap-agent');

// Config
const config = require('./config.json');

// Init client
const Client = new LdapAgent(config);

/* Connection */
// With promise
Client.Init()
  .then(() => {
    console.log('Connected to ldap server'); // Connected
    // Config
    const options = {
      attributes: 'sn',
      filter: {
        mail: '*@telefonica.com',
        sn: 'bar',
      },
    };
    return Client.Find(['usuarios'], ['testFolder'], options); // Send query
  })
  .then((data) => {
    console.log('Fields found:', data.length); // Query success
  })
  .catch((errorGeneric) => {
    console.error(`Error generic: ${errorGeneric.message}`);
  });

Update values

// Module
const LdapAgent = require('ldap-agent');

// Config
const config = require('./config.json');

// Init client
const Client = new LdapAgent(config);

/* Connection */
// With promise
Client.Init()
  .then(() => {
    console.log('Connected to ldap server'); // Connected
    // Update params
    const update = {
      sn: 'New value',
    };
    const where = {
      mail: 'test@telefonica.com',
    };
    return Client.Update(update, where, ['usuarios'], ['testFolder']); // Send query
  })
  .then((data) => {
    console.log('Field updated:', data); // Query success
  })
  .catch((errorGeneric) => {
    console.error(`Error generic: ${errorGeneric.message}`);
  });

Keywords

FAQs

Package last updated on 14 Mar 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc