Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2009-2019 Ping Identity Corporation
* All Rights Reserved.
*/
/*
* Copyright (C) 2015-2019 Ping Identity Corporation
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License (GPLv2 only)
* or the terms of the GNU Lesser General Public License (LGPLv2.1 only)
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see .
*/
package com.unboundid.ldap.sdk.unboundidds.tasks;
import java.util.Arrays;
import java.util.Collections;
import java.util.Date;
import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import com.unboundid.ldap.sdk.Attribute;
import com.unboundid.ldap.sdk.Entry;
import com.unboundid.ldap.sdk.Filter;
import com.unboundid.ldap.sdk.LDAPException;
import com.unboundid.ldap.sdk.SearchScope;
import com.unboundid.util.Debug;
import com.unboundid.util.NotMutable;
import com.unboundid.util.StaticUtils;
import com.unboundid.util.ThreadSafety;
import com.unboundid.util.ThreadSafetyLevel;
import com.unboundid.util.Validator;
import static com.unboundid.ldap.sdk.unboundidds.tasks.TaskMessages.*;
/**
* This class defines a Directory Server task that can be used to perform an
* internal search within the server and write the contents to an LDIF file.
*
*
* NOTE: This class, and other classes within the
* {@code com.unboundid.ldap.sdk.unboundidds} package structure, are only
* supported for use against Ping Identity, UnboundID, and
* Nokia/Alcatel-Lucent 8661 server products. These classes provide support
* for proprietary functionality or for external specifications that are not
* considered stable or mature enough to be guaranteed to work in an
* interoperable way with other types of LDAP servers.
*
*
* The properties that are available for use with this type of task include:
*
*
The base DN to use for the search. This is required.
*
The scope to use for the search. This is required.
*
The filter to use for the search. This is required.
*
The attributes to return. This is optional and multivalued.
*
The authorization DN to use for the search. This is optional.
*
The path to the output file to use. This is required.
*
*/
@NotMutable()
@ThreadSafety(level=ThreadSafetyLevel.COMPLETELY_THREADSAFE)
public final class SearchTask
extends Task
{
/**
* The fully-qualified name of the Java class that is used for the search
* task.
*/
static final String SEARCH_TASK_CLASS =
"com.unboundid.directory.server.tasks.SearchTask";
/**
* The name of the attribute used to specify the search base DN.
*/
private static final String ATTR_BASE_DN = "ds-task-search-base-dn";
/**
* The name of the attribute used to specify the search scope.
*/
private static final String ATTR_SCOPE = "ds-task-search-scope";
/**
* The name of the attribute used to specify the search filter.
*/
private static final String ATTR_FILTER = "ds-task-search-filter";
/**
* The name of the attribute used to specify the attribute(s) to return.
*/
private static final String ATTR_RETURN_ATTR =
"ds-task-search-return-attribute";
/**
* The name of the attribute used to specify the authorization DN.
*/
private static final String ATTR_AUTHZ_DN = "ds-task-search-authz-dn";
/**
* The name of the attribute used to specify the output file.
*/
private static final String ATTR_OUTPUT_FILE = "ds-task-search-output-file";
/**
* The name of the object class used in search task entries.
*/
private static final String OC_SEARCH_TASK = "ds-task-search";
/**
* The task property that will be used for the base DN.
*/
private static final TaskProperty PROPERTY_BASE_DN =
new TaskProperty(ATTR_BASE_DN,
INFO_SEARCH_TASK_DISPLAY_NAME_BASE_DN.get(),
INFO_SEARCH_TASK_DESCRIPTION_BASE_DN.get(), String.class, true,
false, false);
/**
* The allowed values for the scope property.
*/
private static final Object[] ALLOWED_SCOPE_VALUES =
{
"base", "baseobject", "0",
"one", "onelevel", "singlelevel", "1",
"sub", "subtree", "wholesubtree", "2",
"subord", "subordinate", "subordinatesubtree", "3"
};
/**
* The task property that will be used for the scope.
*/
private static final TaskProperty PROPERTY_SCOPE =
new TaskProperty(ATTR_SCOPE,
INFO_SEARCH_TASK_DISPLAY_NAME_SCOPE.get(),
INFO_SEARCH_TASK_DESCRIPTION_SCOPE.get(), String.class, true,
false, false, ALLOWED_SCOPE_VALUES);
/**
* The task property that will be used for the filter.
*/
private static final TaskProperty PROPERTY_FILTER =
new TaskProperty(ATTR_FILTER,
INFO_SEARCH_TASK_DISPLAY_NAME_FILTER.get(),
INFO_SEARCH_TASK_DESCRIPTION_FILTER.get(), String.class, true,
false, false);
/**
* The task property that will be used for the requested attributes.
*/
private static final TaskProperty PROPERTY_REQUESTED_ATTR =
new TaskProperty(ATTR_RETURN_ATTR,
INFO_SEARCH_TASK_DISPLAY_NAME_RETURN_ATTR.get(),
INFO_SEARCH_TASK_DESCRIPTION_RETURN_ATTR.get(), String.class, false,
true, false);
/**
* The task property that will be used for the authorization DN.
*/
private static final TaskProperty PROPERTY_AUTHZ_DN =
new TaskProperty(ATTR_AUTHZ_DN,
INFO_SEARCH_TASK_DISPLAY_NAME_AUTHZ_DN.get(),
INFO_SEARCH_TASK_DESCRIPTION_AUTHZ_DN.get(), String.class, false,
false, true);
/**
* The task property that will be used for the output file.
*/
private static final TaskProperty PROPERTY_OUTPUT_FILE =
new TaskProperty(ATTR_OUTPUT_FILE,
INFO_SEARCH_TASK_DISPLAY_NAME_OUTPUT_FILE.get(),
INFO_SEARCH_TASK_DESCRIPTION_NAME_OUTPUT_FILE.get(), String.class,
true, false, false);
/**
* The serial version UID for this serializable class.
*/
private static final long serialVersionUID = -1742374271508548328L;
// The search filter.
private final Filter filter;
// The list of attributes to return.
private final List attributes;
// The search scope.
private final SearchScope scope;
// The authorization DN.
private final String authzDN;
// The search base DN.
private final String baseDN;
// The output file path.
private final String outputFile;
/**
* Creates a new uninitialized search task instance which should only be used
* for obtaining general information about this task, including the task name,
* description, and supported properties. Attempts to use a task created with
* this constructor for any other reason will likely fail.
*/
public SearchTask()
{
filter = null;
attributes = null;
scope = null;
authzDN = null;
baseDN = null;
outputFile = null;
}
/**
* Creates a new search task with the provided information.
*
* @param taskID The task ID to use for this task. If it is
* {@code null} then a UUID will be generated for use as
* the task ID.
* @param baseDN The base DN to use for the search. It must not be
* {@code null}.
* @param scope The scope to use for the search. It must not be
* {@code null}.
* @param filter The filter to use for the search. It must not be
* {@code null}.
* @param attributes The list of attributes to include in matching entries.
* If it is {@code null} or empty, then all user
* attributes will be selected.
* @param outputFile The path to the file (on the server filesystem) to
* which the results should be written. It must not be
* {@code null}.
*/
public SearchTask(final String taskID, final String baseDN,
final SearchScope scope, final Filter filter,
final List attributes, final String outputFile)
{
this(taskID, baseDN, scope, filter, attributes, outputFile, null, null,
null, null, null, null);
}
/**
* Creates a new search task with the provided information.
*
* @param taskID The task ID to use for this task. If it is
* {@code null} then a UUID will be generated for use as
* the task ID.
* @param baseDN The base DN to use for the search. It must not be
* {@code null}.
* @param scope The scope to use for the search. It must not be
* {@code null}.
* @param filter The filter to use for the search. It must not be
* {@code null}.
* @param attributes The list of attributes to include in matching entries.
* If it is {@code null} or empty, then all user
* attributes will be selected.
* @param outputFile The path to the file (on the server filesystem) to
* which the results should be written. It must not be
* {@code null}.
* @param authzDN The DN of the user as whom the search should be
* processed. If this is {@code null}, then it will be
* processed as an internal root user.
*/
public SearchTask(final String taskID, final String baseDN,
final SearchScope scope, final Filter filter,
final List attributes, final String outputFile,
final String authzDN)
{
this(taskID, baseDN, scope, filter, attributes, outputFile, authzDN, null,
null, null, null, null);
}
/**
* Creates a new search task with the provided information.
*
* @param taskID The task ID to use for this task. If it is
* {@code null} then a UUID will be generated
* for use as the task ID.
* @param baseDN The base DN to use for the search. It must
* not be {@code null}.
* @param scope The scope to use for the search. It must
* not be {@code null}.
* @param filter The filter to use for the search. It must
* not be {@code null}.
* @param attributes The list of attributes to include in
* matching entries. If it is {@code null} or
* empty, then all user attributes will be
* selected.
* @param outputFile The path to the file (on the server
* filesystem) to which the results should be
* written. It must not be {@code null}.
* @param authzDN The DN of the user as whom the search
* should be processed. If this is
* {@code null}, then it will be processed as
* an internal root user.
* @param scheduledStartTime The time that this task should start
* running.
* @param dependencyIDs The list of task IDs that will be required
* to complete before this task will be
* eligible to start.
* @param failedDependencyAction Indicates what action should be taken if
* any of the dependencies for this task do
* not complete successfully.
* @param notifyOnCompletion The list of e-mail addresses of individuals
* that should be notified when this task
* completes.
* @param notifyOnError The list of e-mail addresses of individuals
* that should be notified if this task does
* not complete successfully.
*/
public SearchTask(final String taskID, final String baseDN,
final SearchScope scope, final Filter filter,
final List attributes, final String outputFile,
final String authzDN, final Date scheduledStartTime,
final List dependencyIDs,
final FailedDependencyAction failedDependencyAction,
final List notifyOnCompletion,
final List notifyOnError)
{
this(taskID, baseDN, scope, filter, attributes, outputFile, authzDN,
scheduledStartTime, dependencyIDs, failedDependencyAction, null,
notifyOnCompletion, null, notifyOnError, null, null, null);
}
/**
* Creates a new search task with the provided information.
*
* @param taskID The task ID to use for this task. If it is
* {@code null} then a UUID will be generated
* for use as the task ID.
* @param baseDN The base DN to use for the search. It must
* not be {@code null}.
* @param scope The scope to use for the search. It must
* not be {@code null}.
* @param filter The filter to use for the search. It must
* not be {@code null}.
* @param attributes The list of attributes to include in
* matching entries. If it is {@code null} or
* empty, then all user attributes will be
* selected.
* @param outputFile The path to the file (on the server
* filesystem) to which the results should be
* written. It must not be {@code null}.
* @param authzDN The DN of the user as whom the search
* should be processed. If this is
* {@code null}, then it will be processed as
* an internal root user.
* @param scheduledStartTime The time that this task should start
* running.
* @param dependencyIDs The list of task IDs that will be required
* to complete before this task will be
* eligible to start.
* @param failedDependencyAction Indicates what action should be taken if
* any of the dependencies for this task do
* not complete successfully.
* @param notifyOnStart The list of e-mail addresses of individuals
* that should be notified when this task
* starts running.
* @param notifyOnCompletion The list of e-mail addresses of individuals
* that should be notified when this task
* completes.
* @param notifyOnSuccess The list of e-mail addresses of individuals
* that should be notified if this task
* completes successfully.
* @param notifyOnError The list of e-mail addresses of individuals
* that should be notified if this task does
* not complete successfully.
* @param alertOnStart Indicates whether the server should send an
* alert notification when this task starts.
* @param alertOnSuccess Indicates whether the server should send an
* alert notification if this task completes
* successfully.
* @param alertOnError Indicates whether the server should send an
* alert notification if this task fails to
* complete successfully.
*/
public SearchTask(final String taskID, final String baseDN,
final SearchScope scope, final Filter filter,
final List attributes, final String outputFile,
final String authzDN, final Date scheduledStartTime,
final List dependencyIDs,
final FailedDependencyAction failedDependencyAction,
final List notifyOnStart,
final List notifyOnCompletion,
final List notifyOnSuccess,
final List notifyOnError,
final Boolean alertOnStart, final Boolean alertOnSuccess,
final Boolean alertOnError)
{
super(taskID, SEARCH_TASK_CLASS, scheduledStartTime, dependencyIDs,
failedDependencyAction, notifyOnStart, notifyOnCompletion,
notifyOnSuccess, notifyOnError, alertOnStart, alertOnSuccess,
alertOnError);
Validator.ensureNotNull(baseDN, scope, filter, outputFile);
this.baseDN = baseDN;
this.scope = scope;
this.filter = filter;
this.outputFile = outputFile;
this.authzDN = authzDN;
if (attributes == null)
{
this.attributes = Collections.emptyList();
}
else
{
this.attributes = Collections.unmodifiableList(attributes);
}
}
/**
* Creates a new search task from the provided entry.
*
* @param entry The entry to use to create this search task.
*
* @throws TaskException If the provided entry cannot be parsed as a search
* task entry.
*/
public SearchTask(final Entry entry)
throws TaskException
{
super(entry);
// Get the base DN. It must be present.
baseDN = entry.getAttributeValue(ATTR_BASE_DN);
if (baseDN == null)
{
throw new TaskException(ERR_SEARCH_TASK_ENTRY_NO_BASE_DN.get(
entry.getDN()));
}
// Get the scope. It must be present.
final String scopeStr =
StaticUtils.toLowerCase(entry.getAttributeValue(ATTR_SCOPE));
if (scopeStr == null)
{
throw new TaskException(ERR_SEARCH_TASK_ENTRY_NO_SCOPE.get(
entry.getDN()));
}
if (scopeStr.equals("base") || scopeStr.equals("baseobject") ||
scopeStr.equals("0"))
{
scope = SearchScope.BASE;
}
else if (scopeStr.equals("one") || scopeStr.equals("onelevel") ||
scopeStr.equals("singlelevel") || scopeStr.equals("1"))
{
scope = SearchScope.ONE;
}
else if (scopeStr.equals("sub") || scopeStr.equals("subtree") ||
scopeStr.equals("wholesubtree") || scopeStr.equals("2"))
{
scope = SearchScope.SUB;
}
else if (scopeStr.equals("subord") || scopeStr.equals("subordinate") ||
scopeStr.equals("subordinatesubtree") || scopeStr.equals("3"))
{
scope = SearchScope.SUBORDINATE_SUBTREE;
}
else
{
throw new TaskException(ERR_SEARCH_TASK_ENTRY_INVALID_SCOPE.get(
entry.getDN(), scopeStr));
}
// Get the filter. It must be present.
final String filterStr = entry.getAttributeValue(ATTR_FILTER);
if (filterStr == null)
{
throw new TaskException(ERR_SEARCH_TASK_ENTRY_NO_FILTER.get(
entry.getDN()));
}
try
{
filter = Filter.create(filterStr);
}
catch (final LDAPException le)
{
Debug.debugException(le);
throw new TaskException(ERR_SEARCH_TASK_ENTRY_INVALID_FILTER.get(
entry.getDN(), filterStr), le);
}
// Get the list of requested attributes. It is optional.
final String[] attrs = entry.getAttributeValues(ATTR_RETURN_ATTR);
if (attrs == null)
{
attributes = Collections.emptyList();
}
else
{
attributes = Collections.unmodifiableList(Arrays.asList(attrs));
}
// Get the authorization DN. It is optional.
authzDN = entry.getAttributeValue(ATTR_AUTHZ_DN);
// Get the path to the output file. It must be present.
outputFile = entry.getAttributeValue(ATTR_OUTPUT_FILE);
if (outputFile == null)
{
throw new TaskException(ERR_SEARCH_TASK_ENTRY_NO_OUTPUT_FILE.get(
entry.getDN()));
}
}
/**
* Creates a new search task from the provided set of task properties.
*
* @param properties The set of task properties and their corresponding
* values to use for the task. It must not be
* {@code null}.
*
* @throws TaskException If the provided set of properties cannot be used to
* create a valid add schema file task.
*/
public SearchTask(final Map> properties)
throws TaskException
{
super(SEARCH_TASK_CLASS, properties);
Filter tmpFilter = null;
SearchScope tmpScope = null;
String tmpAuthzDN = null;
String tmpBaseDN = null;
String tmpFile = null;
String[] tmpAttrs = null;
for (final Map.Entry> entry :
properties.entrySet())
{
final TaskProperty p = entry.getKey();
final String attrName = StaticUtils.toLowerCase(p.getAttributeName());
final List