KTBulkActions.php
60.2 KB
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
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
<?php
/**
*
* KnowledgeTree Community Edition
* Document Management Made Simple
* Copyright (C) 2008, 2009, 2010 KnowledgeTree Inc.
*
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License version 3 as published by the
* Free Software Foundation.
*
* 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, see <http://www.gnu.org/licenses/>.
*
* You can contact KnowledgeTree Inc., PO Box 7775 #87847, San Francisco,
* California 94120-7775, or email info@knowledgetree.com.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU General Public License version 3.
*
* In accordance with Section 7(b) of the GNU General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "Powered by
* KnowledgeTree" logo and retain the original copyright notice. If the display of the
* logo is not reasonably feasible for technical reasons, the Appropriate Legal Notices
* must display the words "Powered by KnowledgeTree" and retain the original
* copyright notice.
* Contributor( s): ______________________________________
*
*/
require_once(KT_LIB_DIR . '/actions/bulkaction.php');
require_once(KT_LIB_DIR . '/widgets/forms.inc.php');
require_once(KT_LIB_DIR . '/foldermanagement/compressionArchiveUtil.inc.php');
require_once(KT_LIB_DIR . '/subscriptions/Subscription.inc');
class KTBulkDeleteAction extends KTBulkAction {
var $sName = 'ktcore.actions.bulk.delete';
var $_sPermission = 'ktcore.permissions.delete';
var $_bMutator = true;
function getDisplayName() {
return _kt('Delete');
}
function check_entity($oEntity) {
if(is_a($oEntity, 'Document')) {
if(!KTDocumentUtil::canBeDeleted($oEntity, $sError)) {
if (PEAR::isError($sError))
{
return $sError;
}
return PEAR::raiseError(_kt('Document cannot be deleted'));
}
}
if(is_a($oEntity, 'Folder')) {
$aDocuments = array();
$aChildFolders = array();
$oFolder = $oEntity;
// Get folder id
$sFolderId = $oFolder->getID();
// Get documents in folder
$sDocuments = $oFolder->getDocumentIDs($sFolderId);
$aDocuments = (!empty($sDocuments)) ? explode(',', $sDocuments) : array();
// Loop through documents and send to this function for checking
if(!empty($aDocuments)){
foreach($aDocuments as $sDocID){
$oDocument = Document::get($sDocID);
$res = $this->check_entity($oDocument);
if (PEAR::isError($res))
{
// NOTE: we may want to append the document reason to this
// in order for the user to have some idea WHY the folder cannot be deleted
return PEAR::raiseError(_kt('Folder cannot be deleted'));
}
}
}
// If all documents at the current level may be deleted, we can continue
// Get any existing subfolders - but ONLY on the current level, or we will be checking subfolders more than once!
$sWhereClause = "parent_id = '{$sFolderId}'";
$aChildFolders = $this->oFolder->getList($sWhereClause);
// Loop through subfolders and check each in the same way as the parent
if(!empty($aChildFolders)){
foreach($aChildFolders as $oChild){
$res = $this->check_entity($oChild);
if (PEAR::isError($res))
{
// NOTE: we may want to append the document reason to this
// in order for the user to have some idea WHY the folder cannot be deleted
return PEAR::raiseError(_kt('Folder cannot be deleted'));
}
}
}
}
return parent::check_entity($oEntity);
}
function form_collectinfo() {
$cancelUrl = $this->getReturnUrl();
$oForm = new KTForm;
$oForm->setOptions(array(
'identifier' => 'ktcore.actions.bulk.delete.form',
'label' => _kt('Delete Items'),
'submit_label' => _kt('Delete'),
'action' => 'performaction',
'fail_action' => 'collectinfo',
'cancel_url' => $cancelUrl,
'context' => $this,
));
// Electronic Signature if enabled
global $default;
if($default->enableESignatures){
$widgets[] = array('ktcore.widgets.info', array(
'label' => _kt('This action requires authentication'),
'description' => _kt('Please provide your user credentials as confirmation of this action.'),
'name' => 'info'
));
$widgets[] = array('ktcore.widgets.string', array(
'label' => _kt('Username'),
'name' => 'sign_username',
'required' => true
));
$widgets[] = array('ktcore.widgets.password', array(
'label' => _kt('Password'),
'name' => 'sign_password',
'required' => true
));
}
$widgets[] = array('ktcore.widgets.reason',array(
'name' => 'reason',
'label' => _kt('Reason'),
'description' => _kt('The reason for the deletion of these documents and folders for historical purposes.'),
'value' => null,
'required' => true,
));
$oForm->setWidgets($widgets);
$validators[] = array('ktcore.validators.string', array(
'test' => 'reason',
'output' => 'reason',
));
if($default->enableESignatures){
$validators[] = array('electonic.signatures.validators.authenticate', array(
'object_id' => $this->oFolder->getID(),
'type' => 'bulk',
'action' => 'ktcore.transactions.bulk_delete',
'test' => 'info',
'output' => 'info'
));
}
$oForm->setValidators($validators);
return $oForm;
}
/**
* build the confirmation form that is shown when symlinks are affected by this action.
*
* @return KTForm the form
*/
function form_confirm() {
$cancelUrl = $this->getReturnUrl();
$oForm = new KTForm;
$oForm->setOptions(array(
'label' => _kt('Are you sure?'),
'description' => _kt('There are shortcuts linking to some of the documents or folders in your selection; continuing will automatically delete the shortcuts. Would you like to continue?'),
'action' => 'collectinfo',
'fail_action' => 'main',
'cancel_url' => $cancelUrl,
'submit_label' => _kt('Continue'),
'context' => $this,
));
$oForm->setWidgets(array(
array('ktcore.widgets.hidden',array(
'name' => 'delete_confirmed',
'value' => '1'
))));
return $oForm;
}
/**
* Shows the confirmation form if symlinks are affected by the current action
*
* @return Template HTML
*/
function do_confirm(){
$this->store_lists();
$this->get_lists();
$this->oPage->setBreadcrumbDetails(_kt('Confirm delete'));
$oTemplate =& $this->oValidator->validateTemplate('ktcore/bulk_action_confirm');
$oForm = $this->form_confirm();
$oTemplate->setData(array(
'context' => &$this,
'form' => $oForm,
));
return $oTemplate->render();
}
// info collection step
function do_collectinfo() {
$this->store_lists();
$this->get_lists();
//check if a the symlinks deletion confirmation has been passed yet
if(KTutil::arrayGet($_REQUEST['data'],'delete_confirmed') != 1){
//check if there are actually any symlinks involved.
if($this->symlinksLinkingToCurrentList()){
$this->redirectTo("confirm");
}
}
//render template
$oTemplating =& KTTemplating::getSingleton();
$oTemplate = $oTemplating->loadTemplate('ktcore/bulk_action_info');
return $oTemplate->render(array('context' => $this,
'form' => $this->form_collectinfo()));
}
function do_performaction() {
$this->store_lists();
$this->get_lists();
$oForm = $this->form_collectinfo();
$res = $oForm->validate();
if (!empty($res['errors'])) {
$oForm->handleError();
}
$this->res = $res['results'];
return parent::do_performaction();
}
/**
* Bulk delete
* @params : KTDocumentUtil/KTFolderUtil $oEntity
*/
function perform_action($oEntity) {
$sReason = $this->res['reason'];
if(is_a($oEntity, 'Document')) {
$res = KTDocumentUtil::delete($oEntity, $sReason, null, true);
if (PEAR::isError($res)) {
return $res;
}
return "RemoveChildDocument";
} else if(is_a($oEntity, 'Folder')) {
$res = KTFolderUtil::delete($oEntity, $this->oUser, $sReason, null, true);
if (PEAR::isError($res)) {
return $res;
}
return "RemoveChildFolder";
}
}
}
class KTBulkMoveAction extends KTBulkAction {
var $sName = 'ktcore.actions.bulk.move';
var $_sPermission = 'ktcore.permissions.write';
var $_bMutator = true;
function getDisplayName() {
return _kt('Move');
}
function form_collectinfo() {
$cancelUrl = $this->getReturnUrl();
$oForm = new KTForm;
$oForm->setOptions(array(
'identifier' => 'ktcore.actions.bulk.move.form',
'label' => _kt('Move Items'),
'submit_label' => _kt('Move'),
'action' => 'performaction',
'fail_action' => 'collectinfo',
'cancel_url' => $cancelUrl,
'context' => $this,
));
// Setup the collection for move display.
require_once(KT_LIB_DIR . '/browse/DocumentCollection.inc.php');
$collection = new AdvancedCollection();
$oCR =& KTColumnRegistry::getSingleton();
$col = $oCR->getColumn('ktcore.columns.title');
//$col->setOptions(array('qs_params'=>array('fMoveCode'=>$sMoveCode,
// 'fFolderId'=>$oFolder->getId(),
// 'action'=>'startMove')));
$collection->addColumn($col);
$qObj = new FolderBrowseQuery($this->oFolder->iId);
$exclude=array();
foreach( $this->oEntityList->aFolderIds as $folderid)
{
$exclude[] = $folderid+0;
}
$qObj->exclude_folders = $exclude;
$collection->setQueryObject($qObj);
$aOptions = $collection->getEnvironOptions();
$aOptions['result_url'] = KTUtil::addQueryString($_SERVER['PHP_SELF'],
array('fFolderId' => $this->oFolder->iId,
'action' => 'collectinfo'));
$collection->setOptions($aOptions);
$oWF =& KTWidgetFactory::getSingleton();
$oWidget = $oWF->get('ktcore.widgets.collection',
array('label' => _kt('Target Folder'),
'description' => _kt('Use the folder collection and path below to browse to the folder you wish to move the documents into.'),
'required' => true,
'name' => 'fFolderId',
'broken_name' => true,
'folder_id' => $this->oFolder->iId,
'collection' => $collection));
$oForm->addInitializedWidget($oWidget);
// Electronic Signature if enabled
global $default;
if($default->enableESignatures){
$oForm->addWidget(array('ktcore.widgets.info', array(
'label' => _kt('This action requires authentication'),
'description' => _kt('Please provide your user credentials as confirmation of this action.'),
'name' => 'info'
)));
$oForm->addWidget(array('ktcore.widgets.string', array(
'label' => _kt('Username'),
'name' => 'sign_username',
'required' => true
)));
$oForm->addWidget(array('ktcore.widgets.password', array(
'label' => _kt('Password'),
'name' => 'sign_password',
'required' => true
)));
}
$oForm->addWidget(
array('ktcore.widgets.reason',array(
'name' => 'reason',
'label' => _kt('Reason'),
'description' => _kt('The reason for moving these documents and folders, for historical purposes.'),
'value' => null,
'required' => true,
)
));
$oForm->setValidators(array(
array('ktcore.validators.string', array(
'test' => 'reason',
'output' => 'reason',
)),
));
if($default->enableESignatures){
$oForm->addValidator(array('electonic.signatures.validators.authenticate', array(
'object_id' => $this->oFolder->getID(),
'type' => 'bulk',
'action' => 'ktcore.transactions.bulk_move',
'test' => 'info',
'output' => 'info'
)));
}
return $oForm;
}
function check_entity($oEntity) {
if(is_a($oEntity, 'Document')) {
if(!KTDocumentUtil::canBeMoved($oEntity, $sError)) {
if (PEAR::isError($sError))
{
return $sError;
}
return PEAR::raiseError(_kt('Document cannot be moved'));
}
}
if(is_a($oEntity, 'Folder')) {
$aDocuments = array();
$aChildFolders = array();
$oFolder = $oEntity;
// Get folder id
$sFolderId = $oFolder->getID();
// Get documents in folder
$sDocuments = $oFolder->getDocumentIDs($sFolderId);
$aDocuments = (!empty($sDocuments)) ? explode(',', $sDocuments) : array();
// Loop through documents and send to this function for checking
if(!empty($aDocuments)){
foreach($aDocuments as $sDocID){
$oDocument = Document::get($sDocID);
$res = $this->check_entity($oDocument);
if (PEAR::isError($res))
{
// NOTE: we may want to append the document reason to this
// in order for the user to have some idea WHY the folder cannot be moved
return PEAR::raiseError(_kt('Folder cannot be moved'));
}
}
}
// If all documents at the current level may be deleted, we can continue
// Get any existing subfolders - but ONLY on the current level, or we will be checking subfolders more than once!
$sWhereClause = "parent_id = '{$sFolderId}'";
$aChildFolders = $this->oFolder->getList($sWhereClause);
// Loop through subfolders and check each in the same way as the parent
if(!empty($aChildFolders)){
foreach($aChildFolders as $oChild){
$res = $this->check_entity($oChild);
if (PEAR::isError($res))
{
// NOTE: we may want to append the document reason to this
// in order for the user to have some idea WHY the folder cannot be moved
return PEAR::raiseError(_kt('Folder cannot be moved'));
}
}
}
}
return parent::check_entity($oEntity);
}
// info collection step
function do_collectinfo() {
$this->store_lists();
$this->get_lists();
$oTemplating =& KTTemplating::getSingleton();
$oTemplate = $oTemplating->loadTemplate('ktcore/bulk_action_info');
return $oTemplate->render(array('context' => $this,
'form' => $this->form_collectinfo()));
}
function do_performaction() {
$this->store_lists();
$this->get_lists();
$oForm = $this->form_collectinfo();
$res = $oForm->validate();
if (!empty($res['errors'])) {
$oForm->handleError();
}
$this->sReason = $_REQUEST['data']['reason'];
$this->iTargetFolderId = $_REQUEST['data']['fFolderId'];
$this->oTargetFolder = Folder::get($this->iTargetFolderId);
$_REQUEST['fReturnData'] = '';
$_REQUEST['fFolderId'] = $this->iTargetFolderId;
// Store initial folder
$_REQUEST['fOriginalFolderId'] = $this->oFolder->getId();
// does it exists
if(PEAR::isError($this->oTargetFolder)) {
$this->errorRedirectTo('collectinfo', _kt('Invalid target folder selected'));
exit(0);
}
if ($_REQUEST['fReturnAction'] != 'search2') {
if($this->iTargetFolderId == $this->oFolder->getId()){
$this->errorRedirectTo('collectinfo', _kt('Invalid target folder selected: Target folder is the same as the current folder.'));
exit(0);
}
}
// does the user have write permission
if(!Permission::userHasFolderWritePermission($this->oTargetFolder)) {
$this->errorRedirectTo('collectinfo', _kt('You do not have permission to move items to this location'));
exit(0);
}
return parent::do_performaction();
}
/**
* Bulk move
* @params : KTDocumentUtil/KTFolderUtil $oEntity
*
*/
function perform_action($oEntity) {
if(is_a($oEntity, 'Document')) {
$res = KTDocumentUtil::move($oEntity, $this->oTargetFolder, $this->oUser, $this->sReason, true);
} else if(is_a($oEntity, 'Folder')) {
$res = KTFolderUtil::move($oEntity, $this->oTargetFolder, $this->oUser, $this->sReason, true);
}
if (PEAR::isError($res))
return $res;
return 'MovedDocument';
}
}
class KTBulkCopyAction extends KTBulkAction {
var $sName = 'ktcore.actions.bulk.copy';
var $_sPermission = 'ktcore.permissions.read';
var $_bMutator = true;
function getDisplayName() {
return _kt('Copy');
}
function form_collectinfo() {
$cancelUrl = $this->getReturnUrl();
$oForm = new KTForm;
$oForm->setOptions(array(
'identifier' => 'ktcore.actions.bulk.copy.form',
'label' => _kt('Copy Items'),
'submit_label' => _kt('Copy'),
'action' => 'performaction',
'fail_action' => 'collectinfo',
'cancel_url' => $cancelUrl,
'context' => $this,
));
// Setup the collection for move display.
require_once(KT_LIB_DIR . '/browse/DocumentCollection.inc.php');
$collection = new AdvancedCollection();
$oCR =& KTColumnRegistry::getSingleton();
$col = $oCR->getColumn('ktcore.columns.title');
//$col->setOptions(array('qs_params'=>array('fMoveCode'=>$sMoveCode,
// 'fFolderId'=>$oFolder->getId(),
// 'action'=>'startMove')));
$collection->addColumn($col);
$qObj = new FolderBrowseQuery($this->oFolder->iId);
$exclude=array();
foreach( $this->oEntityList->aFolderIds as $folderid)
{
$exclude[] = $folderid+0;
}
$qObj->exclude_folders = $exclude;
$collection->setQueryObject($qObj);
$aOptions = $collection->getEnvironOptions();
$aOptions['result_url'] = KTUtil::addQueryString($_SERVER['PHP_SELF'],
array('fFolderId' => $this->oFolder->iId,
'action' => 'collectinfo'));
$collection->setOptions($aOptions);
$oWF =& KTWidgetFactory::getSingleton();
$oWidget = $oWF->get('ktcore.widgets.collection',
array('label' => _kt('Target Folder'),
'description' => _kt('Use the folder collection and path below to browse to the folder you wish to copy the documents into.'),
'required' => true,
'name' => 'fFolderId',
'broken_name' => true,
'folder_id' => $this->oFolder->iId,
'collection' => $collection));
$oForm->addInitializedWidget($oWidget);
// Electronic Signature if enabled
global $default;
if($default->enableESignatures){
$oForm->addWidget(array('ktcore.widgets.info', array(
'label' => _kt('This action requires authentication'),
'description' => _kt('Please provide your user credentials as confirmation of this action.'),
'name' => 'info'
)));
$oForm->addWidget(array('ktcore.widgets.string', array(
'label' => _kt('Username'),
'name' => 'sign_username',
'required' => true
)));
$oForm->addWidget(array('ktcore.widgets.password', array(
'label' => _kt('Password'),
'name' => 'sign_password',
'required' => true
)));
}
$oForm->addWidget(
array('ktcore.widgets.reason',array(
'name' => 'reason',
'label' => _kt('Reason'),
'description' => _kt('The reason for copying these documents and folders, for historical purposes.'),
'value' => null,
'required' => true,
)
));
$oForm->setValidators(array(
array('ktcore.validators.string', array(
'test' => 'reason',
'output' => 'reason',
)),
));
if($default->enableESignatures){
$oForm->addValidator(array('electonic.signatures.validators.authenticate', array(
'object_id' => $this->oFolder->getID(),
'type' => 'bulk',
'action' => 'ktcore.transactions.bulk_copy',
'test' => 'info',
'output' => 'info'
)));
}
return $oForm;
}
function check_entity($oEntity) {
if(is_a($oEntity, 'Document')) {
if(!KTDocumentUtil::canBeCopied($oEntity, $sError)) {
if (PEAR::isError($sError))
{
return $sError;
}
return PEAR::raiseError(_kt('Document cannot be copied'));
}
}
if(is_a($oEntity, 'Folder')) {
$aDocuments = array();
$aChildFolders = array();
$oFolder = $oEntity;
// Get folder id
$sFolderId = $oFolder->getID();
// Get documents in folder
$sDocuments = $oFolder->getDocumentIDs($sFolderId);
$aDocuments = (!empty($sDocuments)) ? explode(',', $sDocuments) : array();
// Loop through documents and send to this function for checking
if(!empty($aDocuments)){
foreach($aDocuments as $sDocID){
$oDocument = Document::get($sDocID);
$res = $this->check_entity($oDocument);
if (PEAR::isError($res))
{
// NOTE: we may want to append the document reason to this
// in order for the user to have some idea WHY the folder cannot be copied
return PEAR::raiseError(_kt('Folder cannot be copied'));
}
}
}
// If all documents at the current level may be deleted, we can continue
// Get any existing subfolders - but ONLY on the current level, or we will be checking subfolders more than once!
$sWhereClause = "parent_id = '{$sFolderId}'";
$aChildFolders = $this->oFolder->getList($sWhereClause);
// Loop through subfolders and check each in the same way as the parent
if(!empty($aChildFolders)){
foreach($aChildFolders as $oChild){
$res = $this->check_entity($oChild);
if (PEAR::isError($res))
{
// NOTE: we may want to append the document reason to this
// in order for the user to have some idea WHY the folder cannot be copied
return PEAR::raiseError(_kt('Folder cannot be copied'));
}
}
}
}
return parent::check_entity($oEntity);
}
// info collection step
function do_collectinfo() {
$this->store_lists();
$this->get_lists();
$oTemplating =& KTTemplating::getSingleton();
$oTemplate = $oTemplating->loadTemplate('ktcore/bulk_action_info');
return $oTemplate->render(array('context' => $this,
'form' => $this->form_collectinfo()));
}
function do_performaction() {
$this->store_lists();
$this->get_lists();
$oForm = $this->form_collectinfo();
$res = $oForm->validate();
if (!empty($res['errors'])) {
$oForm->handleError();
}
$this->sReason = $_REQUEST['data']['reason'];
$this->iTargetFolderId = $_REQUEST['data']['fFolderId'];
$this->oTargetFolder = Folder::get($this->iTargetFolderId);
$_REQUEST['fReturnData'] = '';
$_REQUEST['fFolderId'] = $this->iTargetFolderId;
// does it exists
if(PEAR::isError($this->oTargetFolder)) {
return PEAR::raiseError(_kt('Invalid target folder selected'));
}
// does the user have write permission
if(!Permission::userHasFolderWritePermission($this->oTargetFolder)) {
$this->errorRedirectTo('collectinfo', _kt('You do not have permission to move items to this location'));
}
return parent::do_performaction();
}
/**
* Bulk copy
* @params : KTDocumentUtil/KTFolderUtil $oEntity
*
*/
function perform_action($oEntity) {
if(is_a($oEntity, 'Document')) {
$res = KTDocumentUtil::copy($oEntity, $this->oTargetFolder, $this->sReason, null, true);
if (PEAR::isError($res)) {
return $res;
}
} else if(is_a($oEntity, 'Folder')) {
$res = KTFolderUtil::copy($oEntity, $this->oTargetFolder, $this->oUser, $this->sReason, null, true);
if (PEAR::isError($res)) {
return $res;
}
}
return 'CopiedDocument';
}
}
class KTBulkArchiveAction extends KTBulkAction {
var $sName = 'ktcore.actions.bulk.archive';
var $_sPermission = 'ktcore.permissions.write';
var $_bMutator = true;
function getDisplayName() {
return _kt('Archive');
}
function form_collectinfo() {
$cancelUrl = $this->getReturnUrl();
$oForm = new KTForm;
$oForm->setOptions(array(
'identifier' => 'ktcore.actions.bulk.archive.form',
'label' => _kt('Archive Items'),
'submit_label' => _kt('Archive'),
'action' => 'performaction',
'fail_action' => 'collectinfo',
'cancel_url' => $cancelUrl,
'context' => $this,
));
// Electronic Signature if enabled
global $default;
if($default->enableESignatures){
$oForm->addWidget(array('ktcore.widgets.info', array(
'label' => _kt('This action requires authentication'),
'description' => _kt('Please provide your user credentials as confirmation of this action.'),
'name' => 'info'
)));
$oForm->addWidget(array('ktcore.widgets.string', array(
'label' => _kt('Username'),
'name' => 'sign_username',
'required' => true
)));
$oForm->addWidget(array('ktcore.widgets.password', array(
'label' => _kt('Password'),
'name' => 'sign_password',
'required' => true
)));
}
$oForm->addWidget(
array('ktcore.widgets.reason',array(
'name' => 'reason',
'label' => _kt('Reason'),
'description' => _kt('The reason for archiving these documents and folders, for historical purposes.'),
'value' => null,
'required' => true,
)
));
$oForm->setValidators(array(
array('ktcore.validators.string', array(
'test' => 'reason',
'output' => 'reason',
)),
));
if($default->enableESignatures){
$oForm->addValidator(array('electonic.signatures.validators.authenticate', array(
'object_id' => $this->oFolder->getID(),
'type' => 'bulk',
'action' => 'ktcore.transactions.bulk_archive',
'test' => 'info',
'output' => 'info'
)));
}
return $oForm;
}
function check_entity($oEntity) {
// NOTE: these checks don't have an equivalent in the delete and move functions.
// possibly they are no longer needed but I am leaving them here
// to avoid any potential problems I may not be aware of
if((!is_a($oEntity, 'Document')) && (!is_a($oEntity, 'Folder'))) {
return PEAR::raiseError(_kt('Document cannot be archived'));
}
if($oEntity->isSymbolicLink()){
return PEAR::raiseError(_kt("It is not possible to archive a shortcut. Please archive the target document or folder instead."));
}
if(is_a($oEntity, 'Document')) {
if(!KTDocumentUtil::canBeArchived($oEntity, $sError)) {
if (PEAR::isError($sError))
{
return $sError;
}
return PEAR::raiseError(_kt('Document cannot be archived'));
}
}
if(is_a($oEntity, 'Folder')) {
$aDocuments = array();
$aChildFolders = array();
$oFolder = $oEntity;
// Get folder id
$sFolderId = $oFolder->getID();
// Get documents in folder
$sDocuments = $oFolder->getDocumentIDs($sFolderId);
$aDocuments = (!empty($sDocuments)) ? explode(',', $sDocuments) : array();
// Loop through documents and send to this function for checking
if(!empty($aDocuments)){
foreach($aDocuments as $sDocID){
$oDocument = Document::get($sDocID);
$res = $this->check_entity($oDocument);
if (PEAR::isError($res))
{
// NOTE: we may want to append the document reason to this
// in order for the user to have some idea WHY the folder cannot be archived
return PEAR::raiseError(_kt('Folder cannot be archived'));
}
}
}
// If all documents at the current level may be deleted, we can continue
// Get any existing subfolders - but ONLY on the current level, or we will be checking subfolders more than once!
$sWhereClause = "parent_id = '{$sFolderId}'";
$aChildFolders = $this->oFolder->getList($sWhereClause);
// Loop through subfolders and check each in the same way as the parent
if(!empty($aChildFolders)){
foreach($aChildFolders as $oChild){
$res = $this->check_entity($oChild);
if (PEAR::isError($res))
{
// NOTE: we may want to append the document reason to this
// in order for the user to have some idea WHY the folder cannot be archived
return PEAR::raiseError(_kt('Folder cannot be archived'));
}
}
}
}
return parent::check_entity($oEntity);
}
/**
* build the confirmation form that is shown when symlinks are affected by this action.
*
* @return KTForm the form
*/
function form_confirm() {
$cancelUrl = $this->getReturnUrl();
$oForm = new KTForm;
$oForm->setOptions(array(
'label' => _kt('Are you sure?'),
'description' => _kt('There are shortcuts linking to some of the documents or folders in your selection; continuing will automatically delete the shortcuts. Would you like to continue?'),
'action' => 'collectinfo',
'fail_action' => 'main',
'cancel_url' => $cancelUrl,
'submit_label' => _kt('Continue'),
'context' => $this,
));
$oForm->setWidgets(array(
array('ktcore.widgets.hidden',array(
'name' => 'archive_confirmed',
'value' => '1'
))));
return $oForm;
}
/**
* Shows the confirmation form if symlinks are affected by the current action
*
* @return Template HTML
*/
function do_confirm(){
$this->store_lists();
$this->get_lists();
$this->oPage->setBreadcrumbDetails(_kt('Confirm archive'));
$oTemplate =& $this->oValidator->validateTemplate('ktcore/bulk_action_confirm');
$oForm = $this->form_confirm();
$oTemplate->setData(array(
'context' => &$this,
'form' => $oForm,
));
return $oTemplate->render();
}
// info collection step
function do_collectinfo() {
$this->store_lists();
$this->get_lists();
//check if a the symlinks deletion confirmation has been passed yet
if(KTutil::arrayGet($_REQUEST['data'],'archive_confirmed') != 1){
//check if there are actually any symlinks involved.
if($this->symlinksLinkingToCurrentList()){
$this->redirectTo("confirm");
}
}
$oTemplating =& KTTemplating::getSingleton();
$oTemplate = $oTemplating->loadTemplate('ktcore/bulk_action_info');
return $oTemplate->render(array('context' => $this,
'form' => $this->form_collectinfo()));
}
function do_performaction() {
$this->store_lists();
$this->get_lists();
$oForm = $this->form_collectinfo();
$res = $oForm->validate();
if (!empty($res['errors'])) {
$oForm->handleError();
}
$this->sReason = $_REQUEST['data']['reason'];
return parent::do_performaction();
}
/**
* Bulk archive
* @params : KTDocumentUtil/KTFolderUtil $oEntity
*
*/
function perform_action($oEntity) {
if(is_a($oEntity, 'Document')) {
$res = KTDocumentUtil::archive($oEntity, $this->sReason, true);
if(PEAR::isError($res)){
return $res;
}
}else if(is_a($oEntity, 'Folder')) {
$aDocuments = array();
$aChildFolders = array();
$oFolder = $oEntity;
// Get folder id
$sFolderId = $oFolder->getID();
// Get documents in folder
$sDocuments = $oFolder->getDocumentIDs($sFolderId);
$aDocuments = (!empty($sDocuments)) ? explode(',', $sDocuments) : array();
// Get all the folders within the folder
$sWhereClause = "parent_folder_ids = '{$sFolderId}' OR
parent_folder_ids LIKE '{$sFolderId},%' OR
parent_folder_ids LIKE '%,{$sFolderId},%' OR
parent_folder_ids LIKE '%,{$sFolderId}'";
$aChildFolders = $this->oFolder->getList($sWhereClause);
// Loop through folders and get documents
if(!empty($aChildFolders)){
foreach($aChildFolders as $oChild){
$sChildId = $oChild->getID();
$sChildDocs = $oChild->getDocumentIDs($sChildId);
if (PEAR::isError($res)) {
return false;
}
if(!empty($sChildDocs)){
$aChildDocs = explode(',', $sChildDocs);
$aDocuments = array_merge($aDocuments, $aChildDocs);
}
}
}
// Archive all documents
if(!empty($aDocuments)){
foreach($aDocuments as $sDocumentId){
$oDocument = Document::get($sDocumentId);
if(PEAR::isError($oDocument)){
return $oDocument;
}
$res = KTDocumentUtil::archive($oDocument, $this->sReason, true);
if(PEAR::isError($res)){
return $res;
}
}
}else {
return PEAR::raiseError(_kt('The folder contains no documents to archive.'));
}
}
return "ArchivedDocument";
}
}
// NOTE: None of the new code for folder recursion is implemented for this action.
class KTBrowseBulkExportAction extends KTBulkAction {
var $sName = 'ktcore.actions.bulk.export';
var $_sPermission = 'ktcore.permissions.read';
var $_bMutator = true;
var $bNotifications = true;
function getDisplayName() {
return _kt('Download All');
}
function check_entity($oEntity) {
if((!is_a($oEntity, 'Document')) && (!is_a($oEntity, 'Folder'))) {
return PEAR::raiseError(_kt('Document cannot be exported'));
}
//we need to do an extra folder permission check in case of a shortcut
if(is_a($oEntity,'Folder') && $oEntity->isSymbolicLink()){
if(!KTPermissionUtil::userHasPermissionOnItem($this->oUser, $this->_sPermission, $oEntity->getLinkedFolder())) {
return PEAR::raiseError(_kt('You do not have the required permissions'));
}
}
if(is_a($oEntity, 'Document')){
if(!KTWorkflowUtil::actionEnabledForDocument($oEntity, 'ktcore.actions.document.view')){
return PEAR::raiseError(_kt('Document cannot be exported as it is restricted by the workflow.'));
}
}
return parent::check_entity($oEntity);
}
function do_performaction() {
$config = KTConfig::getSingleton();
$useQueue = $config->get('export/useDownloadQueue', true);
// Create the export code
$this->sExportCode = KTUtil::randomString();
$_SESSION['exportcode'] = $this->sExportCode;
// Save the return url in session so it is not lost when doing the download
$folderurl = $this->getReturnUrl();
$_SESSION['export_return_url'] = $folderurl;
$download_url = KTUtil::addQueryStringSelf("action=downloadZipFile&fFolderId={$this->oFolder->getId()}&exportcode={$this->sExportCode}");
if($useQueue){
$result = parent::do_performaction();
$url = KTUtil::kt_url() . '/presentation/lookAndFeel/knowledgeTree/bulkdownload/downloadTask.php';
$oTemplating =& KTTemplating::getSingleton();
$oTemplate = $oTemplating->loadTemplate('ktcore/action/bulk_download');
$aParams = array(
'folder_url' => $folderurl,
'url' => $url,
'code' => $this->sExportCode,
'download_url' => $download_url
);
return $oTemplate->render($aParams);
}
$this->oZip = new ZipFolder('', $this->sExportCode);
$res = $this->oZip->checkConvertEncoding();
if(PEAR::isError($res)){
$this->addErrorMessage($res->getMessage());
return $sReturn;
}
$this->startTransaction();
$result = parent::do_performaction();
$sExportCode = $this->oZip->createZipFile();
if(PEAR::isError($sExportCode)){
$this->addErrorMessage($sExportCode->getMessage());
$this->rollbackTransaction();
return $sReturn;
}
$oTransaction = KTFolderTransaction::createFromArray(array(
'folderid' => $this->oFolder->getId(),
'comment' => "Bulk export",
'transactionNS' => 'ktstandard.transactions.bulk_export',
'userid' => $_SESSION['userID'],
'ip' => Session::getClientIP(),
));
$this->commitTransaction();
$str = '<p>'._kt('Creating zip file. Compressing and archiving in progress ...').'</p>';
$str .= "<p style='margin-bottom: 10px;'><br /><b>".
_kt('Warning! Please wait for archiving to complete before closing the page.').'</b><br />'.
_kt('Note: Closing the page before the download link displays will cancel your Bulk Download.').'</p>';
$str .= sprintf('<p>' . _kt('Once your download is complete, click <a href="%s">here</a> to return to the original folder') . "</p>\n", $folderurl);
$str .= sprintf('<script language="JavaScript">
function kt_bulkexport_redirect() {
document.location.href = "%s";
}
callLater(5, kt_bulkexport_redirect);
</script>', $download_url);
return $str;
}
/**
* Bulk export
* @params : KTDocumentUtil/KTFolderUtil $oEntity
*
*/
function perform_action($oEntity) {
$exportCode = $_SESSION['exportcode'];
$this->oZip = ZipFolder::get($exportCode);
$oQueue = new DownloadQueue();
$config = KTConfig::getSingleton();
$useQueue = $config->get('export/useDownloadQueue');
if(is_a($oEntity, 'Document')) {
$oDocument = $oEntity;
if($oDocument->isSymbolicLink()){
$oDocument->switchToLinkedCore();
}
if($useQueue){
DownloadQueue::addItem($this->sExportCode, $this->oFolder->getId(), $oDocument->iId, 'document');
}else{
$oQueue->addDocument($this->oZip, $oDocument->iId, false);
}
}else if(is_a($oEntity, 'Folder')) {
$aDocuments = array();
$oFolder = $oEntity;
if($oFolder->isSymbolicLink()){
$oFolder = $oFolder->getLinkedFolder();
}
$sFolderId = $oFolder->getId();
if($useQueue){
DownloadQueue::addItem($this->sExportCode, $this->oFolder->getId(), $sFolderId, 'folder');
}else{
$oQueue->addFolder($this->oZip, $sFolderId);
}
}
return "DownloadDocument";
}
function do_downloadZipFile() {
$sCode = $this->oValidator->validateString($_REQUEST['exportcode']);
$this->oZip = new ZipFolder('', $sCode);
$res = $this->oZip->downloadZipFile($sCode);
if(PEAR::isError($res)){
$this->addErrorMessage($res->getMessage());
$redirectUrl = $_SESSION['export_return_url'];
unset($_SESSION['export_return_url']);
redirect($redirectUrl);
}
exit(0);
}
}
// NOTE: None of the new code for folder recursion is implemented for this action.
class KTBrowseBulkCheckoutAction extends KTBulkAction {
var $sName = 'ktcore.actions.bulk.checkout';
var $_sPermission = 'ktcore.permissions.write';
var $_bMutator = true;
function getDisplayName() {
return _kt('Checkout');
}
function check_entity($oEntity) {
if(is_a($oEntity, 'Document')) {
if($oEntity->getImmutable())
{
return PEAR::raiseError(_kt('Document cannot be checked out as it is immutable'));
}
// Check that the document isn't already checked out
if ($oEntity->getIsCheckedOut()) {
$checkedOutUser = $oEntity->getCheckedOutUserID();
$sUserId = $_SESSION['userID'];
if($checkedOutUser != $sUserId){
$oCheckedOutUser = User::get($checkedOutUser);
return PEAR::raiseError($oEntity->getName().': '._kt('Document has already been checked out by ').$oCheckedOutUser->getName());
}
}
// Check that the checkout action isn't restricted for the document
if(!KTWorkflowUtil::actionEnabledForDocument($oEntity, 'ktcore.actions.document.checkout')){
return PEAR::raiseError($oEntity->getName().': '._kt('Checkout is restricted by the workflow state.'));
}
}else if(!is_a($oEntity, 'Folder')) {
return PEAR::raiseError(_kt('Document cannot be checked out'));
}
//we need to do an extra folder permission check in case of a shortcut
if(is_a($oEntity,'Folder') && $oEntity->isSymbolicLink()){
if(!KTPermissionUtil::userHasPermissionOnItem($this->oUser, $this->_sPermission, $oEntity->getLinkedFolder())) {
return PEAR::raiseError(_kt('You do not have the required permissions'));
}
}
return parent::check_entity($oEntity);
}
function form_collectinfo() {
$cancelUrl = $this->getReturnUrl();
$oForm = new KTForm;
$oForm->setOptions(array(
'identifier' => 'ktcore.actions.bulk.checkout.form',
'label' => _kt('Checkout Items'),
'submit_label' => _kt('Checkout'),
'action' => 'performaction',
'fail_action' => 'collectinfo',
'cancel_url' => $cancelUrl,
'context' => $this,
));
// Electronic Signature if enabled
global $default;
if($default->enableESignatures){
$widgets[] = array('ktcore.widgets.info', array(
'label' => _kt('This action requires authentication'),
'description' => _kt('Please provide your user credentials as confirmation of this action.'),
'name' => 'info'
));
$widgets[] = array('ktcore.widgets.string', array(
'label' => _kt('Username'),
'name' => 'sign_username',
'required' => true
));
$widgets[] = array('ktcore.widgets.password', array(
'label' => _kt('Password'),
'name' => 'sign_password',
'required' => true
));
}
$widgets[] = array('ktcore.widgets.reason',array(
'name' => 'reason',
'label' => _kt('Reason'),
'description' => _kt('Please specify why you are checking out these documents. It will assist other users in understanding why you have locked these files.'),
'value' => null,
'required' => true,
));
$widgets[] = array('ktcore.widgets.boolean', array(
'label' => _kt('Download Files'),
'description' => _kt('Indicate whether you would like to download these file as part of the checkout.'),
'name' => 'download_file',
'value' => true,
));
$oForm->setWidgets($widgets);
$oForm->setValidators(array(
array('ktcore.validators.string', array(
'test' => 'reason',
'max_length' => 250,
'output' => 'reason',
)),
array('ktcore.validators.boolean', array(
'test' => 'download_file',
'output' => 'download_file',
)),
));
if($default->enableESignatures){
$oForm->addValidator(array('electonic.signatures.validators.authenticate', array(
'object_id' => $this->oFolder->getID(),
'type' => 'bulk',
'action' => 'ktcore.transactions.bulk_check_out',
'test' => 'info',
'output' => 'info'
)));
}
return $oForm;
}
// info collection step
function do_collectinfo() {
$this->store_lists();
$this->get_lists();
$oTemplating =& KTTemplating::getSingleton();
$oTemplate = $oTemplating->loadTemplate('ktcore/bulk_action_info');
return $oTemplate->render(array('context' => $this,
'form' => $this->form_collectinfo()));
}
function do_performaction() {
// Get reason for checkout & check if docs must be downloaded
$this->store_lists();
$this->get_lists();
$oForm = $this->form_collectinfo();
$res = $oForm->validate();
if (!empty($res['errors'])) {
$oForm->handleError();
}
$this->sReason = $_REQUEST['data']['reason'];
$this->bDownload = $_REQUEST['data']['download_file'];
$oKTConfig =& KTConfig::getSingleton();
$this->bNoisy = $oKTConfig->get("tweaks/noisyBulkOperations");
$folderurl = KTBrowseUtil::getUrlForFolder($this->oFolder);
$sReturn = sprintf('<p>' . _kt('Return to the original <a href="%s">folder</a>') . "</p>\n", $folderurl);
$this->startTransaction();
// if files are to be downloaded - create the temp directory for the bulk export
if($this->bDownload){
$folderName = $this->oFolder->getName();
$this->oZip = new ZipFolder($folderName);
$res = $this->oZip->checkConvertEncoding();
if(PEAR::isError($res)){
$this->addErrorMessage($res->getMessage());
return $sReturn;
}
}
$result = parent::do_performaction();
if(PEAR::isError($result)){
$this->addErrorMessage($result->getMessage());
return $sReturn;
}
if($this->bDownload){
$sExportCode = $this->oZip->createZipFile();
if(PEAR::isError($sExportCode)){
$this->addErrorMessage($sExportCode->getMessage());
return $sReturn;
}
}
$this->commitTransaction();
if($this->bDownload){
$url = KTUtil::addQueryStringSelf(sprintf('action=downloadZipFile&fFolderId=%d&exportcode=%s', $this->oFolder->getId(), $sExportCode));
$str = sprintf('<p>' . _kt('Go <a href="%s">here</a> to download the zip file if you are not automatically redirected there') . "</p>\n", $url);
$folderurl = KTBrowseUtil::getUrlForFolder($this->oFolder);
$str .= sprintf('<p>' . _kt('Once downloaded, return to the original <a href="%s">folder</a>') . "</p>\n", $folderurl);
$str .= sprintf("</div></div></body></html>\n");
$str .= sprintf('<script language="JavaScript">
function kt_bulkexport_redirect() {
document.location.href = "%s";
}
callLater(1, kt_bulkexport_redirect);
</script>', $url);
return $str;
}
return $result;
}
/**
* Bulk checkout
* @params : KTDocumentUtil/KTFolderUtil $oEntity
*
*/
function perform_action($oEntity) {
// checkout document
$sReason = $this->sReason;
if(is_a($oEntity, 'Document')) {
if($oEntity->getImmutable())
{
return PEAR::raiseError($oEntity->getName() .': '. _kt('Document cannot be checked out as it is immutable'));
}
if($oEntity->getIsCheckedOut()){
$checkedOutUser = $oEntity->getCheckedOutUserID();
$sUserId = $_SESSION['userID'];
if($checkedOutUser != $sUserId){
$oCheckedOutUser = User::get($checkedOutUser);
return PEAR::raiseError($oEntity->getName().': '._kt('Document has already been checked out by ').$oCheckedOutUser->getName());
}
}else{
$res = KTDocumentUtil::checkout($oEntity, $sReason, $this->oUser, true);
if(PEAR::isError($res)) {
return PEAR::raiseError($oEntity->getName().': '.$res->getMessage());
}
}
if($this->bDownload){
if ($this->bNoisy) {
$oDocumentTransaction = new DocumentTransaction($oEntity, "Document part of bulk checkout", 'ktstandard.transactions.check_out', array());
$oDocumentTransaction->create();
}
$oKTTriggerRegistry = KTTriggerRegistry::getSingleton();
$aTriggers = $oKTTriggerRegistry->getTriggers('checkoutDownload', 'postValidate');
foreach ($aTriggers as $aTrigger) {
$sTrigger = $aTrigger[0];
$oTrigger = new $sTrigger;
$aInfo = array(
'document' => $oEntity,
);
$oTrigger->setInfo($aInfo);
$ret = $oTrigger->postValidate();
if (PEAR::isError($ret)) {
return $ret;
}
}
$this->oZip->addDocumentToZip($oEntity);
}
if(!PEAR::isError($res)) {
}
}else if(is_a($oEntity, 'Folder')) {
// get documents and subfolders
$aDocuments = array();
$oFolder = $oEntity;
if($oFolder->isSymbolicLink()){
$oFolder = $oFolder->getLinkedFolder();
}
$sFolderId = $oFolder->getId();
$sFolderDocs = $oFolder->getDocumentIDs($sFolderId);
// get documents directly in the folder
if(!empty($sFolderDocs)){
$aDocuments = explode(',', $sFolderDocs);
}
// Get all the folders within the current folder
$sWhereClause = "parent_folder_ids = '{$sFolderId}' OR
parent_folder_ids LIKE '{$sFolderId},%' OR
parent_folder_ids LIKE '%,{$sFolderId},%' OR
parent_folder_ids LIKE '%,{$sFolderId}'";
$aFolderList = $this->oFolder->getList($sWhereClause);
$aLinkingFolders = $this->getLinkingEntities($aFolderList);
$aFolderList = array_merge($aFolderList,$aLinkingFolders);
$aFolderObjects = array();
$aFolderObjects[$sFolderId] = $oFolder;
// Get the documents within the folder
if(!empty($aFolderList)){
foreach($aFolderList as $k => $oFolderItem){
if(Permission::userHasFolderReadPermission($oFolderItem)){
// Get documents for each folder
if($oFolderItem->isSymbolicLink()){
$oFolderItem = $oFolderItem->getLinkedFolder();
}
$sFolderItemId = $oFolderItem->getID();
$sFolderItemDocs = $oFolderItem->getDocumentIDs($sFolderItemId);
if(!empty($sFolderItemDocs)){
$aFolderDocs = explode(',', $sFolderItemDocs);
$aDocuments = array_merge($aDocuments, $aFolderDocs);
}
// Add the folder to the zip file
if($this->bDownload){
$this->oZip->addFolderToZip($oFolderItem);
$aFolderObjects[$oFolderItem->getId()] = $oFolderItem;
}
}
}
}
// Checkout each document within the folder structure
if(!empty($aDocuments)){
foreach($aDocuments as $sDocId){
$oDocument = Document::get($sDocId);
if(PEAR::isError($oDocument)) {
// add message, skip document and continue
$this->addErrorMessage($oDocument->getName().': '.$oDocument->getMessage());
continue;
}
if($oDocument->isSymbolicLink()){
$oDocument->switchToLinkedCore();
}
if($oDocument->getImmutable())
{
$this->addErrorMessage($oDocument->getName() .': '. _kt('Document cannot be checked out as it is immutable'));
continue;
}
// Check if the action is restricted by workflow on the document
if(!KTWorkflowUtil::actionEnabledForDocument($oDocument, 'ktcore.actions.document.checkout')){
$this->addErrorMessage($oDocument->getName().': '._kt('Checkout is restricted by the workflow state.'));
continue;
}
// Check if document is already checked out, check the owner.
// If the current user is the owner, then include to the download, otherwise ignore.
if($oDocument->getIsCheckedOut()){
$checkedOutUser = $oDocument->getCheckedOutUserID();
$sUserId = $_SESSION['userID'];
if($checkedOutUser != $sUserId){
$oCheckedOutUser = User::get($checkedOutUser);
$this->addErrorMessage($oDocument->getName().': '._kt('Document has already been checked out by ').$oCheckedOutUser->getName());
continue;
}
}else{
// Check out document
$res = KTDocumentUtil::checkout($oDocument, $sReason, $this->oUser, true);
if(PEAR::isError($res)) {
$this->addErrorMessage($oDocument->getName().': '._kt('Document could not be checked out. ').$res->getMessage());
continue;
}
}
// Add document to the zip file
if($this->bDownload){
if ($this->bNoisy) {
$oDocumentTransaction = new DocumentTransaction($oDocument, 'Document part of bulk checkout', 'ktstandard.transactions.check_out', array());
$oDocumentTransaction->create();
}
$oKTTriggerRegistry = KTTriggerRegistry::getSingleton();
$aTriggers = $oKTTriggerRegistry->getTriggers('checkoutDownload', 'postValidate');
foreach ($aTriggers as $aTrigger) {
$sTrigger = $aTrigger[0];
$oTrigger = new $sTrigger;
$aInfo = array(
'document' => $oDocument,
);
$oTrigger->setInfo($aInfo);
$ret = $oTrigger->postValidate();
if (PEAR::isError($ret)) {
return $ret;
}
}
$sDocFolderId = $oDocument->getFolderID();
$oFolder = isset($aFolderObjects[$sDocFolderId]) ? $aFolderObjects[$sDocFolderId] : Folder::get($sDocFolderId);
$this->oZip->addDocumentToZip($oDocument, $oFolder);
}
}
}
}
return "CheckOutDocument";
}
function do_downloadZipFile() {
$sCode = $this->oValidator->validateString($_REQUEST['exportcode']);
$folderName = $this->oFolder->getName();
$this->oZip = new ZipFolder($folderName);
$res = $this->oZip->downloadZipFile($sCode);
if(PEAR::isError($res)){
$this->addErrorMessage($res->getMessage());
redirect(generateControllerUrl("browse", "fBrowseType=folder&fFolderId=" . $this->oFolder->getId()));
}
exit(0);
}
}
?>