Search in sources :

Example 1 with DeleteRequestImpl

use of org.apache.directory.api.ldap.model.message.DeleteRequestImpl in project directory-ldap-api by apache.

the class DelRequestTest method testDecodeDelRequestSuccess.

/**
 * Test the decoding of a full DelRequest
 */
@Test
public void testDecodeDelRequestSuccess() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x27);
    stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
    0x25, 0x02, 0x01, // messageID MessageID
    0x01, // DelRequest ::= [APPLICATION 10] LDAPDN;
    0x4A, 0x20, 'c', 'n', '=', 't', 'e', 's', 't', 'M', 'o', 'd', 'i', 'f', 'y', ',', 'o', 'u', '=', 'u', 's', 'e', 'r', 's', ',', 'o', 'u', '=', 's', 'y', 's', 't', 'e', 'm' });
    String decodedPdu = Strings.dumpBytes(stream.array());
    stream.flip();
    // Allocate a LdapMessage Container
    LdapMessageContainer<DeleteRequestDecorator> container = new LdapMessageContainer<DeleteRequestDecorator>(codec);
    // Decode a DelRequest PDU
    try {
        ldapDecoder.decode(stream, container);
    } catch (DecoderException de) {
        de.printStackTrace();
        fail(de.getMessage());
    }
    // Check the decoded DelRequest PDU
    DeleteRequest delRequest = container.getMessage();
    assertEquals(1, delRequest.getMessageId());
    assertEquals("cn=testModify,ou=users,ou=system", delRequest.getName().toString());
    // Check the length
    DeleteRequest internalDeleteRequest = new DeleteRequestImpl();
    internalDeleteRequest.setMessageId(delRequest.getMessageId());
    internalDeleteRequest.setName(delRequest.getName());
    // Check the encoding
    try {
        ByteBuffer bb = encoder.encodeMessage(internalDeleteRequest);
        // Check the length
        assertEquals(0x27, bb.limit());
        String encodedPdu = Strings.dumpBytes(bb.array());
        assertEquals(encodedPdu, decodedPdu);
    } catch (EncoderException ee) {
        ee.printStackTrace();
        fail(ee.getMessage());
    }
}
Also used : LdapMessageContainer(org.apache.directory.api.ldap.codec.api.LdapMessageContainer) DecoderException(org.apache.directory.api.asn1.DecoderException) EncoderException(org.apache.directory.api.asn1.EncoderException) DeleteRequestDecorator(org.apache.directory.api.ldap.codec.decorators.DeleteRequestDecorator) Asn1Decoder(org.apache.directory.api.asn1.ber.Asn1Decoder) DeleteRequestImpl(org.apache.directory.api.ldap.model.message.DeleteRequestImpl) ByteBuffer(java.nio.ByteBuffer) DeleteRequest(org.apache.directory.api.ldap.model.message.DeleteRequest) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Example 2 with DeleteRequestImpl

use of org.apache.directory.api.ldap.model.message.DeleteRequestImpl in project directory-ldap-api by apache.

the class InitDelRequest method action.

/**
 * {@inheritDoc}
 */
public void action(LdapMessageContainer<DeleteRequestDecorator> container) throws DecoderException {
    // Create the DeleteRequest LdapMessage instance and store it in the container
    DeleteRequest internaldelRequest = new DeleteRequestImpl();
    internaldelRequest.setMessageId(container.getMessageId());
    DeleteRequestDecorator delRequest = new DeleteRequestDecorator(container.getLdapCodecService(), internaldelRequest);
    container.setMessage(delRequest);
    // And store the Dn into it
    // Get the Value and store it in the DelRequest
    TLV tlv = container.getCurrentTLV();
    // We have to handle the special case of a 0 length matched
    // Dn
    Dn entry;
    if (tlv.getLength() == 0) {
        // This will generate a PROTOCOL_ERROR
        throw new DecoderException(I18n.err(I18n.ERR_04073));
    } else {
        byte[] dnBytes = tlv.getValue().getData();
        String dnStr = Strings.utf8ToString(dnBytes);
        try {
            entry = new Dn(dnStr);
        } catch (LdapInvalidDnException ine) {
            String msg = I18n.err(I18n.ERR_04074, dnStr, Strings.dumpBytes(dnBytes), ine.getLocalizedMessage());
            LOG.error(msg);
            DeleteResponseImpl response = new DeleteResponseImpl(delRequest.getMessageId());
            throw new ResponseCarryingException(msg, response, ResultCodeEnum.INVALID_DN_SYNTAX, Dn.EMPTY_DN, ine);
        }
        delRequest.setName(entry);
    }
    // We can have an END transition
    container.setGrammarEndAllowed(true);
    if (IS_DEBUG) {
        LOG.debug("Deleting Dn {}", entry);
    }
}
Also used : DecoderException(org.apache.directory.api.asn1.DecoderException) ResponseCarryingException(org.apache.directory.api.ldap.codec.api.ResponseCarryingException) DeleteResponseImpl(org.apache.directory.api.ldap.model.message.DeleteResponseImpl) DeleteRequestDecorator(org.apache.directory.api.ldap.codec.decorators.DeleteRequestDecorator) DeleteRequestImpl(org.apache.directory.api.ldap.model.message.DeleteRequestImpl) Dn(org.apache.directory.api.ldap.model.name.Dn) DeleteRequest(org.apache.directory.api.ldap.model.message.DeleteRequest) TLV(org.apache.directory.api.asn1.ber.tlv.TLV) LdapInvalidDnException(org.apache.directory.api.ldap.model.exception.LdapInvalidDnException)

Example 3 with DeleteRequestImpl

use of org.apache.directory.api.ldap.model.message.DeleteRequestImpl in project ldapchai by ldapchai.

the class ApacheLdapProviderImpl method deleteEntry.

public void deleteEntry(final String entryDN) throws ChaiOperationException, ChaiUnavailableException, IllegalStateException {
    activityPreCheck();
    getInputValidator().deleteEntry(entryDN);
    try {
        final DeleteRequest deleteRequest = new DeleteRequestImpl();
        deleteRequest.setName(new Dn(entryDN));
        final DeleteResponse response = connection.delete(deleteRequest);
        processResponse(response);
    } catch (LdapException e) {
        throw ChaiOperationException.forErrorMessage(e.getMessage());
    }
}
Also used : DeleteResponse(org.apache.directory.api.ldap.model.message.DeleteResponse) DeleteRequestImpl(org.apache.directory.api.ldap.model.message.DeleteRequestImpl) Dn(org.apache.directory.api.ldap.model.name.Dn) DeleteRequest(org.apache.directory.api.ldap.model.message.DeleteRequest) LdapException(org.apache.directory.api.ldap.model.exception.LdapException)

Example 4 with DeleteRequestImpl

use of org.apache.directory.api.ldap.model.message.DeleteRequestImpl in project directory-ldap-api by apache.

the class LdapNetworkConnection method deleteTree.

/**
 * deletes the entry with the given Dn, and all its children
 *
 * @param dn the target entry's Dn as a String
 * @throws LdapException If the Dn is not valid or if the deletion failed
 */
public void deleteTree(String dn) throws LdapException {
    try {
        String treeDeleteOid = "1.2.840.113556.1.4.805";
        Dn newDn = new Dn(dn);
        if (isControlSupported(treeDeleteOid)) {
            DeleteRequest deleteRequest = new DeleteRequestImpl();
            deleteRequest.setName(newDn);
            deleteRequest.addControl(new OpaqueControl(treeDeleteOid));
            DeleteResponse deleteResponse = delete(deleteRequest);
            processResponse(deleteResponse);
        } else {
            String msg = "The subtreeDelete control (1.2.840.113556.1.4.805) is not supported by the server\n" + " The deletion has been aborted";
            LOG.error(msg);
            throw new LdapException(msg);
        }
    } catch (LdapInvalidDnException e) {
        LOG.error(e.getMessage(), e);
        throw new LdapException(e.getMessage(), e);
    }
}
Also used : DeleteResponse(org.apache.directory.api.ldap.model.message.DeleteResponse) DeleteRequestImpl(org.apache.directory.api.ldap.model.message.DeleteRequestImpl) Dn(org.apache.directory.api.ldap.model.name.Dn) OpaqueControl(org.apache.directory.api.ldap.model.message.controls.OpaqueControl) DeleteRequest(org.apache.directory.api.ldap.model.message.DeleteRequest) LdapException(org.apache.directory.api.ldap.model.exception.LdapException) LdapInvalidDnException(org.apache.directory.api.ldap.model.exception.LdapInvalidDnException)

Example 5 with DeleteRequestImpl

use of org.apache.directory.api.ldap.model.message.DeleteRequestImpl in project directory-ldap-api by apache.

the class LdapNetworkConnection method deleteTree.

/**
 * deletes the entry with the given Dn, and all its children
 *
 * @param dn the target entry's Dn
 * @throws LdapException If the Dn is not valid or if the deletion failed
 */
public void deleteTree(Dn dn) throws LdapException {
    String treeDeleteOid = "1.2.840.113556.1.4.805";
    if (isControlSupported(treeDeleteOid)) {
        DeleteRequest deleteRequest = new DeleteRequestImpl();
        deleteRequest.setName(dn);
        deleteRequest.addControl(new OpaqueControl(treeDeleteOid));
        DeleteResponse deleteResponse = delete(deleteRequest);
        processResponse(deleteResponse);
    } else {
        String msg = "The subtreeDelete control (1.2.840.113556.1.4.805) is not supported by the server\n" + " The deletion has been aborted";
        LOG.error(msg);
        throw new LdapException(msg);
    }
}
Also used : DeleteResponse(org.apache.directory.api.ldap.model.message.DeleteResponse) DeleteRequestImpl(org.apache.directory.api.ldap.model.message.DeleteRequestImpl) OpaqueControl(org.apache.directory.api.ldap.model.message.controls.OpaqueControl) DeleteRequest(org.apache.directory.api.ldap.model.message.DeleteRequest) LdapException(org.apache.directory.api.ldap.model.exception.LdapException)

Aggregations

DeleteRequest (org.apache.directory.api.ldap.model.message.DeleteRequest)7 DeleteRequestImpl (org.apache.directory.api.ldap.model.message.DeleteRequestImpl)7 DeleteResponse (org.apache.directory.api.ldap.model.message.DeleteResponse)4 DecoderException (org.apache.directory.api.asn1.DecoderException)3 DeleteRequestDecorator (org.apache.directory.api.ldap.codec.decorators.DeleteRequestDecorator)3 LdapException (org.apache.directory.api.ldap.model.exception.LdapException)3 Dn (org.apache.directory.api.ldap.model.name.Dn)3 ByteBuffer (java.nio.ByteBuffer)2 EncoderException (org.apache.directory.api.asn1.EncoderException)2 Asn1Decoder (org.apache.directory.api.asn1.ber.Asn1Decoder)2 LdapMessageContainer (org.apache.directory.api.ldap.codec.api.LdapMessageContainer)2 AbstractCodecServiceTest (org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)2 LdapInvalidDnException (org.apache.directory.api.ldap.model.exception.LdapInvalidDnException)2 OpaqueControl (org.apache.directory.api.ldap.model.message.controls.OpaqueControl)2 Test (org.junit.Test)2 TLV (org.apache.directory.api.asn1.ber.tlv.TLV)1 CodecControl (org.apache.directory.api.ldap.codec.api.CodecControl)1 ResponseCarryingException (org.apache.directory.api.ldap.codec.api.ResponseCarryingException)1 Control (org.apache.directory.api.ldap.model.message.Control)1 DeleteResponseImpl (org.apache.directory.api.ldap.model.message.DeleteResponseImpl)1