UpgradeFunctions.inc.php
34.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
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
<?php
/**
* $Id$
*
* Copyright (c) 2006 Jam Warehouse http://www.jamwarehouse.com
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; using version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* -------------------------------------------------------------------------
*
* You can contact the copyright owner regarding licensing via the contact
* details that can be found on the KnowledgeTree web site:
*
* http://www.ktdms.com/
*/
class UpgradeFunctions {
var $upgrades = array(
"2.0.0" => array("setPermissionFolder"),
"2.0.6" => array("addTemplateMimeTypes"),
"2.0.8" => array("setPermissionObject"),
"2.99.1" => array("createFieldSets"),
"2.99.7" => array("normaliseDocuments", "applyDiscussionUpgrade"),
"2.99.8" => array("fixUnits"),
"2.99.9" => array("createLdapAuthenticationProvider", "createSecurityDeletePermissions"),
"3.0.1.3" => array('addTransactionTypes3013'),
"3.0.1.4" => array('createWorkflowPermission'),
"3.0.2" => array("fixDocumentRoleAllocation"),
"3.0.3.2" => array("createFolderDetailsPermission"),
"3.0.3.3" => array("generateWorkflowTriggers"),
"3.0.3.7" => array("rebuildAllPermissions"),
);
var $descriptions = array(
"rebuildSearchPermissions" => "Rebuild search permissions with updated algorithm",
"setPermissionFolder" => "Set permission folder for each folder for simplified permissions management",
"addTemplateMimeTypes" => "Add MIME types for Excel and Word templates",
"setPermissionObject" => "Set the permission object in charge of a document or folder",
"createFieldSets" => "Create a fieldset for each field without one",
"normaliseDocuments" => "Normalise the documents table",
"createLdapAuthenticationProvider" => "Create an LDAP authentication source based on your KT2 LDAP settings (must keep copy of config/environment.php to work)",
'createSecurityDeletePermissions' => 'Create the Core: Manage Security and Core: Delete permissions',
'addTransactionTypes3013' => 'Add new folder transaction types',
'createWorkflowPermission' => 'Create the Core: Manage Workflow',
'fixDocumentRoleAllocation' => 'Fix the document role allocation upgrade from 3.0.1',
'createFolderDetailsPermission' => 'Create the Core: Folder Details permission',
'generateWorkflowTriggers' => 'Migrate old in-transition guards to triggers',
'rebuildAllPermissions' => 'Rebuild all permissions to ensure correct functioning of permission-definitions.'
);
var $phases = array(
"setPermissionFolder" => 1,
"setPermissionObject" => 1,
"createFieldSets" => 1,
"normaliseDocuments" => 1,
"fixUnits" => 1,
'applyDiscussionUpgrade' => -1,
'fixDocumentRoleAllocation' => -1,
);
// {{{ _setPermissionFolder
function _setPermissionFolder($iFolderId) {
global $default;
$iInheritedFolderId = $iFolderId;
if ($iInheritedFolderId == 1) {
$sQuery = "UPDATE folders SET permission_folder_id = 1 WHERE id = 1";
DBUtil::runQuery($sQuery);
return;
}
while ($bFoundPermissions !== true) {
/*ok*/$aCheckQuery = array('SELECT id FROM groups_folders_link WHERE folder_id = ? LIMIT 1', $iInheritedFolderId);
if (count(DBUtil::getResultArrayKey($aCheckQuery, 'id')) == 0) {
$default->log->debug('No direct permissions on folder ' . $iInheritedFolderId);
$bInherited = true;
$aParentQuery = array('SELECT parent_id FROM folders WHERE id = ? LIMIT 1', $iInheritedFolderId);
$iParentId = DBUtil::getOneResultKey($aParentQuery, 'parent_id');
$iInheritedFolderId = $iParentId;
if ($iInheritedFolderId === false) {
return;
}
if ($iInheritedFolderId === null) {
return;
}
// if our parent knows the permission folder, use that.
$aQuery = array("SELECT permission_folder_id FROM folders WHERE id = ?", array($iInheritedFolderId));
$iPermissionFolderID = DBUtil::getOneResultKey($aQuery, 'permission_folder_id');
if (!empty($iPermissionFolderID)) {
$aQuery = array(
"UPDATE folders SET permission_folder_id = ? WHERE id = ?",
array($iPermissionFolderID, $iFolderId)
);
DBUtil::runQuery($aQuery);
return;
}
$default->log->debug('... trying parent: ' . $iInheritedFolderId);
} else {
$default->log->debug('Found direct permissions on folder ' . $iInheritedFolderId);
$iPermissionFolderID = $iInheritedFolderId;
$aQuery = array(
"UPDATE folders SET permission_folder_id = ? WHERE id = ?",
array($iPermissionFolderID, $iFolderId)
);
DBUtil::runQuery($aQuery);
return;
}
}
$default->log->error('No permissions whatsoever for folder ' . $iFolderId);
// 0, which can never exist, for non-existent. null for not set yet (database upgrade).
$iPermissionFolderID = 0;
$aQuery = array(
"UPDATE folders SET permission_folder_id = ? WHERE id = ?",
array($iPermissionFolderID, $iFolderId)
);
DBUtil::runQuery($aQuery);
}
// }}}
// {{{ setPermissionFolder
function setPermissionFolder() {
global $default;
require_once(KT_LIB_DIR . '/foldermanagement/Folder.inc');
$sQuery = "SELECT id FROM $default->folders_table WHERE permission_folder_id IS NULL ORDER BY LENGTH(parent_folder_ids)";
$aIDs = DBUtil::getResultArrayKey($sQuery, 'id');
foreach ($aIDs as $iId) {
$res = UpgradeFunctions::_setPermissionFolder($iId);
if (PEAR::isError($res)) {
return $res;
}
}
}
// }}}
// {{{ addTemplateMimeTypes
function addTemplateMimeTypes() {
global $default;
$table = $default->mimetypes_table;
$query = sprintf('SELECT id FROM %s WHERE filetypes = ?',
$table);
$newTypes = array(
array(
'filetypes' => 'xlt',
'mimetypes' => 'application/vnd.ms-excel',
'icon_path' => 'icons/excel.gif',
),
array(
'filetypes' => 'dot',
'mimetypes' => 'application/msword',
'icon_path' => 'icons/word.gif',
),
);
foreach ($newTypes as $types) {
$res = DBUtil::getOneResultKey(array($query, $types['filetypes']), 'id');
if (PEAR::isError($res)) {
return $res;
}
if (is_null($res)) {
$res = DBUtil::autoInsert($table, $types);
if (PEAR::isError($res)) {
return $res;
}
}
}
return true;
}
// }}}
// {{{ _setRead
function _setRead($iID, $oPO) {
require_once(KT_LIB_DIR . '/permissions/permission.inc.php');
require_once(KT_LIB_DIR . '/permissions/permissionutil.inc.php');
$sTable = 'groups_folders_link';
$oPermission = KTPermission::getByName('ktcore.permissions.read');
$query = "SELECT group_id FROM $sTable WHERE folder_id = ? AND (can_read = ? OR can_write = ?)";
$aParams = array($iID, true, true);
$aGroupIDs = DBUtil::getResultArrayKey(array($query, $aParams), 'group_id');
$aAllowed = array("group" => $aGroupIDs);
KTPermissionUtil::setPermissionForID($oPermission, $oPO, $aAllowed);
}
// }}}
// {{{ _setWrite
function _setWrite($iID, $oPO) {
require_once(KT_LIB_DIR . '/permissions/permission.inc.php');
require_once(KT_LIB_DIR . '/permissions/permissionutil.inc.php');
$sTable = 'groups_folders_link';
$oPermission = KTPermission::getByName('ktcore.permissions.write');
$query = "SELECT group_id FROM $sTable WHERE folder_id = ? AND can_write = ?";
$aParams = array($iID, true);
$aGroupIDs = DBUtil::getResultArrayKey(array($query, $aParams), 'group_id');
$aAllowed = array("group" => $aGroupIDs);
KTPermissionUtil::setPermissionForID($oPermission, $oPO, $aAllowed);
}
// }}}
// {{{ _setAddFolder
function _setAddFolder($iID, $oPO) {
require_once(KT_LIB_DIR . '/permissions/permission.inc.php');
require_once(KT_LIB_DIR . '/permissions/permissionutil.inc.php');
$sTable = 'groups_folders_link';
$oPermission = KTPermission::getByName('ktcore.permissions.addFolder');
$query = "SELECT group_id FROM $sTable WHERE folder_id = ? AND can_write = ?";
$aParams = array($iID, true);
$aGroupIDs = DBUtil::getResultArrayKey(array($query, $aParams), 'group_id');
$aAllowed = array("group" => $aGroupIDs);
KTPermissionUtil::setPermissionForID($oPermission, $oPO, $aAllowed);
}
// }}}
// {{{ setPermissionObject
function setPermissionObject() {
global $default;
require_once(KT_LIB_DIR . '/permissions/permissionobject.inc.php');
DBUtil::runQuery("UPDATE folders SET permission_folder_id = 1 WHERE id = 1");
$aBrokenFolders = DBUtil::getResultArray('SELECT id, parent_id FROM folders WHERE permission_folder_id = 0 OR permission_folder_id IS NULL ORDER BY LENGTH(parent_folder_ids)');
foreach ($aBrokenFolders as $aFolderInfo) {
$iFolderId = $aFolderInfo['id'];
$iParentFolderId = $aFolderInfo['parent_id'];
$iParentFolderPermissionFolder = DBUtil::getOneResultKey(array("SELECT permission_folder_id FROM folders WHERE id = ?", array($iParentFolderId)), 'permission_folder_id');
$res = DBUtil::whereUpdate('folders', array('permission_folder_id' => $iParentFolderPermissionFolder), array('id' => $iFolderId));
}
// First, set permission object on all folders that were
// "permission folders".
$query = "SELECT id FROM $default->folders_table WHERE permission_folder_id = id AND permission_object_id IS NULL";
$aIDs = DBUtil::getResultArrayKey($query, 'id');
foreach ($aIDs as $iID) {
$oPO =& KTPermissionObject::createFromArray(array());
if (PEAR::isError($oPO)) {
var_dump($oPO);
exit(0);
}
$sTableName = KTUtil::getTableName('folders');
$query = sprintf("UPDATE %s SET permission_object_id = %d WHERE id = %d", $sTableName, $oPO->getId(), $iID);
$res = DBUtil::runQuery($query);
UpgradeFunctions::_setRead($iID, $oPO);
UpgradeFunctions::_setWrite($iID, $oPO);
UpgradeFunctions::_setAddFolder($iID, $oPO);
}
// Next, set permission object on all folders that weren't
// "permission folders" by using the permission object on their
// permission folders.
$query = "SELECT id FROM $default->folders_table WHERE permission_object_id IS NULL";
$aIDs = DBUtil::getResultArrayKey($query, 'id');
foreach ($aIDs as $iID) {
$sTableName = KTUtil::getTableName('folders');
$query = sprintf("SELECT F2.permission_object_id AS poi FROM %s AS F LEFT JOIN %s AS F2 ON F2.id = F.permission_folder_id WHERE F.id = ?", $sTableName, $sTableName);
$aParams = array($iID);
$iPermissionObjectId = DBUtil::getOneResultKey(array($query, $aParams), 'poi');
$sTableName = KTUtil::getTableName('folders');
$query = sprintf("UPDATE %s SET permission_object_id = %d WHERE id = %d", $sTableName, $iPermissionObjectId, $iID);
DBUtil::runQuery($query);
}
$sDocumentsTable = KTUtil::getTableName('documents');
$sFoldersTable = KTUtil::getTableName('folders');
$query = sprintf("UPDATE %s AS D, %s AS F SET D.permission_object_id = F.permission_object_id WHERE D.folder_id = F.id AND D.permission_object_id IS NULL", $sDocumentsTable, $sFoldersTable);
DBUtil::runQuery($query);
}
// }}}
// {{{ createFieldSets
function createFieldSets () {
global $default;
require_once(KT_LIB_DIR . '/metadata/fieldset.inc.php');
$sFieldsTable = KTUtil::getTableName('document_fields');
$sQuery = sprintf("SELECT id, name, is_generic FROM %s", $sFieldsTable);
$aFields = DBUtil::getResultArray($sQuery);
foreach ($aFields as $aField) {
$sName = $aField['name'];
$sNamespace = 'local.' . str_replace(array(' '), array(), strtolower($sName));
$iFieldId = $aField['id'];
$bIsGeneric = $aField['is_generic'];
$sFieldsetsTable = KTUtil::getTableName('fieldsets');
$iFieldsetId = DBUtil::autoInsert($sFieldsetsTable, array(
'name' => $sName,
'namespace' => $sNamespace,
'mandatory' => false,
'is_conditional' => false,
'master_field' => $iFieldId,
'is_generic' => $bIsGeneric,
));
if (PEAR::isError($iFieldsetId)) {
return $iFieldsetId;
}
$sQuery = sprintf("UPDATE %s SET parent_fieldset = ? WHERE id = ?", $sFieldsTable);
$aParams = array($iFieldsetId, $iFieldId);
$res = DBUtil::runQuery(array($sQuery, $aParams));
if (PEAR::isError($res)) {
return $res;
}
$sTable = KTUtil::getTableName('document_type_fields');
$aQuery = array(
"SELECT document_type_id FROM $sTable WHERE field_id = ?",
array($iFieldId)
);
$aDocumentTypeIds = DBUtil::getResultArrayKey($aQuery, 'document_type_id');
$sTable = KTUtil::getTableName('document_type_fieldsets');
foreach ($aDocumentTypeIds as $iDocumentTypeId) {
$res = DBUtil::autoInsert($sTable, array(
'document_type_id' => $iDocumentTypeId,
'fieldset_id' => $iFieldsetId,
));
if (PEAR::isError($res)) {
return $res;
}
}
}
}
// }}}
// {{{ normaliseDocuments
function normaliseDocuments() {
$sDocumentsTable = KTUtil::getTableName('documents');
DBUtil::runQuery("SET FOREIGN_KEY_CHECKS=0");
$aDocuments = DBUtil::getResultArray("SELECT * FROM $sDocumentsTable WHERE metadata_version_id IS NULL");
$oConfig = KTConfig::getSingleton();
foreach ($aDocuments as $aRow) {
$aMetadataVersionIds = array();
$sTransTable = KTUtil::getTableName("document_transactions");
$sQuery = "SELECT DISTINCT version, datetime, user_id FROM $sTransTable WHERE document_id = ? AND transaction_namespace = ?";
$aParams = array($aRow['id'], 'ktcore.transactions.check_out');
$sCurrentVersion = sprintf("%d.%d", $aRow['major_version'], $aRow['minor_version']);
$aVersions = DBUtil::getResultArray(array($sQuery, $aParams));
$iMetadataVersion = 0;
foreach ($aVersions as $sVersionInfo) {
$sVersion = $sVersionInfo['version'];
$sDate = $sVersionInfo['datetime'];
$iUserId = $sVersionInfo['user_id'];
$aVersionSplit = split("\.", $sVersion);
$iMajor = $aVersionSplit[0];
$iMinor = $aVersionSplit[1];
$sStoragePath = $aRow['storage_path'] . "-" . $sVersion;
$sPath = sprintf("%s/%s", $oConfig->get('urls/documentRoot'), $sStoragePath);
if ($sCurrentVersion == $sVersion) {
continue;
}
if (file_exists($sPath)) {
$iFileSize = filesize($sPath);
} else {
$iFileSize = $aRow['size'];
}
$aContentInfo = array(
'document_id' => $aRow['id'],
'filename' => $aRow['filename'],
'size' => $iFileSize,
'mime_id' => $aRow['mime_id'],
'major_version' => $iMajor,
'minor_version' => $iMinor,
'storage_path' => $sStoragePath,
);
$iContentId = DBUtil::autoInsert(KTUtil::getTableName('document_content_version'), $aContentInfo);
$aMetadataInfo = array(
'document_id' => $aRow['id'],
'content_version_id' => $iContentId,
'document_type_id' => $aRow['document_type_id'],
'name' => $aRow['name'],
'description' => $aRow['description'],
'status_id' => $aRow['status_id'],
'metadata_version' => $iMetadataVersion,
'version_created' => $sDate,
'version_creator_id' => $iUserId,
);
$iMetadataId = DBUtil::autoInsert(KTUtil::getTableName('document_metadata_version'), $aMetadataInfo);
$aMetadataVersionIds[] = $iMetadataId;
$iMetadataVersion++;
}
$aContentInfo = array(
'document_id' => $aRow['id'],
'filename' => $aRow['filename'],
'size' => $aRow['size'],
'mime_id' => $aRow['mime_id'],
'major_version' => $aRow['major_version'],
'minor_version' => $aRow['minor_version'],
'storage_path' => $aRow['storage_path'],
);
$iContentId = DBUtil::autoInsert(KTUtil::getTableName('document_content_version'), $aContentInfo);
$aMetadataInfo = array(
'document_id' => $aRow['id'],
'content_version_id' => $iContentId,
'document_type_id' => $aRow['document_type_id'],
'name' => $aRow['name'],
'description' => $aRow['description'],
'status_id' => $aRow['status_id'],
'metadata_version' => $iMetadataVersion,
'version_created' => $aRow['modified'],
'version_creator_id' => $aRow['modified_user_id'],
);
$iMetadataId = DBUtil::autoInsert(KTUtil::getTableName('document_metadata_version'), $aMetadataInfo);
$aMetadataVersionIds[] = $iMetadataId;
if (PEAR::isError($iMetadataId)) {
var_dump($iMetadataId);
}
$sDFLTable = KTUtil::getTableName('document_fields_link');
$aInfo = DBUtil::getResultArray(array("SELECT document_field_id, value FROM $sDFLTable WHERE metadata_version_id IS NULL AND document_id = ?", array($aRow['id'])));
foreach ($aInfo as $aInfoRow) {
unset($aInfoRow['id']);
foreach ($aMetadataVersionIds as $iMetadataVersionId) {
$aInfoRow['metadata_version_id'] = $iMetadataVersionId;
DBUtil::autoInsert($sDFLTable, $aInfoRow);
}
}
DBUtil::runQuery(array("UPDATE $sDocumentsTable SET metadata_version_id = ? WHERE id = ?", array($iMetadataId, $aRow['id'])));
DBUtil::runQuery(array("DELETE FROM $sDFLTable WHERE metadata_version_id IS NULL AND document_id = ?", array($aRow['id'])));
}
DBUtil::runQuery("SET FOREIGN_KEY_CHECKS=1");
}
// }}}
// {{{ applyDiscussionUpgrade
function applyDiscussionUpgrade() {
$sUpgradesTable = KTUtil::getTableName('upgrades');
$bIsVersionApplied = DBUtil::getOneResultKey("SELECT MAX(result) AS result FROM $sUpgradesTable WHERE descriptor = 'upgrade*2.99.7*99*upgrade2.99.7'", "result");
if (empty($bIsVersionApplied)) {
// print "Version is not applied!<br />\n";
return;
}
$bIsDiscussionApplied = DBUtil::getOneResultKey("SELECT MAX(result) AS result FROM $sUpgradesTable WHERE descriptor = 'sql*2.99.7*0*2.99.7/discussion.sql'", "result");
if (!empty($bIsDiscussionApplied)) {
// print "Discussion is applied!<br />\n";
return;
}
// print "Discussion is not applied!<br />\n";
$f = array(
'descriptor' => 'sql*2.99.7*0*2.99.7/discussion.sql',
'result' => true,
);
$res = DBUtil::autoInsert($sUpgradesTable, $f);
return;
}
// }}}
// {{{ fixUnits
function fixUnits() {
// First, assign the unit to a group directly on the group
// table, not via the group_units table, since groups could only
// belong to a single unit anyway.
$sGULTable = KTUtil::getTableName("groups_units");
$sGroupsTable = KTUtil::getTableName('groups');
$aGroupUnits = DBUtil::getResultArray("SELECT group_id, unit_id FROM $sGULTable");
foreach ($aGroupUnits as $aRow) {
// $curunit = DBUtil::getOneResultKey(array("SELECT unit_id FROM $sGroupsTable WHERE id = ?", array($aRow['group_id'])), "unit_id");
DBUtil::autoUpdate($sGroupsTable, array('unit_id' => $aRow['unit_id']), $aRow['group_id']);
}
// Now, assign the unit folder id to the unit directly, instead
// of storing the unit_id on every folder beneath the unit
// folder.
$sFoldersTable = KTUtil::getTableName('folders');
$sUnitsTable = KTUtil::getTableName('units');
$sQuery = "SELECT id FROM folders WHERE unit_id = ? ORDER BY LENGTH(parent_folder_ids) LIMIT 1";
$aUnitIds = DBUtil::getResultArrayKey("SELECT id FROM $sUnitsTable", 'id');
foreach ($aUnitIds as $iUnitId) {
$aParams = array($iUnitId);
$iFolderId = DBUtil::getOneResultKey(array($sQuery, $aParams), 'id');
if (!empty($iFolderId)) {
DBUtil::autoUpdate($sUnitsTable, array('folder_id' => $iFolderId), $iUnitId);
}
}
return true;
}
// }}}
// {{{ createLdapAuthenticationProvider
function createLdapAuthenticationProvider() {
if (!file_exists(KT_DIR . '/config/environment.php')) {
return;
}
global $default;
$new_default = $default;
$default = null;
require_once(KT_DIR . '/config/environment.php');
$old_default = $default;
$default = $new_default;
if ($old_default->authenticationClass !== "LDAPAuthenticator") {
return;
}
$sName = "Autocreated by upgrade";
$sNamespace = KTUtil::nameToLocalNamespace("authenticationsources", $sName);
$aConfig = array(
'searchattributes' => split(',', 'cn,mail,sAMAccountName'),
'objectclasses' => split(',', 'user,inetOrgPerson,posixAccount'),
'servername' => $old_default->ldapServer,
'basedn' => $old_default->ldapRootDn,
'searchuser' => $old_default->ldapSearchUser,
'searchpassword' => $old_default->ldapSearchPassword,
);
if ($old_default->ldapServerType == "ActiveDirectory") {
$sProvider = "ktstandard.authentication.adprovider" ;
} else {
$sProvider = "ktstandard.authentication.ldapprovider" ;
}
require_once(KT_LIB_DIR . '/authentication/authenticationsource.inc.php');
$oSource = KTAuthenticationSource::createFromArray(array(
'name' => $sName,
'namespace' => $sNamespace,
'config' => serialize($aConfig),
'authenticationprovider' => $sProvider,
));
if (PEAR::isError($oSource)) {
return $oSource;
}
$sUsersTable = KTUtil::getTableName('users');
$sQuery = "UPDATE $sUsersTable SET authentication_source_id = ? WHERE authentication_source_id IS NULL AND LENGTH(authentication_details_s1)";
$aParams = array($oSource->getId());
$res = DBUtil::runQuery(array($sQuery, $aParams));
return $res;
}
// }}}
// {{{ createSecurityDeletePermissions
function createSecurityDeletePermissions() {
$sPermissionsTable = KTUtil::getTableName('permissions');
$aPermissionInfo = array(
'human_name' => 'Core: Manage security',
'name' => 'ktcore.permissions.security',
'built_in' => true,
);
$res = DBUtil::autoInsert($sPermissionsTable, $aPermissionInfo);
if (PEAR::isError($res)) {
return $res;
}
$iSecurityPermissionId = $res;
$aPermissionInfo = array(
'human_name' => 'Core: Delete',
'name' => 'ktcore.permissions.delete',
'built_in' => true,
);
$res = DBUtil::autoInsert($sPermissionsTable, $aPermissionInfo);
if (PEAR::isError($res)) {
return $res;
}
$iDeletePermissionId = $res;
$sQuery = "SELECT id FROM $sPermissionsTable WHERE name = ?";
$aParams = array("ktcore.permissions.write");
$iWritePermissionId = DBUtil::getOneResultKey(array($sQuery, $aParams), "id");
$sPermissionAssignmentsTable = KTUtil::getTableName('permission_assignments');
$sQuery = "SELECT permission_object_id, permission_descriptor_id FROM $sPermissionAssignmentsTable WHERE permission_id = ?";
$aParams = array($iWritePermissionId);
$aRows = DBUtil::getResultArray(array($sQuery, $aParams));
foreach ($aRows as $aRow) {
$aRow['permission_id'] = $iSecurityPermissionId;
DBUtil::autoInsert($sPermissionAssignmentsTable, $aRow);
$aRow['permission_id'] = $iDeletePermissionId;
DBUtil::autoInsert($sPermissionAssignmentsTable, $aRow);
}
$sDocumentTable = KTUtil::getTableName('documents');
$sFolderTable = KTUtil::getTableName('folders');
DBUtil::runQuery("UPDATE $sDocumentTable SET permission_lookup_id = NULL");
DBUtil::runQuery("UPDATE $sFolderTable SET permission_lookup_id = NULL");
}
// }}}
// {{{ addTransactionTypes3013
function addTransactionTypes3013() {
$sTable = KTUtil::getTableName('transaction_types');
$aTypes = array(
'ktcore.transactions.permissions_change' => 'Permissions changed',
'ktcore.transactions.role_allocations_change' => 'Role allocations changed',
);
foreach ($aTypes as $sNamespace => $sName) {
$res = DBUtil::autoInsert($sTable, array(
'namespace' => $sNamespace,
'name' => $sName,
));
}
}
// }}}
// {{{ createWorkflowPermission
function createWorkflowPermission() {
$sPermissionsTable = KTUtil::getTableName('permissions');
$aPermissionInfo = array(
'human_name' => 'Core: Manage workflow',
'name' => 'ktcore.permissions.workflow',
'built_in' => true,
);
$res = DBUtil::autoInsert($sPermissionsTable, $aPermissionInfo);
if (PEAR::isError($res)) {
return $res;
}
$iWorkflowPermissionId = $res;
$sQuery = "SELECT id FROM $sPermissionsTable WHERE name = ?";
$aParams = array("ktcore.permissions.security");
$iSecurityPermissionId = DBUtil::getOneResultKey(array($sQuery, $aParams), "id");
$sPermissionAssignmentsTable = KTUtil::getTableName('permission_assignments');
$sQuery = "SELECT permission_object_id, permission_descriptor_id FROM $sPermissionAssignmentsTable WHERE permission_id = ?";
$aParams = array($iSecurityPermissionId);
$aRows = DBUtil::getResultArray(array($sQuery, $aParams));
foreach ($aRows as $aRow) {
$aRow['permission_id'] = $iWorkflowPermissionId;
DBUtil::autoInsert($sPermissionAssignmentsTable, $aRow);
}
$sDocumentTable = KTUtil::getTableName('documents');
$sFolderTable = KTUtil::getTableName('folders');
DBUtil::runQuery("UPDATE $sDocumentTable SET permission_lookup_id = NULL");
DBUtil::runQuery("UPDATE $sFolderTable SET permission_lookup_id = NULL");
}
// }}}
// {{{ fixDocumentRoleAllocation
function fixDocumentRoleAllocation() {
$sUpgradesTable = KTUtil::getTableName('upgrades');
$f = array(
'descriptor' => 'sql*3.0.2*0*3.0.2/document_role_allocations.sql',
'result' => true,
);
$res = DBUtil::autoInsert($sUpgradesTable, $f);
return;
}
// }}}
// {{{ createFolderDetailsPermission
function createFolderDetailsPermission() {
$sPermissionsTable = KTUtil::getTableName('permissions');
$bExists = DBUtil::getOneResultKey("SELECT COUNT(id) AS cnt FROM $sPermissionsTable WHERE name = 'ktcore.permissions.folder_details'", 'cnt');
if ($bExists) {
return;
}
DBUtil::startTransaction();
$aPermissionInfo = array(
'human_name' => 'Core: Folder Details',
'name' => 'ktcore.permissions.folder_details',
'built_in' => true,
);
$res = DBUtil::autoInsert($sPermissionsTable, $aPermissionInfo);
if (PEAR::isError($res)) {
return $res;
}
$iFolderDetailsPermissionId = $res;
$sQuery = "SELECT id FROM $sPermissionsTable WHERE name = ?";
$aParams = array("ktcore.permissions.read");
$iReadPermissionId = DBUtil::getOneResultKey(array($sQuery, $aParams), "id");
$sPermissionAssignmentsTable = KTUtil::getTableName('permission_assignments');
$sQuery = "SELECT permission_object_id, permission_descriptor_id FROM $sPermissionAssignmentsTable WHERE permission_id = ?";
$aParams = array($iReadPermissionId);
$aRows = DBUtil::getResultArray(array($sQuery, $aParams));
foreach ($aRows as $aRow) {
$aRow['permission_id'] = $iFolderDetailsPermissionId;
DBUtil::autoInsert($sPermissionAssignmentsTable, $aRow);
}
$sDocumentTable = KTUtil::getTableName('documents');
$sFolderTable = KTUtil::getTableName('folders');
DBUtil::runQuery("UPDATE $sDocumentTable SET permission_lookup_id = NULL");
DBUtil::runQuery("UPDATE $sFolderTable SET permission_lookup_id = NULL");
DBUtil::commit();
}
// }}}
function generateWorkflowTriggers() {
require_once(KT_LIB_DIR . '/workflow/workflowutil.inc.php');
// get all the transitions, and add a trigger to the util with the appropriate settings.
$KTWFTriggerReg =& KTWorkflowTriggerRegistry::getSingleton();
$aTransitions = KTWorkflowTransition::getList();
foreach ($aTransitions as $oTransition) {
// guard perm
$iGuardPerm = $oTransition->getGuardPermissionId();
if (!is_null($iGuardPerm)) {
$sNamespace = 'ktcore.workflowtriggers.permissionguard';
$oPerm = KTPermission::get($iGuardPerm);
$oTrigger = $KTWFTriggerReg->getWorkflowTrigger($sNamespace);
$oTriggerConfig = KTWorkflowTriggerInstance::createFromArray(array(
'transitionid' => KTUtil::getId($oTransition),
'namespace' => $sNamespace,
'config' => array('perms' => array($oPerm->getName())),
));
}
// guard group
$iGuardGroup = $oTransition->getGuardGroupId();
if (!is_null($iGuardGroup)) {
$sNamespace = 'ktcore.workflowtriggers.groupguard';
$oTrigger = $KTWFTriggerReg->getWorkflowTrigger($sNamespace);
$oTriggerConfig = KTWorkflowTriggerInstance::createFromArray(array(
'transitionid' => KTUtil::getId($oTransition),
'namespace' => $sNamespace,
'config' => array('group_id' => $iGuardGroup),
));
}
// guard role
$iGuardRole = $oTransition->getGuardRoleId();
if (!is_null($iGuardRole)) {
$sNamespace = 'ktcore.workflowtriggers.roleguard';
$oTrigger = $KTWFTriggerReg->getWorkflowTrigger($sNamespace);
$oTriggerConfig = KTWorkflowTriggerInstance::createFromArray(array(
'transitionid' => KTUtil::getId($oTransition),
'namespace' => $sNamespace,
'config' => array('role_id' => $iGuardRole),
));
}
// guard condition
$iGuardCondition = $oTransition->getGuardConditionId();
if (!is_null($iGuardCondition)) {
$sNamespace = 'ktcore.workflowtriggers.conditionguard';
$oTrigger = $KTWFTriggerReg->getWorkflowTrigger($sNamespace);
$oTriggerConfig = KTWorkflowTriggerInstance::createFromArray(array(
'transitionid' => KTUtil::getId($oTransition),
'namespace' => $sNamespace,
'config' => array('condition_id' => $iGuardCondition),
));
}
}
}
function rebuildAllPermissions() {
$oRootFolder = Folder::get(1);
KTPermissionUtil::updatePermissionLookupRecursive($oRootFolder);
}
}
?>