File: administrator_record.cpp

package info (click to toggle)
kolabadmin 0.0.20080222-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 928 kB
  • ctags: 978
  • sloc: cpp: 7,692; makefile: 4
file content (180 lines) | stat: -rw-r--r-- 6,890 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/*
    This file is part of KolabAdmin.

    Copyright (C) 2006 Tobias Koenig <tobias.koenig@credativ.de>

    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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/

#include "connection.h"
#include "crypto.h"
#include "tool.h"

#include "administrator_record.h"

using namespace Form;

Entry AdministratorRecord::loadEntry( const QString &id, PagePolicy::State )
{
  QString filter( "objectClass=*" );
  QLdapResponse response = Connection::self()->search( id, QLdap::Base, filter );

  if ( !response.isValid() || response.entries().isEmpty() )
    return Entry();

  Entry entry = Entry::fromLdapEntry( response.entries().first() );

  if ( entry.value( "givenName" ).isEmpty() ) {
    const QString cn = entry.value( "cn" );
    const QString sn = entry.value( "sn" );

    const QString givenName = cn.left( cn.length() - sn.length() ).trimmed();
    entry.setValue( "givenName", givenName );
  }

  return entry;
}

bool AdministratorRecord::saveEntry( const Entry &entry, PagePolicy::State state, QString &errorMsg )
{
  if ( state == PagePolicy::Add || state == PagePolicy::Modify ) {

    QString dnRoot = QString( "cn=internal,%1" ).arg( Connection::self()->baseDn() );

    QLdapEntry ldapEntry;

    ldapEntry.addValue( "objectClass", "top" );
    ldapEntry.addValue( "objectClass", "inetOrgPerson" );
    ldapEntry.addValue( "objectClass", "kolabInetOrgPerson" );

    ldapEntry.setValue( "givenName", entry.value( "givenName" ) );
    ldapEntry.setValue( "sn", entry.value( "sn" ) );
    ldapEntry.setValue( "cn", QString( "%1 %2" ).arg( entry.value( "givenName" ), entry.value( "sn" ) ) );

    if ( !entry.value( "password" ).isEmpty() ) {
      QByteArray data = "{sha}" + Crypto::sha1( entry.value( "password" ).toUtf8() ).toBase64();
      ldapEntry.setValue( "userPassword", QString::fromUtf8( data ) );
    } else {
      ldapEntry.setValue( "userPassword", entry.value( "userPassword" ) );
    }

    ldapEntry.setValue( "uid", entry.value( "uid" ).toLower() );

    if ( state == PagePolicy::Modify ) {
      QString newDn = QString( "cn=%1,%2" ).arg( ldapEntry.value( "cn" ), dnRoot );

      /**
       * The 'cn' of the administrator has changed, so we have to perform some
       * extra checks.
       */
      if ( entry.id() != newDn ) {
        /**
         * Add the object under the new dn...
         */
        if ( !Connection::self()->add( newDn, ldapEntry ) ) {
          errorMsg = QObject::tr( "Could not modify administrator '%1': %2" )
                                .arg( ldapEntry.value( "cn" ), Connection::self()->errorString() );
          return false;
        }

        /**
         * ... and remove the object under the old dn.
         */
        if ( !Connection::self()->remove( entry.id() ) ) {
          errorMsg = QObject::tr( "Could not modify administrator '%1': %2" )
                                .arg( ldapEntry.value( "cn" ), Connection::self()->errorString() );
          return false;
        }

        /**
         * Add the new administrator dn to the admin group...
         */
        QString adminGroupDn = QString( "cn=admin,%1" ).arg( dnRoot );
        QLdapEntry memberEntry;

        memberEntry.setValue( "member", newDn );
        if ( !Connection::self()->addAttributes( adminGroupDn, memberEntry ) ) {
          errorMsg = QObject::tr( "Could not modify administrator '%1': %2" )
                                .arg( ldapEntry.value( "cn" ), Connection::self()->errorString() );
          return false;
        }

        /**
         * ... and remove the old administrator dn from the admin group.
         */
        memberEntry.setValue( "member", entry.id() );
        if ( !Connection::self()->removeAttributes( adminGroupDn, memberEntry ) ) {
          errorMsg = QObject::tr( "Could not modify administrator '%1': %2" )
                                .arg( ldapEntry.value( "cn" ), Connection::self()->errorString() );
          return false;
        }
      } else {
        if ( !Connection::self()->modifyAttributes( entry.id(), ldapEntry ) ) {
          errorMsg = QObject::tr( "Could not modify administrator '%1': %2" )
                                .arg( ldapEntry.value( "cn" ), Connection::self()->errorString() );
          return false;
        }
      }
    } else if ( state == PagePolicy::Add ) {

      QString dn = QString( "cn=%1,%2" ).arg( ldapEntry.value( "cn" ), dnRoot );

      /**
       * First add the administrator...
       */
      if ( !Connection::self()->add( dn, ldapEntry ) ) {
        errorMsg = QObject::tr( "Could not add administrator '%1': %2" )
                              .arg( ldapEntry.value( "cn" ), Connection::self()->errorString() );
        return false;
      }

      /**
       * ... then add the administrator dn to the admin group.
       */
      QLdapEntry memberEntry;
      memberEntry.setDn( QString( "cn=admin,cn=internal,%1" ).arg( Connection::self()->baseDn() ) );
      memberEntry.setValue( "member", dn );
      if ( !Connection::self()->addAttributes( memberEntry.dn(), memberEntry ) ) {
        errorMsg = QObject::tr( "Could not add administrator '%1' to group '%2': %3" )
                      .arg( entry.value( "cn" ), memberEntry.dn(), Connection::self()->errorString() );
        return false;
      }
    }
  } else if ( state == PagePolicy::Delete ) {
    /**
     * First remove administrator dn from admin group...
     */
    QLdapEntry memberEntry;
    memberEntry.setDn( QString( "cn=admin,cn=internal,%1" ).arg( Connection::self()->baseDn() ) );
    memberEntry.setValue( "member", entry.id() );
    if ( !Connection::self()->removeAttributes( memberEntry.dn(), memberEntry ) ) {
      errorMsg = QObject::tr( "Could not remove administrator '%1' from group '%2': %3" )
                    .arg( entry.value( "cn" ), memberEntry.dn(), Connection::self()->errorString() );
      return false;
    }

    /**
     * ... then remove the administrator itself.
     */
    QString ldapError;
    if ( !Tool::deleteObject( Connection::self(), entry.id(), ldapError ) ) {
      errorMsg = QObject::tr( "Could not remove administrator '%1': %2" )
                    .arg( entry.value( "cn" ), ldapError );
      return false;
    }
  }

  return true;
}