1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-18 05:09:05 +01:00
php-e107/e107_handlers/notify_class.php

304 lines
8.4 KiB
PHP
Raw Normal View History

2006-12-02 04:36:16 +00:00
<?php
/*
2008-12-21 18:15:04 +00:00
* e107 website system
*
2009-11-18 01:06:08 +00:00
* Copyright (C) 2008-2009 e107 Inc (e107.org)
2008-12-21 18:15:04 +00:00
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
* Forum plugin notify configuration
*
* $Source: /cvs_backup/e107_0.8/e107_handlers/notify_class.php,v $
2010-02-10 18:18:01 +00:00
* $Revision$
* $Date$
* $Author$
2008-12-21 18:15:04 +00:00
*
2006-12-02 04:36:16 +00:00
*/
2009-12-28 22:16:54 +00:00
/**
* @package e107
* @subpackage e107_handlers
2010-02-10 18:18:01 +00:00
* @version $Id$;
2009-12-28 22:16:54 +00:00
*
* Handler for 'notify' events - sends email notifications to the appropriate user groups
*/
2006-12-02 04:36:16 +00:00
if (!defined('e107_INIT')) { exit; }
2008-12-21 18:15:04 +00:00
class notify
{
2006-12-02 04:36:16 +00:00
var $notify_prefs;
2008-04-26 14:34:17 +00:00
function notify()
{
2012-10-10 23:21:47 +00:00
global $e_event;
$this->notify_prefs = e107::getConfig("notify")->getPref();
if(varset($this->notify_prefs['event']))
2008-04-26 14:34:17 +00:00
{
foreach ($this->notify_prefs['event'] as $id => $status)
2008-04-26 14:34:17 +00:00
{
if ($status['class'] != 255)
{
$e_event->register($id, 'notify_'.$id);
}
2006-12-02 04:36:16 +00:00
}
}
2008-04-26 14:34:17 +00:00
include_lan(e_LANGUAGEDIR.e_LANGUAGE.'/lan_notify.php');
2006-12-02 04:36:16 +00:00
}
/**
* Send an email notification following an event.
*
* For up to a (hard-coded) number of recipients, the mail is sent immediately.
* Otherwise its added to the queue
*
* @param string $id - identifies event actions
* @param string $subject - subject for email
* @param string $message - email message body
* @return none
2009-12-28 22:16:54 +00:00
*
* @todo handle 'everyone except' clauses (email address filter done)
* @todo set up pref to not notify originator of event which caused notify (see $blockOriginator)
*/
2008-12-21 18:15:04 +00:00
function send($id, $subject, $message)
{
$e107 = e107::getInstance();
$subject = $e107->tp->toEmail(SITENAME.': '.$subject);
$message = $e107->tp->toEmail($message);
$emailFilter = '';
$notifyTarget = $this->notify_prefs['event'][$id]['class'];
if ($notifyTarget == '-email')
2008-04-26 14:34:17 +00:00
{
$emailFilter = $this->notify_prefs['event'][$id]['email'];
2008-04-26 14:34:17 +00:00
}
2009-12-28 22:16:54 +00:00
$blockOriginator = FALSE; // TODO: set this using a pref
if (is_numeric($this -> notify_prefs['event'][$id]['class']))
2008-04-26 14:34:17 +00:00
{
switch ($notifyTarget)
2008-04-26 14:34:17 +00:00
{
case e_UC_MAINADMIN :
$qry = "`user_admin` = 1 AND `user_perms` = '0' AND `user_ban` = 0";
break;
case e_UC_ADMIN :
$qry = "`user_admin` = 1 AND `user_ban` = 0";
break;
case e_UC_MEMBER :
$qry = "`user_ban` = 0";
break;
default :
$qry = "user_ban = 0 AND user_class REGEXP '(^|,)(".$this->notify_prefs['event'][$id]['class'].")(,|$)'";
break;
2008-04-26 14:34:17 +00:00
}
$qry = 'SELECT user_id,user_name,user_email FROM `#user` WHERE '.$qry;
2009-12-28 22:16:54 +00:00
if ($blockOriginator)
{
$qry .= ' AND `user_id` != '.USERID;
}
if (FALSE !== ($count = $e107->sql->db_Select_gen($qry)))
2008-04-26 14:34:17 +00:00
{
if ($count <= 5)
{ // Arbitrary number below which we send emails immediately
e107_require_once(e_HANDLER.'mail.php');
while ($email = $e107->sql->db_Fetch())
{
if ($email['user_email'] != $emailFilter)
{
sendemail($email['user_email'], $subject, $message, $email['user_name']);
}
}
}
else
{ // Otherwise add to mailout queue
2012-05-09 14:51:38 +00:00
require_once(e_HANDLER.'mail_manager_class.php');
$mailer = new e107MailManager;
// Start by creating the mail body
$mailData = array(
'mail_content_status' => MAIL_STATUS_TEMP,
'mail_create_app' => 'notify',
'mail_title' => 'NOTIFY',
'mail_subject' => $subject,
'mail_sender_email' => $pref['siteadminemail'],
'mail_sender_name' => $pref['siteadmin'],
'mail_send_style' => 'textonly',
'mail_notify_complete' => 0, // NEVER notify when this email sent!!!!!
'mail_body' => $message
);
$result = $mailer->saveEmail($mailData, TRUE);
if (is_numeric($result))
{
$mailMainID = $mailData['mail_source_id'] = $result;
}
else
{
// TODO: Handle error
return; // Probably nothing else we can do
}
$mailer->mailInitCounters($mailMainID); // Initialise counters for emails added
// Now add email addresses to the list
while ($row = $e107->sql->db_Fetch(MYSQL_ASSOC))
{
if ($row['user_email'] != $emailFilter)
{
$uTarget = array('mail_recipient_id' => $row['user_id'],
'mail_recipient_name' => $row['user_name'], // Should this use realname?
'mail_recipient_email' => $row['user_email']
);
$result = $mailer->mailAddNoDup($mailMainID, $uTarget, MAIL_STATUS_TEMP);
}
}
$mailer->mailUpdateCounters($mailMainID); // Update the counters
$counters = $mailer->mailRetrieveCounters($mailMainID); // Retrieve the counters
if ($counters['add'] == 0)
{
$mailer->deleteEmail($mailMainID); // Probably a fault, but precautionary - delete email
}
else
{
$mailer->activateEmail($mailMainID, FALSE); // Actually mark the email for sending
}
}
$e107->admin_log->e_log_event(10,-1,'NOTIFY',$subject,$message,FALSE,LOG_TO_ROLLING);
2006-12-02 04:36:16 +00:00
}
2008-04-26 14:34:17 +00:00
}
elseif ($notifyTarget == 'email')
{ // Single email address - that can always go immediately
2009-12-28 22:16:54 +00:00
if (!$blockOriginator || ($this->notify_prefs['event'][$id]['email'] != USEREMAIL))
{
e107_require_once(e_HANDLER.'mail.php');
sendemail($this->notify_prefs['event'][$id]['email'], $subject, $message);
}
2006-12-02 04:36:16 +00:00
}
}
}
2008-12-21 18:15:04 +00:00
//DEPRECATED, BC, call the method only when needed, $e107->notify caught by __get()
2006-12-02 04:36:16 +00:00
global $nt;
$nt = e107::getNotify(); //TODO - find & replace $nt, $e107->notify
2006-12-02 04:36:16 +00:00
2008-12-21 18:15:04 +00:00
function notify_usersup($data)
{
2006-12-02 04:36:16 +00:00
global $nt;
foreach ($data as $key => $value)
{
if($key != "password1" && $key != "password2" && $key != "email_confirm" && $key != "register")
{
if(is_array($value)) // show user-extended values.
{
2008-12-21 18:15:04 +00:00
foreach($value as $k => $v)
2006-12-02 04:36:16 +00:00
{
2008-12-21 18:15:04 +00:00
$message .= str_replace("user_","",$k).': '.$v.'<br />';
2006-12-02 04:36:16 +00:00
}
}
else
{
$message .= $key.': '.$value.'<br />';
}
}
}
2008-12-21 18:15:04 +00:00
$nt->send('usersup', NT_LAN_US_1, $message);
2006-12-02 04:36:16 +00:00
}
2008-12-21 18:15:04 +00:00
function notify_userveri($data)
{
2006-12-02 04:36:16 +00:00
global $nt, $e107;
$msgtext = NT_LAN_UV_2.$data['user_id']."\n";
$msgtext .= NT_LAN_UV_3.$data['user_loginname']."\n";
$msgtext .= NT_LAN_UV_4.e107::getIPHandler()->getIP(FALSE);
2008-12-21 18:15:04 +00:00
$nt->send('userveri', NT_LAN_UV_1, $msgtext);
2006-12-02 04:36:16 +00:00
}
2008-12-21 18:15:04 +00:00
function notify_login($data)
{
2006-12-02 04:36:16 +00:00
global $nt;
foreach ($data as $key => $value) {
$message .= $key.': '.$value.'<br />';
}
2008-12-21 18:15:04 +00:00
$nt->send('login', NT_LAN_LI_1, $message);
2006-12-02 04:36:16 +00:00
}
2008-12-21 18:15:04 +00:00
function notify_logout()
{
2006-12-02 04:36:16 +00:00
global $nt;
2008-12-21 18:15:04 +00:00
$nt->send('logout', NT_LAN_LO_1, USERID.'. '.USERNAME.' '.NT_LAN_LO_2);
2006-12-02 04:36:16 +00:00
}
2008-12-21 18:15:04 +00:00
function notify_flood($data)
{
2006-12-02 04:36:16 +00:00
global $nt;
2008-12-21 18:15:04 +00:00
$nt->send('flood', NT_LAN_FL_1, NT_LAN_FL_2.': '.$data);
2006-12-02 04:36:16 +00:00
}
2008-12-21 18:15:04 +00:00
function notify_subnews($data)
{
2006-12-02 04:36:16 +00:00
global $nt,$tp;
foreach ($data as $key => $value) {
$message .= $key.': '.$value.'<br />';
}
2008-12-21 18:15:04 +00:00
$nt->send('subnews', NT_LAN_SN_1, $message);
2006-12-02 04:36:16 +00:00
}
2008-12-21 18:15:04 +00:00
function notify_newspost($data)
{
$message = '<b>'.$data['news_title'].'</b>';
if (vartrue($data['news_summary'])) $message .= '<br /><br />'.$data['news_summary'];
if (vartrue($data['news_body'])) $message .= '<br /><br />'.$data['news_body'];
if (vartrue($data['news_extended'])) $message.= '<br /><br />'.$data['news_extended'];
e107::getNotify()->send('newspost', $data['news_title'], e107::getParser()->text_truncate(e107::getParser()->toDB($message), 400, '...'));
2006-12-02 04:36:16 +00:00
}
2008-12-21 18:15:04 +00:00
function notify_newsupd($data)
{
$message = '<b>'.$data['news_title'].'</b>';
if (vartrue($data['news_summary'])) $message .= '<br /><br />'.$data['news_summary'];
if (vartrue($data['news_body'])) $message .= '<br /><br />'.$data['news_body'];
if (vartrue($data['news_extended'])) $message.= '<br /><br />'.$data['news_extended'];
e107::getNotify()->send('newsupd', NT_LAN_NU_1.': '.$data['news_title'], e107::getParser()->text_truncate(e107::getParser()->toDB($message), 400, '...'));
2006-12-02 04:36:16 +00:00
}
2008-12-21 18:15:04 +00:00
function notify_newsdel($data)
{
2006-12-02 04:36:16 +00:00
global $nt;
2008-12-21 18:15:04 +00:00
$nt->send('newsdel', NT_LAN_ND_1, NT_LAN_ND_2.': '.$data);
2006-12-02 04:36:16 +00:00
}
function notify_maildone($data)
{
$message = '<b>'.$data['mail_subject'].'</b><br /><br />'.$data['mail_body'];
e107::getNotify()->send('maildone', NT_LAN_ML_1.': '.$data['mail_subject'], $message);
}
2008-12-21 18:15:04 +00:00
function notify_fileupload($data)
{
2006-12-02 04:36:16 +00:00
global $nt;
$message = '<b>'.$data['upload_name'].'</b><br /><br />'.$data['upload_description'].'<br /><br />'.$data['upload_size'].'<br /><br />'.$data['upload_user'];
2008-12-21 18:15:04 +00:00
$nt->send('fileupload', $data['upload_name'], $message);
2006-12-02 04:36:16 +00:00
}
2008-12-21 18:15:04 +00:00
if (isset($nt->notify_prefs['plugins']))
{
foreach ($nt->notify_prefs['plugins'] as $plugin_id => $plugin_settings)
{
2006-12-02 04:36:16 +00:00
if(is_readable(e_PLUGIN.$plugin_id.'/e_notify.php'))
{
require_once(e_PLUGIN.$plugin_id.'/e_notify.php');
}
}
}
2008-12-21 18:15:04 +00:00
?>