2017-12-01 19:41:27 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2021-03-29 06:40:20 +00:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 15:18:46 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2017-12-01 19:41:27 +00:00
|
|
|
*/
|
2020-02-09 15:18:46 +00:00
|
|
|
|
2017-12-01 19:41:27 +00:00
|
|
|
namespace Friendica\Protocol;
|
|
|
|
|
2019-11-20 20:57:34 +00:00
|
|
|
use Friendica\Core\Hook;
|
2018-10-29 21:20:46 +00:00
|
|
|
use Friendica\Core\Logger;
|
2019-11-23 11:42:03 +00:00
|
|
|
use Friendica\Content\Text\BBCode;
|
2018-03-07 21:24:13 +00:00
|
|
|
use Friendica\Content\Text\HTML;
|
2018-11-07 02:16:27 +00:00
|
|
|
use Friendica\Model\Item;
|
2019-11-23 11:42:03 +00:00
|
|
|
use Friendica\Util\Strings;
|
2018-03-07 21:24:13 +00:00
|
|
|
|
2017-12-01 23:13:39 +00:00
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Email class
|
2017-12-01 23:13:39 +00:00
|
|
|
*/
|
2017-12-01 19:41:27 +00:00
|
|
|
class Email
|
|
|
|
{
|
2017-12-01 23:13:39 +00:00
|
|
|
/**
|
|
|
|
* @param string $mailbox The mailbox name
|
|
|
|
* @param string $username The username
|
|
|
|
* @param string $password The password
|
2019-01-21 21:51:59 +00:00
|
|
|
* @return resource
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
2017-12-01 23:13:39 +00:00
|
|
|
*/
|
2017-12-02 02:05:06 +00:00
|
|
|
public static function connect($mailbox, $username, $password)
|
2017-12-01 19:41:27 +00:00
|
|
|
{
|
2017-12-13 20:36:50 +00:00
|
|
|
if (!function_exists('imap_open')) {
|
2017-12-01 19:41:27 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$mbox = @imap_open($mailbox, $username, $password);
|
|
|
|
|
2018-08-02 05:21:01 +00:00
|
|
|
$errors = imap_errors();
|
|
|
|
if (!empty($errors)) {
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log('IMAP Errors occured: ' . json_encode($errors));
|
2018-08-02 05:21:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$alerts = imap_alerts();
|
|
|
|
if (!empty($alerts)) {
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log('IMAP Alerts occured: ' . json_encode($alerts));
|
2018-08-02 05:21:01 +00:00
|
|
|
}
|
|
|
|
|
2017-12-01 19:41:27 +00:00
|
|
|
return $mbox;
|
|
|
|
}
|
|
|
|
|
2017-12-01 23:13:39 +00:00
|
|
|
/**
|
2019-01-21 21:51:59 +00:00
|
|
|
* @param resource $mbox mailbox
|
|
|
|
* @param string $email_addr email
|
2017-12-01 23:13:39 +00:00
|
|
|
* @return array
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
2017-12-01 23:13:39 +00:00
|
|
|
*/
|
2017-12-02 02:05:06 +00:00
|
|
|
public static function poll($mbox, $email_addr)
|
2017-12-01 19:41:27 +00:00
|
|
|
{
|
2017-12-13 20:36:50 +00:00
|
|
|
if (!$mbox || !$email_addr) {
|
2018-01-15 13:05:12 +00:00
|
|
|
return [];
|
2017-12-13 20:36:50 +00:00
|
|
|
}
|
2017-12-01 19:41:27 +00:00
|
|
|
|
2019-11-23 20:02:21 +00:00
|
|
|
$search1 = @imap_search($mbox, 'UNDELETED FROM "' . $email_addr . '"', SE_UID);
|
2017-12-01 19:41:27 +00:00
|
|
|
if (!$search1) {
|
2018-01-15 13:05:12 +00:00
|
|
|
$search1 = [];
|
2017-12-01 19:41:27 +00:00
|
|
|
} else {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log("Found mails from ".$email_addr, Logger::DEBUG);
|
2017-12-01 19:41:27 +00:00
|
|
|
}
|
|
|
|
|
2019-11-23 20:02:21 +00:00
|
|
|
$search2 = @imap_search($mbox, 'UNDELETED TO "' . $email_addr . '"', SE_UID);
|
2017-12-01 19:41:27 +00:00
|
|
|
if (!$search2) {
|
2018-01-15 13:05:12 +00:00
|
|
|
$search2 = [];
|
2017-12-01 19:41:27 +00:00
|
|
|
} else {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log("Found mails to ".$email_addr, Logger::DEBUG);
|
2017-12-01 19:41:27 +00:00
|
|
|
}
|
|
|
|
|
2019-11-23 20:02:21 +00:00
|
|
|
$search3 = @imap_search($mbox, 'UNDELETED CC "' . $email_addr . '"', SE_UID);
|
2017-12-01 19:41:27 +00:00
|
|
|
if (!$search3) {
|
2018-01-15 13:05:12 +00:00
|
|
|
$search3 = [];
|
2017-12-01 19:41:27 +00:00
|
|
|
} else {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log("Found mails cc ".$email_addr, Logger::DEBUG);
|
2017-12-01 19:41:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$res = array_unique(array_merge($search1, $search2, $search3));
|
|
|
|
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
|
2017-12-01 23:13:39 +00:00
|
|
|
/**
|
2018-01-05 07:48:02 +00:00
|
|
|
* @param array $mailacct mail account
|
|
|
|
* @return string
|
2017-12-01 23:13:39 +00:00
|
|
|
*/
|
2017-12-01 19:41:27 +00:00
|
|
|
public static function constructMailboxName($mailacct)
|
|
|
|
{
|
|
|
|
$ret = '{' . $mailacct['server'] . ((intval($mailacct['port'])) ? ':' . $mailacct['port'] : '');
|
|
|
|
$ret .= (($mailacct['ssltype']) ? '/' . $mailacct['ssltype'] . '/novalidate-cert' : '');
|
|
|
|
$ret .= '}' . $mailacct['mailbox'];
|
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
|
2017-12-01 23:13:39 +00:00
|
|
|
/**
|
2019-01-21 21:51:59 +00:00
|
|
|
* @param resource $mbox mailbox
|
|
|
|
* @param integer $uid user id
|
2017-12-01 23:13:39 +00:00
|
|
|
* @return mixed
|
|
|
|
*/
|
2017-12-02 02:05:06 +00:00
|
|
|
public static function messageMeta($mbox, $uid)
|
2017-12-01 19:41:27 +00:00
|
|
|
{
|
2018-01-15 13:05:12 +00:00
|
|
|
$ret = (($mbox && $uid) ? @imap_fetch_overview($mbox, $uid, FT_UID) : [[]]); // POSSIBLE CLEANUP --> array(array()) is probably redundant now
|
|
|
|
return (count($ret)) ? $ret : [];
|
2017-12-01 19:41:27 +00:00
|
|
|
}
|
|
|
|
|
2017-12-01 23:13:39 +00:00
|
|
|
/**
|
2019-01-21 21:51:59 +00:00
|
|
|
* @param resource $mbox mailbox
|
|
|
|
* @param integer $uid user id
|
|
|
|
* @param string $reply reply
|
2017-12-01 23:13:39 +00:00
|
|
|
* @return array
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2017-12-01 23:13:39 +00:00
|
|
|
*/
|
2019-11-23 11:42:03 +00:00
|
|
|
public static function getMessage($mbox, $uid, $reply, $item)
|
2017-12-01 19:41:27 +00:00
|
|
|
{
|
2019-11-23 11:42:03 +00:00
|
|
|
$ret = $item;
|
2017-12-01 19:41:27 +00:00
|
|
|
|
2017-12-01 23:13:39 +00:00
|
|
|
$struc = (($mbox && $uid) ? @imap_fetchstructure($mbox, $uid, FT_UID) : null);
|
2017-12-01 19:41:27 +00:00
|
|
|
|
2017-12-13 20:36:50 +00:00
|
|
|
if (!$struc) {
|
2019-11-23 20:02:21 +00:00
|
|
|
Logger::notice("IMAP structure couldn't be fetched", ['uid' => $uid]);
|
2017-12-01 19:41:27 +00:00
|
|
|
return $ret;
|
2017-12-01 23:13:39 +00:00
|
|
|
}
|
2017-12-01 19:41:27 +00:00
|
|
|
|
2018-12-15 09:32:47 +00:00
|
|
|
if (empty($struc->parts)) {
|
2019-11-23 20:02:21 +00:00
|
|
|
$html = trim(self::messageGetPart($mbox, $uid, $struc, 0, 'html'));
|
2017-12-01 19:41:27 +00:00
|
|
|
|
2019-11-23 20:02:21 +00:00
|
|
|
if (!empty($html)) {
|
|
|
|
$message = ['text' => '', 'html' => $html, 'item' => $ret];
|
2019-11-23 12:54:39 +00:00
|
|
|
Hook::callAll('email_getmessage', $message);
|
|
|
|
$ret = $message['item'];
|
2019-11-23 20:02:21 +00:00
|
|
|
if (empty($ret['body'])) {
|
|
|
|
$ret['body'] = HTML::toBBCode($message['html']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($ret['body'])) {
|
|
|
|
$text = self::messageGetPart($mbox, $uid, $struc, 0, 'plain');
|
|
|
|
|
|
|
|
$message = ['text' => $text, 'html' => '', 'item' => $ret];
|
2019-11-23 12:54:39 +00:00
|
|
|
Hook::callAll('email_getmessage', $message);
|
|
|
|
$ret = $message['item'];
|
2019-11-23 20:02:21 +00:00
|
|
|
$ret['body'] = $message['text'];
|
2017-12-01 23:13:39 +00:00
|
|
|
}
|
|
|
|
} else {
|
2017-12-01 19:41:27 +00:00
|
|
|
$text = '';
|
|
|
|
$html = '';
|
|
|
|
foreach ($struc->parts as $ptop => $p) {
|
2017-12-02 02:05:06 +00:00
|
|
|
$x = self::messageGetPart($mbox, $uid, $p, $ptop + 1, 'plain');
|
2017-12-01 19:41:27 +00:00
|
|
|
if ($x) {
|
|
|
|
$text .= $x;
|
|
|
|
}
|
|
|
|
|
2017-12-02 02:05:06 +00:00
|
|
|
$x = self::messageGetPart($mbox, $uid, $p, $ptop + 1, 'html');
|
2017-12-01 19:41:27 +00:00
|
|
|
if ($x) {
|
|
|
|
$html .= $x;
|
|
|
|
}
|
|
|
|
}
|
2019-11-20 20:57:34 +00:00
|
|
|
|
2019-11-23 12:54:39 +00:00
|
|
|
$message = ['text' => trim($text), 'html' => trim($html), 'item' => $ret];
|
|
|
|
Hook::callAll('email_getmessage', $message);
|
|
|
|
$ret = $message['item'];
|
2019-11-20 20:57:34 +00:00
|
|
|
|
2019-11-23 20:02:21 +00:00
|
|
|
if (empty($ret['body']) && !empty($message['html'])) {
|
|
|
|
$ret['body'] = HTML::toBBCode($message['html']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($ret['body'])) {
|
|
|
|
$ret['body'] = $message['text'];
|
2017-12-01 19:41:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 20:36:50 +00:00
|
|
|
$ret['body'] = self::removeGPG($ret['body']);
|
|
|
|
$msg = self::removeSig($ret['body']);
|
2017-12-01 19:41:27 +00:00
|
|
|
$ret['body'] = $msg['body'];
|
2017-12-13 20:36:50 +00:00
|
|
|
$ret['body'] = self::convertQuote($ret['body'], $reply);
|
2017-12-01 19:41:27 +00:00
|
|
|
|
|
|
|
if (trim($html) != '') {
|
2017-12-13 20:36:50 +00:00
|
|
|
$ret['body'] = self::removeLinebreak($ret['body']);
|
2017-12-01 19:41:27 +00:00
|
|
|
}
|
|
|
|
|
2017-12-13 20:36:50 +00:00
|
|
|
$ret['body'] = self::unifyAttributionLine($ret['body']);
|
2017-12-01 19:41:27 +00:00
|
|
|
|
2019-11-23 11:42:03 +00:00
|
|
|
$ret['body'] = Strings::escapeHtml($ret['body']);
|
|
|
|
$ret['body'] = BBCode::limitBodySize($ret['body']);
|
|
|
|
|
2019-11-20 20:57:34 +00:00
|
|
|
Hook::callAll('email_getmessage_end', $ret);
|
|
|
|
|
2017-12-01 19:41:27 +00:00
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
|
2017-12-01 23:13:39 +00:00
|
|
|
/**
|
2019-11-20 20:57:34 +00:00
|
|
|
* fetch the specified message part number with the specified subtype
|
|
|
|
*
|
2019-01-21 21:51:59 +00:00
|
|
|
* @param resource $mbox mailbox
|
|
|
|
* @param integer $uid user id
|
|
|
|
* @param object $p parts
|
|
|
|
* @param integer $partno part number
|
|
|
|
* @param string $subtype sub type
|
2017-12-01 23:13:39 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2017-12-02 02:05:06 +00:00
|
|
|
private static function messageGetPart($mbox, $uid, $p, $partno, $subtype)
|
2017-12-01 19:41:27 +00:00
|
|
|
{
|
|
|
|
// $partno = '1', '2', '2.1', '2.1.3', etc for multipart, 0 if simple
|
|
|
|
global $htmlmsg,$plainmsg,$charset,$attachments;
|
|
|
|
|
|
|
|
// DECODE DATA
|
|
|
|
$data = ($partno)
|
2017-12-01 23:13:39 +00:00
|
|
|
? @imap_fetchbody($mbox, $uid, $partno, FT_UID|FT_PEEK)
|
|
|
|
: @imap_body($mbox, $uid, FT_UID|FT_PEEK);
|
2017-12-01 19:41:27 +00:00
|
|
|
|
|
|
|
// Any part may be encoded, even plain text messages, so check everything.
|
2017-12-13 20:36:50 +00:00
|
|
|
if ($p->encoding == 4) {
|
2017-12-01 19:41:27 +00:00
|
|
|
$data = quoted_printable_decode($data);
|
2017-12-13 20:36:50 +00:00
|
|
|
} elseif ($p->encoding == 3) {
|
2017-12-01 19:41:27 +00:00
|
|
|
$data = base64_decode($data);
|
2017-12-01 23:13:39 +00:00
|
|
|
}
|
2017-12-01 19:41:27 +00:00
|
|
|
|
|
|
|
// PARAMETERS
|
|
|
|
// get all parameters, like charset, filenames of attachments, etc.
|
2018-01-15 13:05:12 +00:00
|
|
|
$params = [];
|
2017-12-01 23:13:39 +00:00
|
|
|
if ($p->parameters) {
|
|
|
|
foreach ($p->parameters as $x) {
|
2017-12-01 19:41:27 +00:00
|
|
|
$params[strtolower($x->attribute)] = $x->value;
|
2017-12-01 23:13:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($p->dparameters) && $p->dparameters) {
|
|
|
|
foreach ($p->dparameters as $x) {
|
2017-12-01 19:41:27 +00:00
|
|
|
$params[strtolower($x->attribute)] = $x->value;
|
2017-12-01 23:13:39 +00:00
|
|
|
}
|
|
|
|
}
|
2017-12-01 19:41:27 +00:00
|
|
|
|
|
|
|
// ATTACHMENT
|
|
|
|
// Any part with a filename is an attachment,
|
|
|
|
// so an attached text file (type 0) is not mistaken as the message.
|
|
|
|
|
|
|
|
if ((isset($params['filename']) && $params['filename']) || (isset($params['name']) && $params['name'])) {
|
|
|
|
// filename may be given as 'Filename' or 'Name' or both
|
|
|
|
$filename = ($params['filename'])? $params['filename'] : $params['name'];
|
|
|
|
// filename may be encoded, so see imap_mime_header_decode()
|
|
|
|
$attachments[$filename] = $data; // this is a problem if two files have same name
|
|
|
|
}
|
|
|
|
|
|
|
|
// TEXT
|
|
|
|
if ($p->type == 0 && $data) {
|
|
|
|
// Messages may be split in different parts because of inline attachments,
|
|
|
|
// so append parts together with blank row.
|
|
|
|
if (strtolower($p->subtype)==$subtype) {
|
|
|
|
$data = iconv($params['charset'], 'UTF-8//IGNORE', $data);
|
|
|
|
return (trim($data) ."\n\n");
|
2017-12-01 23:13:39 +00:00
|
|
|
} else {
|
2017-12-01 19:41:27 +00:00
|
|
|
$data = '';
|
2017-12-01 23:13:39 +00:00
|
|
|
}
|
2017-12-01 19:41:27 +00:00
|
|
|
|
|
|
|
// $htmlmsg .= $data ."<br><br>";
|
|
|
|
$charset = $params['charset']; // assume all parts are same charset
|
|
|
|
}
|
|
|
|
|
|
|
|
// EMBEDDED MESSAGE
|
|
|
|
// Many bounce notifications embed the original message as type 2,
|
|
|
|
// but AOL uses type 1 (multipart), which is not handled here.
|
|
|
|
// There are no PHP functions to parse embedded messages,
|
|
|
|
// so this just appends the raw source to the main message.
|
|
|
|
// elseif ($p->type==2 && $data) {
|
|
|
|
// $plainmsg .= $data."\n\n";
|
|
|
|
// }
|
|
|
|
|
|
|
|
// SUBPART RECURSION
|
|
|
|
if (isset($p->parts) && $p->parts) {
|
|
|
|
$x = "";
|
2017-12-01 23:13:39 +00:00
|
|
|
foreach ($p->parts as $partno0 => $p2) {
|
2017-12-02 02:05:06 +00:00
|
|
|
$x .= self::messageGetPart($mbox, $uid, $p2, $partno . '.' . ($partno0+1), $subtype); // 1.2, 1.2.1, etc.
|
2017-12-01 19:41:27 +00:00
|
|
|
}
|
|
|
|
return $x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-01 23:13:39 +00:00
|
|
|
/**
|
|
|
|
* @param string $in_str in string
|
|
|
|
* @param string $charset character set
|
|
|
|
* @return string
|
|
|
|
*/
|
2017-12-02 02:05:06 +00:00
|
|
|
public static function encodeHeader($in_str, $charset)
|
2017-12-01 19:41:27 +00:00
|
|
|
{
|
|
|
|
$out_str = $in_str;
|
|
|
|
$need_to_convert = false;
|
|
|
|
|
|
|
|
for ($x = 0; $x < strlen($in_str); $x ++) {
|
|
|
|
if ((ord($in_str[$x]) == 0) || ((ord($in_str[$x]) > 128))) {
|
|
|
|
$need_to_convert = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 20:36:50 +00:00
|
|
|
if (!$need_to_convert) {
|
2017-12-01 19:41:27 +00:00
|
|
|
return $in_str;
|
2017-12-01 23:13:39 +00:00
|
|
|
}
|
2017-12-01 19:41:27 +00:00
|
|
|
|
|
|
|
if ($out_str && $charset) {
|
|
|
|
// define start delimimter, end delimiter and spacer
|
|
|
|
$end = "?=";
|
|
|
|
$start = "=?" . $charset . "?B?";
|
|
|
|
$spacer = $end . "\r\n " . $start;
|
|
|
|
|
|
|
|
// determine length of encoded text within chunks
|
|
|
|
// and ensure length is even
|
|
|
|
$length = 75 - strlen($start) - strlen($end);
|
|
|
|
|
|
|
|
/*
|
|
|
|
[EDIT BY danbrown AT php DOT net: The following
|
|
|
|
is a bugfix provided by (gardan AT gmx DOT de)
|
|
|
|
on 31-MAR-2005 with the following note:
|
|
|
|
"This means: $length should not be even,
|
|
|
|
but divisible by 4. The reason is that in
|
|
|
|
base64-encoding 3 8-bit-chars are represented
|
|
|
|
by 4 6-bit-chars. These 4 chars must not be
|
|
|
|
split between two encoded words, according
|
|
|
|
to RFC-2047.
|
|
|
|
*/
|
|
|
|
$length = $length - ($length % 4);
|
|
|
|
|
|
|
|
// encode the string and split it into chunks
|
|
|
|
// with spacers after each chunk
|
|
|
|
$out_str = base64_encode($out_str);
|
|
|
|
$out_str = chunk_split($out_str, $length, $spacer);
|
|
|
|
|
|
|
|
// remove trailing spacer and
|
|
|
|
// add start and end delimiters
|
2017-12-01 23:13:39 +00:00
|
|
|
$spacer = preg_quote($spacer, '/');
|
2017-12-01 19:41:27 +00:00
|
|
|
$out_str = preg_replace("/" . $spacer . "$/", "", $out_str);
|
|
|
|
$out_str = $start . $out_str . $end;
|
|
|
|
}
|
|
|
|
return $out_str;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-11-22 22:15:04 +00:00
|
|
|
* Function send is used by Protocol::EMAIL code
|
2017-12-01 19:41:27 +00:00
|
|
|
* (not to notify the user, but to send items to email contacts)
|
|
|
|
*
|
2017-12-01 23:13:39 +00:00
|
|
|
* @param string $addr address
|
|
|
|
* @param string $subject subject
|
|
|
|
* @param string $headers headers
|
|
|
|
* @param array $item item
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2017-12-01 19:41:27 +00:00
|
|
|
* @todo This could be changed to use the Emailer class
|
|
|
|
*/
|
2017-12-02 02:05:06 +00:00
|
|
|
public static function send($addr, $subject, $headers, $item)
|
2017-12-01 19:41:27 +00:00
|
|
|
{
|
|
|
|
//$headers .= 'MIME-Version: 1.0' . "\n";
|
|
|
|
//$headers .= 'Content-Type: text/html; charset=UTF-8' . "\n";
|
|
|
|
//$headers .= 'Content-Type: text/plain; charset=UTF-8' . "\n";
|
|
|
|
//$headers .= 'Content-Transfer-Encoding: 8bit' . "\n\n";
|
|
|
|
|
|
|
|
$part = uniqid("", true);
|
|
|
|
|
2018-11-07 02:16:27 +00:00
|
|
|
$html = Item::prepareBody($item);
|
2017-12-01 19:41:27 +00:00
|
|
|
|
|
|
|
$headers .= "Mime-Version: 1.0\n";
|
|
|
|
$headers .= 'Content-Type: multipart/alternative; boundary="=_'.$part.'"'."\n\n";
|
|
|
|
|
|
|
|
$body = "\n--=_".$part."\n";
|
|
|
|
$body .= "Content-Transfer-Encoding: 8bit\n";
|
|
|
|
$body .= "Content-Type: text/plain; charset=utf-8; format=flowed\n\n";
|
|
|
|
|
2018-03-08 19:58:35 +00:00
|
|
|
$body .= HTML::toPlaintext($html)."\n";
|
2017-12-01 19:41:27 +00:00
|
|
|
|
|
|
|
$body .= "--=_".$part."\n";
|
|
|
|
$body .= "Content-Transfer-Encoding: 8bit\n";
|
|
|
|
$body .= "Content-Type: text/html; charset=utf-8\n\n";
|
|
|
|
|
|
|
|
$body .= '<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">'.$html."</body></html>\n";
|
|
|
|
|
|
|
|
$body .= "--=_".$part."--";
|
|
|
|
|
|
|
|
//$message = '<html><body>' . $html . '</body></html>';
|
|
|
|
//$message = html2plain($html);
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log('notifier: email delivery to ' . $addr);
|
2017-12-01 19:41:27 +00:00
|
|
|
mail($addr, $subject, $body, $headers);
|
|
|
|
}
|
|
|
|
|
2017-12-01 23:13:39 +00:00
|
|
|
/**
|
|
|
|
* @param string $iri string
|
|
|
|
* @return string
|
|
|
|
*/
|
2017-12-01 19:41:27 +00:00
|
|
|
public static function iri2msgid($iri)
|
|
|
|
{
|
2017-12-01 23:13:39 +00:00
|
|
|
if (!strpos($iri, "@")) {
|
2017-12-01 19:41:27 +00:00
|
|
|
$msgid = preg_replace("/urn:(\S+):(\S+)\.(\S+):(\d+):(\S+)/i", "urn!$1!$4!$5@$2.$3", $iri);
|
2017-12-01 23:13:39 +00:00
|
|
|
} else {
|
2017-12-01 19:41:27 +00:00
|
|
|
$msgid = $iri;
|
2017-12-01 23:13:39 +00:00
|
|
|
}
|
|
|
|
|
2017-12-13 20:36:50 +00:00
|
|
|
return $msgid;
|
2017-12-01 19:41:27 +00:00
|
|
|
}
|
|
|
|
|
2017-12-01 23:13:39 +00:00
|
|
|
/**
|
|
|
|
* @param string $msgid msgid
|
|
|
|
* @return string
|
|
|
|
*/
|
2017-12-01 19:41:27 +00:00
|
|
|
public static function msgid2iri($msgid)
|
|
|
|
{
|
2017-12-01 23:13:39 +00:00
|
|
|
if (strpos($msgid, "@")) {
|
2017-12-01 19:41:27 +00:00
|
|
|
$iri = preg_replace("/urn!(\S+)!(\d+)!(\S+)@(\S+)\.(\S+)/i", "urn:$1:$4.$5:$2:$3", $msgid);
|
2017-12-01 23:13:39 +00:00
|
|
|
} else {
|
2017-12-01 19:41:27 +00:00
|
|
|
$iri = $msgid;
|
2017-12-01 23:13:39 +00:00
|
|
|
}
|
2017-12-13 20:36:50 +00:00
|
|
|
|
|
|
|
return $iri;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static function saveReplace($pattern, $replace, $text)
|
|
|
|
{
|
|
|
|
$save = $text;
|
|
|
|
|
|
|
|
$text = preg_replace($pattern, $replace, $text);
|
|
|
|
|
|
|
|
if ($text == '') {
|
|
|
|
$text = $save;
|
|
|
|
}
|
|
|
|
return $text;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static function unifyAttributionLine($message)
|
|
|
|
{
|
2018-01-15 13:05:12 +00:00
|
|
|
$quotestr = ['quote', 'spoiler'];
|
2017-12-13 20:36:50 +00:00
|
|
|
foreach ($quotestr as $quote) {
|
|
|
|
$message = self::saveReplace('/----- Original Message -----\s.*?From: "([^<"].*?)" <(.*?)>\s.*?To: (.*?)\s*?Cc: (.*?)\s*?Sent: (.*?)\s.*?Subject: ([^\n].*)\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
$message = self::saveReplace('/----- Original Message -----\s.*?From: "([^<"].*?)" <(.*?)>\s.*?To: (.*?)\s*?Sent: (.*?)\s.*?Subject: ([^\n].*)\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
|
|
|
|
$message = self::saveReplace('/-------- Original-Nachricht --------\s*\['.$quote.'\]\nDatum: (.*?)\nVon: (.*?) <(.*?)>\nAn: (.*?)\nBetreff: (.*?)\n/i', "[".$quote."='$2']\n", $message);
|
|
|
|
$message = self::saveReplace('/-------- Original-Nachricht --------\s*\['.$quote.'\]\sDatum: (.*?)\s.*Von: "([^<"].*?)" <(.*?)>\s.*An: (.*?)\n.*/i', "[".$quote."='$2']\n", $message);
|
|
|
|
$message = self::saveReplace('/-------- Original-Nachricht --------\s*\['.$quote.'\]\nDatum: (.*?)\nVon: (.*?)\nAn: (.*?)\nBetreff: (.*?)\n/i', "[".$quote."='$2']\n", $message);
|
|
|
|
|
|
|
|
$message = self::saveReplace('/-----Urspr.*?ngliche Nachricht-----\sVon: "([^<"].*?)" <(.*?)>\s.*Gesendet: (.*?)\s.*An: (.*?)\s.*Betreff: ([^\n].*?).*:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
$message = self::saveReplace('/-----Urspr.*?ngliche Nachricht-----\sVon: "([^<"].*?)" <(.*?)>\s.*Gesendet: (.*?)\s.*An: (.*?)\s.*Betreff: ([^\n].*?)\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
|
|
|
|
$message = self::saveReplace('/Am (.*?), schrieb (.*?):\s*\['.$quote.'\]/i', "[".$quote."='$2']\n", $message);
|
|
|
|
|
|
|
|
$message = self::saveReplace('/Am .*?, \d+ .*? \d+ \d+:\d+:\d+ \+\d+\sschrieb\s(.*?)\s<(.*?)>:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
|
|
|
|
$message = self::saveReplace('/Am (.*?) schrieb (.*?) <(.*?)>:\s*\['.$quote.'\]/i', "[".$quote."='$2']\n", $message);
|
|
|
|
$message = self::saveReplace('/Am (.*?) schrieb <(.*?)>:\s*\['.$quote.'\]/i', "[".$quote."='$2']\n", $message);
|
|
|
|
$message = self::saveReplace('/Am (.*?) schrieb (.*?):\s*\['.$quote.'\]/i', "[".$quote."='$2']\n", $message);
|
|
|
|
$message = self::saveReplace('/Am (.*?) schrieb (.*?)\n(.*?):\s*\['.$quote.'\]/i', "[".$quote."='$2']\n", $message);
|
|
|
|
|
|
|
|
$message = self::saveReplace('/(\d+)\/(\d+)\/(\d+) ([^<"].*?) <(.*?)>\s*\['.$quote.'\]/i', "[".$quote."='$4']\n", $message);
|
|
|
|
|
|
|
|
$message = self::saveReplace('/On .*?, \d+ .*? \d+ \d+:\d+:\d+ \+\d+\s(.*?)\s<(.*?)>\swrote:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
|
|
|
|
$message = self::saveReplace('/On (.*?) at (.*?), (.*?)\s<(.*?)>\swrote:\s*\['.$quote.'\]/i', "[".$quote."='$3']\n", $message);
|
|
|
|
$message = self::saveReplace('/On (.*?)\n([^<].*?)\s<(.*?)>\swrote:\s*\['.$quote.'\]/i', "[".$quote."='$2']\n", $message);
|
|
|
|
$message = self::saveReplace('/On (.*?), (.*?), (.*?)\s<(.*?)>\swrote:\s*\['.$quote.'\]/i', "[".$quote."='$3']\n", $message);
|
|
|
|
$message = self::saveReplace('/On ([^,].*?), (.*?)\swrote:\s*\['.$quote.'\]/i', "[".$quote."='$2']\n", $message);
|
|
|
|
$message = self::saveReplace('/On (.*?), (.*?)\swrote\s*\['.$quote.'\]/i', "[".$quote."='$2']\n", $message);
|
|
|
|
|
|
|
|
// Der loescht manchmal den Body - was eigentlich unmoeglich ist
|
|
|
|
$message = self::saveReplace('/On (.*?),(.*?),(.*?),(.*?), (.*?) wrote:\s*\['.$quote.'\]/i', "[".$quote."='$5']\n", $message);
|
|
|
|
|
|
|
|
$message = self::saveReplace('/Zitat von ([^<].*?) <(.*?)>:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
|
|
|
|
$message = self::saveReplace('/Quoting ([^<].*?) <(.*?)>:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
|
|
|
|
$message = self::saveReplace('/From: "([^<"].*?)" <(.*?)>\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
$message = self::saveReplace('/From: <(.*?)>\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
|
|
|
|
$message = self::saveReplace('/Du \(([^)].*?)\) schreibst:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
|
|
|
|
$message = self::saveReplace('/--- (.*?) <.*?> schrieb am (.*?):\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
$message = self::saveReplace('/--- (.*?) schrieb am (.*?):\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
|
|
|
|
$message = self::saveReplace('/\* (.*?) <(.*?)> hat geschrieben:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
|
|
|
|
$message = self::saveReplace('/(.*?) <(.*?)> schrieb (.*?)\):\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
$message = self::saveReplace('/(.*?) <(.*?)> schrieb am (.*?) um (.*):\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
$message = self::saveReplace('/(.*?) schrieb am (.*?) um (.*):\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
$message = self::saveReplace('/(.*?) \((.*?)\) schrieb:\s*\['.$quote.'\]/i', "[".$quote."='$2']\n", $message);
|
|
|
|
$message = self::saveReplace('/(.*?) schrieb:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
|
|
|
|
$message = self::saveReplace('/(.*?) <(.*?)> writes:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
$message = self::saveReplace('/(.*?) \((.*?)\) writes:\s*\['.$quote.'\]/i', "[".$quote."='$2']\n", $message);
|
|
|
|
$message = self::saveReplace('/(.*?) writes:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
|
|
|
|
$message = self::saveReplace('/\* (.*?) wrote:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
$message = self::saveReplace('/(.*?) wrote \(.*?\):\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
$message = self::saveReplace('/(.*?) wrote:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
|
|
|
|
$message = self::saveReplace('/([^<].*?) <.*?> hat am (.*?)\sum\s(.*)\sgeschrieben:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
|
|
|
|
$message = self::saveReplace('/(\d+)\/(\d+)\/(\d+) ([^<"].*?) <(.*?)>:\s*\['.$quote.'\]/i', "[".$quote."='$4']\n", $message);
|
|
|
|
$message = self::saveReplace('/(\d+)\/(\d+)\/(\d+) (.*?) <(.*?)>\s*\['.$quote.'\]/i', "[".$quote."='$4']\n", $message);
|
|
|
|
$message = self::saveReplace('/(\d+)\/(\d+)\/(\d+) <(.*?)>:\s*\['.$quote.'\]/i', "[".$quote."='$4']\n", $message);
|
|
|
|
$message = self::saveReplace('/(\d+)\/(\d+)\/(\d+) <(.*?)>\s*\['.$quote.'\]/i', "[".$quote."='$4']\n", $message);
|
|
|
|
|
|
|
|
$message = self::saveReplace('/(.*?) <(.*?)> schrubselte:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
|
|
|
|
$message = self::saveReplace('/(.*?) \((.*?)\) schrubselte:\s*\['.$quote.'\]/i', "[".$quote."='$2']\n", $message);
|
|
|
|
}
|
|
|
|
return $message;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static function removeGPG($message)
|
|
|
|
{
|
|
|
|
$pattern = '/(.*)\s*-----BEGIN PGP SIGNED MESSAGE-----\s*[\r\n].*Hash:.*?[\r\n](.*)'.
|
|
|
|
'[\r\n]\s*-----BEGIN PGP SIGNATURE-----\s*[\r\n].*'.
|
|
|
|
'[\r\n]\s*-----END PGP SIGNATURE-----(.*)/is';
|
|
|
|
|
2018-12-15 09:32:47 +00:00
|
|
|
if (preg_match($pattern, $message, $result)) {
|
|
|
|
$cleaned = trim($result[1].$result[2].$result[3]);
|
2017-12-13 20:36:50 +00:00
|
|
|
|
2018-12-15 09:32:47 +00:00
|
|
|
$cleaned = str_replace(["\n- --\n", "\n- -"], ["\n-- \n", "\n-"], $cleaned);
|
|
|
|
} else {
|
2017-12-13 20:36:50 +00:00
|
|
|
$cleaned = $message;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $cleaned;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static function removeSig($message)
|
|
|
|
{
|
|
|
|
$sigpos = strrpos($message, "\n-- \n");
|
|
|
|
$quotepos = strrpos($message, "[/quote]");
|
|
|
|
|
|
|
|
if ($sigpos == 0) {
|
|
|
|
// Especially for web.de who are using that as a separator
|
|
|
|
$message = str_replace("\n___________________________________________________________\n", "\n-- \n", $message);
|
|
|
|
$sigpos = strrpos($message, "\n-- \n");
|
|
|
|
$quotepos = strrpos($message, "[/quote]");
|
|
|
|
}
|
|
|
|
|
|
|
|
// When the signature separator is inside a quote, we don't separate
|
|
|
|
if (($sigpos < $quotepos) && ($sigpos != 0)) {
|
2018-01-15 13:05:12 +00:00
|
|
|
return ['body' => $message, 'sig' => ''];
|
2017-12-13 20:36:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$pattern = '/(.*)[\r\n]-- [\r\n](.*)/is';
|
|
|
|
|
|
|
|
preg_match($pattern, $message, $result);
|
|
|
|
|
2019-01-14 05:05:51 +00:00
|
|
|
if (!empty($result[1]) && !empty($result[2])) {
|
2017-12-13 20:36:50 +00:00
|
|
|
$cleaned = trim($result[1])."\n";
|
|
|
|
$sig = trim($result[2]);
|
|
|
|
} else {
|
|
|
|
$cleaned = $message;
|
|
|
|
$sig = '';
|
|
|
|
}
|
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
return ['body' => $cleaned, 'sig' => $sig];
|
2017-12-13 20:36:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private static function removeLinebreak($message)
|
|
|
|
{
|
|
|
|
$arrbody = explode("\n", trim($message));
|
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$lines = [];
|
2017-12-13 20:36:50 +00:00
|
|
|
$lineno = 0;
|
|
|
|
|
|
|
|
foreach ($arrbody as $i => $line) {
|
|
|
|
$currquotelevel = 0;
|
|
|
|
$currline = $line;
|
|
|
|
while ((strlen($currline)>0) && ((substr($currline, 0, 1) == '>')
|
|
|
|
|| (substr($currline, 0, 1) == ' '))) {
|
|
|
|
if (substr($currline, 0, 1) == '>') {
|
|
|
|
$currquotelevel++;
|
|
|
|
}
|
|
|
|
|
|
|
|
$currline = ltrim(substr($currline, 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
$quotelevel = 0;
|
2019-10-16 12:35:14 +00:00
|
|
|
$nextline = trim($arrbody[$i + 1] ?? '');
|
2017-12-13 20:36:50 +00:00
|
|
|
while ((strlen($nextline)>0) && ((substr($nextline, 0, 1) == '>')
|
|
|
|
|| (substr($nextline, 0, 1) == ' '))) {
|
|
|
|
if (substr($nextline, 0, 1) == '>') {
|
|
|
|
$quotelevel++;
|
|
|
|
}
|
|
|
|
|
|
|
|
$nextline = ltrim(substr($nextline, 1));
|
|
|
|
}
|
|
|
|
|
2019-01-14 05:05:51 +00:00
|
|
|
if (!empty($lines[$lineno])) {
|
2017-12-13 20:36:50 +00:00
|
|
|
if (substr($lines[$lineno], -1) != ' ') {
|
|
|
|
$lines[$lineno] .= ' ';
|
|
|
|
}
|
|
|
|
|
|
|
|
while ((strlen($line)>0) && ((substr($line, 0, 1) == '>')
|
|
|
|
|| (substr($line, 0, 1) == ' '))) {
|
|
|
|
|
|
|
|
$line = ltrim(substr($line, 1));
|
|
|
|
}
|
2019-01-14 05:05:51 +00:00
|
|
|
} else {
|
|
|
|
$lines[$lineno] = '';
|
2017-12-13 20:36:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$lines[$lineno] .= $line;
|
|
|
|
if (((substr($line, -1, 1) != ' '))
|
|
|
|
|| ($quotelevel != $currquotelevel)) {
|
|
|
|
$lineno++;
|
2019-01-14 05:05:51 +00:00
|
|
|
}
|
2017-12-13 20:36:50 +00:00
|
|
|
}
|
|
|
|
return implode("\n", $lines);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static function convertQuote($body, $reply)
|
|
|
|
{
|
|
|
|
// Convert Quotes
|
|
|
|
$arrbody = explode("\n", trim($body));
|
2018-01-15 13:05:12 +00:00
|
|
|
$arrlevel = [];
|
2017-12-13 20:36:50 +00:00
|
|
|
|
|
|
|
for ($i = 0; $i < count($arrbody); $i++) {
|
|
|
|
$quotelevel = 0;
|
|
|
|
$quoteline = $arrbody[$i];
|
|
|
|
|
|
|
|
while ((strlen($quoteline)>0) and ((substr($quoteline, 0, 1) == '>')
|
|
|
|
|| (substr($quoteline, 0, 1) == ' '))) {
|
|
|
|
if (substr($quoteline, 0, 1) == '>')
|
|
|
|
$quotelevel++;
|
|
|
|
|
|
|
|
$quoteline = ltrim(substr($quoteline, 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
$arrlevel[$i] = $quotelevel;
|
|
|
|
$arrbody[$i] = $quoteline;
|
|
|
|
}
|
|
|
|
|
|
|
|
$quotelevel = 0;
|
2018-01-15 13:05:12 +00:00
|
|
|
$arrbodyquoted = [];
|
2017-12-13 20:36:50 +00:00
|
|
|
|
|
|
|
for ($i = 0; $i < count($arrbody); $i++) {
|
|
|
|
$previousquote = $quotelevel;
|
|
|
|
$quotelevel = $arrlevel[$i];
|
|
|
|
|
|
|
|
while ($previousquote < $quotelevel) {
|
2018-02-14 04:58:46 +00:00
|
|
|
$quote = "[quote]";
|
2017-12-13 20:36:50 +00:00
|
|
|
$arrbody[$i] = $quote.$arrbody[$i];
|
|
|
|
$previousquote++;
|
|
|
|
}
|
|
|
|
|
|
|
|
while ($previousquote > $quotelevel) {
|
|
|
|
$arrbody[$i] = '[/quote]'.$arrbody[$i];
|
|
|
|
$previousquote--;
|
|
|
|
}
|
|
|
|
|
|
|
|
$arrbodyquoted[] = $arrbody[$i];
|
|
|
|
}
|
|
|
|
while ($quotelevel > 0) {
|
|
|
|
$arrbodyquoted[] = '[/quote]';
|
|
|
|
$quotelevel--;
|
|
|
|
}
|
|
|
|
|
|
|
|
$body = implode("\n", $arrbodyquoted);
|
|
|
|
|
|
|
|
if (strlen($body) > 0) {
|
|
|
|
$body = $body."\n\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($reply) {
|
|
|
|
$body = self::removeToFu($body);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $body;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static function removeToFu($message)
|
|
|
|
{
|
|
|
|
$message = trim($message);
|
|
|
|
|
|
|
|
do {
|
|
|
|
$oldmessage = $message;
|
|
|
|
$message = preg_replace('=\[/quote\][\s](.*?)\[quote\]=i', '$1', $message);
|
|
|
|
$message = str_replace("[/quote][quote]", "", $message);
|
|
|
|
} while ($message != $oldmessage);
|
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$quotes = [];
|
2017-12-13 20:36:50 +00:00
|
|
|
|
|
|
|
$startquotes = 0;
|
|
|
|
|
|
|
|
$start = 0;
|
|
|
|
|
|
|
|
while (($pos = strpos($message, '[quote', $start)) > 0) {
|
|
|
|
$quotes[$pos] = -1;
|
|
|
|
$start = $pos + 7;
|
|
|
|
$startquotes++;
|
|
|
|
}
|
|
|
|
|
|
|
|
$endquotes = 0;
|
|
|
|
$start = 0;
|
|
|
|
|
|
|
|
while (($pos = strpos($message, '[/quote]', $start)) > 0) {
|
|
|
|
$start = $pos + 7;
|
|
|
|
$endquotes++;
|
|
|
|
}
|
|
|
|
|
|
|
|
while ($endquotes < $startquotes) {
|
|
|
|
$message .= '[/quote]';
|
|
|
|
++$endquotes;
|
|
|
|
}
|
|
|
|
|
|
|
|
$start = 0;
|
|
|
|
|
|
|
|
while (($pos = strpos($message, '[/quote]', $start)) > 0) {
|
|
|
|
$quotes[$pos] = 1;
|
|
|
|
$start = $pos + 7;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strtolower(substr($message, -8)) != '[/quote]')
|
|
|
|
return($message);
|
|
|
|
|
|
|
|
krsort($quotes);
|
|
|
|
|
|
|
|
$quotelevel = 0;
|
|
|
|
$quotestart = 0;
|
|
|
|
foreach ($quotes as $index => $quote) {
|
|
|
|
$quotelevel += $quote;
|
|
|
|
|
|
|
|
if (($quotelevel == 0) and ($quotestart == 0))
|
|
|
|
$quotestart = $index;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($quotestart != 0) {
|
|
|
|
$message = trim(substr($message, 0, $quotestart))."\n[spoiler]".substr($message, $quotestart+7, -8).'[/spoiler]';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $message;
|
2017-12-01 19:41:27 +00:00
|
|
|
}
|
|
|
|
}
|