<?php
/**
* MyBB 1.6
* Copyright 2010 MyBB Group, All Rights Reserved
*
* Website: http://mybb.com
* License: http://mybb.com/about/license
*
* $Id: functions_massmail.php 5828 2012-05-08 16:06:16Z Tomm $
*/
/**
* Build the mass email SQL query for the specified conditions.
*
* @param array Array of conditions to match users against.
* @return string The generated search SQL
*/
function build_mass_mail_query($conditions)
{
global $db;
if(!is_array($conditions))
{
return '';
}
$search_sql = 'u.allownotices=1';
// List of valid LIKE search fields
$user_like_fields = array("username", "email");
foreach($user_like_fields as $search_field)
{
if($conditions[$search_field])
{
$search_sql .= " AND u.{$search_field} LIKE '%".$db->escape_string_like($conditions[$search_field])."%'";
}
}
// LESS THAN or GREATER THAN
$direction_fields = array("postnum");
foreach($direction_fields as $search_field)
{
$direction_field = $search_field."_dir";
if($conditions[$search_field] && $conditions[$direction_field])
{
switch($conditions[$direction_field])
{
case "greater_than":
$direction = ">";
break;
case "less_than":
$direction = "<";
break;
default:
$direction = "=";
}
$search_sql .= " AND u.{$search_field}{$direction}'".intval($conditions[$search_field])."'";
}
}
// Usergroup based searching
if($conditions['usergroup'])
{
if(!is_array($conditions['usergroup']))
{
$conditions['usergroup'] = array($conditions['usergroup']);
}
$conditions['usergroup'] = array_map('intval', $conditions['usergroup']);
foreach($conditions['usergroup'] as $usergroup)
{
switch($db->type)
{
case "pgsql":
case "sqlite":
$additional_sql .= " OR ','||additionalgroups||',' LIKE '%,{$usergroup},%'";
break;
default:
$additional_sql .= " OR CONCAT(',',additionalgroups,',') LIKE '%,{$usergroup},%'";
}
}
$search_sql .= " AND (u.usergroup IN (".implode(",", $conditions['usergroup']).") {$additional_sql})";
}
return $search_sql;
}
/**
* Create a text based version of a HTML mass email.
*
* @param string The HTML version.
* @return string The generated text based version.
*/
function create_text_message($message)
{
// Cut out all current line breaks
// Makes links CONTENT (link)
$message = make_pretty_links($message);
$message = str_replace(array("\r\n", "\n"), "\n", $message);
$message = preg_replace("#</p>#i", "\n\n", $message);
$message = preg_replace("#<br( \/?)>#i", "\n", $message);
$message = preg_replace("#<p[^>]*?>#i", "", $message);
$message = preg_replace("#<hr[^>]*?>\s*#i", "-----------\n", $message);
$message = html_entity_decode($message);
$message = str_replace("\t", "", $message);
do
{
$message = str_replace(" ", " ", $message);
}
while(strpos($message, " ") !== false);
$search = array('@<script[^>]*?>.*?</script>@si', // Strip out javascript
'@<style[^>]*?>.*?</style>@siU', // Strip style tags properly
'@<title[^>]*?>.*?</title>@siU', // Strip title tags
'@<[\/\!]*?[^<>]*?>@si', // Strip out HTML tags
'@<![\s\S]*?--[ \t\n\r]*>@' // Strip multi-line comments including CDATA
);
$message = preg_replace($search, '', $message);
$message = preg_replace("#\n\n+#", "\n\n", $message);
$message = preg_replace("#^\s+#is", "", $message);
return $message;
}
/**
* Generates friendly links for a text based version of a mass email from the HTML version.
*
* @param string The HTML version.
* @return string The version with the friendly links and all <a> tags stripped.
*/
function make_pretty_links($message_html)
{
do
{
$start = stripos($message_html, "<a", $offset);
if($start === false)
{
break;
}
$end = stripos($message_html, "</a>", $start);
if($end === false)
{
break;
}
$a_href = substr($message_html, $start, ($end-$start));
preg_match("#href=\"?([^\"> ]+)\"?#i", $a_href, $href_matches);
if(!$href_matches[1])
{
continue;
}
$link = $href_matches[1];
$contents = strip_tags($a_href);
if(!$contents)
{
preg_match("#alt=\"?([^\">]+)\"?#i", $a_href, $matches2);
if($matches2[1])
{
$contents = $matches2[1];
}
if(!$contents)
{
preg_match("#title=\"?([^\">]+)\"?#i", $a_href, $matches2);
if($matches2[1])
{
$contents = $matches2[1];
}
}
}
$replaced_link = $contents." ({$link}) ";
$message_html = substr_replace($message_html, $replaced_link, $start, ($end-$start));
} while(true);
return $message_html;
}
?>