diff options
author | zotlabs <mike@macgirvin.com> | 2018-05-10 19:31:51 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-05-10 19:31:51 -0700 |
commit | 62bc5e8051ea7eb96359da5ff335a67b0e1af4ac (patch) | |
tree | c76bc75f5ebaba999401f43f00a40ee64819887b /include/items.php | |
parent | ef6e067a45efa43eb30b4639676ed179636d2a1d (diff) | |
download | volse-hubzilla-62bc5e8051ea7eb96359da5ff335a67b0e1af4ac.tar.gz volse-hubzilla-62bc5e8051ea7eb96359da5ff335a67b0e1af4ac.tar.bz2 volse-hubzilla-62bc5e8051ea7eb96359da5ff335a67b0e1af4ac.zip |
use Zlib/MessageFilter for sourced messages also
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 38 |
1 files changed, 4 insertions, 34 deletions
diff --git a/include/items.php b/include/items.php index 1c0ef418a..55b5a73db 100755 --- a/include/items.php +++ b/include/items.php @@ -3071,44 +3071,14 @@ function check_item_source($uid, $item) { return false; } - - // since we now have connection filters with more features, the source filter is redundant and can probably go away - - if(! $r[0]['src_patt']) { + if (! $r[0]['src_patt']) { logger('source: success'); return true; } - - require_once('include/html2plain.php'); - $text = prepare_text($item['body'],$item['mimetype']); - $text = html2plain($text); - - $tags = ((count($item['term'])) ? $item['term'] : false); - - $words = explode("\n",$r[0]['src_patt']); - if($words) { - foreach($words as $word) { - $w = trim($word); - if(! $w) - continue; - if(substr($w,0,1) === '#' && $tags) { - foreach($tags as $t) { - if((($t['ttype'] == TERM_HASHTAG) || ($t['ttype'] == TERM_COMMUNITYTAG)) && (($t['term'] === substr($w,1)) || (substr($w,1) === '*'))) { - logger('source: tag filter success'); - return true; - } - } - } - elseif((strpos($w,'/') === 0) && preg_match($w,$text)) { - logger('source: preg filter success'); - return true; - } - elseif(stristr($text,$w) !== false) { - logger('source: text filter success'); - return true; - } - } + if (\Zotlabs\Lib\MessageFilter::evaluate($item, $r[0]['src_patt'], EMPTY_STR)) { + logger('source: text filter success'); + return true; } logger('source: filter fail'); |