d63d25a61d
o Add news parameters o Add file functions_notification_by_mail.inc.php in order to use in future, these functions on php file of subscribe/unsubscribe o Write a little html help file + improve mass_update in order to used binary fields (used collate and SHOW COLUMNS FROM) git-svn-id: http://piwigo.org/svn/trunk@1105 68402e56-0260-453c-a942-63ccdbb3a9ee
564 lines
No EOL
18 KiB
PHP
564 lines
No EOL
18 KiB
PHP
<?php
|
|
// +-----------------------------------------------------------------------+
|
|
// | PhpWebGallery - a PHP based picture gallery |
|
|
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
|
|
// | Copyright (C) 2003-2006 PhpWebGallery Team - http://phpwebgallery.net |
|
|
// | Copyright (C) 2006 Ruben ARNAUD - team@phpwebgallery.net |
|
|
// +-----------------------------------------------------------------------+
|
|
// | branch : BSF (Best So Far)
|
|
// | file : $RCSfile$
|
|
// | last update : $Date$
|
|
// | last modifier : $Author$
|
|
// | revision : $Revision$
|
|
// +-----------------------------------------------------------------------+
|
|
// | This program is free software; you can redistribute it and/or modify |
|
|
// | it under the terms of the GNU General Public License as published by |
|
|
// | the Free Software Foundation |
|
|
// | |
|
|
// | This program is distributed in the hope that it will be useful, but |
|
|
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
|
// | General Public License for more details. |
|
|
// | |
|
|
// | You should have received a copy of the GNU General Public License |
|
|
// | along with this program; if not, write to the Free Software |
|
|
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
|
// | USA. |
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
// | include |
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
if (!defined('PHPWG_ROOT_PATH'))
|
|
{
|
|
die ("Hacking attempt!");
|
|
}
|
|
|
|
include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
|
|
include_once(PHPWG_ROOT_PATH.'admin/include/functions_notification_by_mail.inc.php');
|
|
include_once(PHPWG_ROOT_PATH.'include/common.inc.php');
|
|
include_once(PHPWG_ROOT_PATH.'include/functions_notification.inc.php');
|
|
include_once(PHPWG_ROOT_PATH.'include/functions_mail.inc.php');
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
// | Check Access and exit when user status is not ok |
|
|
// +-----------------------------------------------------------------------+
|
|
check_status(ACCESS_ADMINISTRATOR);
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
// | functions |
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
/*
|
|
* Get the authorized_status for each tab
|
|
* return corresponding status
|
|
*/
|
|
function get_tab_status($mode)
|
|
{
|
|
$result = ACCESS_WEBMASTER;
|
|
switch ($mode)
|
|
{
|
|
case 'param':
|
|
case 'subscribe' :
|
|
$result = ACCESS_WEBMASTER;
|
|
break;
|
|
case 'send' :
|
|
$result = ACCESS_ADMINISTRATOR;
|
|
break;
|
|
default:
|
|
$result = ACCESS_WEBMASTER;
|
|
break;
|
|
}
|
|
return $result;
|
|
}
|
|
|
|
/*
|
|
* Inserting News users
|
|
*/
|
|
function insert_new_data_user_mail_notification()
|
|
{
|
|
global $conf, $page;
|
|
|
|
// Set null mail_address empty
|
|
$query = '
|
|
update
|
|
'.USERS_TABLE.'
|
|
set
|
|
mail_address = null
|
|
where
|
|
trim(mail_address) = \'\';';
|
|
pwg_query($query);
|
|
|
|
// null mail_address are not selected in the list
|
|
$query = '
|
|
select
|
|
u.id user_id, u.username, u.mail_address
|
|
from
|
|
'.USERS_TABLE.' as u left join '.USER_MAIL_NOTIFICATION_TABLE.' as m on u.id = m.user_id
|
|
where
|
|
u.mail_address is not null and
|
|
m.user_id is null
|
|
order by
|
|
id;';
|
|
|
|
$result = pwg_query($query);
|
|
|
|
if (mysql_num_rows($result) > 0)
|
|
{
|
|
$inserts = array();
|
|
$check_key_list = array();
|
|
|
|
while ($row = mysql_fetch_array($result))
|
|
{
|
|
// Calculate key
|
|
$row['check_key'] = find_available_check_key();
|
|
|
|
// Save key
|
|
array_push($check_key_list, $row['check_key']);
|
|
|
|
// Insert new rows
|
|
array_push
|
|
(
|
|
$inserts,
|
|
array
|
|
(
|
|
'user_id' => $row['user_id'],
|
|
'check_key' => $row['check_key'],
|
|
'enabled' => 'false' // By default if false, set to true with specific functions
|
|
)
|
|
);
|
|
|
|
array_push($page['infos'], sprintf(l10n('nbm_User %s [%s] added.'), $row['username'], $row['mail_address']));
|
|
}
|
|
|
|
// Insert new rows
|
|
mass_inserts(USER_MAIL_NOTIFICATION_TABLE, array('user_id', 'check_key', 'enabled'), $inserts);
|
|
// Update field enabled with specific function
|
|
do_subscribe_unsubcribe_notification_by_mail
|
|
(
|
|
($conf['default_value_user_mail_notification_enabled'] == true ? true : false),
|
|
$check_key_list
|
|
);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Send mail for notification to all users
|
|
* Return list of "treated/selected" users
|
|
*/
|
|
function do_action_send_mail_notification($action = 'prepare', $check_key_list = array(), $customize_mail_content = '')
|
|
{
|
|
global $conf, $page, $user, $lang_info, $lang;
|
|
list($dbnow) = mysql_fetch_row(pwg_query('SELECT NOW();'));
|
|
$return_list = array();
|
|
$is_action_send = ($action == 'send');
|
|
|
|
$quoted_check_key_list = quote_check_key_list($check_key_list);
|
|
if (count($quoted_check_key_list) != 0 )
|
|
{
|
|
$query_and_check_key = ' and
|
|
check_key in ('.implode(",", $quoted_check_key_list).') ';
|
|
}
|
|
else
|
|
{
|
|
$query_and_check_key = '';
|
|
}
|
|
|
|
if (isset($customize_mail_content))
|
|
{
|
|
$customize_mail_content = $conf['nbm_complementary_mail_content'];
|
|
}
|
|
|
|
// disabled and null mail_address are not selected in the list
|
|
$query = '
|
|
select
|
|
N.user_id, N.check_key, U.username, U.mail_address, N.last_send
|
|
from
|
|
'.USER_MAIL_NOTIFICATION_TABLE.' as N,
|
|
'.USERS_TABLE.' as U
|
|
where
|
|
N.user_id = U.id and
|
|
N.enabled = \'true\' and
|
|
U.mail_address is not null'.$query_and_check_key.'
|
|
order by
|
|
username;';
|
|
|
|
$result = pwg_query($query);
|
|
|
|
if (mysql_num_rows($result) > 0)
|
|
{
|
|
$error_on_mail_count = 0;
|
|
$sent_mail_count = 0;
|
|
$datas = array();
|
|
// Save $user, $lang_info and $lang arrays (include/user.inc.php has been executed)
|
|
$sav_mailtousers_user = $user;
|
|
$sav_mailtousers_lang_info = $lang_info;
|
|
$sav_mailtousers_lang = $lang;
|
|
// Save message info and error in the original language
|
|
$msg_info = l10n('nbm_Mail sent to %s [%s].');
|
|
$msg_error = l10n('nbm_Error when sending email to %s [%s].');
|
|
// Last Language
|
|
$last_mailtousers_language = $user['language'];
|
|
|
|
if ($is_action_send)
|
|
{
|
|
// Init mail configuration
|
|
$send_as_name = ((isset($conf['nbm_send_mail_as']) and !empty($conf['nbm_send_mail_as'])) ? $conf['nbm_send_mail_as'] : $conf['gallery_title']);
|
|
$send_as_mail_address = get_webmaster_mail_address();
|
|
$send_as_mail_formated = format_email($send_as_name, $send_as_mail_address);
|
|
}
|
|
|
|
while ($row = mysql_fetch_array($result))
|
|
{
|
|
$user = array();
|
|
$user['id'] = $row['user_id'];
|
|
$user = array_merge($user, getuserdata($user['id'], true));
|
|
|
|
if ($last_mailtousers_language != $user['language'])
|
|
{
|
|
$last_mailtousers_language = $user['language'];
|
|
|
|
// Re-Init language arrays
|
|
$lang_info = array();
|
|
$lang = array();
|
|
|
|
// language files
|
|
include(get_language_filepath('common.lang.php'));
|
|
// No test admin because script is checked admin (user selected no)
|
|
// Translations are in admin file too
|
|
include(get_language_filepath('admin.lang.php'));
|
|
}
|
|
|
|
$message = '';
|
|
$news = news($row['last_send'], $dbnow);
|
|
if (count($news) > 0)
|
|
{
|
|
array_push($return_list, $row);
|
|
|
|
if ($is_action_send)
|
|
{
|
|
$subject = '['.$conf['gallery_title'].']: '.l10n('nbm_ContentObject');
|
|
$message .= sprintf(l10n('nbm_ContentHello'), $row['username']).",\n\n";
|
|
|
|
if (!is_null($row['last_send']))
|
|
$message .= sprintf(l10n('nbm_ContentNewElementsBetween'), $row['last_send'], $dbnow);
|
|
else
|
|
$message .= sprintf(l10n('nbm_ContentNewElements'), $dbnow);
|
|
|
|
if ($conf['nbm_send_detailed_content'])
|
|
{
|
|
$message .= ":\n";
|
|
|
|
foreach ($news as $line)
|
|
{
|
|
$message .= ' o '.$line."\n";
|
|
}
|
|
$message .= "\n";
|
|
}
|
|
else
|
|
{
|
|
$message .= ".\n";
|
|
}
|
|
|
|
$message .= sprintf(l10n('nbm_ContentGoTo'), $conf['gallery_title'], $conf['gallery_url'])."\n\n";
|
|
$message .= $customize_mail_content."\n\n";
|
|
$message .= l10n('nbm_ContentByeBye')."\n ".$send_as_name."\n\n";
|
|
$message .= "\n".sprintf(l10n('nbm_ContentUnsubscribe'), $send_as_mail_address)."\n\n";
|
|
|
|
if (pwg_mail(format_email($row['username'], $row['mail_address']), $send_as_mail_formated, $subject, $message))
|
|
{
|
|
$sent_mail_count += 1;
|
|
array_push($page['infos'], sprintf($msg_info, $row['username'], $row['mail_address']));
|
|
$data = array('user_id' => $row['user_id'],
|
|
'last_send' => $dbnow);
|
|
array_push($datas, $data);
|
|
}
|
|
else
|
|
{
|
|
$error_on_mail_count += 1;
|
|
array_push($page['errors'], sprintf($msg_error, $row['username'], $row['mail_address']));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Restore $user, $lang_info and $lang arrays (include/user.inc.php has been executed)
|
|
$user = $sav_mailtousers_user;
|
|
$lang_info = $sav_mailtousers_lang_info;
|
|
$lang = $sav_mailtousers_lang;
|
|
|
|
if ($is_action_send)
|
|
{
|
|
mass_updates(
|
|
USER_MAIL_NOTIFICATION_TABLE,
|
|
array(
|
|
'primary' => array('user_id'),
|
|
'update' => array('last_send')
|
|
),
|
|
$datas
|
|
);
|
|
|
|
if ($error_on_mail_count != 0)
|
|
{
|
|
array_push($page['errors'], sprintf(l10n('nbm_%d mails were not sent.'), $error_on_mail_count));
|
|
}
|
|
else
|
|
{
|
|
if ($sent_mail_count == 0)
|
|
array_push($page['infos'], l10n('nbm_No mail to send.'));
|
|
else
|
|
array_push($page['infos'], sprintf(l10n('nbm_%d mails were sent.'), $sent_mail_count));
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if ($is_action_send)
|
|
{
|
|
array_push($page['errors'], l10n('nbm_No user to send notifications by mail.'));
|
|
}
|
|
}
|
|
return $return_list;
|
|
}
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
// | Main |
|
|
// +-----------------------------------------------------------------------+
|
|
if (!isset($_GET['mode']))
|
|
{
|
|
$page['mode'] = 'send';
|
|
}
|
|
else
|
|
{
|
|
$page['mode'] = $_GET['mode'];
|
|
}
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
// | Check Access and exit when user status is not ok |
|
|
// +-----------------------------------------------------------------------+
|
|
check_status(get_tab_status($page['mode']));
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
// | Insert new users with mails |
|
|
// +-----------------------------------------------------------------------+
|
|
if (!isset($_POST) or (count($_POST) ==0))
|
|
{
|
|
// No insert data in post mode
|
|
insert_new_data_user_mail_notification();
|
|
}
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
// | Treatment of tab post |
|
|
// +-----------------------------------------------------------------------+
|
|
switch ($page['mode'])
|
|
{
|
|
case 'param' :
|
|
{
|
|
$updated_param_count = 0;
|
|
// Update param
|
|
$result = pwg_query('select param, value from '.CONFIG_TABLE.' where param like \'nbm\\_%\'');
|
|
while ($row = mysql_fetch_array($result))
|
|
{
|
|
if (isset($_POST['param_submit']))
|
|
{
|
|
if (isset($_POST[$row['param']]))
|
|
{
|
|
$value = $_POST[$row['param']];
|
|
|
|
$query = '
|
|
update
|
|
'.CONFIG_TABLE.'
|
|
set
|
|
value = \''. str_replace("\'", "''", $value).'\'
|
|
where
|
|
param = \''.$row['param'].'\';';
|
|
pwg_query($query);
|
|
$updated_param_count += 1;
|
|
}
|
|
}
|
|
|
|
$conf[$row['param']] = $row['value'];
|
|
|
|
// if the parameter is present in $_POST array (if a form is submited), we
|
|
// override it with the submited value
|
|
if (isset($_POST[$row['param']]))
|
|
{
|
|
$conf[$row['param']] = stripslashes($_POST[$row['param']]);
|
|
}
|
|
|
|
// If the field is true or false, the variable is transformed into a
|
|
// boolean value.
|
|
if ($conf[$row['param']] == 'true' or $conf[$row['param']] == 'false')
|
|
{
|
|
$conf[$row['param']] = get_boolean($conf[$row['param']]);
|
|
}
|
|
}
|
|
|
|
if ($updated_param_count != 0)
|
|
{
|
|
array_push($page['infos'], sprintf(l10n('nbm_updated_param_count'), $updated_param_count));
|
|
}
|
|
}
|
|
case 'subscribe' :
|
|
{
|
|
if (isset($_POST['falsify']) and isset($_POST['cat_true']))
|
|
{
|
|
unsubcribe_notification_by_mail($_POST['cat_true']);
|
|
}
|
|
else
|
|
if (isset($_POST['trueify']) and isset($_POST['cat_false']))
|
|
{
|
|
subcribe_notification_by_mail($_POST['cat_false']);
|
|
}
|
|
break;
|
|
}
|
|
|
|
case 'send' :
|
|
{
|
|
if (isset($_POST['send_submit']) and isset($_POST['send_selection']) and isset($_POST['send_customize_mail_content']))
|
|
{
|
|
do_action_send_mail_notification('send', $_POST['send_selection'], $_POST['send_customize_mail_content']);
|
|
}
|
|
}
|
|
}
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
// | template initialization |
|
|
// +-----------------------------------------------------------------------+
|
|
$template->set_filenames
|
|
(
|
|
array
|
|
(
|
|
'double_select' => 'admin/double_select.tpl',
|
|
'notification_by_mail'=>'admin/notification_by_mail.tpl'
|
|
)
|
|
);
|
|
|
|
$base_url = get_root_url().'admin.php';
|
|
|
|
$template->assign_vars
|
|
(
|
|
array
|
|
(
|
|
'U_TABSHEET_TITLE' => l10n('nbm_'.$page['mode'].'_mode'),
|
|
'U_HELP' => add_url_params(get_root_url().'/popuphelp.php', array('page' => 'notification_by_mail')),
|
|
'F_ACTION'=> $base_url.get_query_string_diff(array())
|
|
)
|
|
);
|
|
|
|
if (is_autorize_status(ACCESS_WEBMASTER))
|
|
{
|
|
$template->assign_block_vars
|
|
(
|
|
'header_link',
|
|
array
|
|
(
|
|
'PARAM_MODE' => add_url_params($base_url.get_query_string_diff(array('mode', 'select')), array('mode' => 'param')),
|
|
'SUBSCRIBE_MODE' => add_url_params($base_url.get_query_string_diff(array('mode', 'select')), array('mode' => 'subscribe')),
|
|
'SEND_MODE' => add_url_params($base_url.get_query_string_diff(array('mode', 'select')), array('mode' => 'send'))
|
|
)
|
|
);
|
|
}
|
|
|
|
switch ($page['mode'])
|
|
{
|
|
case 'param' :
|
|
{
|
|
$template->assign_block_vars(
|
|
$page['mode'],
|
|
array(
|
|
'SEND_MAIL_AS' => $conf['nbm_send_mail_as'],
|
|
'SEND_DETAILED_CONTENT_YES' => ($conf['nbm_send_detailed_content'] ? 'checked="checked"' : ''),
|
|
'SEND_DETAILED_CONTENT_NO' => (!$conf['nbm_send_detailed_content'] ? 'checked="checked"' : ''),
|
|
'COMPLEMENTARY_MAIL_CONTENT' => $conf['nbm_complementary_mail_content']
|
|
));
|
|
break;
|
|
}
|
|
|
|
case 'subscribe' :
|
|
{
|
|
$template->assign_block_vars(
|
|
$page['mode'],
|
|
array(
|
|
));
|
|
|
|
$template->assign_vars(
|
|
array(
|
|
'L_CAT_OPTIONS_TRUE' => l10n('nbm_subscribe_col'),
|
|
'L_CAT_OPTIONS_FALSE' => l10n('nbm_unsubscribe_col')
|
|
)
|
|
);
|
|
|
|
$query = '
|
|
select
|
|
N.check_key, N.enabled, U.username, U.mail_address
|
|
from
|
|
'.USER_MAIL_NOTIFICATION_TABLE.' as N,
|
|
'.USERS_TABLE.' as U
|
|
where
|
|
N.user_id = U.id
|
|
order by
|
|
username;';
|
|
|
|
$result = pwg_query($query);
|
|
if (!empty($result))
|
|
{
|
|
while ($row = mysql_fetch_array($result))
|
|
{
|
|
$template->assign_block_vars(
|
|
(get_boolean($row['enabled']) ? 'category_option_true' : 'category_option_false'),
|
|
array('SELECTED' => '',
|
|
'VALUE' => $row['check_key'],
|
|
'OPTION' => $row['username'].'['.$row['mail_address'].']'
|
|
));
|
|
}
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
case 'send' :
|
|
{
|
|
$template->assign_block_vars($page['mode'], array());
|
|
|
|
$data_rows = do_action_send_mail_notification('prepare');
|
|
|
|
if (count($data_rows) == 0)
|
|
{
|
|
$template->assign_block_vars($page['mode'].'.send_empty', array());
|
|
}
|
|
else
|
|
{
|
|
$template->assign_block_vars(
|
|
$page['mode'].'.send_data',
|
|
array(
|
|
// 'URL_CHECK_ALL' => add_url_params($base_url.get_query_string_diff(array('select')), array('select' => 'all')),
|
|
// 'URL_UNCHECK_ALL' => add_url_params($base_url.get_query_string_diff(array('select')), array('select' => 'none')),
|
|
'CUSTOMIZE_MAIL_CONTENT' => isset($_POST['send_customize_mail_content']) ? $_POST['send_customize_mail_content'] : $conf['nbm_complementary_mail_content']
|
|
));
|
|
|
|
foreach ($data_rows as $num => $local_user)
|
|
$template->assign_block_vars(
|
|
$page['mode'].'.send_data.user_send_mail',
|
|
array(
|
|
'CLASS' => ($num % 2 == 1) ? 'row2' : 'row1',
|
|
'ID' => $local_user['check_key'],
|
|
'CHECKED' => isset($_POST['send_uncheck_all']) ? '' : 'checked="checked"',
|
|
'USERNAME'=> $local_user['username'],
|
|
'EMAIL' => $local_user['mail_address'],
|
|
'LAST_SEND'=> $local_user['last_send']
|
|
));
|
|
}
|
|
|
|
break;
|
|
}
|
|
}
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
// | Sending html code |
|
|
// +-----------------------------------------------------------------------+
|
|
$template->assign_var_from_handle('DOUBLE_SELECT', 'double_select');
|
|
$template->assign_var_from_handle('ADMIN_CONTENT', 'notification_by_mail');
|
|
|
|
?>
|