Merge pull request #2564 from jaapjansma/CRM-14276
[civicrm-core.git] / CRM / Core / BAO / Note.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2014
32 * $Id$
33 *
34 */
35
36 /**
37 * BAO object for crm_note table
38 */
39 class CRM_Core_BAO_Note extends CRM_Core_DAO_Note {
40
41 /**
42 * const the max number of notes we display at any given time
43 * @var int
44 */
45 CONST MAX_NOTES = 3;
46
47 /**
48 * given a note id, retrieve the note text
49 *
50 * @param int $id id of the note to retrieve
51 *
52 * @return string the note text or null if note not found
53 *
54 * @access public
55 * @static
56 */
57 static function getNoteText($id) {
58 return CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Note', $id, 'note');
59 }
60
61 /**
62 * given a note id, retrieve the note subject
63 *
64 * @param int $id id of the note to retrieve
65 *
66 * @return string the note subject or null if note not found
67 *
68 * @access public
69 * @static
70 */
71 static function getNoteSubject($id) {
72 return CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Note', $id, 'subject');
73 }
74
75 /**
76 * given a note id, decide if the note should be displayed based on privacy setting
77 *
78 * @param object $note Either the id of the note to retrieve, or the CRM_Core_DAO_Note object itself
79 *
80 * @return boolean TRUE if the note should be displayed, otherwise FALSE
81 *
82 * @access public
83 * @static
84 */
85 static function getNotePrivacyHidden($note) {
86 if (CRM_Core_Permission::check('view all notes')) {
87 return FALSE;
88 }
89
90 $noteValues = array();
91 if (is_object($note) && get_class($note) == 'CRM_Core_DAO_Note') {
92 CRM_Core_DAO::storeValues($note, $noteValues);
93 }
94 else {
95 $noteDAO = new CRM_Core_DAO_Note();
96 $noteDAO->id = $note;
97 $noteDAO->find();
98 if ($noteDAO->fetch()) {
99 CRM_Core_DAO::storeValues($noteDAO, $noteValues);
100 }
101 }
102
103 CRM_Utils_Hook::notePrivacy($noteValues);
104
105 if (!$noteValues['privacy']) {
106 return FALSE;
107 }
108 elseif (isset($noteValues['notePrivacy_hidden'])) {
109 // If the hook has set visibility, use that setting.
110 return $noteValues['notePrivacy_hidden'];
111 }
112 else {
113 // Default behavior (if hook has not set visibility)
114 // is to hide privacy notes unless the note creator is the current user.
115
116 if ($noteValues['privacy']) {
117 $session = CRM_Core_Session::singleton();
118 $userID = $session->get('userID');
119 return ($noteValues['contact_id'] != $userID);
120 }
121 else {
122 return FALSE;
123 }
124 }
125 }
126
127 /**
128 * takes an associative array and creates a note object
129 *
130 * the function extract all the params it needs to initialize the create a
131 * note object. the params array could contain additional unused name/value
132 * pairs
133 *
134 * @param array $params (reference) an assoc array of name/value pairs
135 * @param array $ids (deprecated) associated array with note id - preferably set $params['id']
136 *
137 * @return object $note CRM_Core_BAO_Note object
138 * @access public
139 * @static
140 */
141 static function &add(&$params, $ids = array()) {
142 $dataExists = self::dataExists($params);
143 if (!$dataExists) {
144 return CRM_Core_DAO::$_nullObject;
145 }
146
147 $note = new CRM_Core_BAO_Note();
148
149 if (!isset($params['modified_date'])) {
150 $params['modified_date'] = date("Ymd");
151 }
152
153 if (!isset($params['privacy'])) {
154 $params['privacy'] = 0;
155 }
156
157 $note->copyValues($params);
158 if (empty($params['contact_id'])) {
159 if ($params['entity_table'] == 'civicrm_contact') {
160 $note->contact_id = $params['entity_id'];
161 }
162 }
163 $id = CRM_Utils_Array::value('id', $params, CRM_Utils_Array::value('id', $ids));
164 if ($id) {
165 $note->id = $id;
166 }
167
168 $note->save();
169
170 // check and attach and files as needed
171 CRM_Core_BAO_File::processAttachment($params, 'civicrm_note', $note->id);
172
173 if ($note->entity_table == 'civicrm_contact') {
174 CRM_Core_BAO_Log::register($note->entity_id,
175 'civicrm_note',
176 $note->id
177 );
178 $displayName = CRM_Contact_BAO_Contact::displayName($note->entity_id);
179
180 $noteActions = FALSE;
181 $session = CRM_Core_Session::singleton();
182 if ($session->get('userID')) {
183 if ($session->get('userID') == $note->entity_id) {
184 $noteActions = TRUE;
185 }
186 elseif (CRM_Contact_BAO_Contact_Permission::allow($note->entity_id, CRM_Core_Permission::EDIT)) {
187 $noteActions = TRUE;
188 }
189 }
190
191 $recentOther = array();
192 if ($noteActions) {
193 $recentOther = array(
194 'editUrl' => CRM_Utils_System::url('civicrm/contact/view/note',
195 "reset=1&action=update&cid={$note->entity_id}&id={$note->id}&context=home"
196 ),
197 'deleteUrl' => CRM_Utils_System::url('civicrm/contact/view/note',
198 "reset=1&action=delete&cid={$note->entity_id}&id={$note->id}&context=home"
199 ),
200 );
201 }
202
203 // add the recently created Note
204 CRM_Utils_Recent::add($displayName . ' - ' . $note->subject,
205 CRM_Utils_System::url('civicrm/contact/view/note',
206 "reset=1&action=view&cid={$note->entity_id}&id={$note->id}&context=home"
207 ),
208 $note->id,
209 'Note',
210 $note->entity_id,
211 $displayName,
212 $recentOther
213 );
214 }
215
216 return $note;
217 }
218
219 /**
220 * Check if there is data to create the object
221 *
222 * @param array $params (reference ) an assoc array of name/value pairs
223 *
224 * @return boolean
225 * @access public
226 * @static
227 */
228 static function dataExists(&$params) {
229 // return if no data present
230 if (!strlen($params['note'])) {
231 return FALSE;
232 }
233 return TRUE;
234 }
235
236 /**
237 * Given the list of params in the params array, fetch the object
238 * and store the values in the values array
239 *
240 * @param array $params input parameters to find object
241 * @param array $values output values of the object
242 * @param array $ids the array that holds all the db ids
243 * @param int $numNotes the maximum number of notes to return (0 if all)
244 *
245 * @return object $notes Object of CRM_Core_BAO_Note
246 * @access public
247 * @static
248 */
249 static function &getValues(&$params, &$values, $numNotes = self::MAX_NOTES) {
250 if (empty($params)) {
251 return NULL;
252 }
253 $note = new CRM_Core_BAO_Note();
254 $note->entity_id = $params['contact_id'];
255 $note->entity_table = 'civicrm_contact';
256
257 // get the total count of notes
258 $values['noteTotalCount'] = $note->count();
259
260 // get only 3 recent notes
261 $note->orderBy('modified_date desc');
262 $note->limit($numNotes);
263 $note->find();
264
265 $notes = array();
266 $count = 0;
267 while ($note->fetch()) {
268 $values['note'][$note->id] = array();
269 CRM_Core_DAO::storeValues($note, $values['note'][$note->id]);
270 $notes[] = $note;
271
272 $count++;
273 // if we have collected the number of notes, exit loop
274 if ($numNotes > 0 && $count >= $numNotes) {
275 break;
276 }
277 }
278
279 return $notes;
280 }
281
282 /**
283 * Function to delete the notes
284 *
285 * @param int $id note id
286 * @param boolean $showStatus do we need to set status or not
287 *
288 * @return $return no of deleted notes on success, false otherwise
289 *
290 * @access public
291 * @static
292 */
293 static function del($id, $showStatus = TRUE) {
294 $return = NULL;
295 $recent = array($id);
296 $note = new CRM_Core_DAO_Note();
297 $note->id = $id;
298 $note->find();
299 $note->fetch();
300 if ($note->entity_table == 'civicrm_note') {
301 $status = ts('Selected Comment has been deleted successfully.');
302 }
303 else {
304 $status = ts('Selected Note has been deleted successfully.');
305 }
306
307 // Delete all descendents of this Note
308 foreach (self::getDescendentIds($id) as $childId) {
309 $childNote = new CRM_Core_DAO_Note();
310 $childNote->id = $childId;
311 $childNote->delete();
312 $childNote->free();
313 $recent[] = $childId;
314 }
315
316 $return = $note->delete();
317 $note->free();
318 if ($showStatus) {
319 CRM_Core_Session::setStatus($status, ts('Deleted'), 'success');
320 }
321
322 // delete the recently created Note
323 foreach ($recent as $recentId) {
324 $noteRecent = array(
325 'id' => $recentId,
326 'type' => 'Note',
327 );
328 CRM_Utils_Recent::del($noteRecent);
329 }
330 return $return;
331 }
332
333 /**
334 * delete all records for this contact id
335 *
336 * @param int $id ID of the contact for which note needs to be deleted.
337 *
338 * @return void
339 *
340 * @access public
341 * @static
342 */
343 public static function deleteContact($id) {
344 // need to delete for both entity_id
345 $dao = new CRM_Core_DAO_Note();
346 $dao->entity_table = 'civicrm_contact';
347 $dao->entity_id = $id;
348 $dao->delete();
349
350 // and the creator contact id
351 $dao = new CRM_Core_DAO_Note();
352 $dao->contact_id = $id;
353 $dao->delete();
354 }
355
356 /**
357 * retrieve all records for this entity-id
358 *
359 * @param int $id ID of the relationship for which records needs to be retrieved.
360 *
361 * @return array $viewNote array of note properties
362 *
363 * @access public
364 * @static
365 */
366 public static function &getNote($id, $entityTable = 'civicrm_relationship') {
367 $viewNote = array();
368
369 $query = "
370 SELECT id,
371 note
372 FROM civicrm_note
373 WHERE entity_table=\"{$entityTable}\"
374 AND entity_id = %1
375 AND note is not null
376 ORDER BY modified_date desc";
377 $params = array(1 => array($id, 'Integer'));
378
379 $dao = CRM_Core_DAO::executeQuery($query, $params);
380
381 while ($dao->fetch()) {
382 $viewNote[$dao->id] = $dao->note;
383 }
384
385 return $viewNote;
386 }
387
388 /**
389 * Function to get log record count for a Contact
390 *
391 * @param int $contactId Contact ID
392 *
393 * @return int $count count of log records
394 *
395 * @access public
396 * @static
397 */
398 static function getContactNoteCount($contactID) {
399 $note = new CRM_Core_DAO_Note();
400 $note->entity_id = $contactID;
401 $note->entity_table = 'civicrm_contact';
402 $note->find();
403 $count = 0;
404 while ($note->fetch()) {
405 if (!self::getNotePrivacyHidden($note)) {
406 $count++;
407 }
408 }
409 return $count;
410 }
411
412 /**
413 * Function to get all descendent notes of the note with given ID
414 *
415 * @param int $parentId ID of the note to start from
416 * @param int $maxDepth Maximum number of levels to descend into the tree; if not given, will include all descendents.
417 * @param bool $snippet If TRUE, returned values will be pre-formatted for display in a table of notes.
418 *
419 * @return array Nested associative array beginning with direct children of given note.
420 *
421 * @static
422 * @access public
423 */
424 public static function getNoteTree($parentId, $maxDepth = 0, $snippet = FALSE) {
425 return self::buildNoteTree($parentId, $maxDepth, $snippet);
426 }
427
428 /**
429 * Get total count of direct children visible to the current user
430 *
431 * @param int $id Note ID
432 *
433 * @return int $count Number of notes having the give note as parent
434 *
435 * @static
436 * @access public
437 */
438 public static function getChildCount($id) {
439 $note = new CRM_Core_DAO_Note();
440 $note->entity_table = 'civicrm_note';
441 $note->entity_id = $id;
442 $note->find();
443 $count = 0;
444 while ($note->fetch()) {
445 if (!self::getNotePrivacyHidden($note)) {
446 $count++;
447 }
448 }
449 return $count;
450 }
451
452 /**
453 * Recursive function to get all descendent notes of the note with given ID
454 *
455 * @param int $parentId ID of the note to start from
456 * @param int $maxDepth Maximum number of levels to descend into the tree; if not given, will include all descendents.
457 * @param bool $snippet If TRUE, returned values will be pre-formatted for display in a table of notes.
458 * @param array $tree (Reference) Variable to store all found descendents
459 * @param int $depth Depth of current iteration within the descendent tree (used for comparison against maxDepth)
460 *
461 * @return array Nested associative array beginning with direct children of given note.
462 * @static
463 */
464 private static function buildNoteTree($parentId, $maxDepth = 0, $snippet = FALSE, &$tree = array(
465 ), $depth = 0) {
466 if ($maxDepth && $depth > $maxDepth) {
467 return false;
468 }
469
470 // get direct children of given parentId note
471 $note = new CRM_Core_DAO_Note();
472 $note->entity_table = 'civicrm_note';
473 $note->entity_id = $parentId;
474 $note->orderBy('modified_date asc');
475 $note->find();
476 while ($note->fetch()) {
477 // foreach child, call this function, unless the child is private/hidden
478 if (!self::getNotePrivacyHidden($note)) {
479 CRM_Core_DAO::storeValues($note, $tree[$note->id]);
480
481 // get name of user that created this note
482 $contact = new CRM_Contact_DAO_Contact();
483 $createdById = $note->contact_id;
484 $contact->id = $createdById;
485 $contact->find();
486 $contact->fetch();
487 $tree[$note->id]['createdBy'] = $contact->display_name;
488 $tree[$note->id]['createdById'] = $createdById;
489 $tree[$note->id]['modified_date'] = CRM_Utils_Date::customFormat($tree[$note->id]['modified_date']);
490
491 if ($snippet) {
492 $tree[$note->id]['note'] = nl2br($tree[$note->id]['note']);
493 $tree[$note->id]['note'] = smarty_modifier_mb_truncate(
494 $tree[$note->id]['note'],
495 80,
496 '...',
497 TRUE
498 );
499 CRM_Utils_Date::customFormat($tree[$note->id]['modified_date']);
500 }
501 self::buildNoteTree(
502 $note->id,
503 $maxDepth,
504 $snippet,
505 $tree[$note->id]['child'],
506 $depth + 1
507 );
508 }
509 }
510
511 return $tree;
512 }
513
514 /**
515 * given a note id, get a list of the ids of all notes that are descendents of that note
516 *
517 * @param int $parentId Id of the given note
518 * @param array $ids (reference) one-dimensional array to store found descendent ids
519 *
520 * @return array $ids One-dimensional array containing ids of all desendent notes
521 */
522 public static function getDescendentIds($parentId, &$ids = array(
523 )) {
524 // get direct children of given parentId note
525 $note = new CRM_Core_DAO_Note();
526 $note->entity_table = 'civicrm_note';
527 $note->entity_id = $parentId;
528 $note->find();
529 while ($note->fetch()) {
530 // foreach child, add to ids list, and recurse
531 $ids[] = $note->id;
532 self::getDescendentIds($note->id, $ids);
533 }
534 return $ids;
535 }
536
537 /**
538 * function to delete all note related to contact when contact is deleted
539 *
540 * @param int $contactID contact id whose notes to be deleted
541 * @param array $deleteNoteID to store all deleted note ids
542 *
543 * @return void
544 * @static
545 */
546 static function cleanContactNotes($contactID) {
547 $params = array(1 => array($contactID, 'Integer'));
548
549 // delete all notes related to contribution
550 $contributeQuery = "DELETE note.*
551 FROM civicrm_note note LEFT JOIN civicrm_contribution contribute ON note.entity_id = contribute.id
552 WHERE contribute.contact_id = %1 AND note.entity_table = 'civicrm_contribution'";
553
554 CRM_Core_DAO::executeQuery($contributeQuery, $params);
555
556 // delete all notes related to participant
557 $participantQuery = "DELETE note.*
558 FROM civicrm_note note LEFT JOIN civicrm_participant participant ON note.entity_id = participant.id
559 WHERE participant.contact_id = %1 AND note.entity_table = 'civicrm_participant'";
560
561 CRM_Core_DAO::executeQuery($participantQuery, $params);
562
563 // delete all contact notes
564 $contactQuery = "SELECT id FROM civicrm_note WHERE entity_id = %1 AND entity_table = 'civicrm_contact'";
565
566 $contactNoteId = CRM_Core_DAO::executeQuery($contactQuery, $params);
567 while ($contactNoteId->fetch()) {
568 self::del($contactNoteId->id, FALSE);
569 }
570 }
571 }
572