~ubuntu-branches/ubuntu/utopic/smb4k/utopic-proposed

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
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
/***************************************************************************
    smb4kbookmarkmenu  -  Bookmark menu
                             -------------------
    begin                : Sat Apr 02 2011
    copyright            : (C) 2011-2012 by Alexander Reinholdt
    email                : alexander.reinholdt@kdemail.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., 51 Franklin Street, Suite 500, Boston,*
 *   MA 02110-1335, USA                                                    *
 ***************************************************************************/

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

// application specific includes
#include "smb4kbookmarkmenu.h"
#include "core/smb4kbookmark.h"
#include "core/smb4kshare.h"
#include "core/smb4kbookmarkhandler.h"
#include "core/smb4kmounter.h"
#include "core/smb4ksettings.h"
#include "core/smb4kglobal.h"

// Qt includes
#include <QDebug>

// KDE includes
#include <klocale.h>
#include <kaction.h>
#include <kicon.h>
#include <kmenu.h>

using namespace Smb4KGlobal;


Smb4KBookmarkMenu::Smb4KBookmarkMenu( int type, QWidget *parentWidget, QObject *parent )
: KActionMenu( KIcon( "folder-favorites" ), i18n( "Bookmarks" ), parent ), m_type( type ),
  m_parent_widget( parentWidget )
{
  // Set up action collection
  m_action_collection = new KActionCollection( this );

  // Set up action group for the bookmark groups
  m_groups = new QActionGroup( m_action_collection );

  // Set up action group for the bookmarks
  m_bookmarks = new QActionGroup( m_action_collection );

  // Set up the menu
  setupMenu();

  // Connections
  connect( m_action_collection, SIGNAL(actionTriggered(QAction*)), SLOT(slotActionTriggered(QAction*)) );
  connect( Smb4KBookmarkHandler::self(), SIGNAL(updated()), SLOT(slotBookmarksUpdated()) );
  connect( Smb4KMounter::self(), SIGNAL(mounted(Smb4KShare*)), SLOT(slotDisableBookmark(Smb4KShare*)) );
  connect( Smb4KMounter::self(), SIGNAL(unmounted(Smb4KShare*)), SLOT(slotEnableBookmark(Smb4KShare*)) );
}


Smb4KBookmarkMenu::~Smb4KBookmarkMenu()
{
}


QAction *Smb4KBookmarkMenu::addBookmarkAction()
{
  return m_action_collection->action( "add_action" );
}


void Smb4KBookmarkMenu::refreshMenu()
{
  // Delete all bookmarks
  while ( !m_bookmarks->actions().isEmpty() )
  {
    QAction *action = m_bookmarks->actions().first();
    m_action_collection->takeAction( action );
    removeAction( action );
    delete action;
  }
  
  // Delete all groups
  while ( !m_groups->actions().isEmpty() )
  {
    QAction *action = m_groups->actions().first();
    m_action_collection->takeAction( action );
    removeAction( action );
    delete action;
  }
  
  QAction *mount_action = m_action_collection->action( "mount_toplevel" );
  
  if ( mount_action )
  {
    m_action_collection->takeAction( mount_action );
    removeAction( mount_action );
    delete mount_action;
  }
  else
  {
    // Do nothing
  }
  
  QAction *separator = m_action_collection->action( "separator" );
  
  if ( separator )
  {
    m_action_collection->takeAction( separator );
    removeAction( separator );
    delete separator;
  }
  else
  {
    // Do nothing
  }
    
  // Set up menu again
  setupMenu( false );
}


void Smb4KBookmarkMenu::setupMenu( bool setup_all )
{
  // Set up the actions for managing the bookmarks.
  if ( setup_all )
  {
    switch ( m_type )
    {
      case MainWindow:
      {
        KAction *edit_action =  m_action_collection->addAction( "edit_action",
                                new KAction( KIcon( "bookmarks-organize" ), i18n( "&Edit Bookmarks" ), m_action_collection ) );
        KAction *add_action = m_action_collection->addAction( "add_action",
                              new KAction( KIcon( "bookmark-new" ), i18n( "Add &Bookmark" ), m_action_collection ) );
        add_action->setShortcut( QKeySequence( Qt::CTRL+Qt::Key_B ) );
        addAction( edit_action );
        addAction( add_action );
        break;
      }
      case SystemTray:
      {
        KAction *edit_action =  m_action_collection->addAction( "edit_action",
                                new KAction( KIcon( "bookmarks-organize" ), i18n( "&Edit Bookmarks" ), m_action_collection ) );
        addAction( edit_action );
        break;
      }
      default:
      {
        break;
      }
    }
  }
  else
  {
    // Do nothing
  }

  // Get the groups
  QStringList groups = Smb4KBookmarkHandler::self()->groupsList();

  // Add a mount action if there were no groups defined and
  // there are bookmarks present (i.e. there is one empty group).
  if ( groups.size() == 0 || (groups.size() == 1 && groups.first().isEmpty()) )
  {
    KAction *mount_toplevel = new KAction( KIcon( "emblem-mounted" ), i18n( "Mount All Bookmarks" ), m_action_collection );
    m_action_collection->addAction( "mount_toplevel", mount_toplevel );
    addAction( mount_toplevel );
    
    QList<Smb4KBookmark *> bookmarks = Smb4KBookmarkHandler::self()->bookmarksList();
    int number = 0;
    
    for ( int i = 0; i < bookmarks.size(); ++i )
    {
      QList<Smb4KShare *> mounted = findShareByUNC( bookmarks.at( i )->unc() );
      
      if ( !mounted.isEmpty() )
      {
        for ( int j = 0; j < mounted.size(); ++j )
        {
          if ( !mounted.at( j )->isForeign() )
          {
            number++;
            break;
          }
          else
          {
            continue;
          }
        }
      }
      else
      {
        // Do nothing
      }
    }
    
    mount_toplevel->setEnabled( !(number == bookmarks.size()) );
  }
  else
  {
    // Do nothing
  }

  QAction *separator = insertSeparator( 0 );
  m_action_collection->addAction( "separator", separator );

  // Now add the groups and their bookmarks
  for ( int i = 0; i < groups.size(); ++i )
  {
    if ( !groups.at( i ).isEmpty() )
    {
      KAction *group = new KAction( KIcon( "folder-favorites" ), groups.at( i ), m_groups );
      m_action_collection->addAction( groups.at( i ), group );
      addAction( group );

      KActionMenu *group_menu = new KActionMenu( group );
      group->setMenu( group_menu->menu() );

      KAction *group_mount = new KAction( KIcon( "emblem-mounted" ), i18n( "Mount All Bookmarks" ), m_action_collection );
      m_action_collection->addAction( QString( "mount_%1" ).arg( groups.at( i ) ), group_mount );
      group_menu->addAction( group_mount );
      
      QList<Smb4KBookmark *> bookmarks = Smb4KBookmarkHandler::self()->bookmarksList( groups.at( i ) );
      int number = 0;
    
      for ( int i = 0; i < bookmarks.size(); ++i )
      {
        QList<Smb4KShare *> mounted = findShareByUNC( bookmarks.at( i )->unc() );
      
        if ( !mounted.isEmpty() )
        {
          for ( int j = 0; j < mounted.size(); ++j )
          {
            if ( !mounted.at( j )->isForeign() )
            {
              number++;
              break;
            }
            else
            {
              continue;
            }
          }
        }
        else
        {
          // Do nothing
        }
      }
    
      group_mount->setEnabled( !(number == bookmarks.size()) );
      
      group_menu->addSeparator();

      QStringList sorted_bookmarks;
      
      for ( int j = 0; j < bookmarks.size(); ++j )
      {
        KAction *bookmark = NULL;
        QString item;

        if ( !bookmarks.at( j )->label().isEmpty() && Smb4KSettings::showCustomBookmarkLabel() )
        {
          bookmark = new KAction( KIcon( bookmarks.at( j )->icon() ), bookmarks.at( j )->label(), m_bookmarks );
          item = bookmarks.at( j )->label();
        }
        else
        {
          bookmark = new KAction( KIcon( bookmarks.at( j )->icon() ), bookmarks.at( j )->unc(), m_bookmarks );
          item = bookmarks.at( j )->unc();
        }

        QList<Smb4KShare *> mounted = findShareByUNC( bookmarks.at( j )->unc() );

        if ( !mounted.isEmpty() )
        {
          for ( int k = 0; k < mounted.size(); ++k )
          {
            if ( !mounted.at( k )->isForeign() )
            {
              bookmark->setEnabled( false );
              break;
            }
            else
            {
              continue;
            }
          }            
        }
        else
        {
          bookmark->setEnabled( true );
        }
        
        bookmark->setData( bookmarks.at( j )->url() );
        m_action_collection->addAction( QString( "[%1]_%2" ).arg( bookmarks.at( j )->groupName() ).arg( bookmarks.at( j )->unc() ), bookmark );
        sorted_bookmarks << item;
      }

      sorted_bookmarks.sort();

      for ( int j = 0; j < sorted_bookmarks.size(); ++j )
      {
        Smb4KBookmark *bookmark = Smb4KBookmarkHandler::self()->findBookmarkByLabel( sorted_bookmarks.at( j ) );

        if ( bookmark )
        {
          group_menu->addAction( m_action_collection->action( QString( "[%1]_%2" ).arg( bookmark->groupName() ).arg( bookmark->unc() ) ) );
        }
        else
        {
          bookmark = Smb4KBookmarkHandler::self()->findBookmarkByUNC( sorted_bookmarks.at( j ) );

          if ( bookmark )
          {
            group_menu->addAction( m_action_collection->action( QString( "[%1]_%2" ).arg( bookmark->groupName() ).arg( bookmark->unc() ) ) );
          }
          else
          {
            // Do nothing
          }
        }
      }
    }
    else
    {
      // Do nothing
    }
  }

  // Now add all bookmarks that have no group.
  QList<Smb4KBookmark *> bookmarks = Smb4KBookmarkHandler::self()->bookmarksList( "" );
  QStringList sorted_bookmarks;

  for ( int j = 0; j < bookmarks.size(); ++j )
  {
    KAction *bookmark = NULL;
    QString item;

    if ( !bookmarks.at( j )->label().isEmpty() && Smb4KSettings::showCustomBookmarkLabel() )
    {
      bookmark = new KAction( KIcon( bookmarks.at( j )->icon() ), bookmarks.at( j )->label(), m_bookmarks );
      item = bookmarks.at( j )->label();
    }
    else
    {
      bookmark = new KAction( KIcon( bookmarks.at( j )->icon() ), bookmarks.at( j )->unc(), m_bookmarks );
      item = bookmarks.at( j )->unc();
    }

    QList<Smb4KShare *> mounted = findShareByUNC( bookmarks.at( j )->unc() );

    if ( !mounted.isEmpty() )
    {
      for ( int k = 0; k < mounted.size(); ++k )
      {
        if ( !mounted.at( k )->isForeign() )
        {
          bookmark->setEnabled( false );
          break;
        }
        else
        {
          continue;
        }
      }
    }
    else
    {
      bookmark->setEnabled( true );
    }

    bookmark->setData( bookmarks.at( j )->url() );
    m_action_collection->addAction( QString( "[%1]_%2" ).arg( bookmarks.at( j )->groupName() ).arg( bookmarks.at( j )->unc() ), bookmark );
    sorted_bookmarks << item;
  }

  sorted_bookmarks.sort();

  for ( int j = 0; j < sorted_bookmarks.size(); ++j )
  {
    Smb4KBookmark *bookmark = Smb4KBookmarkHandler::self()->findBookmarkByLabel( sorted_bookmarks.at( j ) );

    if ( bookmark )
    {
      addAction( m_action_collection->action( QString( "[%1]_%2" ).arg( bookmark->groupName() ).arg( bookmark->unc() ) ) );
    }
    else
    {
      bookmark = Smb4KBookmarkHandler::self()->findBookmarkByUNC( sorted_bookmarks.at( j ) );

      if ( bookmark )
      {
        addAction( m_action_collection->action( QString( "[%1]_%2" ).arg( bookmark->groupName() ).arg( bookmark->unc() ) ) );
      }
      else
      {
        // Do nothing
      }
    }
  }
}


/////////////////////////////////////////////////////////////////////////////
// SLOT IMPLEMENTATIONS
/////////////////////////////////////////////////////////////////////////////

void Smb4KBookmarkMenu::slotActionTriggered( QAction *action )
{
  if ( QString::compare( "edit_action", action->objectName() ) == 0 )
  {
    // Edit the bookmarks
    Smb4KBookmarkHandler::self()->editBookmarks( m_parent_widget );
  }
  else if ( QString::compare( "add_action", action->objectName() ) == 0 )
  {
    // Use addBookmarkAction() and connect the triggered() signal
    // in your application.
  }
  else if ( QString::compare( "mount_toplevel", action->objectName() ) == 0 )
  {
    // Mount all shares belonging to the top level bookmarks. This will only be 
    // called if there are not groups defined.
    QList<Smb4KBookmark *> bookmarks = Smb4KBookmarkHandler::self()->bookmarksList();
    QList<Smb4KShare *> mounts;

    for ( int i = 0; i < bookmarks.size(); ++i )
    {
      // FIXME: Check if the bookmarked share has already been mounted.
      Smb4KShare *share = new Smb4KShare( bookmarks.at( i )->hostName(), bookmarks.at( i )->shareName() );
      share->setWorkgroupName( bookmarks.at( i )->workgroupName() );
      share->setHostIP( bookmarks.at( i )->hostIP() );
      share->setLogin( bookmarks.at( i )->login() );
      mounts << share;
    }

    Smb4KMounter::self()->mountShares( mounts );

    while ( !mounts.isEmpty() )
    {
      delete mounts.takeFirst();
    }
  }
  else if ( action->objectName().startsWith( QLatin1String( "mount_" ) ) && QString::compare( "mount_toplevel", action->objectName() ) != 0 )
  {
    // Mount all bookmarked share that belong to this group.
    QString group_name = action->objectName().section( '_', 1, -1 ).trimmed();
    QList<Smb4KBookmark *> bookmarks = Smb4KBookmarkHandler::self()->bookmarksList( group_name );
    QList<Smb4KShare *> mounts;

    for ( int i = 0; i < bookmarks.size(); ++i )
    {
      Smb4KShare *share = new Smb4KShare( bookmarks.at( i )->hostName(), bookmarks.at( i )->shareName() );
      share->setWorkgroupName( bookmarks.at( i )->workgroupName() );
      share->setHostIP( bookmarks.at( i )->hostIP() );
      share->setLogin( bookmarks.at( i )->login() );
      mounts << share;
    }

    Smb4KMounter::self()->mountShares( mounts );

    while ( !mounts.isEmpty() )
    {
      delete mounts.takeFirst();
    }
  }
  else if ( action->objectName().startsWith( '[' ) && action->objectName().contains( "]_//" ) )
  {
    // Mount a single bookmarked share.
    QString group_name = action->objectName().section( '[', 1, 1 ).section( "]_", 0, 0 ).trimmed();
    QString unc = action->objectName().section( "]_", 1, -1 ).trimmed();

    Smb4KBookmark *bookmark = Smb4KBookmarkHandler::self()->findBookmarkByUNC( unc );

    if ( bookmark && QString::compare( group_name, bookmark->groupName() ) == 0 )
    {
      Smb4KShare *share = new Smb4KShare( bookmark->hostName(), bookmark->shareName() );
      share->setWorkgroupName( bookmark->workgroupName() );
      share->setHostIP( bookmark->hostIP() );
      share->setLogin( bookmark->login() );
      Smb4KMounter::self()->mountShare( share );
    }
    else
    {
      // Do nothing
    }
  }
  else
  {
    // Do nothing
  }
}


void Smb4KBookmarkMenu::slotBookmarksUpdated()
{
  refreshMenu();
}


void Smb4KBookmarkMenu::slotDisableBookmark( Smb4KShare *share )
{
  if ( !share->isForeign() && !m_bookmarks->actions().isEmpty() )
  {
    QList<QAction *> bookmarks = m_bookmarks->actions();
    QString group_name;
    
    for ( int i = 0; i < bookmarks.size(); ++i )
    {
      QAction *bookmark = bookmarks.at( i );
      
      if ( bookmark->isEnabled() && bookmark->objectName().startsWith( '[' ) && bookmark->objectName().contains( "]_//" ) )
      {
        QString unc = bookmark->objectName().section( "]_", 1, -1 ).trimmed();
        
        if ( QString::compare( unc, share->unc(), Qt::CaseInsensitive ) == 0 )
        {
          bookmark->setEnabled( !share->isMounted() );
          group_name = bookmark->objectName().section( '[', 1, -1 ).section( "]_", 0, 0 ).trimmed();
          break;
        }
        else
        {
          continue;
        }
      }
      else
      {
        continue;
      }
    }
    
    bool all_mounted = true;
    
    for ( int i = 0; i < bookmarks.size(); ++i )
    {
      QAction *bookmark = bookmarks.at( i );
      
      if ( bookmark->objectName().startsWith( QString( "[%1]" ).arg( group_name ) ) && bookmark->isEnabled() )
      {
        all_mounted = false;
        break;
      }
      else
      {
        continue;
      }
    }
    
    if ( all_mounted )
    {
      if ( group_name.isEmpty() )
      {
        QAction *action = m_action_collection->action( "mount_toplevel" );

        if ( action )
        {
          action->setEnabled( false );
        }
        else
        {
          // Do nothing
        }
      }
      else
      {
        QAction *action = m_action_collection->action( QString( "mount_%1" ).arg( group_name ) );

        if ( action )
        {
          action->setEnabled( false );
        }
        else
        {
          // Do nothing
        }
      }
    }
    else
    {
      // Do nothing
    }
  }
  else
  {
    // Do nothing
  }
}


void Smb4KBookmarkMenu::slotEnableBookmark( Smb4KShare *share )
{
  if ( !share->isForeign() && !m_bookmarks->actions().isEmpty() )
  {
    QList<QAction *> bookmarks = m_bookmarks->actions();
    QString group_name;
    
    for ( int i = 0; i < bookmarks.size(); ++i )
    {
      QAction *bookmark = bookmarks.at( i );
      
      if ( !bookmark->isEnabled() && bookmark->objectName().startsWith( '[' ) && bookmark->objectName().contains( "]_//" ) )
      {
        QString unc = bookmark->objectName().section( "]_", 1, -1 ).trimmed();
        
        if ( QString::compare( unc, share->unc(), Qt::CaseInsensitive ) == 0 )
        {
          bookmark->setEnabled( !share->isMounted() );
          group_name = bookmark->objectName().section( '[', 1, -1 ).section( "]_", 0, 0 ).trimmed();
          break;
        }
        else
        {
          continue;
        }
      }
      else
      {
        continue;
      }
    }
    
    bool all_mounted = true;
    
    for ( int i = 0; i < bookmarks.size(); ++i )
    {
      QAction *bookmark = bookmarks.at( i );
      
      if ( bookmark->objectName().startsWith( QString( "[%1]" ).arg( group_name ) ) && bookmark->isEnabled() )
      {
        all_mounted = false;
        break;
      }
      else
      {
        continue;
      }
    }
    
    if ( !all_mounted )
    {
      if ( group_name.isEmpty() )
      {
        QAction *action = m_action_collection->action( "mount_toplevel" );

        if ( action )
        {
          action->setEnabled( true );
        }
        else
        {
          // Do nothing
        }
      }
      else
      {
        QAction *action = m_action_collection->action( QString( "mount_%1" ).arg( group_name ) );

        if ( action )
        {
          action->setEnabled( true );
        }
        else
        {
          // Do nothing
        }
      }
    }
    else
    {
      // Do nothing
    }
  }
  else
  {
    // Do nothing
  }
}


#include "smb4kbookmarkmenu.moc"