1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509
|
<?php
/* OpenDb - Open Lending Database Project
Copyright (C) 2001,2002 by Jason Pell
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; either version 2
of the License, or (at your option) any later version.
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.
*/
// This must be first - includes config.php
require_once("./include/begin.inc.php");
include_once("./include/language.php");
include_once("./include/theme.php");
include_once("./functions/email.php");
include_once("./functions/widgets.php");
include_once("./functions/function.php");
include_once("./functions/user.php");
include_once("./functions/Listing.class.inc");
/*
* This script supports several different operations
*
* $op = 'send_to_all'
* This will format an email email to all OpenDb users, except the currently
* logged in users.
*
* Applicable variables:
* $toname - A title identifying the user group.
* $subject - The subject of the email
* $message - The message, if bypassing the email form.
*
* This operation is NOT available to a non-opendb Administrator user, and so
* the $from and $fromname variables will be ignored.
*
* $op = 'send_to_usertype'
*
* Applicable variables:
* $usertype - User Type (N=Normal,A=Admin,B=Borrower,G=Guest)
* The $from user must be at least the type of user they are sending
* email to. For instance a Normal user cannot send mail to Admin group.
* $toname - A title identifying the user group.
* $subject - The subject of the email
* $message - The message, if bypassing the email form.
*
* This operation is NOT available to a non-opendb user, and so the $from
* and $fromname variables will be ignored.
*
* $op = 'send_to_uids'
*
* Applicable Variables:
* $uids_rs - An array of userid's to send mail to. The user trying to send
* email should be at least of the usertype of all the $uid's
* in this array variable.
* $subject - The subject of the email
* $message - The message, if bypassing the email form.
*
* This operation is NOT available to a non-opendb user, and so the $from
* and $fromname variables will be ignored.
*
* $op = 'send_to_uid'
*
* Applicable Variables:
* $uid - A single UID to send email to. The user trying to send
* email should be at least of the usertype of the $uid
* in this variable.
* $subject - The subject of the email
* $message - The message, if bypassing the email form.
*
* This operation is NOT available to a non-opendb user, and so the $from
* and $fromname variables will be ignored.
*/
/*
* @param $to Formatted readonly To: address information. This will often NOT
* be an actual email address, but may be something like a comma
* delimited list of Userid's or names.
* @param $toname
* @param $from A $from email address, which will correspond to the current user
* in all cases. We no longer support using this script for non-opendb
* email.
* @param $fromname
* @param $subject
* @param message
* @param $HTTP_VARS - Any variables to include as hidden variables in the form.
*/
function show_email_form($to, $toname, $from, $fromname, $subject, $message, $HTTP_VARS)
{
global $LANG_VARS;
global $PHP_SELF;
// Only if we have already been in this form.
if($HTTP_VARS['no_message'] == 'true')
{
if(strlen($subject)==0)
$error[] = array('error'=>$LANG_VARS['invalid_subject']);
if(strlen($from)==0)
$error[] = array('error'=>$LANG_VARS['invalid_from_address']);
echo format_error_block($error);
}
echo("\n<table cellspacing=1 width=60% cellpadding=2 border=0>");
echo("\n<form action=\"$PHP_SELF\">");
// Indicate that we have been in this form, and have purposely left the message textarea blank.
$HTTP_VARS['no_message'] = 'true';
echo get_url_fields($HTTP_VARS, NULL, array('subject','message'));
if(strlen($toname)>0 && strlen($to)>0)
echo format_field($LANG_VARS['to'],NULL,""".htmlspecialchars($toname)."" <".$to.">");
else if(strlen($to)>0)
echo format_field($LANG_VARS['to'],NULL,$to);
else if(strlen($toname)>0) // For special 'OpenDb Administrator' to option
echo format_field($LANG_VARS['to'],NULL,htmlspecialchars($toname));
// Will have supplied a value for both $from and $fromname, if coming from one of the
// operations where the user has to be logged in.
if(strlen($from)>0 && strlen($fromname)>0)
echo format_field($LANG_VARS['from'],NULL,""".htmlspecialchars($fromname)."" <".$from.">");
else
{
echo format_field($LANG_VARS['from']."*",
NULL,
"<input type=\"text\" name=\"from\" size=50 value=\"".htmlspecialchars($from)."\">");
}
echo format_field($LANG_VARS['subject']."*",
NULL,
"<input type=\"text\" name=\"subject\" size=50 value=\"".htmlspecialchars($subject)."\">");
echo get_input_field("message",
NULL, // s_attribute_type
$LANG_VARS['message'],
"textarea(50,10)", //input type.
"N", //compulsory!
$message, // will be encoded by get_input_field function!
TRUE);
echo("<td nowrap>* ".$LANG_VARS['required']."</td>");
echo("<td align=center><input type=submit value=\"".$LANG_VARS['send_email']."\"></td>");
echo("</tr>");
echo("\n</form>");
echo("</table>");
}
/*
* This function will setup a mailto: protocol form for sending mail via the browsers
* mailto protocol support.
*
* @param $to The persons email address
*/
function send_nonphp_email($to, $toname, $from, $fromname, $subject, $message)
{
global $LANG_VARS;
echo("\n<table cellspacing=1 width=60% cellpadding=2 border=0>");
echo("\n<form action=\"mailto:".$to."\" enctype=\"text/plain\" method=\"get\">");
echo format_field($LANG_VARS['to'],NULL,""".htmlspecialchars($toname)."" <".$to.">");
echo format_field($LANG_VARS['from'],NULL,""".htmlspecialchars($fromname)."" <".$from.">");
echo format_field($LANG_VARS['subject'],
NULL,
"<input type=\"text\" name=\"subject\" size=50 value=\"".htmlspecialchars($subject)."\">");
echo get_input_field("message",
NULL, // s_attribute_type
$LANG_VARS['message'],
"textarea(50,10)", //input type.
"N", //compulsory!
$message, // will be encoded by get_input_field function!
TRUE);
echo("<td> </td><td align=center><input type=submit value=\"".$LANG_VARS['send_email']."\"></td>");
echo("</tr>");
echo("\n</form>");
echo("</table>");
}
/*
* Will not check whether $user_id_rs contains the current users user_id. It is expected
* that this should have already been done.
*/
function send_email_to_userids($user_id_rs, $from, $fromname, $subject, $message)
{
global $LANG_VARS;
reset($user_id_rs);
while (list(,$user_id) = each($user_id_rs))
{
$touser_r = fetch_user_r($user_id);
if(is_not_empty_array($touser_r))
{
$result = opendb_email($touser_r['email'], $touser_r['fullname'], $from, $fromname, $subject, $message);
if($result===TRUE)
$success[] = str_replace(" ", " ", $touser_r['fullname'])." (".$user_id.")";
else
$errors[] = array('error'=>str_replace(" ", " ", $touser_r['fullname'])." (".$user_id.")",'detail'=>$result);
}
}
if(is_not_empty_array($success))
{
echo ("<p><div class=\"success\">".$LANG_VARS['message_sent_to'].": <ul>");
while (list(,$touser) = each($success))
{
echo("<li class=\"smsuccess\">".$touser."</li>");
}
echo("</ul></div></p>");
}
if(is_not_empty_array($errors))
{
echo("<p><div class=\"error\">".$LANG_VARS['message_not_sent_to'].": <ul>".
format_error_block($errors).
"</ul></div></p>");
}
}
function get_user_id_rs($user_type_rs=NULL)
{
$user_id_rs = NULL;
$result = fetch_user_rs($user_type_rs, 'user_id', 'ASC');
if($result)
{
while ($user_r = mysql_fetch_array($result))
{
$user_id_rs[] = $user_r['user_id'];
}
mysql_free_result($result);
}
return $user_id_rs;
}
function get_user_ids_tovalue($user_id_rs)
{
global $HTTP_SESSION_VARS;
$to = "";
if(is_not_empty_array($user_id_rs))
{
reset($user_id_rs);
while(list(,$user_id) = each($user_id_rs))
{
// Do not include current user.
if($user_id != $HTTP_SESSION_VARS['user_id'])
{
if(strlen($to)==0)
$to = $user_id;
else
$to .= ", ".$user_id;
}
}
}
return $to;
}
session_start();
if(is_opendb_valid_session() || $HTTP_VARS['op'] == 'send_to_site_admin')
{
echo _theme_header($LANG_VARS['send_email']);
echo("<h2>"._theme_image("email.gif", "")." ".$LANG_VARS['send_email']."</h2>");
if($HTTP_VARS['op'] != 'send_to_site_admin')
{
$user_r = fetch_user_r($HTTP_SESSION_VARS['user_id']);
$fromname = strlen($user_r['fullname'])>0?$user_r['fullname']:$HTTP_SESSION_VARS['user_id'];
$from = $user_r['email'];
$HTTP_VARS['toname'] = trim(strip_tags($HTTP_VARS['toname']));
}
// Avoid any attempts to foil required validation checks.
$HTTP_VARS['subject'] = trim(strip_tags($HTTP_VARS['subject']));
$HTTP_VARS['message'] = trim(strip_tags($HTTP_VARS['message']));
if($CONFIG_VARS['email.use_php_mail']!==FALSE && $HTTP_VARS['op'] == 'send_to_all' && is_user_admin($HTTP_SESSION_VARS['user_id'], $HTTP_SESSION_VARS['user_type']))
{
// Default toname for bulk email.
if(strlen($HTTP_VARS['toname'])==0)
$HTTP_VARS['toname'] = replace_lang_var('user_desc', $CONFIG_VARS['site.title'], $LANG_VARS['users']);
// If everything is provided, we can send email.
if(strlen($HTTP_VARS['subject'])>0 && (strlen($HTTP_VARS['message'])>0 || $HTTP_VARS['no_message']=='true'))
{
send_email_to_userids(
get_user_id_rs(),
$from,
$fromname,
$HTTP_VARS['subject'],
$HTTP_VARS['message']);
}
else
{
show_email_form(
get_user_ids_tovalue(get_user_id_rs()),
$HTTP_VARS['toname'],
$from,
$fromname,
$HTTP_VARS['subject'],
$HTTP_VARS['message'],
$HTTP_VARS);
}
}
else if($CONFIG_VARS['email.use_php_mail']!==FALSE && $HTTP_VARS['op'] == 'send_to_usertype' && is_usertype_valid($HTTP_VARS['usertype']) && in_array(ifempty($HTTP_VARS['usertype'],'N'), get_min_user_type_r($HTTP_SESSION_VARS['user_type'])))
{
// Default toname for bulk email.
if(strlen($HTTP_VARS['toname'])==0)
$HTTP_VARS['toname'] = replace_lang_var('user_desc', get_usertype_description($HTTP_VARS['usertype']), $LANG_VARS['users']);
if(strlen($HTTP_VARS['subject'])>0 && (strlen($HTTP_VARS['message'])>0 || $HTTP_VARS['no_message']=='true'))
{
send_email_to_userids(
get_user_id_rs(array($HTTP_VARS['usertype'])),
$from,
$fromname,
$HTTP_VARS['subject'],
$HTTP_VARS['message']);
}
else
{
show_email_form(
get_user_ids_tovalue(get_user_id_rs(array($HTTP_VARS['usertype']))),
$HTTP_VARS['toname'],
$from,
$fromname,
$HTTP_VARS['subject'],
$HTTP_VARS['message'],
$HTTP_VARS);
}
}
else if($CONFIG_VARS['email.use_php_mail']!==FALSE && $HTTP_VARS['op'] == 'send_to_uids' && (is_not_empty_array($HTTP_VARS['user_id_rs']) || strlen(trim($HTTP_VARS['checked_user_id_rs_list']))>0))
{
// Remove $user_id's that are above the user type of the current user.
$filtered_user_id_rs = NULL;
// If seeded from user_listing.php, we need to consolidate the list.
if(is_not_empty_array($HTTP_VARS['checked_user_id_rs']) || strlen(trim($HTTP_VARS['checked_user_id_rs_list']))>0)
{
$listingObject = new Listing();
$listingObject->setCheckBoxColumn('user_id_rs');
// The checked_user_id_rs and checked_user_id_rs_list variables
// will be unset by the this call.
$listingObject->setCheckedList(NULL, $HTTP_VARS);
$HTTP_VARS['user_id_rs'] = $listingObject->getCheckedList();
// Don't need the Listings object anymore.
unset($listingObject);
}
reset($HTTP_VARS['user_id_rs']);
while(list(,$uid) = each($HTTP_VARS['user_id_rs']))
{
if(in_array(fetch_user_type($uid), get_min_user_type_r($HTTP_SESSION_VARS['user_type'])))
$filtered_user_id_rs[] = $uid;
}
if(strlen($HTTP_VARS['subject'])>0 && (strlen($HTTP_VARS['message'])>0 || $HTTP_VARS['no_message']=='true'))
{
send_email_to_userids(
$filtered_user_id_rs,
$from,
$fromname,
$HTTP_VARS['subject'],
$HTTP_VARS['message']);
}
else
{
show_email_form(
get_user_ids_tovalue($filtered_user_id_rs),
replace_lang_var('user_desc', $CONFIG_VARS['site.title'], $LANG_VARS['users']),
$from,
$fromname,
$HTTP_VARS['subject'],
$HTTP_VARS['message'],
$HTTP_VARS);
}
}
else if($HTTP_VARS['op'] == 'send_to_uid' && is_user_valid($HTTP_VARS['uid']) && is_user_allowed_to_borrow(fetch_user_type($HTTP_VARS['uid']), $HTTP_SESSION_VARS['user_type']))
{
// Only support NON-PHP Email functionality for single UID email.
if($CONFIG_VARS['email.use_php_mail']===FALSE)
{
$touser_r = fetch_user_r($HTTP_VARS['uid']);
send_nonphp_email($touser_r['email'], $touser_r['fullname'], $from, $fromname, $HTTP_VARS['subject'], $HTTP_VARS['message']);
}
else
{
if(strlen($HTTP_VARS['subject'])>0 && (strlen($HTTP_VARS['message'])>0 || $HTTP_VARS['no_message']=='true'))
{
send_email_to_userids(
array($HTTP_VARS['uid']),
$from,
$fromname,
$HTTP_VARS['subject'],
$HTTP_VARS['message']);
}
else
{
show_email_form(
fetch_user_name($HTTP_VARS['uid'])." (".$HTTP_VARS['uid'].")",
NULL,
$from,
$fromname,
$HTTP_VARS['subject'],
$HTTP_VARS['message'],
$HTTP_VARS);
}
}
}
else if($HTTP_VARS['op'] == 'send_to_site_admin' && $CONFIG_VARS['email.send_to_site_admin']!==FALSE)
{
// Avoid any attempts to foil required validation checks.
$HTTP_VARS['from'] = trim(strip_tags($HTTP_VARS['from']));
$HTTP_VARS['fromname'] = trim(strip_tags($HTTP_VARS['fromname']));
if($CONFIG_VARS['email.use_php_mail']===FALSE)
{
send_nonphp_email(
$CONFIG_VARS['site.admin_email'],
$CONFIG_VARS['site.admin_name'],
$HTTP_VARS['from'],
$HTTP_VARS['fromname'],
$HTTP_VARS['subject'],
$HTTP_VARS['message']);
}
else
{
// Only try to email if all the info is there, or we have been to the email form. In the latter case we
// are also getting the opendb_email function to test the from and subject values for us.
if((strlen($HTTP_VARS['from'])>0 && strlen($HTTP_VARS['subject'])>0 && strlen($HTTP_VARS['message'])>0) || $HTTP_VARS['no_message'] == 'true')
{
$result = opendb_email(
$CONFIG_VARS['site.admin_email'],
$CONFIG_VARS['site.admin_name'],
$HTTP_VARS['from'],
$HTTP_VARS['fromname'],
$HTTP_VARS['subject'],
$HTTP_VARS['message']);
if($result===TRUE)
{
echo("<p><div class=\"success\">".$LANG_VARS['message_sent_to']." ".replace_lang_var('site', $CONFIG_VARS['site.title'], $LANG_VARS['site_administrator'])."</div></p>");
}
else
{
echo format_error_block($result);
// Hide the fact we might have already been into the form.
unset($HTTP_VARS['no_message']);
show_email_form(
NULL, // email
replace_lang_var('site', $CONFIG_VARS['site.title'], $LANG_VARS['site_administrator']),
$HTTP_VARS['from'],
$HTTP_VARS['fromname'],
$HTTP_VARS['subject'],
$HTTP_VARS['message'],
$HTTP_VARS);
}
}
else // Else first time into the email form.
{
show_email_form(
NULL,// email
replace_lang_var('site', $CONFIG_VARS['site.title'], $LANG_VARS['site_administrator']),
$HTTP_VARS['from'],
$HTTP_VARS['fromname'],
$HTTP_VARS['subject'],
$HTTP_VARS['message'],
$HTTP_VARS);
}
}
}
else
{
echo("<div class=\"error\">".$LANG_VARS['operation_not_available']."</div>");
}
// Always have a redirect link, for after email and also to abort email send.
if (strlen($HTTP_VARS['redirect_link'])>0){
echo format_footer_links(array(array(url=>urldecode($HTTP_VARS['redirect_url']),text=>$HTTP_VARS['redirect_link'])));
}
echo _theme_footer();
}
else
{
include("./include/invalidsession.php");
}
// Cleanup after begin.inc.php
require_once("./include/end.inc.php");
?>
|