edu.vt.middleware.ldap.LdapCli Maven / Gradle / Ivy
/*
$Id: LdapCli.java 1330 2010-05-23 22:10:53Z dfisher $
Copyright (C) 2003-2010 Virginia Tech.
All rights reserved.
SEE LICENSE FOR MORE INFORMATION
Author: Middleware Services
Email: [email protected]
Version: $Revision: 1330 $
Updated: $Date: 2010-05-23 18:10:53 -0400 (Sun, 23 May 2010) $
*/
package edu.vt.middleware.ldap;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.util.Iterator;
import javax.naming.directory.SearchResult;
import edu.vt.middleware.ldap.dsml.Dsmlv1;
import edu.vt.middleware.ldap.dsml.Dsmlv2;
import edu.vt.middleware.ldap.ldif.Ldif;
import edu.vt.middleware.ldap.props.LdapConfigPropertyInvoker;
import org.apache.commons.cli.CommandLine;
import org.apache.commons.cli.Option;
/**
* Command line interface for ldap operations.
*
* @author Middleware Services
* @version $Revision: 1330 $
*/
public class LdapCli extends AbstractCli
{
/** Option for ldap query. */
protected static final String OPT_QUERY = "query";
/** Name of operation provided by this class. */
private static final String COMMAND_NAME = "ldapsearch";
/** Default constructor. */
public LdapCli()
{
super();
this.opts.add(OPT_QUERY);
}
/**
* CLI entry point method.
*
* @param args Command line arguments.
*/
public static void main(final String[] args)
{
new LdapCli().performAction(args);
}
/** {@inheritDoc} */
protected void initOptions()
{
super.initOptions(
new LdapConfigPropertyInvoker(
LdapConfig.class,
LdapConfig.PROPERTIES_DOMAIN));
options.addOption(new Option(OPT_QUERY, true, ""));
}
/**
* Initialize an LdapConfig with command line options.
*
* @param line Parsed command line arguments container.
*
* @return LdapConfig
that has been initialized
*
* @throws Exception On errors thrown by handler.
*/
protected LdapConfig initLdapConfig(final CommandLine line)
throws Exception
{
final LdapConfig config = new LdapConfig();
this.initLdapProperties(config, line);
if (line.hasOption(OPT_TRACE)) {
config.setTracePackets(System.out);
}
if (config.getBindDn() != null && config.getBindCredential() == null) {
// prompt the user to enter a password
System.out.print(
"Enter password for service user " + config.getBindDn() + ": ");
final String pass = (new BufferedReader(new InputStreamReader(System.in)))
.readLine();
config.setBindCredential(pass);
}
return config;
}
/** {@inheritDoc} */
protected void dispatch(final CommandLine line)
throws Exception
{
if (line.hasOption(OPT_DSMLV1)) {
this.outputDsmlv1 = true;
} else if (line.hasOption(OPT_DSMLV2)) {
this.outputDsmlv2 = true;
}
if (line.hasOption(OPT_HELP)) {
printHelp();
} else if (line.hasOption(OPT_QUERY)) {
search(
initLdapConfig(line),
line.getOptionValue(OPT_QUERY),
line.getArgs());
} else {
printExamples();
}
}
/**
* Executes the ldap search operation.
*
* @param config Ldap configuration.
* @param filter Ldap filter to search on.
* @param attrs Ldap attributes to return.
*
* @throws Exception On errors.
*/
protected void search(
final LdapConfig config,
final String filter,
final String[] attrs)
throws Exception
{
final Ldap ldap = new Ldap();
ldap.setLdapConfig(config);
try {
Iterator results = null;
if (attrs == null || attrs.length == 0) {
results = ldap.search(new SearchFilter(filter));
} else {
results = ldap.search(new SearchFilter(filter), attrs);
}
if (this.outputDsmlv1) {
(new Dsmlv1()).outputDsml(
results,
new BufferedWriter(new OutputStreamWriter(System.out)));
} else if (this.outputDsmlv2) {
(new Dsmlv2()).outputDsml(
results,
new BufferedWriter(new OutputStreamWriter(System.out)));
} else {
(new Ldif()).outputLdif(
results,
new BufferedWriter(new OutputStreamWriter(System.out)));
}
} finally {
if (ldap != null) {
ldap.close();
}
}
}
/** {@inheritDoc} */
protected String getCommandName()
{
return COMMAND_NAME;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy