Proof-reading - fixed one usage of the i18n plural form (it wasn't doing before,...
[kdeadmin.git] / kuser / ku_userldap.h
blob2f880c8f9e3616fa0db5ae678c9a7f04ce1d014e
1 /*
2 * Copyright (c) 2004 Szombathelyi György <gyurco@freemail.hu>
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public License
15 * along with this library; see the file COPYING.LIB. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
18 **/
20 #ifndef _KU_USERLDAP_H_
21 #define _KU_USERLDAP_H_
23 #include <QObject>
25 #include <QProgressDialog>
27 #include <kldap/ldapurl.h>
28 #include <kldap/ldif.h>
29 #include <kldap/ldapsearch.h>
30 #include <kldap/ldapobject.h>
31 #include <kldap/ldapoperation.h>
33 #include <kio/job.h>
35 #include "ku_user.h"
37 class KU_UserLDAP : public QObject, public KU_Users {
38 Q_OBJECT
39 public:
40 KU_UserLDAP(KU_PrefsBase *cfg);
41 virtual ~KU_UserLDAP();
43 virtual bool reload();
44 virtual bool dbcommit();
46 private slots:
47 void result( KLDAP::LdapSearch *search );
48 void data( KLDAP::LdapSearch *search, const KLDAP::LdapObject& data );
49 private:
50 KLDAP::LdapUrl mUrl;
51 QProgressDialog *mProg;
52 bool mOk;
53 int mAdv;
54 int schemaversion;
55 QMap<int, QStringList> mObjectClasses;
57 QString getRDN( const KU_User &user ) const;
58 void createModStruct( const KU_User &user, int oldindex, KLDAP::LdapOperation::ModOps &ops);
60 virtual void createPassword( KU_User &user, const QString &password );
63 #endif // _KU_USERLDAP_H_