documentutil.inc.php
55.6 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
<?php
/**
* $Id$
*
* Document-handling utility functions
*
* Simplifies and canonicalises operations such as adding, updating, and
* deleting documents from the repository.
*
* KnowledgeTree Community Edition
* Document Management Made Simple
* Copyright (C) 2008, 2009 KnowledgeTree Inc.
* Portions copyright The Jam Warehouse Software (Pty) Limited
*
* 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): ______________________________________
*/
// LEGACY PATHS
require_once(KT_LIB_DIR . '/documentmanagement/DocumentFieldLink.inc');
require_once(KT_LIB_DIR . '/documentmanagement/DocumentTransaction.inc');
require_once(KT_LIB_DIR . '/documentmanagement/Document.inc');
require_once(KT_LIB_DIR . '/storage/storagemanager.inc.php');
// NEW PATHS
require_once(KT_LIB_DIR . '/storage/storagemanager.inc.php');
require_once(KT_LIB_DIR . '/filelike/filelikeutil.inc.php');
require_once(KT_LIB_DIR . '/metadata/metadatautil.inc.php');
require_once(KT_LIB_DIR . '/metadata/fieldset.inc.php');
require_once(KT_LIB_DIR . '/subscriptions/subscriptions.inc.php');
require_once(KT_LIB_DIR . '/triggers/triggerregistry.inc.php');
require_once(KT_LIB_DIR . '/foldermanagement/Folder.inc');
require_once(KT_LIB_DIR . '/alert/EmailTemplate.inc.php');
require_once(KT_LIB_DIR . '/browse/browseutil.inc.php');
// WORKFLOW
require_once(KT_LIB_DIR . '/workflow/workflowutil.inc.php');
class KTDocumentUtil {
function checkin($oDocument, $sFilename, $sCheckInComment, $oUser, $aOptions = false) {
$oStorage =& KTStorageManagerUtil::getSingleton();
$iFileSize = filesize($sFilename);
$iPreviousMetadataVersion = $oDocument->getMetadataVersionId();
$bSuccess = $oDocument->startNewContentVersion($oUser);
if (PEAR::isError($bSuccess)) {
return $bSuccess;
}
KTDocumentUtil::copyMetadata($oDocument, $iPreviousMetadataVersion);
$aOptions['temp_file'] = $sFilename;
$res = KTDocumentUtil::storeContents($oDocument, '', $aOptions);
if (PEAR::isError($res)) {
return $res;
}
$oDocument->setLastModifiedDate(getCurrentDateTime());
$oDocument->setModifiedUserId($oUser->getId());
$oDocument->setIsCheckedOut(false);
$oDocument->setCheckedOutUserID(-1);
if ($aOptions['major_update']) {
$oDocument->setMajorVersionNumber($oDocument->getMajorVersionNumber()+1);
$oDocument->setMinorVersionNumber('0');
} else {
$oDocument->setMinorVersionNumber($oDocument->getMinorVersionNumber()+1);
}
$oDocument->setFileSize($iFileSize);
if(is_array($aOptions)) {
$sFilename = KTUtil::arrayGet($aOptions, 'newfilename', '');
if(!empty($sFilename)) {
global $default;
$oDocument->setFileName($sFilename);
$default->log->info('renamed document ' . $oDocument->getId() . ' to ' . $sFilename);
// detection of mime types needs to be refactored. this stuff is damn messy!
// If the filename has changed then update the mime type
$iMimeTypeId = KTMime::getMimeTypeID('', $sFilename);
$oDocument->setMimeTypeId($iMimeTypeId);
}
}
$bSuccess = $oDocument->update();
if ($bSuccess !== true) {
if (PEAR::isError($bSuccess)) {
return $bSuccess;
}
return PEAR::raiseError(_kt('An error occurred while storing this document in the database'));
}
// create the document transaction record
$oDocumentTransaction = new DocumentTransaction($oDocument, $sCheckInComment, 'ktcore.transactions.check_in');
$oDocumentTransaction->create();
$oKTTriggerRegistry = KTTriggerRegistry::getSingleton();
$aTriggers = $oKTTriggerRegistry->getTriggers('content', 'scan');
foreach ($aTriggers as $aTrigger) {
$sTrigger = $aTrigger[0];
$oTrigger = new $sTrigger;
$oTrigger->setDocument($oDocument);
$ret = $oTrigger->scan();
if (PEAR::isError($ret)) {
$oDocument->delete();
return $ret;
}
}
Indexer::index($oDocument);
// fire subscription alerts for the checked in document
$oSubscriptionEvent = new SubscriptionEvent();
$oFolder = Folder::get($oDocument->getFolderID());
$oSubscriptionEvent->CheckinDocument($oDocument, $oFolder);
return true;
}
function checkout($oDocument, $sCheckoutComment, $oUser) {
//automatically check out the linked document if this is a shortcut
if($oDocument->isSymbolicLink()){
$oDocument->switchToLinkedCore();
}
if ($oDocument->getIsCheckedOut()) {
return PEAR::raiseError(_kt('Already checked out.'));
}
if($oDocument->getImmutable()){
return PEAR::raiseError(_kt('Document cannot be checked out as it is immutable'));
}
// Check if the action is restricted by workflow on the document
if(!KTWorkflowUtil::actionEnabledForDocument($oDocument, 'ktcore.actions.document.checkout')){
return PEAR::raiseError(_kt('Checkout is restricted by the workflow state.'));
}
// FIXME at the moment errors this _does not_ rollback.
$oDocument->setIsCheckedOut(true);
$oDocument->setCheckedOutUserID($oUser->getId());
if (!$oDocument->update()) { return PEAR::raiseError(_kt('There was a problem checking out the document.')); }
$oKTTriggerRegistry = KTTriggerRegistry::getSingleton();
$aTriggers = $oKTTriggerRegistry->getTriggers('checkout', '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;
}
}
$oDocumentTransaction = new DocumentTransaction($oDocument, $sCheckoutComment, 'ktcore.transactions.check_out');
$oDocumentTransaction->create();
// fire subscription alerts for the downloaded document
$oSubscriptionEvent = new SubscriptionEvent();
$oFolder = Folder::get($oDocument->getFolderID());
$oSubscriptionEvent->CheckOutDocument($oDocument, $oFolder);
return true;
}
function archive($oDocument, $sReason) {
if($oDocument->isSymbolicLink()){
return PEAR::raiseError(_kt("It is not possible to archive a shortcut. Please archive the target document."));
}
// Ensure the action is not blocked
if(!KTWorkflowUtil::actionEnabledForDocument($oDocument, 'ktcore.actions.document.archive')){
return PEAR::raiseError(_kt('Document cannot be archived as it is restricted by the workflow.'));
}
$oDocument->setStatusID(ARCHIVED);
$res = $oDocument->update();
if (PEAR::isError($res) || ($res === false)) {
return PEAR::raiseError(_kt('There was a database error while trying to archive this file'));
}
//delete all shortcuts linking to this document
$aSymlinks = $oDocument->getSymbolicLinks();
foreach($aSymlinks as $aSymlink){
$oShortcutDocument = Document::get($aSymlink['id']);
$oOwnerUser = User::get($oShortcutDocument->getOwnerID());
KTDocumentUtil::deleteSymbolicLink($aSymlink['id']);
//send an email to the owner of the shortcut
if($oOwnerUser->getEmail()!=null && $oOwnerUser->getEmailNotification() == true){
$emailTemplate = new EmailTemplate("kt3/notifications/notification.SymbolicLinkArchived",array('user_name'=>$this->oUser->getName(),
'url'=>KTUtil::ktLink(KTBrowseUtil::getUrlForDocument($oShortcutDocument)),
'title' =>$oShortcutDocument->getName()));
$email = new EmailAlert($oOwnerUser->getEmail(),_kt("KnowledgeTree Notification"),$emailTemplate->getBody());
$email->send();
}
}
$oDocumentTransaction = & new DocumentTransaction($oDocument, sprintf(_kt('Document archived: %s'), $sReason), 'ktcore.transactions.update');
$oDocumentTransaction->create();
$oKTTriggerRegistry = KTTriggerRegistry::getSingleton();
$aTriggers = $oKTTriggerRegistry->getTriggers('archive', '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)) {
$oDocument->delete();
return $ret;
}
}
// fire subscription alerts for the archived document
$oSubscriptionEvent = new SubscriptionEvent();
$oFolder = Folder::get($oDocument->getFolderID());
$oSubscriptionEvent->ArchivedDocument($oDocument, $oFolder);
return true;
}
function &_add($oFolder, $sFilename, $oUser, $aOptions) {
global $default;
//$oContents = KTUtil::arrayGet($aOptions, 'contents');
$aMetadata = KTUtil::arrayGet($aOptions, 'metadata', null, false);
$oDocumentType = KTUtil::arrayGet($aOptions, 'documenttype');
$sDescription = KTUtil::arrayGet($aOptions, 'description', '');
if(empty($sDescription)){
// If no document name is provided use the filename minus the extension
$aFile = pathinfo($sFilename);
$sDescription = (isset($aFile['filename']) && !empty($aFile['filename'])) ? $aFile['filename'] : $sFilename;
}
$oUploadChannel =& KTUploadChannel::getSingleton();
if ($oDocumentType) {
$iDocumentTypeId = KTUtil::getId($oDocumentType);
} else {
$iDocumentTypeId = 1;
}
$oUploadChannel->sendMessage(new KTUploadGenericMessage(_kt('Creating database entry')));
$oDocument =& Document::createFromArray(array(
'name' => $sDescription,
'description' => $sDescription,
'filename' => $sFilename,
'folderid' => $oFolder->getID(),
'creatorid' => $oUser->getID(),
'documenttypeid' => $iDocumentTypeId,
));
$oUploadChannel->sendMessage(new KTUploadGenericMessage(_kt('Storing contents')));
$res = KTDocumentUtil::storeContents($oDocument, '', $aOptions);
if (PEAR::isError($res)) {
if (!PEAR::isError($oDocument)) {
$oDocument->delete();
}
return $res;
}
if (is_null($aMetadata)) {
$res = KTDocumentUtil::setIncomplete($oDocument, 'metadata');
if (PEAR::isError($res)) {
$oDocument->delete();
return $res;
}
} else {
$oUploadChannel->sendMessage(new KTUploadGenericMessage(_kt('Saving metadata')));
$res = KTDocumentUtil::saveMetadata($oDocument, $aMetadata, $aOptions);
if (PEAR::isError($res)) {
$oDocument->delete();
return $res;
}
}
// setIncomplete and storeContents may change the document's status or
// storage_path, so now is the time to update
$oDocument->update();
return $oDocument;
}
/**
* Create a symbolic link in the target folder
*
* @param Document $sourceDocument the document to create a link to
* @param Folder $targetFolder the folder to place the link in
* @param User $user current user
*/
static function createSymbolicLink($sourceDocument, $targetFolder, $user = null) // added/
{
//validate input
if (is_numeric($sourceDocument))
{
$sourceDocument = Document::get($sourceDocument);
}
if (!$sourceDocument instanceof Document)
{
return PEAR::raiseError(_kt('Source document not specified'));
}
if (is_numeric($targetFolder))
{
$targetFolder = Folder::get($targetFolder);
}
if (!$targetFolder instanceof Folder)
{
return PEAR::raiseError(_kt('Target folder not specified'));
}
if (is_null($user))
{
$user = $_SESSION['userID'];
}
if (is_numeric($user))
{
$user = User::get($user);
}
//check for permissions
$oPermission =& KTPermission::getByName("ktcore.permissions.write");
$oReadPermission =& KTPermission::getByName("ktcore.permissions.read");
if (KTBrowseUtil::inAdminMode($user, $targetFolder)) {
if(!KTPermissionUtil::userHasPermissionOnItem($user, $oPermission, $targetFolder)){
return PEAR::raiseError(_kt('You\'re not authorized to create shortcuts'));
}
}
if (!KTBrowseUtil::inAdminMode($user, $sourceDocument->getParentID())) {
if(!KTPermissionUtil::userHasPermissionOnItem($user, $oReadPermission, $sourceDocument)){
return PEAR::raiseError(_kt('You\'re not authorized to create a shortcut to this document'));
}
}
//check if the shortcut doesn't already exists in the target folder
$aSymlinks = $sourceDocument->getSymbolicLinks();
foreach($aSymlinks as $iSymlink){
$oSymlink = Document::get($iSymlink['id']);
$oSymlink->switchToRealCore();
if($oSymlink->getFolderID() == $targetFolder->getID()){
return PEAR::raiseError(_kt('There already is a shortcut to this document in the target folder.'));
}
}
//create the actual shortcut
$oCore = KTDocumentCore::createFromArray(array(
'iCreatorId'=>$user->getId(),
'iFolderId'=>$targetFolder->getId(),
'iLinkedDocumentId'=>$sourceDocument->getId(),
'sFullPath'=> $targetFolder->getFullPath() . '/' .
$sourceDocument->getName(),
'iPermissionObjectId'=>$targetFolder->getPermissionObjectID(),
'iPermissionLookupId'=>$targetFolder->getPermissionLookupID(),
'iStatusId'=>1,
'iMetadataVersionId'=>$sourceDocument->getMetadataVersionId(),
));
$document = Document::get($oCore->getId());
return $document;
}
/**
* Deletes a document symbolic link
*
* @param Document $document the symbolic link document
* @param User $user the user deleting the link
* @return unknown
*/
static function deleteSymbolicLink($document, $user = null) // added/
{
//validate input
if (is_numeric($document))
{
$document = Document::get($document);
}
if (!$document instanceof Document)
{
return PEAR::raiseError(_kt('Document not specified'));
}
if (!$document->isSymbolicLink())
{
return PEAR::raiseError(_kt('Document must be a symbolic link entity'));
}
if (is_null($user))
{
$user = $_SESSION['userID'];
}
if (is_numeric($user))
{
$user = User::get($user);
}
//check permissions
$oPerm = KTPermission::getByName('ktcore.permissions.delete');
if (!KTBrowseUtil::inAdminMode($user, $document->getParentID())) {
if(!KTPermissionUtil::userHasPermissionOnItem($user, $oPerm, $document)){
return PEAR::raiseError(_kt('You\'re not authorized to delete this shortcut'));
}
}
// we only need to delete the document entry for the link
$sql = "DELETE FROM documents WHERE id=?";
DBUtil::runQuery(array($sql, array($document->getId())));
}
// Overwrite the document
function overwrite($oDocument, $sFilename, $sTempFileName, $oUser, $aOptions) {
//$oDocument, $sFilename, $sCheckInComment, $oUser, $aOptions = false
$oStorage =& KTStorageManagerUtil::getSingleton();
$iFileSize = filesize($sTempFileName);
// Check that document is not checked out
if($oDocument->getIsCheckedOut()) {
return PEAR::raiseError(_kt('Document is checkout and cannot be overwritten'));
}
if (!$oStorage->upload($oDocument, $sTempFileName)) {
return PEAR::raiseError(_kt('An error occurred while storing the new file'));
}
$oDocument->setLastModifiedDate(getCurrentDateTime());
$oDocument->setModifiedUserId($oUser->getId());
$oDocument->setFileSize($iFileSize);
$sOriginalFilename = $oDocument->getFileName();
if($sOriginalFilename != $sFilename){
if(strlen($sFilename)) {
global $default;
$oDocument->setFileName($sFilename);
$default->log->info('renamed document ' . $oDocument->getId() . ' to ' . $sFilename);
}
$oDocument->setMinorVersionNumber($oDocument->getMinorVersionNumber()+1);
}
$sType = KTMime::getMimeTypeFromFile($sFilename);
$iMimeTypeId = KTMime::getMimeTypeID($sType, $oDocument->getFileName());
$oDocument->setMimeTypeId($iMimeTypeId);
$bSuccess = $oDocument->update();
if ($bSuccess !== true) {
if (PEAR::isError($bSuccess)) {
return $bSuccess;
}
return PEAR::raiseError(_kt('An error occurred while storing this document in the database'));
}
/*
// create the document transaction record
$oDocumentTransaction = new DocumentTransaction($oDocument, $sCheckInComment, 'ktcore.transactions.check_in');
$oDocumentTransaction->create();
$oKTTriggerRegistry = KTTriggerRegistry::getSingleton();
$aTriggers = $oKTTriggerRegistry->getTriggers('content', 'scan');
foreach ($aTriggers as $aTrigger) {
$sTrigger = $aTrigger[0];
$oTrigger = new $sTrigger;
$oTrigger->setDocument($oDocument);
$ret = $oTrigger->scan();
if (PEAR::isError($ret)) {
$oDocument->delete();
return $ret;
}
}
// NEW SEARCH
Indexer::index($oDocument);
// fire subscription alerts for the checked in document
$oSubscriptionEvent = new SubscriptionEvent();
$oFolder = Folder::get($oDocument->getFolderID());
$oSubscriptionEvent->CheckinDocument($oDocument, $oFolder);
*/
return true;
}
// {{{ validateMetadata
function validateMetadata(&$oDocument, $aMetadata) {
$aFieldsets =& KTFieldset::getGenericFieldsets();
$aFieldsets =& kt_array_merge($aFieldsets,
KTFieldset::getForDocumentType($oDocument->getDocumentTypeId()));
$aSimpleMetadata = array();
foreach ($aMetadata as $aSingleMetadatum) {
list($oField, $sValue) = $aSingleMetadatum;
if (is_null($oField)) {
continue;
}
$aSimpleMetadata[$oField->getId()] = $sValue;
}
$aFailed = array();
foreach ($aFieldsets as $oFieldset) {
$aFields =& $oFieldset->getFields();
$aFieldValues = array();
$isRealConditional = ($oFieldset->getIsConditional() && KTMetadataUtil::validateCompleteness($oFieldset));
foreach ($aFields as $oField) {
$v = KTUtil::arrayGet($aSimpleMetadata, $oField->getId());
if ($oField->getIsMandatory() && !$isRealConditional) {
if (empty($v)) {
// XXX: What I'd do for a setdefault...
$aFailed['field'][$oField->getId()] = 1;
}
}
if (!empty($v)) {
$aFieldValues[$oField->getId()] = $v;
}
}
if ($isRealConditional) {
$res = KTMetadataUtil::getNext($oFieldset, $aFieldValues);
if ($res) {
foreach ($res as $aMDSet) {
if ($aMDSet['field']->getIsMandatory()) {
$aFailed['fieldset'][$oFieldset->getId()] = 1;
}
}
}
}
}
if (!empty($aFailed)) {
return new KTMetadataValidationError($aFailed);
}
return $aMetadata;
}
// }}}
// {{{ saveMetadata
function saveMetadata(&$oDocument, $aMetadata, $aOptions = null) {
$table = 'document_fields_link';
$bNoValidate = KTUtil::arrayGet($aOptions, 'novalidate', false);
if ($bNoValidate !== true)
{
$res = KTDocumentUtil::validateMetadata($oDocument, $aMetadata);
if (PEAR::isError($res))
{
return $res;
}
$aMetadata = empty($res)?array():$res;
}
$iMetadataVersionId = $oDocument->getMetadataVersionId();
$res = DBUtil::runQuery(array("DELETE FROM $table WHERE metadata_version_id = ?", array($iMetadataVersionId)));
if (PEAR::isError($res)) {
return $res;
}
// XXX: Metadata refactor
foreach ($aMetadata as $aInfo) {
list($oMetadata, $sValue) = $aInfo;
if (is_null($oMetadata)) {
continue;
}
$res = DBUtil::autoInsert($table, array(
'metadata_version_id' => $iMetadataVersionId,
'document_field_id' => $oMetadata->getID(),
'value' => $sValue,
));
if (PEAR::isError($res)) {
return $res;
}
}
KTDocumentUtil::setComplete($oDocument, 'metadata');
DocumentFieldLink::clearAllCaches();
return true;
}
// }}}
function copyMetadata($oDocument, $iPreviousMetadataVersionId) {
$iNewMetadataVersion = $oDocument->getMetadataVersionId();
$sTable = KTUtil::getTableName('document_fields_link');
$aFields = DBUtil::getResultArray(array("SELECT * FROM $sTable WHERE metadata_version_id = ?", array($iPreviousMetadataVersionId)));
foreach ($aFields as $aRow) {
unset($aRow['id']);
$aRow['metadata_version_id'] = $iNewMetadataVersion;
DBUtil::autoInsert($sTable, $aRow);
}
}
// {{{ setIncomplete
function setIncomplete(&$oDocument, $reason) {
$oDocument->setStatusID(STATUS_INCOMPLETE);
$table = 'document_incomplete';
$iId = $oDocument->getId();
$aIncomplete = DBUtil::getOneResult(array("SELECT * FROM $table WHERE id = ?", array($iId)));
if (PEAR::isError($aIncomplete)) {
return $aIncomplete;
}
if (is_null($aIncomplete)) {
$aIncomplete = array('id' => $iId);
}
$aIncomplete[$reason] = true;
$res = DBUtil::autoDelete($table, $iId);
if (PEAR::isError($res)) {
return $res;
}
$res = DBUtil::autoInsert($table, $aIncomplete);
if (PEAR::isError($res)) {
return $res;
}
return true;
}
// }}}
// {{{ setComplete
function setComplete(&$oDocument, $reason) {
$table = 'document_incomplete';
$iId = $oDocument->getID();
$aIncomplete = DBUtil::getOneResult(array("SELECT * FROM $table WHERE id = ?", array($iId)));
if (PEAR::isError($aIncomplete)) {
return $aIncomplete;
}
if (is_null($aIncomplete)) {
$oDocument->setStatusID(LIVE);
return true;
}
$aIncomplete[$reason] = false;
$bIncomplete = false;
foreach ($aIncomplete as $k => $v) {
if ($k === 'id') { continue; }
if ($v) {
$bIncomplete = true;
}
}
if ($bIncomplete === false) {
DBUtil::autoDelete($table, $iId);
$oDocument->setStatusID(LIVE);
return true;
}
$res = DBUtil::autoDelete($table, $iId);
if (PEAR::isError($res)) {
return $res;
}
$res = DBUtil::autoInsert($table, $aIncomplete);
if (PEAR::isError($res)) {
return $res;
}
}
// }}}
// {{{ add
function &add($oFolder, $sFilename, $oUser, $aOptions) {
$GLOBALS['_IN_ADD'] = true;
$ret = KTDocumentUtil::_in_add($oFolder, $sFilename, $oUser, $aOptions);
unset($GLOBALS['_IN_ADD']);
return $ret;
}
// }}}
function getUniqueFilename($oFolder, $sFilename) {
// this is just a quick refactoring. We should look at a more optimal way of doing this as there are
// quite a lot of queries.
$iFolderId = $oFolder->getId();
while (KTDocumentUtil::fileExists($oFolder, $sFilename)) {
$oDoc = Document::getByFilenameAndFolder($sFilename, $iFolderId);
$sFilename = KTDocumentUtil::generateNewDocumentFilename($oDoc->getFileName());
}
return $sFilename;
}
function getUniqueDocumentName($oFolder, $sFilename)
{
// this is just a quick refactoring. We should look at a more optimal way of doing this as there are
// quite a lot of queries.
$iFolderId = $oFolder->getId();
while(KTDocumentUtil::nameExists($oFolder, $sFilename)) {
$oDoc = Document::getByNameAndFolder($sFilename, $iFolderId);
$sFilename = KTDocumentUtil::generateNewDocumentName($oDoc->getName());
}
return $sFilename;
}
// {{{ _in_add
function &_in_add($oFolder, $sFilename, $oUser, $aOptions) {
$aOrigOptions = $aOptions;
$sFilename = KTDocumentUtil::getUniqueFilename($oFolder, $sFilename);
$sName = KTUtil::arrayGet($aOptions, 'description', $sFilename);
$sName = KTDocumentUtil::getUniqueDocumentName($oFolder, $sName);
$aOptions['description'] = $sName;
$oUploadChannel =& KTUploadChannel::getSingleton();
$oUploadChannel->sendMessage(new KTUploadNewFile($sFilename));
DBUtil::startTransaction();
$oDocument =& KTDocumentUtil::_add($oFolder, $sFilename, $oUser, $aOptions);
$oUploadChannel->sendMessage(new KTUploadGenericMessage(_kt('Document created')));
if (PEAR::isError($oDocument)) {
return $oDocument;
}
$oUploadChannel->sendMessage(new KTUploadGenericMessage(_kt('Scanning file')));
$oKTTriggerRegistry = KTTriggerRegistry::getSingleton();
$aTriggers = $oKTTriggerRegistry->getTriggers('content', 'scan');
$iTrigger = 0;
foreach ($aTriggers as $aTrigger) {
$sTrigger = $aTrigger[0];
$oTrigger = new $sTrigger;
$oTrigger->setDocument($oDocument);
// $oUploadChannel->sendMessage(new KTUploadGenericMessage(sprintf(_kt(" (trigger %s)"), $sTrigger)));
$ret = $oTrigger->scan();
if (PEAR::isError($ret)) {
$oDocument->delete();
return $ret;
}
}
// NEW SEARCH
Indexer::index($oDocument);
$oUploadChannel->sendMessage(new KTUploadGenericMessage(_kt('Creating transaction')));
$aOptions = array('user' => $oUser);
//create the document transaction record
$oDocumentTransaction = new DocumentTransaction($oDocument, _kt('Document created'), 'ktcore.transactions.create', $aOptions);
$res = $oDocumentTransaction->create();
if (PEAR::isError($res)) {
$oDocument->delete();
return $res;
}
$oUploadChannel->sendMessage(new KTUploadGenericMessage(_kt('Sending subscriptions')));
// fire subscription alerts for the checked in document
$oSubscriptionEvent = new SubscriptionEvent();
$oFolder = Folder::get($oDocument->getFolderID());
$oSubscriptionEvent->AddDocument($oDocument, $oFolder);
$oKTTriggerRegistry = KTTriggerRegistry::getSingleton();
$aTriggers = $oKTTriggerRegistry->getTriggers('add', 'postValidate');
foreach ($aTriggers as $aTrigger) {
$sTrigger = $aTrigger[0];
$oTrigger = new $sTrigger;
$aInfo = array(
'document' => $oDocument,
'aOptions' => $aOrigOptions,
);
$oTrigger->setInfo($aInfo);
$ret = $oTrigger->postValidate();
}
DBUtil::commit();
$oUploadChannel->sendMessage(new KTUploadGenericMessage(_kt('Checking permissions...')));
// Check if there are any dynamic conditions / permissions that need to be updated on the document
// If there are dynamic conditions then update the permissions on the document
// The dynamic condition test fails unless the document exists in the DB therefore update permissions after committing the transaction.
include_once(KT_LIB_DIR.'/permissions/permissiondynamiccondition.inc.php');
$iPermissionObjectId = $oFolder->getPermissionObjectID();
$dynamicCondition = KTPermissionDynamicCondition::getByPermissionObjectId($iPermissionObjectId);
if(!PEAR::isError($dynamicCondition) && !empty($dynamicCondition)){
$res = KTPermissionUtil::updatePermissionLookup($oDocument);
}
$oUploadChannel->sendMessage(new KTUploadGenericMessage(_kt('All done...')));
return $oDocument;
}
// }}}
function incrementNameCollissionNumbering($sDocFilename, $skipExtension = false){
$iDot = strpos($sDocFilename, '.');
if ($skipExtension || $iDot === false)
{
if(preg_match("/\(([0-9]+)\)$/", $sDocFilename, $matches, PREG_OFFSET_CAPTURE)) {
$iCount = $matches[1][0];
$iPos = $matches[1][1];
$iNewCount = $iCount + 1;
$sDocFilename = substr($sDocFilename, 0, $iPos) . $iNewCount . substr($sDocFilename, $iPos + strlen($iCount));
}
else {
$sDocFilename = $sDocFilename . '(1)';
}
}
else
{
if(preg_match("/\(([0-9]+)\)(\.[^\.]+)+$/", $sDocFilename, $matches, PREG_OFFSET_CAPTURE)) {
$iCount = $matches[1][0];
$iPos = $matches[1][1];
$iNewCount = $iCount + 1;
$sDocFilename = substr($sDocFilename, 0, $iPos) . $iNewCount . substr($sDocFilename, $iPos + strlen($iCount));
}
else {
$sDocFilename = substr($sDocFilename, 0, $iDot) . '(1)' . substr($sDocFilename, $iDot);
}
}
return $sDocFilename;
}
function generateNewDocumentFilename($sDocFilename) {
return self::incrementNameCollissionNumbering($sDocFilename, false);
}
function generateNewDocumentName($sDocName){
return self::incrementNameCollissionNumbering($sDocName, true);
}
// {{{ fileExists
function fileExists($oFolder, $sFilename) {
return Document::fileExists($sFilename, $oFolder->getID());
}
// }}}
// {{{ nameExists
function nameExists($oFolder, $sName) {
return Document::nameExists($sName, $oFolder->getID());
}
// }}}
// {{{ storeContents
/**
* Stores contents (filelike) from source into the document storage
*/
function storeContents(&$oDocument, $oContents = null, $aOptions = null) {
if (is_null($aOptions)) {
$aOptions = array();
}
if (PEAR::isError($oDocument)) {
return PEAR::raiseError(sprintf(_kt("Couldn't store contents: %s"), $oDocument->getMessage()));
}
$bCanMove = KTUtil::arrayGet($aOptions, 'move');
$oStorage =& KTStorageManagerUtil::getSingleton();
$oKTConfig =& KTConfig::getSingleton();
$sBasedir = $oKTConfig->get('urls/tmpDirectory');
$sFilename = (isset($aOptions['temp_file'])) ? $aOptions['temp_file'] : '';
if(empty($sFilename)){
return PEAR::raiseError(sprintf(_kt("Couldn't store contents: %s"), _kt('The uploaded file does not exist.')));
}
$md5hash = md5_file($sFilename);
$content = $oDocument->_oDocumentContentVersion;
$content->setStorageHash($md5hash);
$content->update();
if (empty($aOptions)) $aOptions = array();
$aOptions['md5hash'] = $md5hash;
// detection of mime types needs to be refactored. this stuff is damn messy!
$sType = KTMime::getMimeTypeFromFile($sFilename);
$iMimeTypeId = KTMime::getMimeTypeID($sType, $oDocument->getFileName(), $sFilename);
$oDocument->setMimeTypeId($iMimeTypeId);
$res = $oStorage->upload($oDocument, $sFilename, $aOptions);
if ($res === false) {
return PEAR::raiseError(sprintf(_kt("Couldn't store contents: %s"), _kt('No reason given')));
}
if (PEAR::isError($res)) {
return PEAR::raiseError(sprintf(_kt("Couldn't store contents: %s"), $res->getMessage()));
}
KTDocumentUtil::setComplete($oDocument, 'contents');
if ($aOptions['cleanup_initial_file'] && file_exists($sFilename)) {
@unlink($sFilename);
}
return true;
}
// }}}
// {{{ delete
function delete($oDocument, $sReason, $iDestFolderId = null) {
// use the deleteSymbolicLink function is this is a symlink
if ($oDocument->isSymbolicLink())
{
return KTDocumentUtil::deleteSymbolicLink($oDocument);
}
$oDocument =& KTUtil::getObject('Document', $oDocument);
if (is_null($iDestFolderId)) {
$iDestFolderId = $oDocument->getFolderID();
}
$oStorageManager =& KTStorageManagerUtil::getSingleton();
global $default;
if (count(trim($sReason)) == 0) {
return PEAR::raiseError(_kt('Deletion requires a reason'));
}
if (PEAR::isError($oDocument) || ($oDocument == false)) {
return PEAR::raiseError(_kt('Invalid document object.'));
}
if ($oDocument->getIsCheckedOut() == true) {
return PEAR::raiseError(sprintf(_kt('The document is checked out and cannot be deleted: %s'), $oDocument->getName()));
}
if(!KTWorkflowUtil::actionEnabledForDocument($oDocument, 'ktcore.actions.document.delete')){
return PEAR::raiseError(_kt('Document cannot be deleted as it is restricted by the workflow.'));
}
// IF we're deleted ...
if ($oDocument->getStatusID() == DELETED) {
return true;
}
$oOrigFolder = Folder::get($oDocument->getFolderId());
DBUtil::startTransaction();
// flip the status id
$oDocument->setStatusID(DELETED);
// $iDestFolderId is DEPRECATED.
$oDocument->setFolderID(null);
$oDocument->setRestoreFolderId($oOrigFolder->getId());
$oDocument->setRestoreFolderPath(Folder::generateFolderIDs($oOrigFolder->getId()));
$res = $oDocument->update();
if (PEAR::isError($res) || ($res == false)) {
DBUtil::rollback();
return PEAR::raiseError(_kt('There was a problem deleting the document from the database.'));
}
// now move the document to the delete folder
$res = $oStorageManager->delete($oDocument);
if (PEAR::isError($res) || ($res == false)) {
//could not delete the document from the file system
$default->log->error('Deletion: Filesystem error deleting document ' .
$oDocument->getFileName() . ' from folder ' .
Folder::getFolderPath($oDocument->getFolderID()) .
' id=' . $oDocument->getFolderID());
// we use a _real_ transaction here ...
DBUtil::rollback();
/*
//reverse the document deletion
$oDocument->setStatusID(LIVE);
$oDocument->update();
*/
return PEAR::raiseError(_kt('There was a problem deleting the document from storage.'));
}
// get the user object
$oUser = User::get($_SESSION['userID']);
//delete all shortcuts linking to this document
$aSymlinks = $oDocument->getSymbolicLinks();
foreach($aSymlinks as $aSymlink){
$oShortcutDocument = Document::get($aSymlink['id']);
$oOwnerUser = User::get($oShortcutDocument->getOwnerID());
KTDocumentUtil::deleteSymbolicLink($aSymlink['id']);
//send an email to the owner of the shortcut
if($oOwnerUser->getEmail()!=null && $oOwnerUser->getEmailNotification() == true){
$emailTemplate = new EmailTemplate("kt3/notifications/notification.SymbolicLinkDeleted",array('user_name'=>$oUser->getName(),
'url'=>KTUtil::ktLink(KTBrowseUtil::getUrlForDocument($oShortcutDocument)),
'title' =>$oShortcutDocument->getName()));
$email = new EmailAlert($oOwnerUser->getEmail(),_kt("KnowledgeTree Notification"),$emailTemplate->getBody());
$email->send();
}
}
$oDocumentTransaction = new DocumentTransaction($oDocument, _kt('Document deleted: ') . $sReason, 'ktcore.transactions.delete');
$oDocumentTransaction->create();
$oDocument->setFolderID(1);
DBUtil::commit();
// we weren't doing notifications on this one
$oSubscriptionEvent = new SubscriptionEvent();
$oSubscriptionEvent->RemoveDocument($oDocument, $oOrigFolder);
// document is now deleted: triggers are best-effort.
$oKTTriggerRegistry = KTTriggerRegistry::getSingleton();
$aTriggers = $oKTTriggerRegistry->getTriggers('delete', '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)) {
$oDocument->delete(); // FIXME nbm: review that on-fail => delete is correct ?!
return $ret;
}
}
}
// }}}
function reindexDocument($oDocument) {
Indexer::index($oDocument);
}
function canBeMoved($oDocument) {
if ($oDocument->getIsCheckedOut()) {
return false;
}
if (!KTWorkflowUtil::actionEnabledForDocument($oDocument, 'ktcore.actions.document.move')) {
return false;
}
return true;
}
function copy($oDocument, $oDestinationFolder, $sReason = null, $sDestinationDocName = null) {
// 1. generate a new triad of content, metadata and core objects.
// 2. update the storage path.
//print '--------------------------------- BEFORE';
//print_r($oDocument);
// TODO: this is not optimal. we have get() functions that will do SELECT when we already have the data in arrays
// get the core record to be copied
$sDocumentTable = KTUtil::getTableName('documents');
$sQuery = 'SELECT * FROM ' . $sDocumentTable . ' WHERE id = ?';
$aParams = array($oDocument->getId());
$aCoreRow = DBUtil::getOneResult(array($sQuery, $aParams));
// we unset the id as a new one will be created on insert
unset($aCoreRow['id']);
// get a copy of the latest metadata version for the copied document
$iOldMetadataId = $aCoreRow['metadata_version_id'];
$sMetadataTable = KTUtil::getTableName('document_metadata_version');
$sQuery = 'SELECT * FROM ' . $sMetadataTable . ' WHERE id = ?';
$aParams = array($iOldMetadataId);
$aMDRow = DBUtil::getOneResult(array($sQuery, $aParams));
// we unset the id as a new one will be created on insert
unset($aMDRow['id']);
// set the name for the document, possibly using name collission
if (empty($sDestinationDocName)){
$aMDRow['name'] = KTDocumentUtil::getUniqueDocumentName($oDestinationFolder, $aMDRow['name']);
}
else {
$aMDRow['name'] = $sDestinationDocName;
}
// get a copy of the latest content version for the copied document
$iOldContentId = $aMDRow['content_version_id'];
$sContentTable = KTUtil::getTableName('document_content_version');
$sQuery = 'SELECT * FROM ' . $sContentTable . ' WHERE id = ?';
$aParams = array($iOldContentId);
$aContentRow = DBUtil::getOneResult(array($sQuery, $aParams));
// we unset the id as a new one will be created on insert
unset($aContentRow['id']);
// set the filename for the document, possibly using name collission
if(empty($sDestinationDocName)) {
$aContentRow['filename'] = KTDocumentUtil::getUniqueFilename($oDestinationFolder, $aContentRow['filename']);
}
else {
$aContentRow['filename'] = $sDestinationDocName;
}
// create the new document record
$aCoreRow['modified'] = date('Y-m-d H:i:s');
$aCoreRow['folder_id'] = $oDestinationFolder->getId(); // new location.
$id = DBUtil::autoInsert($sDocumentTable, $aCoreRow);
if (PEAR::isError($id)) { return $id; }
$iNewDocumentId = $id;
// create the new metadata record
$aMDRow['document_id'] = $iNewDocumentId;
$aMDRow['description'] = $aMDRow['name'];
$id = DBUtil::autoInsert($sMetadataTable, $aMDRow);
if (PEAR::isError($id)) { return $id; }
$iNewMetadataId = $id;
// the document metadata version is still pointing to the original
$aCoreUpdate = array();
$aCoreUpdate['metadata_version_id'] = $iNewMetadataId;
$aCoreUpdate['metadata_version'] = 0;
// create the new content version
$aContentRow['document_id'] = $iNewDocumentId;
$id = DBUtil::autoInsert($sContentTable, $aContentRow);
if (PEAR::isError($id)) { return $id; }
$iNewContentId = $id;
// the metadata content version is still pointing to the original
$aMetadataUpdate = array();
$aMetadataUpdate['content_version_id'] = $iNewContentId;
$aMetadataUpdate['metadata_version'] = 0;
// apply the updates to the document and metadata records
$res = DBUtil::autoUpdate($sDocumentTable, $aCoreUpdate, $iNewDocumentId);
if (PEAR::isError($res)) { return $res; }
$res = DBUtil::autoUpdate($sMetadataTable, $aMetadataUpdate, $iNewMetadataId);
if (PEAR::isError($res)) { return $res; }
// now, we have a semi-sane document object. get it.
$oNewDocument = Document::get($iNewDocumentId);
//print '--------------------------------- AFTER';
//print_r($oDocument);
//print '======';
//print_r($oNewDocument);
// copy the metadata from old to new.
$res = KTDocumentUtil::copyMetadata($oNewDocument, $iOldMetadataId);
if (PEAR::isError($res)) { return $res; }
// Ensure the copied document is not checked out
$oNewDocument->setIsCheckedOut(false);
$oNewDocument->setCheckedOutUserID(-1);
// finally, copy the actual file.
$oStorage =& KTStorageManagerUtil::getSingleton();
$res = $oStorage->copy($oDocument, $oNewDocument);
$oOriginalFolder = Folder::get($oDocument->getFolderId());
$iOriginalFolderPermissionObjectId = $oOriginalFolder->getPermissionObjectId();
$iDocumentPermissionObjectId = $oDocument->getPermissionObjectId();
if ($iDocumentPermissionObjectId === $iOriginalFolderPermissionObjectId) {
$oNewDocument->setPermissionObjectId($oDestinationFolder->getPermissionObjectId());
}
$res = $oNewDocument->update();
if (PEAR::isError($res)) { return $res; }
KTPermissionUtil::updatePermissionLookup($oNewDocument);
if (is_null($sReason)) {
$sReason = '';
}
$oDocumentTransaction = new DocumentTransaction($oDocument, sprintf(_kt("Copied to folder \"%s\". %s"), $oDestinationFolder->getName(), $sReason), 'ktcore.transactions.copy');
$oDocumentTransaction->create();
$oSrcFolder = Folder::get($oDocument->getFolderID());
$oDocumentTransaction = new DocumentTransaction($oNewDocument, sprintf(_kt("Copied from original in folder \"%s\". %s"), $oSrcFolder->getName(), $sReason), 'ktcore.transactions.copy');
$oDocumentTransaction->create();
$oKTTriggerRegistry = KTTriggerRegistry::getSingleton();
$aTriggers = $oKTTriggerRegistry->getTriggers('copyDocument', 'postValidate');
foreach ($aTriggers as $aTrigger) {
$sTrigger = $aTrigger[0];
$oTrigger = new $sTrigger;
$aInfo = array(
'document' => $oNewDocument,
'old_folder' => $oSrcFolder,
'new_folder' => $oDestinationFolder,
);
$oTrigger->setInfo($aInfo);
$ret = $oTrigger->postValidate();
if (PEAR::isError($ret)) {
return $ret;
}
}
// fire subscription alerts for the copied document
$oSubscriptionEvent = new SubscriptionEvent();
$oFolder = Folder::get($oDocument->getFolderID());
$oSubscriptionEvent->MoveDocument($oDocument, $oDestinationFolder, $oSrcFolder, 'CopiedDocument');
return $oNewDocument;
}
function rename($oDocument, $sNewFilename, $oUser) {
$oStorage =& KTStorageManagerUtil::getSingleton();
$oKTConfig = KTConfig::getSingleton();
$updateVersion = $oKTConfig->get('tweaks/incrementVersionOnRename', true);
$iPreviousMetadataVersion = $oDocument->getMetadataVersionId();
$oOldContentVersion = $oDocument->_oDocumentContentVersion;
if($updateVersion) // We only need to start a new content version if the version is in fact changing.
{
$bSuccess = $oDocument->startNewContentVersion($oUser);
if (PEAR::isError($bSuccess)) {
return $bSuccess;
}
KTDocumentUtil::copyMetadata($oDocument, $iPreviousMetadataVersion);
}
$res = $oStorage->renameDocument($oDocument, $oOldContentVersion, $sNewFilename);
if (!$res) {
return PEAR::raiseError(_kt('An error occurred while storing the new file'));
}
$oDocument->setLastModifiedDate(getCurrentDateTime());
$oDocument->setModifiedUserId($oUser->getId());
if($updateVersion) { // Update version number
$oDocument->setMinorVersionNumber($oDocument->getMinorVersionNumber()+1);
}
$oDocument->_oDocumentContentVersion->setFilename($sNewFilename);
$sType = KTMime::getMimeTypeFromFile($sNewFilename);
$iMimeTypeId = KTMime::getMimeTypeID($sType, $sNewFilename);
$oDocument->setMimeTypeId($iMimeTypeId);
$bSuccess = $oDocument->update();
if ($bSuccess !== true) {
if (PEAR::isError($bSuccess)) {
return $bSuccess;
}
return PEAR::raiseError(_kt('An error occurred while storing this document in the database'));
}
// create the document transaction record
$oDocumentTransaction = new DocumentTransaction($oDocument, _kt('Document renamed'), 'ktcore.transactions.update');
$oDocumentTransaction->create();
$oKTTriggerRegistry = KTTriggerRegistry::getSingleton();
$aTriggers = $oKTTriggerRegistry->getTriggers('renameDocument', '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;
}
}
// fire subscription alerts for the checked in document
$oSubscriptionEvent = new SubscriptionEvent();
$oFolder = Folder::get($oDocument->getFolderID());
$oSubscriptionEvent->ModifyDocument($oDocument, $oFolder);
return true;
}
function move($oDocument, $oToFolder, $oUser = null, $sReason = null) {
//make sure we move the symlink, and the document it's linking to
if($oDocument->isSymbolicLink()){
$oDocument->switchToRealCore();
}else{
$oDocument->switchToLinkedCore();
}
$oFolder = $oToFolder; // alias.
$oOriginalFolder = Folder::get($oDocument->getFolderId());
$iOriginalFolderPermissionObjectId = $oOriginalFolder->getPermissionObjectId();
$iDocumentPermissionObjectId = $oDocument->getPermissionObjectId();
if ($iDocumentPermissionObjectId === $iOriginalFolderPermissionObjectId) {
$oDocument->setPermissionObjectId($oFolder->getPermissionObjectId());
}
//put the document in the new folder
$oDocument->setFolderID($oFolder->getId());
$sName = $oDocument->getName();
$sFilename = $oDocument->getFileName();
$oDocument->setFileName(KTDocumentUtil::getUniqueFilename($oToFolder, $sFilename));
$oDocument->setName(KTDocumentUtil::getUniqueDocumentName($oToFolder, $sName));
$res = $oDocument->update();
if (PEAR::isError($res)) {
return $res;
}
//move the document on the file system(not if it's a symlink)
if(!$oDocument->isSymbolicLink()){
$oStorage =& KTStorageManagerUtil::getSingleton();
$res = $oStorage->moveDocument($oDocument, $oFolder, $oOriginalFolder);
if (PEAR::isError($res) || ($res === false)) {
$oDocument->setFolderID($oOriginalFolder->getId());
$res = $oDocument->update();
if (PEAR::isError($res)) {
return $res;
}
return $res; // we failed, bail.
}
}
$sMoveMessage = sprintf(_kt("Moved from %s/%s to %s/%s. %s"),
$oOriginalFolder->getFullPath(),
$oOriginalFolder->getName(),
$oFolder->getFullPath(),
$oFolder->getName(),
$sReason);
// create the document transaction record
$oDocumentTransaction = new DocumentTransaction($oDocument, $sMoveMessage, 'ktcore.transactions.move');
$oDocumentTransaction->create();
$oKTTriggerRegistry = KTTriggerRegistry::getSingleton();
$aTriggers = $oKTTriggerRegistry->getTriggers('moveDocument', 'postValidate');
foreach ($aTriggers as $aTrigger) {
$sTrigger = $aTrigger[0];
$oTrigger = new $sTrigger;
$aInfo = array(
'document' => $oDocument,
'old_folder' => $oOriginalFolder,
'new_folder' => $oFolder,
);
$oTrigger->setInfo($aInfo);
$ret = $oTrigger->postValidate();
if (PEAR::isError($ret)) {
return $ret;
}
}
// fire subscription alerts for the moved document
$oSubscriptionEvent = new SubscriptionEvent();
$oSubscriptionEvent->MoveDocument($oDocument, $oFolder, $oOriginalFolder);
return KTPermissionUtil::updatePermissionLookup($oDocument);
}
/**
* Delete a selected version of the document.
*/
function deleteVersion($oDocument, $iVersionID, $sReason){
$oDocument =& KTUtil::getObject('Document', $oDocument);
$oVersion =& KTDocumentMetadataVersion::get($iVersionID);
$oStorageManager =& KTStorageManagerUtil::getSingleton();
global $default;
if (empty($sReason)) {
return PEAR::raiseError(_kt('Deletion requires a reason'));
}
if (PEAR::isError($oDocument) || ($oDocument == false)) {
return PEAR::raiseError(_kt('Invalid document object.'));
}
if (PEAR::isError($oVersion) || ($oVersion == false)) {
return PEAR::raiseError(_kt('Invalid document version object.'));
}
$iContentId = $oVersion->getContentVersionId();
$oContentVersion = KTDocumentContentVersion::get($iContentId);
if (PEAR::isError($oContentVersion) || ($oContentVersion == false)) {
return PEAR::raiseError(_kt('Invalid document content version object.'));
}
// Check that the document content is not the same as the current content version
$sDocStoragePath = $oDocument->getStoragePath();
$sVersionStoragePath = $oContentVersion->getStoragePath();
if($sDocStoragePath == $sVersionStoragePath){
return PEAR::raiseError(_kt("Can't delete version: content is the same as the current document content."));
}
DBUtil::startTransaction();
// now delete the document version
$res = $oStorageManager->deleteVersion($oVersion);
if (PEAR::isError($res) || ($res == false)) {
//could not delete the document version from the file system
$default->log->error('Deletion: Filesystem error deleting the metadata version ' .
$oVersion->getMetadataVersion() . ' of the document ' .
$oDocument->getFileName() . ' from folder ' .
Folder::getFolderPath($oDocument->getFolderID()) .
' id=' . $oDocument->getFolderID());
// we use a _real_ transaction here ...
DBUtil::rollback();
return PEAR::raiseError(_kt('There was a problem deleting the document from storage.'));
}
// change status for the metadata version
$oVersion->setStatusId(VERSION_DELETED);
$oVersion->update();
// set the storage path to empty
// $oContentVersion->setStoragePath('');
DBUtil::commit();
}
}
class KTMetadataValidationError extends PEAR_Error {
function KTMetadataValidationError ($aFailed) {
$this->aFailed = $aFailed;
$message = _kt('Please be sure to enter information for all the Required fields below');
parent::PEAR_Error($message);
}
}
class KTUploadChannel {
var $observers = array();
function &getSingleton() {
if (!KTUtil::arrayGet($GLOBALS, 'KT_UploadChannel')) {
$GLOBALS['KT_UploadChannel'] = new KTUploadChannel;
}
return $GLOBALS['KT_UploadChannel'];
}
function sendMessage(&$msg) {
foreach ($this->observers as $oObserver) {
$oObserver->receiveMessage($msg);
}
}
function addObserver(&$obs) {
array_push($this->observers, $obs);
}
}
class KTUploadGenericMessage {
function KTUploadGenericMessage($sMessage) {
$this->sMessage = $sMessage;
}
function getString() {
return $this->sMessage;
}
}
class KTUploadNewFile {
function KTUploadNewFile($sFilename) {
$this->sFilename = $sFilename;
}
function getString() {
return $this->sFilename;
}
}
?>