edit.php
17.8 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
<?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/
*
* -------------------------------------------------------------------------
*
* @version $Revision$
* @author Brad Shuttleworth, Jam Warehouse (Pty) Ltd, South Africa
*
*/
require_once("config/dmsDefaults.php");
require_once(KT_LIB_DIR . '/dispatcher.inc.php');
require_once(KT_LIB_DIR . '/documentmanagement/Document.inc');
require_once(KT_LIB_DIR . '/documentmanagement/DocumentType.inc');
require_once(KT_LIB_DIR . '/foldermanagement/Folder.inc');
require_once(KT_LIB_DIR . '/documentmanagement/DocumentLink.inc');
require_once(KT_LIB_DIR . '/documentmanagement/documentutil.inc.php');
require_once(KT_LIB_DIR . '/documentmanagement/DocumentType.inc');
require_once(KT_LIB_DIR . '/metadata/fieldset.inc.php');
require_once(KT_LIB_DIR . '/documentmanagement/documentutil.inc.php');
require_once(KT_LIB_DIR . "/templating/kt3template.inc.php");
// widget includes.
require_once(KT_LIB_DIR . "/widgets/portlet.inc.php");
require_once(KT_LIB_DIR . "/widgets/fieldsetDisplay.inc.php");
require_once(KT_LIB_DIR . "/widgets/FieldsetDisplayRegistry.inc.php");
require_once(KT_LIB_DIR . "/actions/documentaction.inc.php");
require_once(KT_LIB_DIR . "/browse/browseutil.inc.php");
require_once(KT_LIB_DIR . '/triggers/triggerregistry.inc.php');
require_once(KT_LIB_DIR . '/permissions/permission.inc.php');
require_once(KT_LIB_DIR . '/permissions/permissionutil.inc.php');
class KTEditDocumentDispatcher extends KTStandardDispatcher {
var $bAutomaticTransaction = true;
var $oDocument = null;
var $oFolder = null;
var $sSection = "view_details";
var $sHelpPage = 'ktcore/browse.html';
function check() {
if (!parent::check()) { return false; }
$document_id = KTUtil::arrayGet($_REQUEST, 'fDocumentId');
if (empty($document_id)) {
$this->errorPage(_kt("No document specified for editing."));
}
$oDocument = Document::get($document_id);
if (PEAR::isError($oDocument)) {
$this->errorPage(_kt("Invalid Document."));
}
$this->oDocument = $oDocument;
$oPerm = KTPermission::getByName('ktcore.permissions.write');
if (!KTPermissionUtil::userHasPermissionOnItem($this->oUser, $oPerm, $this->oDocument)) { return false; }
if ($this->oDocument->getIsCheckedOut()) {
return false;
}
return true;
}
function KTEditDocumentDispatcher() {
$this->aBreadcrumbs = array(
array('action' => 'browse', 'name' => _kt('Browse')),
);
return parent::KTStandardDispatcher();
}
// FIXME identify the current location somehow.
function addPortlets($currentaction = null) {
$actions = KTDocumentActionUtil::getDocumentActionsForDocument($this->oDocument, $this->oUser);
$oPortlet = new KTActionPortlet(_kt("Document Actions"));
$oPortlet->setActions($actions, $currentaction);
$this->oPage->addPortlet($oPortlet);
}
function addBreadcrumbs() {
$aOptions = array(
"documentaction" => "editDocument",
"folderaction" => "browse",
);
$this->aBreadcrumbs = array_merge($this->aBreadcrumbs, KTBrowseUtil::breadcrumbsForDocument($this->oDocument, $aOptions));
if (!is_null($this->oDocument)) {
$this->oPage->setSecondaryTitle($this->oDocument->getName());
}
}
function errorPage($errorMessage) {
$this->handleOutput($errorMessage);
exit(0);
}
function do_selectType() {
$document_id = KTUtil::arrayGet($_REQUEST, 'fDocumentId');
if (empty($document_id)) {
$this->errorPage(_kt("No document specified for editing."));
}
$oDocument = Document::get($document_id);
if (PEAR::isError($oDocument)) {
$this->errorPage(_kt("Invalid Document."));
}
$this->oDocument = $oDocument;
$this->addPortlets("Edit");
$this->addBreadcrumbs();
$this->oPage->setBreadcrumbDetails(_kt('Change Document Type'));
$aDocTypes = DocumentType::getList();
$aDocTypes = array();
foreach (DocumentType::getList() as $oDocumentType) {
if(!$oDocumentType->getDisabled()) {
$aDocTypes[] = $oDocumentType;
}
}
$oDocumentType = DocumentType::get($oDocument->getDocumentTypeID());
$oTemplating =& KTTemplating::getSingleton();
$oTemplate =& $oTemplating->loadTemplate("ktcore/document/change_type");
$aTemplateData = array(
'context' => $this,
'document' => $oDocument,
'document_type' => $oDocumentType,
'doctypes' => $aDocTypes,
);
$oTemplate->setData($aTemplateData);
return $oTemplate->render();
}
function do_changeType() {
// FIXME this could do with more postTriggers, etc.
/* The basic procedure is:
*
* 1. find out what fieldsets we _have_
* 2. find out what fieldsets we _should_ have.
* 3. actively delete fieldsets we need to lose.
* 4. run the edit script.
*/
$newType = KTUtil::arrayGet($_REQUEST, 'fDocType');
$oType = DocumentType::get($newType);
if (PEAR::isError($oType) || ($oType == false)) {
$this->errorRedirectToMain(_kt("Invalid type selected."));
}
$this->addInfoMessage(sprintf(_kt('You have selected a different document type (%s). Please review the information below, and save changes to the metadata once you are satisfied.'), $oType->getName()));
$_REQUEST['setType'] = $newType;
return $this->do_main($newType);
}
// "standard document editing"
function do_main($newType=false) {
$this->oPage->setBreadcrumbDetails("edit");
$document_id = KTUtil::arrayGet($_REQUEST, 'fDocumentId');
if (empty($document_id)) {
$this->errorPage(_kt("No document specified for editing."));
}
$oDocument = Document::get($document_id);
if (PEAR::isError($oDocument)) {
$this->errorPage(_kt("Invalid Document."));
}
$this->oDocument = $oDocument;
$this->oFolder = Folder::get($oDocument->getFolderId()); // FIXME do we need to check that this is valid?
$this->addBreadcrumbs();
$this->addPortlets("Edit");
$fieldsets = array();
// we always have a generic.
array_push($fieldsets, new GenericFieldsetDisplay());
$fieldsetDisplayReg =& KTFieldsetDisplayRegistry::getSingleton();
$activesets = KTFieldset::getGenericFieldsets();
foreach ($activesets as $oFieldset) {
$displayClass = $fieldsetDisplayReg->getHandler($oFieldset->getNamespace());
array_push($fieldsets, new $displayClass($oFieldset));
}
// FIXME can we key this on fieldset namespace? or can we have duplicates?
// now we get the other fieldsets, IF there is a valid doctype.
// quick solution to the change issue...
if ($newType !== false) {
$activesets = KTFieldset::getForDocumentType($newType);
} else {
$activesets = KTFieldset::getForDocumentType($oDocument->getDocumentTypeID());
}
foreach ($activesets as $oFieldset) {
$displayClass = $fieldsetDisplayReg->getHandler($oFieldset->getNamespace());
array_push($fieldsets, new $displayClass($oFieldset));
}
$document_data = array();
$document_data["document"] =& $this->oDocument;
// we want to grab all the md for this doc, since its faster that way.
$mdlist =& DocumentFieldLink::getByDocument($document_id);
$field_values = array();
foreach ($mdlist as $oFieldLink) {
$field_values[$oFieldLink->getDocumentFieldID()] = $oFieldLink->getValue();
}
$document_data["field_values"] = $field_values;
$oTemplating =& KTTemplating::getSingleton();
$oTemplate =& $oTemplating->loadTemplate("kt3/document/edit");
$aTemplateData = array(
'context' => $this,
'document' => $this->oDocument,
'document_data' => $document_data, // FIXME what do we need here?
'fieldsets' => $fieldsets,
'has_error' => false,
'newType' => $newType,
);
$oTemplate->setData($aTemplateData);
return $oTemplate->render();
}
function do_update() {
$document_id = KTUtil::arrayGet($_REQUEST, 'fDocumentId');
if (empty($document_id)) {
$this->errorPage(_kt("No document specified for editing."));
}
$oDocument = Document::get($document_id);
if (PEAR::isError($oDocument)) {
$this->errorPage(_kt("Invalid Document."));
}
$aErrorOptions = array(
'redirect_to' => array('main', sprintf('fDocumentId=%d', $oDocument->getId())),
'message' => _kt('No name given'),
'max_str_len' => 200,
);
$title = KTUtil::arrayGet($_REQUEST, 'generic_title');
$title = $this->oValidator->validateString($title, $aErrorOptions);
$newType = KTUtil::arrayGet($_REQUEST, 'newType');
if ($newType !== null) {
$oDT = DocumentType::get($newType);
if (PEAR::isError($oDT) || ($oDT == false)) {
$this->errorRedirectToMain(_kt('Invalid document type specified for change.'));
}
} else {
$oDT = null;
}
$this->oDocument = $oDocument;
$this->oFolder = Folder::get($oDocument->getFolderId()); // FIXME do we need to check that this is valid?
$this->addBreadcrumbs();
$this->addPortlets("Edit");
$fieldsets = array();
// FIXME handle true generic document DATA (e.g. title).
// $activesets = KTFieldset::getGenericFieldsets();
$activesets =& KTMetadataUtil::fieldsetsForDocument($oDocument);
foreach ($activesets as $oFieldset) {
array_push($fieldsets, $oFieldset);
}
if ($newType !== null) {
$activesets = KTFieldset::getForDocumentType($newType);
}
// FIXME use array_merge
foreach ($activesets as $oFieldset) {
array_push($fieldsets, $oFieldset);
}
// erk. we need all the items that the document _does_ need, _and_ what they have,
// _and_ what they don't ...
// we want to grab all the md for this doc, since its faster that way.
$current_md =& DocumentFieldLink::getByDocument($document_id);
// to get all fields, we merge repeatedly from KTFieldset::get
$field_values = array();
foreach ($fieldsets as $oFieldSet) {
$fields =& $oFieldSet->getFields();
// FIXME this doesn't handle multi-fieldset fields - are they possible/meaningful?
foreach ($fields as $oField) {
$field_values[$oField->getID()] = array($oField, null);
}
}
foreach ($current_md as $oFieldLink) {
$field_values[$oFieldLink->getDocumentFieldID()][1] = $oFieldLink->getValue();
}
// now, we need the full set of items that this document could contain.
// FIXME this DOES NOT WORK for date items.
// FIXME that's fine - we don't use range items here...
$expect_vals = KTUtil::arrayGet($_REQUEST,'kt_core_fieldsets_expect');
foreach ($field_values as $key => $val) {
$newVal = KTUtil::arrayGet($_REQUEST, 'metadata_' . $key, null);
$wantVal = KTUtil::arrayGet($expect_vals, 'metadata_' . $key, false);
// FIXME this leaves no way to check if someone has actually removed the item.
// FIXME we probably want to _not_ set anything that could be set ... but then how do you
// FIXME know about managed values ...
if ($newVal !== null) {
$field_values[$key][1] = $newVal; // need the items themselves.
} else if ($wantVal !== false) {
// we sent it out, delete it.
unset($field_values[$key]);
}
}
// finally, we need to pass through and remove null entries (sigh)
// FIXME alternatively we could build a new set, but that might break stuff?
$final_values = array();
foreach ($field_values as $aMDPack) {
if ($aMDPack[1] !== null) {
$final_values[] = $aMDPack;
}
}
$field_values = $final_values;
// FIXME handle md versions.
//return '<pre>' . print_r($field_values, true) . '</pre>';
$this->startTransaction();
$iPreviousMetadataVersionId = $oDocument->getMetadataVersionId();
$oDocument->startNewMetadataVersion($this->oUser);
if (PEAR::isError($res)) {
$this->errorRedirectToMain('Unable to create a metadata version of the document.');
}
$oDocument->setName($title);
$oDocument->setLastModifiedDate(getCurrentDateTime());
$oDocument->setModifiedUserId($this->oUser->getId());
// FIXME refactor this into documentutil.
// document type changing semantics
if ($newType != null) {
$oldType = DocumentType::get($oDocument->getDocumentTypeID());
$oDocument->setDocumentTypeID($newType);
// we need to find fieldsets that _were_ in the old one, and _delete_ those.
$for_delete = array();
$oldFieldsets = KTFieldset::getForDocumentType($oldType);
$newFieldsets = KTFieldset::getForDocumentType($newType);
// prune from MDPack.
foreach ($oldFieldsets as $oFieldset) {
$old_fields = $oFieldset->getFields();
foreach ($old_fields as $oField) {
$for_delete[$oField->getId()] = 1;
}
}
foreach ($newFieldsets as $oFieldset) {
$new_fields = $oFieldset->getFields();
foreach ($new_fields as $oField) {
unset($for_delete[$oField->getId()]);
}
}
$newPack = array();
foreach ($field_values as $MDPack) {
if (!array_key_exists($MDPack[0]->getId(), $for_delete)) {
$newPack[] = $MDPack;
}
}
$field_values = $newPack;
//var_dump($field_values);
//exit(0);
}
$oDocumentTransaction = & new DocumentTransaction($oDocument, 'update metadata.', 'ktcore.transactions.update');
$res = $oDocumentTransaction->create();
if (PEAR::isError($res)) {
$this->errorRedirectToMain('Failed to create transaction.');
}
$res = $oDocument->update();
if (PEAR::isError($res)) {
$this->errorRedirectToMain('Failed to change basic details about the document..');
}
$res = KTDocumentUtil::saveMetadata($oDocument, $field_values);
if (PEAR::isError($res)) {
$this->rollbackTransaction();
// right. we're rolled out. now we want to regenerate the page, + errors.
// fixme use map (urgh)
$new_field_values = array();
foreach ($field_values as $aMDSet) {
$new_field_values[$aMDSet[0]->getId()] = $aMDSet[1];
}
// we need to do the displayAdaption.
$fieldsetDisplayReg =& KTFieldsetDisplayRegistry::getSingleton();
$new_fieldsets = array();
array_push($new_fieldsets, new GenericFieldsetDisplay());
foreach ($fieldsets as $oFieldset) {
$displayClass = $fieldsetDisplayReg->getHandler($oFieldset->getNamespace());
$oDisplayFieldset = new $displayClass($oFieldset);
if (isset($res->aFailed['fieldset'][$oFieldset->getId()])) {
$oDisplayFieldset->setError($res->aFailed['fieldset'][$oFieldset->getId()]);
}
$new_fieldsets[$oFieldset->getId()] = $oDisplayFieldset;
}
$document_data['document'] = $oDocument;
$document_data["field_values"] = $new_field_values;
//print '<pre>' . print_r($document_data['field_values'], true) . '</pre>';
$document_data['errors'] = $res->aFailed['field'];
$this->addErrorMessage(_kt('Validation failed. The values below correspond to your attempt to change the metadata on this item, and are not necessarily the values saved for the document. The validation errors are shown next to the metadata that failed validation. Select Cancel to return to the saved values.'));
$oTemplating =& KTTemplating::getSingleton();
$oTemplate =& $oTemplating->loadTemplate("kt3/document/edit");
$aTemplateData = array(
'context' => $this,
'document' => $this->oDocument,
'document_data' => $document_data, // FIXME what do we need here?
'fieldsets' => $new_fieldsets,
'has_error' => true,
);
$oTemplate->setData($aTemplateData);
return $oTemplate->render();
} else {
// post-triggers.
$oKTTriggerRegistry = KTTriggerRegistry::getSingleton();
$aTriggers = $oKTTriggerRegistry->getTriggers('edit', 'postValidate');
foreach ($aTriggers as $aTrigger) {
$sTrigger = $aTrigger[0];
$oTrigger = new $sTrigger;
$aInfo = array(
"document" => $oDocument,
);
$oTrigger->setInfo($aInfo);
$ret = $oTrigger->postValidate();
}
$this->commitTransaction();
// now we need to say we're ok.
// this involves a redirect to view, with a message.
// FIXME do not hard-code URLs
redirect(KTBrowseUtil::getUrlForDocument($document_id));
}
}
}
$d =& new KTEditDocumentDispatcher;
$d->dispatch();
?>