2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar [#]version[#]
5 || # Copyright ©2002-[#]year[#] Blue Static
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version [#]gpl[#] of the License.
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
25 * This class determines which emails need to be sent out based on user
26 * options and bug changes, and then it sends said emails.
29 * @copyright Copyright ©2002 - [#]year[#], Blue Static
34 class NotificationCenter
48 var $original = array();
55 var $modified = array();
58 * Global bugsys registry
65 * Role list: a list of user IDs with their relations to the bug
70 '-notapplicable-' => array(),
71 'reporter' => array(),
72 'assignee' => array(),
73 'favorite' => array(),
75 'commenter' => array()
86 * A list of notices per-user that are combined together in NotificationCenter::finalize()
90 var $notices = array();
92 // ###################################################################
94 * Constructor: set database objects
98 function __construct()
102 $this->registry
=& $bugsys;
105 // ###################################################################
107 * (PHP 4) Constructor
111 function NotificationCenter()
113 $this->__construct();
116 // ###################################################################
118 * Sets the bug data so that all methods in this class have access to
119 * it when sending emails.
123 * @param array Original bug data
124 * @param array Modified bug data
126 function set_bug_data($original, $modified = array())
128 if (sizeof($modified) > 0)
130 $this->bug
= $modified;
134 $this->bug
= $original;
137 $this->original
= $original;
138 $this->modified
= $modified;
140 $this->roles
['-notapplicable-'] = (sizeof($modified) > 0 ? array($original['assignedto'], $modified['assignedto']) : array($original['assignedto']));
141 $this->roles
['reporter'] = array($original['userid']);
142 $this->roles
['assignee'] = (sizeof($modified) > 0 ? array($modified['assignedto']) : array($original['assignedto']));
144 $this->fetch_user_cache();
147 // ###################################################################
149 * Fetches all the users who could be related to the bug and sticks
150 * their information into an array.
154 function fetch_user_cache()
156 // reset all the data each time we do this, just in case it changes within the lifespan of the object
157 $this->users
= array();
158 foreach ($this->roles
AS $role => $users)
160 $this->roles
["$role"] = array();
163 $favorites = $this->registry->db->query("SELECT userid FROM
" . TABLE_PREFIX . "favorite WHERE bugid
= " . $this->registry->clean($this->bug['bugid'], TYPE_UINT));
164 while ($fav = $this->registry->db->fetch_array($favorites))
166 $this->roles['favorite']["$fav[userid
]"] = $fav['userid'];
169 $voters = $this->registry->db->query_first("SELECT userids FROM
" . TABLE_PREFIX . "vote WHERE bugid
= " . $this->registry->clean($this->bug['bugid'], TYPE_UINT));
170 $this->roles['voter'] = preg_split('#,#', $voters['userids'], 0, PREG_SPLIT_NO_EMPTY);
172 $commenters = $this->registry->db->query("SELECT userid FROM
" . TABLE_PREFIX . "comment WHERE bugid
= " . $this->registry->clean($this->bug['bugid'], TYPE_UINT));
173 while ($comment = $this->registry->db->fetch_array($commenters))
175 $this->roles['commenter']["$comment[userid
]"] = $comment['userid'];
178 $masterids = array_merge($this->roles['-notapplicable-'], $this->roles['reporter'], $this->roles['assignee'], $this->roles['favorite'], $this->roles['voter'], $this->roles['commenter']);
179 $masterids = $this->registry->funct->array_strip_empty(array_unique($masterids));
181 if (is_array($masterids) AND sizeof($masterids) > 0)
183 $userinfo = $this->registry->db->query("
184 SELECT user
.*, useremail
.*
185 FROM
" . TABLE_PREFIX . "useremail
AS useremail
186 LEFT JOIN
" . TABLE_PREFIX . "user
AS user
187 ON (user
.userid
= useremail
.userid
)
188 WHERE useremail
.userid
IN (" . implode(',', $masterids) . ")
190 while ($user = $this->registry->db->fetch_array($userinfo))
192 if (!is_array($this->users["$user[userid
]"]))
194 $this->users["$user[userid
]"] = $user;
195 unset($this->users["$user[userid
]"]['mask'], $this->users["$user[userid
]"]['relation']);
197 $this->users["$user[userid
]"]['options']["$user[relation
]"] = $user['mask'];
202 // ###################################################################
204 * Sends the appropriate emails for changes to bugs. This function
205 * works a lot like the Logging class by taking BugAPI->objdata and
206 * BugAPI->values and then comparing the two arries and sending emails
207 * with the differences.
211 * @param array Original custom fields data
212 * @param array Modified custom fields data
214 function send_bug_changes_notice($original, $modified)
216 if (!isset($this->modified['bugid']))
221 // fields with custom mask information
222 if ($this->original['assignedto'] != $this->modified['assignedto'])
224 if ($this->original['assignedto'] != '')
226 $this->notice_no_longer_assigned($this->original['assignedto']);
228 if ($this->modified['assignedto'] != '')
230 $this->notice_now_assigned($this->modified['assignedto']);
233 if ($this->original['status'] != $this->modified['status'])
235 $this->notice_status_change($this->original['status'], $this->modified['status']);
237 if ($this->original['resolution'] != $this->modified['resolution'])
239 $this->notice_resolution_change($this->original['resolution'], $this->modified['resolution']);
241 if ($this->original['duplicates'] != $this->modified['duplicates'])
243 $this->notice_duplicates_change($this->original['duplicates'], $this->modified['duplicates']);
246 // other standard fields that don't have custom masks
247 if ($this->original['severity'] != $this->modified['severity'])
249 $this->notice_severity_change($this->original['severity'], $this->modified['severity']);
251 if ($this->original['priority'] != $this->modified['priority'])
253 $this->notice_priority_change($this->original['priority'], $this->modified['priority']);
255 if (($this->original['product'] != $this->modified['product']) OR ($this->original['component'] != $this->modified['component']) OR ($this->original['version'] != $this->modified['version']))
257 $this->notice_pcv_change(array($this->original['product'], $this->original['component'], $this->original['version']), array($this->modified['product'], $this->modified['component'], $this->modified['version']));
265 foreach ($dofields AS $field => $lookup)
267 if ($this->original["$field"] != $this->modified
["$field"])
269 $this->notice_other_change($field, $this->original["$field"], $this->modified
["$field"]);
274 foreach ($modified AS $field => $value)
276 if ($field == 'bugid')
280 if ($original["$field"] != $modified["$field"])
282 $this->notice_other_change($field, $original["$field"], $modified["$field"]);
287 // ###################################################################
289 * Sends an email to the specified user ID that they are no longer the
290 * person assigned to the bug.
294 * @param integer User ID to send to
296 function notice_no_longer_assigned($userid)
298 if ($this->users["$userid"]['options'][0] & $this->registry
->emailoptions
['notifications']['assignedto'] AND in_array($userid, $this->roles
['-notapplicable-']))
300 $this->notices
["$userid"][] = sprintf(
301 _('You are no longer assigned to this bug, per %1$s\'s changes.'),
303 construct_user_display($this->registry->userinfo, false)
308 // ###################################################################
310 * Informs the user that they have been made the assignee of the bug.
314 * @param integer User ID
316 function notice_now_assigned($userid)
318 if ($this->users["$userid"]['options'][0] & $this->registry
->emailoptions
['notifications']['assignedto'] AND in_array($userid, $this->roles
['-notapplicable-']))
320 $this->notices
["$userid"][] = sprintf(
321 _('You have been assigned to this bug by %1$s.'),
323 construct_user_display($this->registry->userinfo, false)
328 // ###################################################################
330 * Sends a message to inform users that the status has changed.
334 * @param integer Old status
335 * @param integer New status
337 function notice_status_change($old, $new)
339 $userlist = $this->fetch_users_with_on_bit('statusresolve');
340 foreach ($userlist AS $userid => $user)
342 $this->notices["$user[userid
]"][] = sprintf(
343 _('The status of the bug is now "%
2$s", from
"%1$s".'),
345 $this->registry->datastore['status']["$old"]['status'],
346 $this->registry
->datastore
['status']["$new"]['status']
351 // ###################################################################
353 * Sends an email to inform users that the resolution has changed.
357 * @param integer Old resolution
358 * @param integer New resolution
360 function notice_resolution_change($old, $new)
362 $userlist = $this->fetch_users_with_on_bit('statusresolve');
363 foreach ($userlist AS $userid => $user)
365 $this->notices["$user[userid
]"][] = sprintf(
366 _('This bug has been resolved with resolution "%
2$s", from
"%1$s".'),
368 $this->registry->datastore['resolution']["$old"]['resolution'],
369 $this->registry
->datastore
['resolution']["$new"]['resolution']
374 // ###################################################################
376 * Informs users that the duplicates list has changed.
380 * @param string Old duplicates list
381 * @param string New duplicates list
383 function notice_duplicates_change($old, $new)
385 $userlist = $this->fetch_useres_with_on_bit('duplicates');
386 foreach ($userlist AS $userid => $user)
388 $this->notices["$user[userid
]"][] = sprintf(
389 _('The duplicates list has changed from "%
1$s" to %
2$s".'),
397 // ###################################################################
399 * Sends an email to inform users that the severity has changed.
403 * @param integer Old severity
404 * @param integer New severity
406 function notice_severity_change($old, $new)
408 $userlist = $this->fetch_users_with_on_bit('otherfield
');
409 foreach ($userlist AS $userid => $user)
411 $this->notices["$user[userid]"][] = sprintf(
412 _('The severity has been elevated from
"%1$s" to "%
2$s".'),
414 $this->registry->datastore['severity
']["$old"]['severity
'],
415 $this->registry->datastore['severity
']["$new"]['severity
']
420 // ###################################################################
422 * Informs users that the priority changed.
426 * @param integer Old priority
427 * @param integer New priority
429 function notice_priority_change($old, $new)
431 $userlist = $this->fetch_users_with_on_bit('otherfield
');
432 foreach ($userlist AS $userid => $user)
434 $this->notices["$user[userid]"][] = sprintf(
435 _('The priority has been elevatd from
"%1$s" to "%
2$s".'),
437 $this->registry->datastore['priority
']["$old"]['priority
'],
438 $this->registry->datastore['priority
']["$new"]['priority
']
443 // ###################################################################
445 * Sends an email telling users that the product, component, or version
446 * has changed. This is done all at once because you really need to see
447 * the whole thing in the notice.
451 * @param array Original PCV
452 * @param array Modified PCV
454 function notice_pcv_change($old, $new)
456 $userlist = $this->fetch_users_with_on_bit('otherfield
');
457 foreach ($userlist AS $userid => $user)
459 $this->notices["$user[userid]"][] = sprintf(
460 _('The product
, component
, and version combination has changed from
"%1$s" to "%
2$s".'),
462 $this->registry->datastore['product
']["$old[0]"]['title
'] . '/' . ($old[1] ? $this->registry->datastore['product
']["$old[1]"]['title
'] . '/' : '') . $this->registry->datastore['version
']["$old[2]"]['version
'],
463 $this->registry->datastore['product
']["$new[0]"]['title
'] . '/' . ($new[1] ? $this->registry->datastore['product
']["$new[1]"]['title
'] . '/' : '') . $this->registry->datastore['version
']["$new[2]"]['version
']
468 // ###################################################################
470 * Sends the appropriate users information about a new comment being
471 * posted to the bug report.
475 * @param array CommentAPI->values array
477 function send_new_comment_notice($comment)
479 $userlist = $this->fetch_users_with_on_bit('newcomment
');
480 foreach ($userlist AS $userid => $user)
482 $this->notices["$user[userid]"][] = sprintf(
483 _('The following comment was added by %
1$s on %
2$s:
484 ============================================
486 ============================================'),
488 construct_user_display($this->registry->userinfo, false),
489 $this->registry->modules['date
']->format($this->registry->options['dateformat
'], $comment['dateline
']),
495 // ###################################################################
497 * A notice for an individual field changing.
501 * @param string Field name
502 * @param mixed Original value
503 * @param mixed Modified value
505 function notice_other_change($name, $old, $new)
507 $userlist = $this->fetch_users_with_on_bit('otherfield
');
508 foreach ($userlist AS $userid => $user)
510 $this->notices["$user[userid]"][] = sprintf(
511 _('The %
1$s field changed from
"%2$s" to "%
3$s".'),
520 // ###################################################################
522 * Sends appropriate users a notice when a new attachment has been
527 * @param array AttachmentAPI->values array
528 * @param array List of all attachments made obsolete
529 * @param array Newly-inserted attachment ID
531 function send_new_attachment_notice($attachment, $obsolete, $id)
533 $userlist = $this->fetch_users_with_on_bit('newattachment
');
534 foreach ($userlist AS $userid => $user)
536 $this->notices["$userid"][] = sprintf(
537 _('%
1$s has uploaded a
new attachment
:
538 ============================================
541 File size
: %
4$s Bytes
544 ============================================'),
546 construct_user_display($this->registry->userinfo, false),
547 $attachment['filename
'],
548 $attachment['description
'],
549 $attachment['filesize
'],
550 implode(', ', (array)$obsolete),
551 $this->registry->options['trackerurl
'] . '/viewattachment
.php
?attachmentid
=' . $id
556 // ###################################################################
558 * Sends a new bug notification notice to all those who have the option
559 * turned no. This does not use fetch_users_with_on_bit() because a
560 * query is more effective.
564 * @param array Bug values array
565 * @param array Comment values array
567 function send_new_bug_notice($bug, $comment)
569 $userinfo = $this->registry->db->query("
570 SELECT user.*, useremail.*
571 FROM " . TABLE_PREFIX . "useremail AS useremail
572 LEFT JOIN " . TABLE_PREFIX . "user AS user
573 ON (user.userid = useremail.userid)
574 WHERE useremail.relation = 0
575 AND useremail.mask & " . $this->registry->emailoptions['notifications
']['newbug
'] . "
577 while ($user = $this->registry->db->fetch_array($userinfo))
579 if (!is_array($this->users["$user[userid]"]))
581 $this->notices["$user[userid]"][] = sprintf(
583 This bug has been added to the database
:
584 ============================================
588 Product
/Component
/Version
: %
4$s
590 --------------------------------------------
592 --------------------------------------------
593 ============================================'),
596 construct_user_display($this->registry->userinfo, false),
597 $this->registry->datastore['product
']["$bug[product]"]['title
'] . '/' . ($bug['component
'] ? $this->registry->datastore['product
']["$bug[component]"]['title
'] . '/' : '') . $this->registry->datastore['version
']["$bug[version]"]['version
'],
600 $this->users["$user[userid]"] = $user;
601 unset($this->users["$user[userid]"]['mask
'], $this->users["$user[userid]"]['relation
']);
603 $this->users["$user[userid]"]['options
']["$user[relation]"] = $user['mask
'];
607 // ###################################################################
609 * Generates an array of users who have a given email notification flag
610 * turned on in their bitfields.
614 * @param string Notification bitfield name
616 * @return array Array of users and their data
618 function fetch_users_with_on_bit($bitname)
622 foreach ($this->users AS $user)
624 foreach ($this->registry->emailoptions['relations
'] AS $name => $bit)
626 if (in_array($user['userid
'], $this->roles["$name"]) AND $user['options
']["$bit"] & $this->registry->emailoptions['notifications
']["$bitname"])
628 $idlist[] = $user['userid
'];
633 $masters = array_unique($idlist);
636 foreach ($masters AS $userid)
638 $return["$userid"] =& $this->users["$userid"];
644 // ###################################################################
646 * Compiles and sends the actual emails to users.
652 // get the current bug for permissions checks
653 $bug = $this->registry->db->query_first("SELECT * FROM " . TABLE_PREFIX . "bug WHERE bugid = " . $this->bug['bugid
']);
654 $this->registry->mail->setSubject(sprintf(_('%
1$s Bug Notification
- %
2$s'), $this->registry
->options
['trackertitle'], $this->bug
['summary']));
655 foreach ($this->notices
AS $userid => $noticelist)
657 if ($userid == $this->registry
->userinfo
['userid'])
662 // we wouldn't want people who favorite bugs getting hidden notices
663 if (!check_bug_permissions($bug, $this->users
["$userid"]))
665 $this->registry->debug("skipping user
$userid ({$this
->users
[$userid
]['email']}) because of permissions
");
669 $this->registry->mail->setBodyText(sprintf(_('Hi %1$s,
671 You are receiving this email because you have opted to get notifications for the %2$s bug tracker.
673 The bug is "%
5$s" (id
: %
6$s) located at %
4$s/showreport
.php
?bugid
=%
6$s
675 Here are the notices
:
676 ###################################################################
680 ###################################################################
681 If you no longer want to receive email from us
, please log into your account
and click the
"My Controls" tab at the top of the screen to change email preferences
.
684 $this->users
["$userid"]['displayname'],
685 $this->registry->options['trackertitle'],
686 implode("\n\n
", $noticelist),
687 $this->registry->options['trackerurl'],
688 $this->bug['summary'],
691 $this->registry->mail->send($this->users["$userid"]['email'], $this->users
["$userid"]['displayname']);
696 /*=====================================================================*\
697 || ###################################################################
700 || ###################################################################
701 \*=====================================================================*/