|
|
|
/*
|
|
|
|
* Copyright (c) 1998 Denis Perchine <dyp@perchine.com>
|
|
|
|
* Copyright (c) 2004 Szombathelyi György <gyurco@freemail.hu>
|
|
|
|
* Former maintainer: Adriaan de Groot <groot@kde.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public
|
|
|
|
* License version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public License
|
|
|
|
* along with this library; see the file COPYING.LIB. If not, write to
|
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include <kdebug.h>
|
|
|
|
|
|
|
|
#include <ktabwidget.h>
|
|
|
|
#include <kcombobox.h>
|
|
|
|
#include <tdemessagebox.h>
|
|
|
|
#include <klineedit.h>
|
|
|
|
#include <knuminput.h>
|
|
|
|
#include <kpushbutton.h>
|
|
|
|
#include <tdeabc/ldapconfigwidget.h>
|
|
|
|
#include <tdeabc/ldapurl.h>
|
|
|
|
|
|
|
|
#include "editDefaults.h"
|
|
|
|
#include "generalsettings.h"
|
|
|
|
#include "filessettings.h"
|
|
|
|
#include "ldapsettings.h"
|
|
|
|
#include "ldapsamba.h"
|
|
|
|
#include "passwordpolicy.h"
|
|
|
|
#include "misc.h"
|
|
|
|
|
|
|
|
editDefaults::editDefaults( TDEConfigSkeleton *config, TQWidget *parent, const char *name ) :
|
|
|
|
TDEConfigDialog( parent, name, config, IconList,
|
|
|
|
Default|Ok|Apply|Cancel|Help, Ok, true )
|
|
|
|
{
|
|
|
|
KTabWidget *page1 = new KTabWidget( this );
|
|
|
|
page1->setMargin( KDialog::marginHint() );
|
|
|
|
|
|
|
|
GeneralSettings *page1a = new GeneralSettings( this );
|
|
|
|
page1a->kcfg_shell->insertItem( i18n("<Empty>" ) );
|
|
|
|
page1a->kcfg_shell->insertStringList( readShells() );
|
|
|
|
page1->addTab( page1a, i18n("Connection") );
|
|
|
|
PasswordPolicy *page1b = new PasswordPolicy( this );
|
|
|
|
page1->addTab( page1b, i18n("Password Policy") );
|
|
|
|
addPage( page1, i18n("General"), "", i18n("General Settings") );
|
|
|
|
|
|
|
|
FilesSettings *page2 = new FilesSettings( this );
|
|
|
|
addPage( page2, i18n("Files"), "", i18n("File Source Settings") );
|
|
|
|
|
|
|
|
KTabWidget *page3 = new KTabWidget( this );
|
|
|
|
page3->setMargin( KDialog::marginHint() );
|
|
|
|
ldconf =
|
|
|
|
new TDEABC::LdapConfigWidget(
|
|
|
|
TDEABC::LdapConfigWidget::W_USER |
|
|
|
|
TDEABC::LdapConfigWidget::W_PASS |
|
|
|
|
TDEABC::LdapConfigWidget::W_BINDDN |
|
|
|
|
TDEABC::LdapConfigWidget::W_REALM |
|
|
|
|
TDEABC::LdapConfigWidget::W_HOST |
|
|
|
|
TDEABC::LdapConfigWidget::W_PORT |
|
|
|
|
TDEABC::LdapConfigWidget::W_VER |
|
|
|
|
TDEABC::LdapConfigWidget::W_DN |
|
|
|
|
TDEABC::LdapConfigWidget::W_SECBOX |
|
|
|
|
TDEABC::LdapConfigWidget::W_AUTHBOX,
|
|
|
|
page3 );
|
|
|
|
page3->addTab( ldconf, i18n("Connection") );
|
|
|
|
|
|
|
|
LdapSettings *page3b = new LdapSettings( this );
|
|
|
|
page3->addTab( page3b, i18n("Settings") );
|
|
|
|
|
|
|
|
page3c = new LdapSamba( this );
|
|
|
|
connect( page3c->domQuery, TQT_SIGNAL(clicked()), TQT_SLOT(slotQueryClicked()) );
|
|
|
|
page3->addTab( page3c, i18n("Samba") );
|
|
|
|
addPage( page3, i18n("LDAP"), "", i18n("LDAP Source Settings") );
|
|
|
|
}
|
|
|
|
|
|
|
|
void editDefaults::slotQueryClicked()
|
|
|
|
{
|
|
|
|
TDEABC::LDAPUrl _url = ldconf->url();
|
|
|
|
|
|
|
|
mResult.clear();
|
|
|
|
mCancelled = true;
|
|
|
|
mDomain.name = "";
|
|
|
|
mDomain.sid = "";
|
|
|
|
mDomain.ridbase = 1000;
|
|
|
|
|
|
|
|
TQStringList attrs;
|
|
|
|
TQString filter = "(objectClass=sambaDomain)";
|
|
|
|
TQString dom = page3c->kcfg_samdomain->text();
|
|
|
|
if ( !dom.isEmpty() ) filter = "(&(sambaDomainName=" + dom + ")"+filter+")";
|
|
|
|
attrs.append("sambaDomainName");
|
|
|
|
attrs.append("sambaSID");
|
|
|
|
attrs.append("sambaAlgorithmicRidBase");
|
|
|
|
_url.setAttributes( attrs );
|
|
|
|
_url.setScope( TDEABC::LDAPUrl::One );
|
|
|
|
_url.setExtension( "x-dir", "base" );
|
|
|
|
_url.setFilter( filter );
|
|
|
|
|
|
|
|
kdDebug() << "sendQuery url: " << _url.prettyURL() << endl;
|
|
|
|
mLdif.startParsing();
|
|
|
|
TDEIO::Job *job = TDEIO::get( _url, true, false );
|
|
|
|
// job->addMetaData("no-auth-prompt","true");
|
|
|
|
connect( job, TQT_SIGNAL( data( TDEIO::Job*, const TQByteArray& ) ),
|
|
|
|
this, TQT_SLOT( loadData( TDEIO::Job*, const TQByteArray& ) ) );
|
|
|
|
connect( job, TQT_SIGNAL( result( TDEIO::Job* ) ),
|
|
|
|
this, TQT_SLOT( loadResult( TDEIO::Job* ) ) );
|
|
|
|
|
|
|
|
mProg = new KProgressDialog( this, 0, i18n("LDAP Query"), _url.prettyURL(), true );
|
|
|
|
mProg->progressBar()->setValue( 0 );
|
|
|
|
mProg->progressBar()->setTotalSteps( 1 );
|
|
|
|
mProg->exec();
|
|
|
|
delete mProg;
|
|
|
|
if ( mCancelled ) {
|
|
|
|
kdDebug(5700) << "query cancelled!" << endl;
|
|
|
|
job->kill( true );
|
|
|
|
} else {
|
|
|
|
if ( !mErrorMsg.isEmpty() )
|
|
|
|
KMessageBox::error( this, mErrorMsg );
|
|
|
|
else {
|
|
|
|
mDomain = mResult.first();
|
|
|
|
if ( !mDomain.name.isEmpty() && !mDomain.sid.isEmpty() ) {
|
|
|
|
page3c->kcfg_samdomain->setText( mDomain.name );
|
|
|
|
page3c->kcfg_samdomsid->setText( mDomain.sid );
|
|
|
|
page3c->kcfg_samridbase->setValue( mDomain.ridbase );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
kdDebug() << "domQueryx" << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void editDefaults::loadData( TDEIO::Job*, const TQByteArray& d )
|
|
|
|
{
|
|
|
|
TDEABC::LDIF::ParseVal ret;
|
|
|
|
|
|
|
|
if ( d.size() ) {
|
|
|
|
mLdif.setLDIF( d );
|
|
|
|
} else {
|
|
|
|
mLdif.endLDIF();
|
|
|
|
}
|
|
|
|
do {
|
|
|
|
ret = mLdif.nextItem();
|
|
|
|
switch ( ret ) {
|
|
|
|
case TDEABC::LDIF::Item:
|
|
|
|
if ( mLdif.attr() == "sambaDomainName" )
|
|
|
|
mDomain.name = TQString::fromUtf8( mLdif.val(), mLdif.val().size() );
|
|
|
|
else if ( mLdif.attr() == "sambaSID" )
|
|
|
|
mDomain.sid = TQString::fromUtf8( mLdif.val(), mLdif.val().size() );
|
|
|
|
else if ( mLdif.attr() == "sambaAlgorithmicRidBase" )
|
|
|
|
mDomain.ridbase = TQString::fromUtf8( mLdif.val(), mLdif.val().size() ).toUInt();
|
|
|
|
break;
|
|
|
|
case TDEABC::LDIF::EndEntry:
|
|
|
|
mProg->progressBar()->advance( 1 );
|
|
|
|
if ( !mDomain.name.isEmpty() && !mDomain.sid.isEmpty() )
|
|
|
|
mResult.push_back( mDomain );
|
|
|
|
mDomain.sid = "";
|
|
|
|
mDomain.name = "";
|
|
|
|
mDomain.ridbase = 1000;
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
} while ( ret != TDEABC::LDIF::MoreData );
|
|
|
|
}
|
|
|
|
|
|
|
|
void editDefaults::loadResult( TDEIO::Job* job)
|
|
|
|
{
|
|
|
|
int error = job->error();
|
|
|
|
if ( error && error != TDEIO::ERR_USER_CANCELED )
|
|
|
|
mErrorMsg = job->errorString();
|
|
|
|
else
|
|
|
|
mErrorMsg = "";
|
|
|
|
|
|
|
|
mCancelled = false;
|
|
|
|
mProg->close();
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "editDefaults.moc"
|