/*************************************************************************** * Copyright (C) 2012 by Timothy Pearson * * kb9vqf@pearsoncomputing.net * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * 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, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "realmintropage.h" #include "realmconfigpage.h" #include "certconfigpage.h" #include "realmfinishpage.h" #include "realmwizard.h" #include "realmwizard.moc" RealmWizard::RealmWizard(LDAPController* controller, TQString fqdn, TQWidget *parent, const char *name) : KWizard(parent, name, true), m_controller(controller), m_fqdn(fqdn) { setCaption(i18n("LDAP Realm Wizard")); intropage = new RealmIntroPage(this); addPage (intropage, i18n( "Step 1: Introduction" ) ); setHelpEnabled(TQWizard::page(0), false); realmpage = new RealmConfigPage(this); addPage (realmpage, i18n( "Step 2: Set Up New Realm" ) ); setHelpEnabled(TQWizard::page(1), false); certpage = new CertConfigPage(this); addPage (certpage, i18n( "Step 3: Set Up Certificates" ) ); setHelpEnabled(TQWizard::page(2), false); finishpage = new RealmFinishPage(this); addPage (finishpage, i18n( "Step 4: Initialize New Realm" ) ); setHelpEnabled(TQWizard::page(3), false); // Set up some defaults realmpage->txtKDCPort->setValue(88); realmpage->txtAdminServerPort->setValue(749); realmpage->txtUIDOffset->setValue(5000); realmpage->txtGIDOffset->setValue(5000); realmpage->txtGIDOffset->setValue(5000); TQString domainGuess = m_fqdn; int firstDot = domainGuess.find("."); if (firstDot >= 0) { domainGuess.remove(0, firstDot+1); } realmpage->txtRealmName->setText(domainGuess); realmpage->txtKDC->setText(m_fqdn); realmpage->txtAdminServer->setText(m_fqdn); realmpage->realmNameChanged(); certpage->generateKeysEnabled->setChecked(true); finishpage->ldapAdminGroupname->setText("realmadmins"); finishpage->ldapMachineAdminGroupname->setText("machineadmins"); // Other setup finishpage->ldapAdminRealm->setEnabled(false); // Kerberos won't work unless the DNS suffix matches the realm name realmpage->txtRealmName->setEnabled(false); setFinishEnabled(TQWizard::page(3), true); setPosition(); } RealmWizard::~RealmWizard() { } void RealmWizard::next() { if (currentPage()==intropage) { TQWizard::next(); realmpage->validateEntries(); } else if (currentPage()==realmpage) { // Save realm information m_realmconfig.name = realmpage->txtRealmName->text(); m_realmconfig.bonded = false; m_realmconfig.uid_offset = realmpage->txtUIDOffset->value(); m_realmconfig.gid_offset = realmpage->txtGIDOffset->value(); m_realmconfig.domain_mappings = TQStringList::split("\n", realmpage->txtDomains->text(), FALSE); m_realmconfig.kdc = realmpage->txtKDC->text(); m_realmconfig.kdc_port = realmpage->txtKDCPort->value(); m_realmconfig.admin_server = realmpage->txtAdminServer->text(); m_realmconfig.admin_server_port = realmpage->txtAdminServerPort->value(); m_realmconfig.pkinit_require_eku = realmpage->checkRequireEKU->isChecked(); m_realmconfig.pkinit_require_krbtgt_otherName = realmpage->checkRequireKrbtgtOtherName->isChecked(); m_realmconfig.win2k_pkinit = realmpage->checkWin2k->isChecked(); m_realmconfig.win2k_pkinit_require_binding = realmpage->checkWin2kPkinitRequireBinding->isChecked(); finishpage->ldapAdminRealm->setText(realmpage->txtRealmName->text()); TQWizard::next(); certpage->processLockouts(); certpage->validateEntries(); } else if (currentPage()==certpage) { // RAJA FIXME // What to do with the certificate information? TQWizard::next(); finishpage->validateEntries(); } if (currentPage()==finishpage) { finishButton()->setFocus(); } } void RealmWizard::slotNext() { TQWizard::next(); } void RealmWizard::back() { TQWizard::back(); } bool RealmWizard::askClose(){ TQString text; if (currentPage()==intropage) { return true; } else { if ((currentPage()==certpage) || (currentPage()==finishpage)) { text = i18n("

Are you sure you want to quit the LDAP Realm Wizard?

" "

If yes, click Quit and all changes will be lost." "
If not, click Cancel to return and finish your setup.

"); } else { text = i18n("

Are you sure you want to quit the LDAP Realm Wizard?

" "

If not, click Cancel to return and finish setup.

"); } int status = KMessageBox::warningContinueCancel(this, text, i18n("All Changes Will Be Lost"), KStdGuiItem::quit()); if(status==KMessageBox::Continue){ setDefaults(); return true; } else { return false; } } } /** the cancel button is connected to the reject() slot of TQDialog, * so we have to reimplement this here to add a dialogbox to ask if we * really want to quit the wizard. */ void RealmWizard::reject() { if (askClose()){ done(-1); } } void RealmWizard::closeEvent(TQCloseEvent* e){ if ( askClose() ) done(0); else e->ignore(); } /** maybe call a dialog that the wizard has finished. */ void RealmWizard::accept() { // Validate entries if (TQString(finishpage->ldapAdminPassword->password()) != TQString(finishpage->ldapConfirmAdminPassword->password())) { KMessageBox::error(this, i18n("Passwords do not match!

Please re-enter the new administration account password"), i18n("Input Error")); return; } if (TQString(finishpage->ldapAdminPassword->password()) == "") { KMessageBox::error(this, i18n("Password required!

Please enter the new administration account password"), i18n("Input Error")); return; } // Try to create realm TQString errorString; // RAJA FIXME // root account should not be locked to "admin"! backButton()->setEnabled(false); nextButton()->setEnabled(false); finishButton()->setEnabled(false); cancelButton()->setEnabled(false); if (m_controller->createNewLDAPRealm(this, m_realmconfig, finishpage->ldapAdminUsername->text(), finishpage->ldapAdminGroupname->text(), finishpage->ldapMachineAdminGroupname->text(), finishpage->ldapAdminPassword->password(), "admin", finishpage->ldapAdminPassword->password(), finishpage->ldapAdminRealm->text(), &errorString) == 0) { done(0); } else { KMessageBox::error(this, i18n("Unable to create new realm!

Details: %1").arg(errorString), i18n("Unable to create new realm")); } backButton()->setEnabled(true); finishButton()->setEnabled(true); cancelButton()->setEnabled(true); } /** calls all save functions after resetting all features/ OS/ theme selections to Trinity default */ void RealmWizard::setDefaults() { // if(realm_dirty) // realmpage->save(false); } /** there seems to be a bug in TQWizard, that makes this evil hack necessary */ void RealmWizard::setPosition() { TQSize hint = intropage->sizeHint(); TQSize realm_size = realmpage->sizeHint(); TQSize finish_size = finishpage->sizeHint(); // get the width of the broadest child-widget if ( hint.width() < realm_size.width() ) hint.setWidth(realm_size.width()); if ( hint.width() < finish_size.width() ) hint.setWidth(finish_size.width()); // get the height of the highest child-widget if ( hint.height() < realm_size.height() ) hint.setHeight(realm_size.height()); if ( hint.height() < finish_size.height() ) hint.setHeight(finish_size.height()); // set the position TQRect rect = KGlobalSettings::desktopGeometry(TQCursor::pos()); int w = rect.x() + (rect.width() - hint.width())/2 - 9; int h = rect.y() + (rect.height() - hint.height())/2; move(w, h); }