2006-09-07 09:04:15 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* eGroupWare - Notifications
|
|
|
|
*
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package notifications
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @author Cornelius Weiss <nelius@cwtech.de>
|
2006-09-25 12:20:46 +02:00
|
|
|
* @version $Id$
|
2006-09-07 09:04:15 +02:00
|
|
|
*/
|
|
|
|
|
2007-11-22 09:29:16 +01:00
|
|
|
require_once(EGW_INCLUDE_ROOT.'/phpgwapi/inc/class.html.inc.php');
|
|
|
|
require_once(EGW_INCLUDE_ROOT.'/phpgwapi/inc/class.config.inc.php');
|
|
|
|
|
2006-09-07 09:04:15 +02:00
|
|
|
/**
|
|
|
|
* Notifies users according to their preferences.
|
|
|
|
*
|
|
|
|
* @abstract NOTE: This is for instant notifications. If you need time dependend notifications use the
|
|
|
|
* asyncservices wrapper!
|
|
|
|
*
|
|
|
|
* The classes doing the notifications are called notification_<method> and should only be
|
|
|
|
* called from this class.
|
|
|
|
* The <method> gets extractd out of the preferences labels.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
final class notification {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Appname
|
|
|
|
*/
|
|
|
|
const _appname = 'notifications';
|
|
|
|
|
2007-11-22 09:29:16 +01:00
|
|
|
/**
|
|
|
|
* pre-defined notificaton chains
|
|
|
|
* @abstract
|
|
|
|
* arrays with name => chain pairs
|
|
|
|
* the chain itself consists of an array with framework => action pairs
|
|
|
|
* where action defines what to do after the framework has been executed:
|
|
|
|
* stop: stop executing notifications
|
|
|
|
* fail: do not stop if framework fails, otherwise stop
|
|
|
|
* continue: execute next framework
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
private $notification_chains = array(
|
|
|
|
'disable' => false,
|
|
|
|
'popup_only' => array('popup' => 'stop'),
|
|
|
|
'winpopup_only' => array('winpopup' => 'stop'),
|
|
|
|
'email_only' => array('email' => 'stop'),
|
|
|
|
'popup_or_email' => array('popup' => 'fail', 'email' => 'stop'),
|
|
|
|
'winpopup_or_email' => array('winpopup' => 'fail', 'email' => 'stop'),
|
|
|
|
'popup_and_email' => array('popup' => 'continue', 'email' => 'stop'),
|
|
|
|
'winpopup_and_email' => array('winpopup' => 'continue', 'email' => 'stop'),
|
|
|
|
'egwpopup_and_winpopup' => array('popup' => 'continue', 'winpopup' => 'stop'),
|
|
|
|
'all' => array('popup' => 'continue', 'winpopup' => 'continue', 'email' => 'stop'),
|
|
|
|
);
|
|
|
|
|
2006-09-07 09:04:15 +02:00
|
|
|
/**
|
|
|
|
* array with objects of receivers
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
private $receivers = array();
|
|
|
|
|
2007-11-22 09:29:16 +01:00
|
|
|
/**
|
|
|
|
* objects of sender
|
|
|
|
* @var object
|
|
|
|
*/
|
|
|
|
private $sender;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* holds notification subject
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private $subject = '';
|
|
|
|
|
2006-09-07 09:04:15 +02:00
|
|
|
/**
|
2007-11-30 06:38:31 +01:00
|
|
|
* holds notification message in plaintext
|
2006-09-07 09:04:15 +02:00
|
|
|
* @var string
|
|
|
|
*/
|
2007-11-30 06:38:31 +01:00
|
|
|
private $message_plain = '';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* holds notification message in html
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private $message_html = '';
|
2006-09-07 09:04:15 +02:00
|
|
|
|
|
|
|
/**
|
2007-11-22 09:29:16 +01:00
|
|
|
* array with objects of links
|
|
|
|
* @var array
|
2006-09-07 09:04:15 +02:00
|
|
|
*/
|
2007-11-22 09:29:16 +01:00
|
|
|
private $links = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* array with objects of attachments
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
private $attachments = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* holds html object to render elements
|
|
|
|
*
|
|
|
|
* @var object
|
|
|
|
*/
|
|
|
|
private $html;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* holds config object (sitewide configuration of app)
|
|
|
|
*
|
|
|
|
* @var object
|
|
|
|
*/
|
|
|
|
private $config;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* constructor of notification
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function __construct() {
|
|
|
|
$this->html = & html::singleton();
|
|
|
|
$config = new config(self::_appname);
|
|
|
|
$this->config = (object) $config->read_repository();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set sender for the current notification
|
|
|
|
*
|
|
|
|
* @param $_sender object of account
|
|
|
|
* as long as the accounts class isn't a nice object, it's an int with the account id :-(
|
|
|
|
*/
|
|
|
|
public function set_sender($_sender) {
|
|
|
|
$this->sender = is_object($_sender) ? $_sender : (object) $GLOBALS['egw']->accounts->get_account_data($_sender);
|
2006-09-07 09:04:15 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set receivers for the current notification
|
|
|
|
*
|
|
|
|
* @param array $_receivers array with objects of accounts
|
|
|
|
* as long as the accounts class isn't a nice object, it's an array of account id's :-(
|
|
|
|
*/
|
|
|
|
public function set_receivers(array $_receivers) {
|
|
|
|
foreach ($_receivers as $receiver_id) {
|
|
|
|
$receiver = $GLOBALS['egw']->accounts->get_account_data($receiver_id);
|
|
|
|
$receiver[$receiver_id]['id'] = $receiver_id;
|
|
|
|
$this->receivers[$receiver_id] = (object)$receiver[$receiver_id];
|
|
|
|
}
|
2007-11-22 09:29:16 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* sets notification subject
|
|
|
|
*
|
|
|
|
* @param string $_subject
|
|
|
|
*/
|
|
|
|
public function set_subject($_subject) {
|
|
|
|
$this->subject = $_subject;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* sets notification message
|
2007-11-30 06:38:31 +01:00
|
|
|
* @abstract $_message accepts plaintext or html
|
2007-11-22 09:29:16 +01:00
|
|
|
* NOTE: There is no XSS prevention in notifications framework!
|
2007-11-30 06:38:31 +01:00
|
|
|
* You have to filter userinputs yourselve (e.g. htmlspechialchars() )
|
|
|
|
* If you want to set plain AND html messages, just call this function
|
|
|
|
* two times, it autodetects the type of your input
|
2007-11-22 09:29:16 +01:00
|
|
|
*
|
|
|
|
* @param string $_message
|
|
|
|
*/
|
|
|
|
public function set_message($_message) {
|
2007-11-30 06:38:31 +01:00
|
|
|
if(strlen($_message) == strlen(strip_tags($_message))) {
|
|
|
|
$this->message_plain = $_message;
|
|
|
|
} else {
|
|
|
|
$this->message_html = $_message;
|
|
|
|
}
|
2007-11-22 09:29:16 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* sets the notification links
|
|
|
|
*
|
|
|
|
* @param array $links link array (like defined in $this->add_link)
|
|
|
|
*/
|
|
|
|
public function set_links(array $_links) {
|
|
|
|
$this->links = array(); // clear array if set
|
|
|
|
foreach($_links as $link) {
|
|
|
|
if(is_array($link)) {
|
|
|
|
$this->add_link($link['menuaction'], $link['params'], $link['text']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* adds a notification link
|
|
|
|
*
|
|
|
|
* @param string $menuaction egw menuaction (appname.classname.functionname)
|
|
|
|
* @param array $params params to append (name => value pairs)
|
|
|
|
* @param string $text a descriptive text for the link
|
|
|
|
*/
|
|
|
|
public function add_link($_menuaction, $_params, $_text) {
|
|
|
|
if(!$_menuaction || !$_params || !$_text) { return false; }
|
|
|
|
$this->links[] = (object)array( 'menuaction' => $_menuaction,
|
|
|
|
'params' => $_params,
|
|
|
|
'text' => $_text,
|
|
|
|
);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* sets the notification attachments
|
|
|
|
*
|
|
|
|
* @param array $attachments attachment array (like defined in $this->add_attachment
|
|
|
|
*/
|
|
|
|
public function set_attachments(array $_attachments) {
|
|
|
|
$this->attachments = array(); // clear array if set
|
|
|
|
foreach($_attachments as $attachment) {
|
|
|
|
if(is_array($attachment)) {
|
|
|
|
$this->add_attachment( $attachment['string'],
|
|
|
|
$attachment['filename'],
|
|
|
|
$attachment['encoding'],
|
|
|
|
$attachment['type']
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* adds a notification attachment
|
|
|
|
* This method can be used to attach ascii or binary data,
|
|
|
|
* such as a BLOB record from a database.
|
|
|
|
*
|
|
|
|
* @param string $string Attachment data.
|
|
|
|
* @param string $filename Name of the attachment.
|
|
|
|
* @param string $encoding File encoding (see $Encoding).
|
|
|
|
* @param string $type File extension (MIME) type.
|
|
|
|
*/
|
|
|
|
public function add_attachment($_string, $_filename, $_encoding = "base64", $_type = "application/octet-stream") {
|
|
|
|
if(!$_string || !$_filename) { return false; }
|
|
|
|
$this->attachments[] = (object)array( 'string' => $_string,
|
|
|
|
'filename' => $_filename,
|
|
|
|
'encoding' => $_encoding,
|
|
|
|
'type' => $_type,
|
|
|
|
);
|
|
|
|
return true;
|
2006-09-07 09:04:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* sends notification
|
|
|
|
*/
|
|
|
|
public function send() {
|
2007-11-30 06:38:31 +01:00
|
|
|
if (empty($this->receivers) || (empty($this->message_plain) && empty($this->message_html))) {
|
2007-11-22 09:29:16 +01:00
|
|
|
throw new Exception('Error: Could not send notification. No receiver or no message where supplied');
|
2006-09-07 09:04:15 +02:00
|
|
|
}
|
2007-11-30 06:38:31 +01:00
|
|
|
if(!$messages = $this->create_messages($this->message_plain, $this->message_html, $this->links)) {
|
|
|
|
throw new Exception('Error: Could not send notification. Generating the messages failed');
|
|
|
|
}
|
2006-09-07 09:04:15 +02:00
|
|
|
foreach ($this->receivers as $receiver) {
|
2007-11-30 06:38:31 +01:00
|
|
|
$user_notified = false;
|
|
|
|
$backend_errors = array();
|
2007-11-22 09:29:16 +01:00
|
|
|
try {
|
|
|
|
// check if the receiver has rights to run the notifcation app
|
|
|
|
$ids = $GLOBALS['egw']->accounts->memberships($receiver->id,true);
|
|
|
|
$ids[] = $receiver->id;
|
|
|
|
if (!$GLOBALS['egw']->acl->get_specific_rights_for_account($ids,'run','notifications')) {
|
2007-11-30 06:38:31 +01:00
|
|
|
throw new Exception('Could not send notification to user '.$receiver->lid.' because of missing execute rights on notification-app.');
|
2007-11-22 09:29:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$prefs = new preferences($receiver->id);
|
|
|
|
$preferences = $prefs->read();
|
|
|
|
$preferences = (object)$preferences[self::_appname];
|
|
|
|
$notification_chain = $this->notification_chains[$preferences->notification_chain];
|
|
|
|
if(!is_array($notification_chain)) {
|
2007-11-30 06:38:31 +01:00
|
|
|
throw new Exception('Could not send notification to user '.$receiver->lid.' because of missing notification settings.');
|
2007-11-22 09:29:16 +01:00
|
|
|
}
|
|
|
|
|
2007-11-30 06:38:31 +01:00
|
|
|
foreach($notification_chain as $notification_backend => $action) {
|
|
|
|
try {
|
|
|
|
$notification_backend = 'notification_'.$notification_backend;
|
|
|
|
if(!file_exists(EGW_INCLUDE_ROOT. SEP. self::_appname. SEP. 'inc'. SEP. 'class.'. $notification_backend. '.inc.php')) {
|
|
|
|
throw new Exception('file for '.$notification_backend. ' does not exist');
|
|
|
|
}
|
|
|
|
require_once(EGW_INCLUDE_ROOT. SEP. self::_appname. SEP. 'inc'. SEP. 'class.'. $notification_backend. '.inc.php');
|
|
|
|
$obj = @new $notification_backend( $this->sender, $receiver, $this->config, $preferences );
|
|
|
|
if ( !is_a( $obj, iface_notification )) {
|
|
|
|
unset ( $obj );
|
|
|
|
throw new Exception($notification_backend. ' is no implementation of iface_notification');
|
|
|
|
}
|
2007-11-22 09:29:16 +01:00
|
|
|
|
2007-11-30 06:38:31 +01:00
|
|
|
$obj->send($this->subject, $messages, $this->attachments);
|
2007-11-22 09:29:16 +01:00
|
|
|
}
|
2007-11-30 06:38:31 +01:00
|
|
|
catch (Exception $exception) {
|
|
|
|
$backend_errors[] = $notification_backend.' failed: '.$exception->getMessage();
|
|
|
|
// try next backend
|
|
|
|
if($action == 'fail' || $action == 'continue') {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// all backends failed - give error message
|
|
|
|
if(!$user_notified) {
|
|
|
|
error_log('Error: notification of receiver '.$receiver->lid.' failed for the following reasons:');
|
|
|
|
foreach($backend_errors as $id=>$backend_error) {
|
|
|
|
error_log($backend_error);
|
|
|
|
}
|
2007-11-22 09:29:16 +01:00
|
|
|
}
|
2007-11-30 06:38:31 +01:00
|
|
|
break; // stop running through chain
|
2007-11-22 09:29:16 +01:00
|
|
|
}
|
2007-11-30 06:38:31 +01:00
|
|
|
// backend sucseeded
|
|
|
|
$user_notified = true;
|
|
|
|
if($action == 'stop' || $action == 'fail') { break; } // stop running through chain
|
2006-09-07 09:04:15 +02:00
|
|
|
}
|
2007-11-30 06:38:31 +01:00
|
|
|
}
|
|
|
|
catch (Exception $exception_user) {
|
|
|
|
error_log('Error: notification of receiver '.$receiver->lid.' failed: '.$exception_user->getMessage());
|
2006-09-07 09:04:15 +02:00
|
|
|
}
|
|
|
|
}
|
2007-11-22 09:29:16 +01:00
|
|
|
return true;
|
2006-09-07 09:04:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gets message
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function get_message() {
|
|
|
|
return $this->message;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gets receivers
|
|
|
|
*
|
|
|
|
* @return array of account objects
|
|
|
|
*/
|
|
|
|
public function get_receivers() {
|
|
|
|
return $this->receivers;
|
|
|
|
}
|
2007-11-22 09:29:16 +01:00
|
|
|
|
2007-06-01 13:43:08 +02:00
|
|
|
/**
|
2007-11-22 09:29:16 +01:00
|
|
|
* this function creates an array with the message as plaintext and html
|
2007-11-30 06:38:31 +01:00
|
|
|
* including given links for internal usage or external mailers
|
2007-06-01 13:43:08 +02:00
|
|
|
*
|
2007-11-30 06:38:31 +01:00
|
|
|
* @param string $message_plain
|
|
|
|
* @param string $message_html
|
2007-11-22 09:29:16 +01:00
|
|
|
* @param array $links
|
|
|
|
* @return array $messages
|
2007-06-01 13:43:08 +02:00
|
|
|
*/
|
2007-11-30 06:38:31 +01:00
|
|
|
private function create_messages($_message_plain = '', $_message_html = '', $_links = false) {
|
|
|
|
if(empty($_message_plain) && empty($_message_html)) { return false; } // no message set
|
2007-11-22 09:29:16 +01:00
|
|
|
$messages = array();
|
|
|
|
$messages['plain'] = array();
|
|
|
|
$messages['html'] = array();
|
|
|
|
|
2007-11-30 06:38:31 +01:00
|
|
|
if(!empty($_message_plain)) {
|
|
|
|
$messages['plain']['text'] = $_message_plain;
|
|
|
|
} else {
|
|
|
|
$messages['plain']['text'] = strip_tags($_message_html);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!empty($_message_html)) {
|
|
|
|
$messages['html']['text'] = $_message_html;
|
2007-11-24 15:01:27 +01:00
|
|
|
} else {
|
2007-11-30 06:38:31 +01:00
|
|
|
$messages['html']['text'] = nl2br($_message_plain);
|
2007-11-24 15:01:27 +01:00
|
|
|
}
|
2007-11-30 06:38:31 +01:00
|
|
|
|
2007-11-22 09:29:16 +01:00
|
|
|
if(is_array($_links)) {
|
|
|
|
foreach($_links as $link) {
|
|
|
|
$params = '';
|
|
|
|
foreach($link->params as $param => $value) {
|
|
|
|
$params.='&'.$param.'='.$value;
|
|
|
|
}
|
|
|
|
$url = $GLOBALS['egw_info']['server']['webserver_url'].'/index.php?menuaction='.$link->menuaction.$params;
|
|
|
|
$menuaction_arr = explode('.',$link->menuaction);
|
|
|
|
$application = $menuaction_arr[0];
|
|
|
|
$image = $application ? $this->html->image($application,'navbar',$link->text,'align="middle"').' ' : '';
|
|
|
|
$messages['plain']['link_internal'] .= "\n".$url;
|
|
|
|
$messages['plain']['link_external'] .= "\n".$url.'&no_popup=1';
|
|
|
|
$messages['html']['link_internal'] .= '<br /><a href="'.$url.'" target="_blank">'.$image.$link->text.'</a>';
|
|
|
|
$messages['html']['link_external'] .= '<br /><a href="'.$url.'&no_popup=1" target="_blank">'.$link->text.'</a>';
|
|
|
|
$messages['html']['link_jspopup'] .= '<br /><div onclick="'.$this->popup($url).'">'.$image.$link->text.'</div>';
|
|
|
|
}
|
2007-06-01 13:43:08 +02:00
|
|
|
}
|
2007-11-22 09:29:16 +01:00
|
|
|
return $messages;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* returns javascript to open a popup window: window.open(...)
|
|
|
|
*
|
|
|
|
* @param string $link link or this.href
|
|
|
|
* @param string $target='_blank' name of target or this.target
|
|
|
|
* @param int $width=750 width of the window
|
|
|
|
* @param int $height=400 height of the window
|
|
|
|
* @return string javascript (using single quotes)
|
|
|
|
*/
|
|
|
|
private function popup($link,$target='_blank',$width=750,$height=410)
|
|
|
|
{
|
|
|
|
return 'egw_openWindowCentered2('.($link == 'this.href' ? $link : "'".$link."'").','.
|
|
|
|
($target == 'this.target' ? $target : "'".$target."'").",$width,$height,'yes')";
|
2007-05-28 23:17:15 +02:00
|
|
|
}
|
2007-06-01 13:43:08 +02:00
|
|
|
|
|
|
|
}
|