~ubuntu-branches/ubuntu/oneiric/kdepim/oneiric-updates

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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
/*
 * Copyright (c) 2010 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com
 * Copyright (c) 2010 Tobias Koenig <tokoe@kdab.com>
 *
 * 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 "aclmanager.h"

#include "aclentrydialog_p.h"
#include "aclutils_p.h"
#include "imapaclattribute.h"
#include "imapsettings.h"
#include "mailutil.h"

#include <akonadi/collection.h>
#include <akonadi/collectionfetchjob.h>
#include <akonadi/collectionmodifyjob.h>
#include <akonadi/contact/contactgroupexpandjob.h>
#include <akonadi/contact/contactgroupsearchjob.h>
#include <klocale.h>
#include <kmessagebox.h>
#include <kpimutils/email.h>

#include <QtCore/QAbstractListModel>
#include <QtGui/QAction>
#include <QtGui/QItemSelectionModel>

using namespace MailCommon;

class AclModel : public QAbstractListModel
{
  public:
    enum Role {
      UserIdRole = Qt::UserRole + 1,
      PermissionsRole,
      PermissionsTextRole
    };

    AclModel( QObject *parent = 0 )
      : QAbstractListModel( parent )
    {
    }

    virtual QVariant data( const QModelIndex &index, int role = Qt::DisplayRole ) const
    {
      if ( index.row() < 0 || index.row() >= mRights.count() )
        return QVariant();

      const QPair<QByteArray, KIMAP::Acl::Rights> right = mRights.at( index.row() );
      switch ( role ) {
        case Qt::DisplayRole:
          return QString::fromLatin1( "%1: %2" ).arg( QString::fromLatin1( right.first ) )
                                                .arg( AclUtils::permissionsToUserString( right.second ) );
          break;
        case UserIdRole:
          return QString::fromLatin1( right.first );
          break;
        case PermissionsRole:
          return QVariant( static_cast<int>( right.second ) );
          break;
        case PermissionsTextRole:
          return AclUtils::permissionsToUserString( right.second );
          break;
        default:
          return QVariant();
          break;
      }

      return QVariant();
    }

    virtual bool setData( const QModelIndex &index, const QVariant &value, int role = Qt::EditRole )
    {
      if ( index.row() < 0 || index.row() >= mRights.count() )
        return false;

      QPair<QByteArray, KIMAP::Acl::Rights> &right = mRights[ index.row() ];
      switch ( role ) {
        case UserIdRole:
          right.first = value.toByteArray();
          emit dataChanged( index, index );
          return true;
          break;
        case PermissionsRole:
          right.second = static_cast<KIMAP::Acl::Rights>( value.toInt() );
          emit dataChanged( index, index );
          return true;
          break;
        default:
          return false;
          break;
      }

      return false;
    }

    virtual int rowCount( const QModelIndex &parent = QModelIndex() ) const
    {
      if ( parent.isValid() )
        return 0;
      else
        return mRights.count();
    }

    void setRights( const QMap<QByteArray, KIMAP::Acl::Rights> &rights )
    {
      mRights.clear();

      QMapIterator<QByteArray, KIMAP::Acl::Rights> it( rights );
      while ( it.hasNext() ) {
        it.next();
        mRights.append( qMakePair( it.key(), it.value() ) );
      }

      reset();
    }

    QMap<QByteArray, KIMAP::Acl::Rights> rights() const
    {
      QMap<QByteArray, KIMAP::Acl::Rights> result;

      typedef QPair<QByteArray, KIMAP::Acl::Rights> RightPair;
      foreach ( const RightPair &right, mRights )
        result.insert( right.first, right.second );

      return result;
    }

  protected:
    virtual bool insertRows( int row, int count, const QModelIndex &parent = QModelIndex() )
    {
      beginInsertRows( parent, row, row + count - 1 );
      for ( int i = 0; i < count; ++i )
        mRights.insert( row, qMakePair( QByteArray(), KIMAP::Acl::Rights() ) );
      endInsertRows();

      return true;
    }

    virtual bool removeRows( int row, int count, const QModelIndex &parent = QModelIndex() )
    {
      beginRemoveRows( parent, row, row + count - 1 );
      for ( int i = 0; i < count; ++i )
        mRights.remove( row, count );
      endRemoveRows();

      return true;
    }

  private:
    QVector<QPair<QByteArray, KIMAP::Acl::Rights> > mRights;
};

class MailCommon::AclManager::Private
{
  public:
    Private( AclManager *qq )
      : q( qq ),
        mChanged( false )
    {
      mAddAction = new QAction( i18n( "Add Entry..." ), q );
      q->connect( mAddAction, SIGNAL( triggered( bool ) ),
                  q, SLOT( addAcl() ) );

      mEditAction = new QAction( i18n( "Edit Entry..." ), q );
      mEditAction->setEnabled( false );
      q->connect( mEditAction, SIGNAL( triggered( bool ) ),
                  q, SLOT( editAcl() ) );

      mDeleteAction = new QAction( i18n( "Remove Entry" ), q );
      mDeleteAction->setEnabled( false );
      q->connect( mDeleteAction, SIGNAL( triggered( bool ) ),
                  q, SLOT( deleteAcl() ) );

      mModel = new AclModel( q );

      mSelectionModel = new QItemSelectionModel( mModel );
      q->connect( mSelectionModel, SIGNAL( selectionChanged( const QItemSelection&, const QItemSelection& ) ),
                  q, SLOT( selectionChanged() ) );
    }

    ~Private()
    {
    }

    void selectionChanged()
    {
      const bool itemSelected = !mSelectionModel->selectedIndexes().isEmpty();

      bool canAdmin = (mUserRights & KIMAP::Acl::Admin);

      bool canAdminThisItem = canAdmin;
      if ( canAdmin && itemSelected ) {
        const QModelIndex index = mSelectionModel->selectedIndexes().first();
        const QString userId = index.data( AclModel::UserIdRole ).toString();
        const KIMAP::Acl::Rights rights = static_cast<KIMAP::Acl::Rights>( index.data( AclModel::PermissionsRole ).toInt() );

        // Don't allow users to remove their own admin permissions - there's no way back
        if ( mImapUserName == userId && (rights & KIMAP::Acl::Admin) )
          canAdminThisItem = false;
      }

      mAddAction->setEnabled( canAdmin );
      mEditAction->setEnabled( itemSelected && canAdminThisItem );
      mDeleteAction->setEnabled( itemSelected && canAdminThisItem );
    }

    void addAcl()
    {
      AclEntryDialog dlg;
      dlg.setCaption( i18n( "Add ACL" ) );

      if ( !dlg.exec() )
        return;

      if ( mModel->insertRow( mModel->rowCount() ) ) {
        const QModelIndex index = mModel->index( mModel->rowCount() - 1, 0 );
        mModel->setData( index, dlg.userId(), AclModel::UserIdRole );
        mModel->setData( index, static_cast<int>( dlg.permissions() ), AclModel::PermissionsRole );

        mChanged = true;
      }
    }

    void editAcl()
    {
      const QModelIndex index = mSelectionModel->selectedIndexes().first();
      const QString userId = index.data( AclModel::UserIdRole ).toString();
      const KIMAP::Acl::Rights permissions = static_cast<KIMAP::Acl::Rights>( index.data( AclModel::PermissionsRole ).toInt() );

      AclEntryDialog dlg;
      dlg.setCaption( i18n( "Edit ACL" ) );
      dlg.setUserId( userId );
      dlg.setPermissions( permissions );

      if ( !dlg.exec() )
        return;

      mModel->setData( index, dlg.userId(), AclModel::UserIdRole );
      mModel->setData( index, static_cast<int>( dlg.permissions() ), AclModel::PermissionsRole );
      mChanged = true;
    }

    void deleteAcl()
    {
      const QModelIndex index = mSelectionModel->selectedIndexes().first();
      const QString userId = index.data( AclModel::UserIdRole ).toString();

      if ( mImapUserName == userId ) {
        if ( KMessageBox::Cancel == KMessageBox::warningContinueCancel( 0,
           i18n( "Do you really want to remove your own permissions for this folder? You will not be able to access it afterwards." ), i18n( "Remove" ) ) )
          return;
      }

      mModel->removeRow( index.row(), QModelIndex() );
      mChanged = true;
    }

    /**
     * We call this method if our first try to get the ACLs for the user fails.
     * That's the case if the ACLs use a different user id than the login name.
     *
     * Examples:
     *   login: testuser                acls: testuser@mydomain.org
     *   login: testuser@mydomain.org   acls: testuser
     */
    static QString guessUserName( const QString &loginName, const QString &serverName )
    {
      if ( loginName.contains( QLatin1Char( '@' ) ) ) {
        // strip of the domain part and use user name only
        return loginName.left( loginName.indexOf( QLatin1Char( '@' ) ) );
      } else {
        int pos = serverName.lastIndexOf( QLatin1Char( '.' ) );
        if ( pos == -1 ) // no qualified domain name, only hostname
          return QString::fromLatin1( "%1@%2" ).arg( loginName ).arg( serverName );

        pos = serverName.lastIndexOf( QLatin1Char( '.' ), pos - 1 );
        if ( pos == -1 ) // a simple domain name e.g. mydomain.org
          return QString::fromLatin1( "%1@%2" ).arg( loginName ).arg( serverName );
        else
          return QString::fromLatin1( "%1@%2" ).arg( loginName ).arg( serverName.mid( pos + 1 ) );
      }
    }

    void setCollection( const Akonadi::Collection &collection )
    {
      mCollection = collection;
      mChanged = false;

      const MailCommon::ImapAclAttribute *attribute = collection.attribute<MailCommon::ImapAclAttribute>();
      const QMap<QByteArray, KIMAP::Acl::Rights> rights = attribute->rights();

      OrgKdeAkonadiImapSettingsInterface *imapSettingsInterface = MailCommon::Util::createImapSettingsInterface( collection.resource() );
      
      QString loginName;
      QString serverName;
      if ( imapSettingsInterface->isValid() ) {
        QDBusReply<QString> reply = imapSettingsInterface->userName();
        if ( reply.isValid() )
          loginName = reply;

        reply = imapSettingsInterface->imapServer();
        if ( reply.isValid() ) {
          serverName = reply;
        }
      }

      delete imapSettingsInterface;

      mImapUserName = loginName;
      if ( !rights.contains( loginName.toUtf8() ) ) {
        const QString guessedUserName = guessUserName( loginName, serverName );
        if ( rights.contains( guessedUserName.toUtf8() ) )
          mImapUserName = guessedUserName;
      }

      mUserRights = rights[ mImapUserName.toUtf8() ];

      mModel->setRights( rights );
      selectionChanged();
    }

    AclManager *q;
    AclModel *mModel;
    QItemSelectionModel *mSelectionModel;
    QAction *mAddAction;
    QAction *mEditAction;
    QAction *mDeleteAction;

    Akonadi::Collection mCollection;
    QString mImapUserName;
    KIMAP::Acl::Rights mUserRights;
    bool mChanged;
};

AclManager::AclManager( QObject *parent )
  : QObject( parent ), d( new Private( this ) )
{
}

AclManager::~AclManager()
{
  delete d;
}

void AclManager::setCollection( const Akonadi::Collection &collection )
{
  d->setCollection( collection );
  emit collectionChanged( d->mCollection );
}

Akonadi::Collection AclManager::collection() const
{
  return d->mCollection;
}

QAbstractItemModel* AclManager::model() const
{
  return d->mModel;
}

QItemSelectionModel* AclManager::selectionModel() const
{
  return d->mSelectionModel; 
}

QAction* AclManager::addAction() const
{
  return d->mAddAction;
}

QAction* AclManager::editAction() const
{
  return d->mEditAction;
}

QAction* AclManager::deleteAction() const
{
  return d->mDeleteAction;
}

void AclManager::save()
{
  if ( !d->mCollection.isValid() || !d->mChanged )
    return;

  // refresh the collection, it might be outdated in the meantime
  Akonadi::CollectionFetchJob *job = new Akonadi::CollectionFetchJob( d->mCollection, Akonadi::CollectionFetchJob::Base );
  if ( !job->exec() )
    return;

  if ( job->collections().isEmpty() )
    return;

  d->mCollection = job->collections().first();

  d->mChanged = false;

  MailCommon::ImapAclAttribute *attribute = d->mCollection.attribute<MailCommon::ImapAclAttribute>();
  QMap<QByteArray, KIMAP::Acl::Rights> newRights;

  const QMap<QByteArray, KIMAP::Acl::Rights> rights = d->mModel->rights();
  QMapIterator<QByteArray, KIMAP::Acl::Rights> it( rights );
  while ( it.hasNext() ) {
    it.next();

    // we can use job->exec() here, it is not a hot path
    Akonadi::ContactGroupSearchJob *searchJob = new Akonadi::ContactGroupSearchJob( this );
    searchJob->setQuery( Akonadi::ContactGroupSearchJob::Name, it.key() );
    searchJob->setLimit( 1 );
    if ( !searchJob->exec() ) {
      continue;
    }

    if ( !searchJob->contactGroups().isEmpty() ) { // it has been a distribution list
      Akonadi::ContactGroupExpandJob *expandJob = new Akonadi::ContactGroupExpandJob( searchJob->contactGroups().first(), this );
      if ( expandJob->exec() ) {
        foreach ( const KABC::Addressee &contact, expandJob->contacts() ) {
          const QByteArray rawEmail = KPIMUtils::extractEmailAddress( contact.preferredEmail().toUtf8() );
          if ( !rawEmail.isEmpty() )
            newRights[ rawEmail ] = it.value();
        }
      }
    } else { // it has been a normal contact
      const QByteArray rawEmail = KPIMUtils::extractEmailAddress( it.key() );
      if ( !rawEmail.isEmpty() )
        newRights[ rawEmail ] = it.value();
    }
  }

  attribute->setRights( newRights );

  new Akonadi::CollectionModifyJob( d->mCollection );
}

#include "aclmanager.moc"