KTBulkActions.php
21.1 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
<?php
/**
*
* The contents of this file are subject to the KnowledgeTree Public
* License Version 1.1.2 ("License"); You may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.knowledgetree.com/KPL
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
* See the License for the specific language governing rights and
* limitations under the License.
*
* All copies of the Covered Code must include on each user interface screen:
* (i) the "Powered by KnowledgeTree" logo and
* (ii) the KnowledgeTree copyright notice
* in the same form as they appear in the distribution. See the License for
* requirements.
*
* The Original Code is: KnowledgeTree Open Source
*
* The Initial Developer of the Original Code is The Jam Warehouse Software
* (Pty) Ltd, trading as KnowledgeTree.
* Portions created by The Jam Warehouse Software (Pty) Ltd are Copyright
* (C) 2007 The Jam Warehouse Software (Pty) Ltd;
* All Rights Reserved.
* Contributor( s): ______________________________________
*
*/
require_once(KT_LIB_DIR . '/actions/bulkaction.php');
require_once(KT_LIB_DIR . '/widgets/forms.inc.php');
class KTBulkDeleteAction extends KTBulkAction {
var $sName = 'ktcore.actions.bulk.delete';
var $_sPermission = 'ktcore.permissions.delete';
var $_bMutator = true;
function getDisplayName() {
return _kt('Delete');
}
function form_collectinfo() {
$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_action' => 'main',
'context' => $this,
));
$oForm->setWidgets(array(
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->setValidators(array(
array('ktcore.validators.string', array(
'test' => 'reason',
'output' => 'reason',
)),
));
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() {
$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();
}
function perform_action($oEntity) {
$sReason = $this->res['reason'];
if(is_a($oEntity, 'Document')) {
$res = KTDocumentUtil::delete($oEntity, $sReason);
} else if(is_a($oEntity, 'Folder')) {
$res = KTFolderUtil::delete($oEntity, $this->oUser, $sReason);
}
return $res;
}
}
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() {
$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_action' => 'main',
'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);
$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',
)),
));
return $oForm;
}
function check_entity($oEntity) {
if(is_a($oEntity, 'Document')) {
if(!KTDocumentUtil::canBeMoved($oEntity)) {
return PEAR::raiseError(_kt('Document 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;
// 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();
}
function perform_action($oEntity) {
if(is_a($oEntity, 'Document')) {
return KTDocumentUtil::move($oEntity, $this->oTargetFolder, $this->oUser, $this->sReason);
} else if(is_a($oEntity, 'Folder')) {
return KTFolderUtil::move($oEntity, $this->oTargetFolder, $this->oUser, $this->sReason);
}
}
}
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() {
$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_action' => 'main',
'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);
$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',
)),
));
return $oForm;
}
function check_entity($oEntity) {
if(is_a($oEntity, 'Document')) {
if(!KTDocumentUtil::canBeMoved($oEntity)) {
return PEAR::raiseError(_kt('Document 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();
}
function perform_action($oEntity) {
if(is_a($oEntity, 'Document')) {
return KTDocumentUtil::copy($oEntity, $this->oTargetFolder, $this->sReason);
} else if(is_a($oEntity, 'Folder')) {
return KTFolderUtil::copy($oEntity, $this->oTargetFolder, $this->oUser, $this->sReason);
}
}
}
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() {
$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_action' => 'main',
'context' => $this,
));
$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',
)),
));
return $oForm;
}
function check_entity($oEntity) {
if(!is_a($oEntity, 'Document')) {
return PEAR::raiseError(_kt('Document cannot be archived'));
}
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'];
return parent::do_performaction();
}
function perform_action($oEntity) {
if(is_a($oEntity, 'Document')) {
DBUtil::startTransaction();
$document = $oEntity;
$document->setStatusID(ARCHIVED);
$res = $document->update();
if (($res === false) || PEAR::isError($res)) {
DBUtil::rollback();
return false;
}
$oDocumentTransaction = & new DocumentTransaction($document, sprintf(_kt('Document archived: %s'), $this->sReason), 'ktcore.transactions.update');
$oDocumentTransaction->create();
DBUtil::commit();
return true;
}
}
}
class KTBrowseBulkExportAction extends KTBulkAction {
var $sName = 'ktcore.actions.bulk.export';
var $_sPermission = 'ktcore.permissions.read';
var $_bMutator = true;
function getDisplayName() {
return _kt('Export');
}
function check_entity($oEntity) {
if(!is_a($oEntity, 'Document')) {
return PEAR::raiseError(_kt('Document cannot be exported'));
}
return parent::check_entity($oEntity);
}
function do_performaction() {
$oKTConfig =& KTConfig::getSingleton();
$sBasedir = $oKTConfig->get("urls/tmpDirectory");
$this->sTmpPath= $sTmpPath = tempnam($sBasedir, 'kt_export');
$this->oStorage =& KTStorageManagerUtil::getSingleton();
unlink($sTmpPath);
mkdir($sTmpPath, 0700);
$this->startTransaction();
$this->bNoisy = $oKTConfig->get("tweaks/noisyBulkOperations");
$this->sTmpPath = $sTmpPath;
$this->aPaths = array();
$result = parent::do_performaction();
$sManifest = sprintf("%s/%s", $this->sTmpPath, "MANIFEST");
file_put_contents($sManifest, join("\n", $this->aPaths));
$sZipFile = sprintf("%s/%s.zip", $this->sTmpPath, $this->oFolder->getName());
$sZipFile = str_replace('<', '', str_replace('</', '', str_replace('>', '', $sZipFile)));
$_SESSION['bulkexport'] = KTUtil::arrayGet($_SESSION, 'bulkexport', array());
$sExportCode = KTUtil::randomString();
$_SESSION['bulkexport'][$sExportCode] = array(
'file' => $sZipFile,
'dir' => $this->sTmpPath,
);
$sZipCommand = KTUtil::findCommand("export/zip", "zip");
$aCmd = array(
$sZipCommand,
"-r",
$sZipFile,
".",
"-i@MANIFEST",
);
$sOldPath = getcwd();
chdir($this->sTmpPath);
// Note that the popen means that pexec will return a file descriptor
$fh = KTUtil::pexec($aCmd);
$oTransaction = KTFolderTransaction::createFromArray(array(
'folderid' => $this->oFolder->getId(),
'comment' => "Bulk export",
'transactionNS' => 'ktstandard.transactions.bulk_export',
'userid' => $_SESSION['userID'],
'ip' => Session::getClientIP(),
));
$this->commitTransaction();
header("Content-Type: application/zip");
header("Content-Length: ". filesize($sZipFile));
header("Content-Disposition: attachment; filename=\"" . $this->oFolder->getName() . ".zip" . "\"");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: must-revalidate");
readfile($sZipFile);
$sTmpDir = $aData['dir'];
KTUtil::deleteDirectory($sTmpDir);
return $result;
}
function perform_action($oEntity) {
if(is_a($oEntity, 'Document')) {
$aReplace = array(
"[" => "[[]",
" " => "[ ]",
"*" => "[*]",
"?" => "[?]",
);
$aReplaceKeys = array_keys($aReplace);
$aReplaceValues = array_values($aReplace);
$oDocument = $oEntity;
if ($this->bNoisy) {
$oDocumentTransaction = new DocumentTransaction($oDocument, "Document part of bulk export", 'ktstandard.transactions.bulk_export', array());
$oDocumentTransaction->create();
}
$sParentFolder = str_replace('<', '', str_replace('</', '', str_replace('>', '', sprintf('%s/%s', $this->sTmpPath, $oDocument->getFullPath()))));
$newDir = $this->sTmpPath;
$sFullPath = str_replace('<', '', str_replace('</', '', str_replace('>', '', $this->_convertEncoding($oDocument->getFullPath(), true))));
foreach (split('/', $sFullPath) as $dirPart) {
$newDir = sprintf("%s/%s", $newDir, $dirPart);
if (!file_exists($newDir)) {
mkdir($newDir, 0700);
}
}
$sOrigFile = str_replace('<', '', str_replace('</', '', str_replace('>', '', $this->oStorage->temporaryFile($oDocument))));
$sFilename = sprintf("%s/%s", $sParentFolder, str_replace('<', '', str_replace('</', '', str_replace('>', '', $oDocument->getFileName()))));
$sFilename = $this->_convertEncoding($sFilename, true);
copy($sOrigFile, $sFilename);
$sPath = str_replace('<', '', str_replace('</', '', str_replace('>', '', sprintf("%s/%s", $oDocument->getFullPath(), $oDocument->getFileName()))));
$sPath = str_replace($aReplaceKeys, $aReplaceValues, $sPath);
$sPath = $this->_convertEncoding($sPath, true);
$this->aPaths[] = $sPath;
}
return true;
}
function _convertEncoding($sMystring, $bEncode) {
if (strcasecmp($this->sOutputEncoding, "UTF-8") === 0) {
return $sMystring;
}
if ($bEncode) {
return iconv("UTF-8", $this->sOutputEncoding, $sMystring);
} else {
return iconv($this->sOutputEncoding, "UTF-8", $sMystring);
}
}
}
?>