Notification.inc.php
16.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
<?php
/**
* $Id$
*
* The contents of this file are subject to the KnowledgeTree Public
* License Version 1.1.2 ("License"); You may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.knowledgetree.com/KPL
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
* See the License for the specific language governing rights and
* limitations under the License.
*
* All copies of the Covered Code must include on each user interface screen:
* (i) the "Powered by KnowledgeTree" logo and
* (ii) the KnowledgeTree copyright notice
* in the same form as they appear in the distribution. See the License for
* requirements.
*
* The Original Code is: KnowledgeTree Open Source
*
* The Initial Developer of the Original Code is The Jam Warehouse Software
* (Pty) Ltd, trading as KnowledgeTree.
* Portions created by The Jam Warehouse Software (Pty) Ltd are Copyright
* (C) 2007 The Jam Warehouse Software (Pty) Ltd;
* All Rights Reserved.
* Contributor( s): ______________________________________
*
*/
require_once(KT_LIB_DIR . "/session/control.inc");
require_once(KT_LIB_DIR . "/ktentity.inc");
require_once(KT_LIB_DIR . "/database/datetime.inc");
require_once(KT_LIB_DIR . "/dashboard/NotificationRegistry.inc.php");
require_once(KT_LIB_DIR . '/users/User.inc');
require_once(KT_LIB_DIR . '/documentmanagement/Document.inc');
require_once(KT_LIB_DIR . '/foldermanagement/Folder.inc');
require_once(KT_LIB_DIR . '/workflow/workflowutil.inc.php');
require_once(KT_LIB_DIR . '/templating/templating.inc.php');
require_once(KT_LIB_DIR . '/dispatcher.inc.php');
/**
* class Notification
*
* Represents a basic message, about an item, to a user. This ends up on the dashboard.
*/
class KTNotification extends KTEntity {
/** primary key value */
var $iId = -1;
var $iUserId;
// sType and sLabel provide the title of the dashboard alert.
var $sLabel; // a simple label - e.g. the document's title, or so forth.
var $sType; // namespaced item type. (e.g. ktcore/subscriptions, word/officeupload)
// this is used to create the appropriate renderobj.
var $dCreationTime = null; // the date/time of this items creation.
// iData1 and iData2 and integers, which can be used for whatever.
// sData1 and sData2 are similar.
// (i.e. you get very stupid subclassing semantics with up to 4 variables this way.
var $iData1;
var $iData2;
// sData1 and sData2 are 255-length character fields
var $sData1;
var $sData2;
// sText1 is a 65535-length text field
var $sText1;
var $_bUsePearError = true;
function getId() { return $this->iId; }
function getLabel() { return $this->sLabel; }
function setLabel($sLabel) { $this->sLabel = $sLabel; }
function getType() { return $this->sType; }
function setType($sType) { $this->sType = $sType; }
function getIntData1() { return $this->iData1; }
function setIntData1($iData1) { $this->iData1 = $iData1; }
function getIntData2() { return $this->iData2; }
function setIntData2($iData2) { $this->iData2 = $iData2; }
function getStrData1() { return $this->sData1; }
function setStrData1($sData1) { $this->sData1 = $sData1; }
function getStrData2() { return $this->sData2; }
function setStrData2($sData2) { $this->sData2 = $sData2; }
function getTextData1() { return $this->sText1; }
function setTextData1($mValue) { $this->sText1 = $mValue; }
var $_aFieldToSelect = array(
"iId" => "id",
"iUserId" => "user_id",
"sLabel" => "label",
"sType" => "type",
"dCreationDate" => "creation_date",
"iData1" => "data_int_1",
"iData2" => "data_int_2",
"sData1" => "data_str_1",
"sData2" => "data_str_2",
"sText1" => "data_text_1",
);
function _table () {
return KTUtil::getTableName('notifications');
}
function render() {
$notificationRegistry =& KTNotificationRegistry::getSingleton();
$handler = $notificationRegistry->getHandler($this->sType);
if (is_null($handler)) { return null; }
return $handler->handleNotification($this);
}
function &getHandler() {
$notificationRegistry =& KTNotificationRegistry::getSingleton();
$handler =& $notificationRegistry->getHandler($this->sType);
return $handler;
}
// Static function
function &get($iId) { return KTEntityUtil::get('KTNotification', $iId); }
function &getList($sWhereClause = null, $aOptions = null ) {
if(!is_array($aOptions)) $aOptions = array($aOptions);
$aOptions['orderby'] = KTUtil::arrayGet($aOptions, 'orderby', 'creation_date DESC');
return KTEntityUtil::getList2('KTNotification', $sWhereClause, $aOptions);
}
function &createFromArray($aOptions) { return KTEntityUtil::createFromArray('KTNotification', $aOptions); }
}
/** register the base handlers. */
// abstract base-class for notification handler.
class KTNotificationHandler extends KTStandardDispatcher {
// FIXME rename this to renderNotification
// called to _render_ the notification.
function handleNotification($oKTNotification) {
$oTemplating =& KTTemplating::getSingleton();
$oTemplate = $oTemplating->loadTemplate("kt3/notifications/generic");
$aTemplateData = array("context" => $oKTNotification,);
return $oTemplate->render($aTemplateData);
}
function do_main() {
$this->resolveNotification($this->notification);
}
// called to resolve the notification (typically from /notify.php?id=xxxxx
function resolveNotification($oKTNotification) {
$_SESSION['KTErrorMessage'][] = _kt("This notification handler does not support publication.");
exit(redirect(generateControllerLink('dashboard')));
}
}
// FIXME consider refactoring this into plugins/ktcore/ktstandard/KTSubscriptions.php
class KTSubscriptionNotification extends KTNotificationHandler {
/* Subscription Notifications
*
* Subscriptions are a large part of the notification volume.
* That said, notifications cater to a larger group, so there is some
* degree of mismatch between the two.
*
* Mapping the needs of subscriptions onto the provisions of notifications
* works as:
*
* $oKTN->label: object name [e.g. Document Name]
* $oKTN->strData1: event type [AddFolder, AddDocument, etc.]
* $oKTN->strData2: _location_ name. (e.g. folder of the subscription.)
* $oKTN->intData1: object id (e.g. document_id, folder_id)
* $oKTN->intData2: actor id (e.g. user_id)
*
*/
var $notificationType = 'ktcore/subscriptions';
var $_eventObjectMap = array(
"AddFolder" => 'folder',
"RemoveSubscribedFolder" => '', // nothing. your subscription is now gone.
"RemoveChildFolder" => 'folder',
"AddDocument" => 'document',
"RemoveSubscribedDocument" => '', // nothing. your subscription is now gone.
"RemoveChildDocument" => 'folder',
"ModifyDocument" => 'document',
"CheckInDocument" => 'document',
"CheckOutDocument" => 'document',
"MovedDocument" => 'document',
"ArchivedDocument" => 'document', // can go through and request un-archival (?)
"RestoredArchivedDocument" => 'document',
"DiscussDocument" => 'document',
);
function KTSubscriptionNotification() {
$this->_eventTypeNames = array(
"AddFolder" => _kt('Folder added'),
"RemoveSubscribedFolder" => _kt('Folder removed'), // nothing. your subscription is now gone.
"RemoveChildFolder" => _kt('Folder removed'),
"AddDocument" => _kt('Document added'),
"RemoveSubscribedDocument" => _kt('Document removed'), // nothing. your subscription is now gone.
"RemoveChildDocument" => _kt('Document removed'),
"ModifyDocument" => _kt('Document modified'),
"CheckInDocument" => _kt('Document checked in'),
"CheckOutDocument" => _kt('Document checked out'),
"MovedDocument" => _kt('Document moved'),
"ArchivedDocument" => _kt('Document archived'), // can go through and request un-archival (?)
"RestoredArchivedDocument" => _kt('Document restored'),
"DiscussDocument" => _kt('Document Discussions updated'),
);
//parent::KTNotificationHandler();
}
// helper method to extract / set the various pieces of information
function _getSubscriptionData($oKTNotification) {
$info = array(
'object_name' => $oKTNotification->getLabel(),
'event_type' => $oKTNotification->getStrData1(),
'location_name' => $oKTNotification->getStrData2(),
'object_id' => $oKTNotification->getIntData1(),
'actor_id' => $oKTNotification->getIntData2(),
'has_actor' => false,
'notify_id' => $oKTNotification->getId(),
);
$info['title'] = KTUtil::arrayGet($this->_eventTypeNames, $info['event_type'], 'Subscription alert:') .': ' . $info['object_name'];
if ($info['actor_id'] !== null) {
$oTempUser = User::get($info['actor_id']);
if (PEAR::isError($oTempUser) || ($oTempUser == false)) {
// no-act
$info['actor'] = null;
} else {
$info['actor'] = $oTempUser;
$info['has_actor'] = true;
}
}
if ($info['object_id'] !== null) {
$info['object'] = $this->_getEventObject($info['event_type'], $info['object_id']);
}
return $info;
}
// resolve the object type based on the alert type.
function _getEventObject($sAlertType, $id) {
$t = KTUtil::arrayGet($this->_eventObjectMap, $sAlertType ,'');
if ($t == 'document') {
$o = Document::get($id);
if (PEAR::isError($o) || ($o == false)) { return null;
} else { return $o; }
} else if ($t == 'folder') {
$o = Folder::get($id);
if (PEAR::isError($o) || ($o == false)) { return null;
} else { return $o; }
} else {
return null;
}
}
function _getEventObjectType($sAlertType) {
return KTUtil::arrayGet($this->_eventObjectMap, $sAlertType ,'');
}
function handleNotification($oKTNotification) {
$oSubscriptionContent = new SubscriptionContent();
return $oSubscriptionContent->getNotificationAlertContent($oKTNotification);
}
// helper to _create_ a notification, in a way that is slightly less opaque.
function &generateSubscriptionNotification($aOptions) {
$creationInfo = array();
/*
"iId" => "id",
"iUserId" => "user_id",
"sLabel" => "label",
"sType" => "type",
"dCreationDate" => "creation_date",
"iData1" => "data_int_1",
"iData2" => "data_int_2",
"sData1" => "data_str_1",
"sData2" => "data_str_2",
'object_name' => $oKTNotification->getLabel(),
'event_type' => $oKTNotification->getStrData1(),
'location_name' => $oKTNotification->getStrData2(),
'object_id' => $oKTNotification->getIntData1(),
'actor_id' => $oKTNotification->getIntData2(),
'has_actor' => false,
*/
$creationInfo['sLabel'] = $aOptions['target_name'];
$creationInfo['sData1'] = $aOptions['event_type'];
$creationInfo['sData2'] = $aOptions['location_name'];
$creationInfo['iData1'] = $aOptions['object_id'];
$creationInfo['iData2'] = $aOptions['actor_id'];
$creationInfo['iUserId'] = $aOptions['target_user'];
$creationInfo['sType'] = 'ktcore/subscriptions';
$creationInfo['dCreationDate'] = getCurrentDateTime(); // erk.
global $default;
//$default->log->debug('subscription notification: from ' . print_r($aOptions, true));
$default->log->debug('subscription notification: using ' . print_r($creationInfo, true));
$oNotification =& KTNotification::createFromArray($creationInfo);
$default->log->debug('subscription notification: created ' . print_r($oNotification, true));
return $oNotification; // $res.
}
function resolveNotification($oKTNotification) {
$notify_action = KTUtil::arrayGet($_REQUEST, 'notify_action', null);
if ($notify_action == 'clear') {
$_SESSION['KTInfoMessage'][] = _kt('Cleared notification.');
$oKTNotification->delete();
exit(redirect(generateControllerLink('dashboard')));
}
// otherwise, we want to redirect the to object represented by the item.
// - viewDocument and viewFolder are the appropriate items.
// - object_id
$info = $this->_getSubscriptionData($oKTNotification);
$object_type = $this->_getEventObjectType($info['event_type']);
if ($object_type == '') {
$_SESSION['KTErrorMessage'][] = 'This notification has no "target". Please report as a bug that this subscription should only have a clear action.' . $object_type;
exit(redirect(generateControllerLink('dashboard')));
}
if ($object_type == 'document') {
if ($info['object_id'] !== null) { // fails and generates an error with no doc-id.
$params = 'fDocumentId=' . $info['object_id'];
$url = generateControllerLink('viewDocument', $params);
$oKTNotification->delete(); // clear the alert.
exit(redirect($url));
}
} else if ($object_type == 'folder') {
if ($info['object_id'] !== null) { // fails and generates an error with no doc-id.
$params = 'fFolderId=' . $info['object_id'];
$url = generateControllerLink('browse', $params);
$oKTNotification->delete(); // clear the alert.
exit(redirect($url));
}
}
$_SESSION['KTErrorMessage'][] = sprintf('This notification has no "target". Please inform the %s developers that there is a target bug with type: ' . $info['event_type'], APP_NAME);
exit(redirect(generateControllerLink('dashboard')));
}
}
class KTWorkflowNotification extends KTNotificationHandler {
function & clearNotificationsForDocument($oDocument) {
$aNotifications = KTNotification::getList('data_int_1 = ' . $oDocument->getId());
foreach ($aNotifications as $oNotification) {
$oNotification->delete();
}
}
function & newNotificationForDocument($oDocument, $oUser, $oState, $oActor, $sComments) {
$aInfo = array();
$aInfo['sData1'] = $oState->getName();
$aInfo['sData2'] = $sComments;
$aInfo['iData1'] = $oDocument->getId();
$aInfo['iData2'] = $oActor->getId();
$aInfo['sType'] = 'ktcore/workflow';
$aInfo['dCreationDate'] = getCurrentDateTime();
$aInfo['iUserId'] = $oUser->getId();
$aInfo['sLabel'] = $oDocument->getName();
$oNotification = KTNotification::createFromArray($aInfo);
$handler = new KTWorkflowNotification();
if ($oUser->getEmailNotification() && (strlen($oUser->getEmail()) > 0)) {
$emailContent = $handler->handleNotification($oNotification);
$emailSubject = sprintf(_kt('Workflow Notification: %s'), $oDocument->getName());
$oEmail = new EmailAlert($oUser->getEmail(), $emailSubject, $emailContent);
$oEmail->send();
}
return $oNotification;
}
function handleNotification($oKTNotification) {
$oTemplating =& KTTemplating::getSingleton();
$oTemplate =& $oTemplating->loadTemplate('ktcore/workflow/workflow_notification');
$oDoc = Document::get($oKTNotification->getIntData1());
$isBroken = (PEAR::isError($oDoc) || ($oDoc->getStatusID() != LIVE));
$oTemplate->setData(array(
'context' => $this,
'document_id' => $oKTNotification->getIntData1(),
'state_name' => $oKTNotification->getStrData1(),
'actor' => User::get($oKTNotification->getIntData2()),
'document_name' => $oKTNotification->getLabel(),
'notify_id' => $oKTNotification->getId(),
'document' => $oDoc,
'is_broken' => $isBroken,
));
return $oTemplate->render();
}
function resolveNotification($oKTNotification) {
$notify_action = KTUtil::arrayGet($_REQUEST, 'notify_action', null);
if ($notify_action == 'clear') {
$_SESSION['KTInfoMessage'][] = _kt('Workflow Notification cleared.');
$oKTNotification->delete();
exit(redirect(generateControllerLink('dashboard')));
}
$params = 'fDocumentId=' . $oKTNotification->getIntData1();
$url = generateControllerLink('viewDocument', $params);
$oKTNotification->delete(); // clear the alert.
exit(redirect($url));
}
}
?>