forked from friendica/friendica-addons
Merge remote-tracking branch 'upstream/develop' into develop
This commit is contained in:
commit
a406fbc9e4
|
@ -1,4 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Name: NSFW
|
* Name: NSFW
|
||||||
* Description: Collapse posts with inappropriate content
|
* Description: Collapse posts with inappropriate content
|
||||||
|
@ -17,7 +18,6 @@ function nsfw_install()
|
||||||
Addon::registerHook('addon_settings_post', 'addon/nsfw/nsfw.php', 'nsfw_addon_settings_post');
|
Addon::registerHook('addon_settings_post', 'addon/nsfw/nsfw.php', 'nsfw_addon_settings_post');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function nsfw_uninstall()
|
function nsfw_uninstall()
|
||||||
{
|
{
|
||||||
Addon::unregisterHook('prepare_body', 'addon/nsfw/nsfw.php', 'nsfw_prepare_body');
|
Addon::unregisterHook('prepare_body', 'addon/nsfw/nsfw.php', 'nsfw_prepare_body');
|
||||||
|
@ -48,7 +48,6 @@ function nsfw_extract_photos($body)
|
||||||
|
|
||||||
$img_start = strpos($body, 'src="data:');
|
$img_start = strpos($body, 'src="data:');
|
||||||
$img_end = (($img_start !== false) ? strpos(substr($body, $img_start), '>') : false);
|
$img_end = (($img_start !== false) ? strpos(substr($body, $img_start), '>') : false);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$cnt) {
|
if (!$cnt) {
|
||||||
|
@ -110,7 +109,7 @@ function nsfw_addon_settings_post(&$a, &$b)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function nsfw_prepare_body(&$a, &$b)
|
function nsfw_prepare_body(Friendica\App $a, &$b)
|
||||||
{
|
{
|
||||||
// Don't do the check when there is a content warning
|
// Don't do the check when there is a content warning
|
||||||
if (!empty($b['item']['content-warning'])) {
|
if (!empty($b['item']['content-warning'])) {
|
||||||
|
@ -125,45 +124,58 @@ function nsfw_prepare_body(&$a, &$b)
|
||||||
if (local_user()) {
|
if (local_user()) {
|
||||||
$words = PConfig::get(local_user(), 'nsfw', 'words');
|
$words = PConfig::get(local_user(), 'nsfw', 'words');
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($words) {
|
if ($words) {
|
||||||
$arr = explode(',', $words);
|
$word_list = explode(',', $words);
|
||||||
} else {
|
} else {
|
||||||
$arr = ['nsfw'];
|
$word_list = ['nsfw'];
|
||||||
}
|
}
|
||||||
|
|
||||||
$found = false;
|
$found = false;
|
||||||
if (count($arr)) {
|
if (count($word_list)) {
|
||||||
$body = $b['item']['title'] . "\n" . nsfw_extract_photos($b['html']);
|
$body = $b['item']['title'] . "\n" . nsfw_extract_photos($b['html']);
|
||||||
|
|
||||||
foreach ($arr as $word) {
|
foreach ($word_list as $word) {
|
||||||
$word = trim($word);
|
$word = trim($word);
|
||||||
if (!strlen($word)) {
|
if (!strlen($word)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (strpos($word,'/') === 0) {
|
|
||||||
if (preg_match($word, $body)) {
|
switch ($word[0]) {
|
||||||
$found = true;
|
case '/'; // Regular expression
|
||||||
|
$found = preg_match($word, $body);
|
||||||
|
break;
|
||||||
|
case '#': // Hashtag-only search
|
||||||
|
$found = nsfw_find_word_in_item_tags($b['item']['hashtags'], substr($word, 1));
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
$found = stripos($body, $word) !== false || nsfw_find_word_in_item_tags($b['item']['tags'], $word);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
if (stristr($body, $word)) {
|
if ($found) {
|
||||||
$found = true;
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (is_array($b['item']['tags']) && count($b['item']['tags'])) {
|
|
||||||
foreach ($b['item']['tags'] as $t) {
|
|
||||||
if (stristr($t, '>' . $word . '<')) {
|
|
||||||
$found = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($found) {
|
if ($found) {
|
||||||
$rnd = random_string(8);
|
$rnd = random_string(8);
|
||||||
$b['html'] = '<div id="nsfw-wrap-' . $rnd . '" class="fakelink" onclick=openClose(\'nsfw-' . $rnd . '\'); >' . L10n::t('%s - Click to open/close', $word) . '</div><div id="nsfw-' . $rnd . '" style="display: none; " >' . $b['html'] . '</div>';
|
$b['html'] = '<div id="nsfw-wrap-' . $rnd . '" class="fakelink" onclick=openClose(\'nsfw-' . $rnd . '\'); >' .
|
||||||
|
L10n::t('%s - Click to open/close', $word) .
|
||||||
|
'</div><div id="nsfw-' . $rnd . '" style="display: none; " >' . $b['html'] . '</div>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function nsfw_find_word_in_item_tags($item_tags, $word)
|
||||||
|
{
|
||||||
|
if (is_array($item_tags)) {
|
||||||
|
foreach ($item_tags as $tag) {
|
||||||
|
if (stripos($tag, '>' . $word . '<') !== false) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue