mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 08:39:37 -05:00
80 lines
2.5 KiB
C++
80 lines
2.5 KiB
C++
/*
|
|
* Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
*/
|
|
|
|
|
|
#include <ldap.h>
|
|
|
|
#include "debug.h"
|
|
|
|
#include "LDAPAddRequest.h"
|
|
#include "LDAPEntry.h"
|
|
#include "LDAPException.h"
|
|
#include "LDAPMessageQueue.h"
|
|
#include "LDAPResult.h"
|
|
|
|
using namespace std;
|
|
|
|
LDAPAddRequest::LDAPAddRequest(const LDAPAddRequest& req) :
|
|
LDAPRequest(req){
|
|
DEBUG(LDAP_DEBUG_CONSTRUCT, "LDAPAddRequest::LDAPAddRequest(&)" << endl);
|
|
m_entry=new LDAPEntry(*(req.m_entry));
|
|
}
|
|
|
|
LDAPAddRequest::LDAPAddRequest(const LDAPEntry* entry,
|
|
LDAPAsynConnection *connect, const LDAPConstraints *cons,
|
|
bool isReferral, const LDAPRequest* parent)
|
|
: LDAPRequest(connect, cons, isReferral,parent){
|
|
DEBUG(LDAP_DEBUG_CONSTRUCT, "LDAPAddRequest::LDAPAddRequest()" << endl);
|
|
DEBUG(LDAP_DEBUG_CONSTRUCT | LDAP_DEBUG_PARAMETER,
|
|
" entry:" << entry << endl
|
|
<< " isReferral:" << isReferral << endl);
|
|
m_requestType = LDAPRequest::ADD;
|
|
m_entry = new LDAPEntry(*entry);
|
|
}
|
|
|
|
LDAPAddRequest::~LDAPAddRequest(){
|
|
DEBUG(LDAP_DEBUG_DESTROY, "LDAPAddRequest::~LDAPAddRequest()" << endl);
|
|
delete m_entry;
|
|
// flush the cache, as the add may affect searches
|
|
m_connection->flush_cache();
|
|
}
|
|
|
|
LDAPMessageQueue* LDAPAddRequest::sendRequest(){
|
|
DEBUG(LDAP_DEBUG_TRACE, "LDAPAddRequest::sendRequest()" << endl);
|
|
int msgID=0;
|
|
const LDAPAttributeList* list=m_entry->getAttributes();
|
|
LDAPMod** attrs=list->toLDAPModArray();
|
|
LDAPControl** tmpSrvCtrls = m_cons->getSrvCtrlsArray();
|
|
LDAPControl** tmpClCtrls = m_cons->getClCtrlsArray();
|
|
int err=ldap_add_ext(m_connection->getSessionHandle(),
|
|
m_entry->getDN().c_str(),attrs,tmpSrvCtrls,tmpClCtrls,&msgID);
|
|
LDAPControlSet::freeLDAPControlArray(tmpSrvCtrls);
|
|
LDAPControlSet::freeLDAPControlArray(tmpClCtrls);
|
|
ldap_mods_free(attrs,1);
|
|
if(err != LDAP_SUCCESS){
|
|
throw LDAPException(err);
|
|
}else{
|
|
m_msgID=msgID;
|
|
return new LDAPMessageQueue(this);
|
|
}
|
|
}
|
|
|
|
LDAPRequest* LDAPAddRequest::followReferral(LDAPMsg* ref){
|
|
DEBUG(LDAP_DEBUG_TRACE, "LDAPAddRequest::followReferral()"<< endl);
|
|
LDAPUrlList::const_iterator usedUrl;
|
|
LDAPUrlList urls = ((LDAPResult*)ref)->getReferralUrls();
|
|
LDAPAsynConnection* con = 0;
|
|
try {
|
|
con = getConnection()->referralConnect(urls,usedUrl,m_cons);
|
|
} catch(LDAPException e){
|
|
delete con;
|
|
return 0;
|
|
}
|
|
if(con != 0){
|
|
return new LDAPAddRequest(m_entry, con, m_cons,true,this);
|
|
}
|
|
return 0;
|
|
}
|
|
|