X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=nsfw%2Fnsfw.php;h=42c80fc23e7fe7aa16470a757449f566cd590af2;hb=3bf2c3ca07b1a7b4dccfa9e9eb8e995755af798e;hp=3f00a2f23889cb11bfb99bf39a40931c066f3c89;hpb=3b104218cf1bb223d2c4dfb4b69713ca08e43003;p=friendica-addons.git diff --git a/nsfw/nsfw.php b/nsfw/nsfw.php old mode 100755 new mode 100644 index 3f00a2f2..42c80fc2 --- a/nsfw/nsfw.php +++ b/nsfw/nsfw.php @@ -1,38 +1,39 @@ - * + * */ - -function nsfw_install() { - register_hook('prepare_body', 'addon/nsfw/nsfw.php', 'nsfw_prepare_body', 10); - register_hook('plugin_settings', 'addon/nsfw/nsfw.php', 'nsfw_addon_settings'); - register_hook('plugin_settings_post', 'addon/nsfw/nsfw.php', 'nsfw_addon_settings_post'); - +use Friendica\Core\Addon; +use Friendica\Core\L10n; +use Friendica\Core\PConfig; + +function nsfw_install() +{ + Addon::registerHook('prepare_body', 'addon/nsfw/nsfw.php', 'nsfw_prepare_body', 10); + Addon::registerHook('addon_settings', 'addon/nsfw/nsfw.php', 'nsfw_addon_settings'); + Addon::registerHook('addon_settings_post', 'addon/nsfw/nsfw.php', 'nsfw_addon_settings_post'); } -function nsfw_uninstall() { - unregister_hook('prepare_body', 'addon/nsfw/nsfw.php', 'nsfw_prepare_body'); - unregister_hook('plugin_settings', 'addon/nsfw/nsfw.php', 'nsfw_addon_settings'); - unregister_hook('plugin_settings_post', 'addon/nsfw/nsfw.php', 'nsfw_addon_settings_post'); - +function nsfw_uninstall() +{ + Addon::unregisterHook('prepare_body', 'addon/nsfw/nsfw.php', 'nsfw_prepare_body'); + Addon::unregisterHook('addon_settings', 'addon/nsfw/nsfw.php', 'nsfw_addon_settings'); + Addon::unregisterHook('addon_settings_post', 'addon/nsfw/nsfw.php', 'nsfw_addon_settings_post'); } -// This function isn't perfect and isn't trying to preserve the html structure - it's just a -// quick and dirty filter to pull out embedded photo blobs because 'nsfw' seems to come up +// This function isn't perfect and isn't trying to preserve the html structure - it's just a +// quick and dirty filter to pull out embedded photo blobs because 'nsfw' seems to come up // inside them quite often. We don't need anything fancy, just pull out the data blob so we can -// check against the rest of the body. - -function nsfw_extract_photos($body) { +// check against the rest of the body. +function nsfw_extract_photos($body) +{ $new_body = ''; - + $img_start = strpos($body,'src="data:'); $img_end = (($img_start !== false) ? strpos(substr($body,$img_start),'>') : false); @@ -41,7 +42,7 @@ function nsfw_extract_photos($body) { while($img_end !== false) { $img_end += $img_start; $new_body = $new_body . substr($body,0,$img_start); - + $cnt ++; $body = substr($body,0,$img_end); @@ -69,24 +70,30 @@ function nsfw_addon_settings(&$a,&$s) { $a->page['htmlhead'] .= '' . "\r\n"; - $enable_checked = (intval(get_pconfig(local_user(),'nsfw','disable')) ? '' : ' checked="checked" '); - $words = get_pconfig(local_user(),'nsfw','words'); + $enable_checked = (intval(PConfig::get(local_user(),'nsfw','disable')) ? '' : ' checked="checked" '); + $words = PConfig::get(local_user(),'nsfw','words'); if(! $words) $words = 'nsfw,'; - $s .= '
'; - $s .= '

' . t('Not Safe For Work (General Purpose Content Filter) settings') . '

'; + $s .= ''; + $s .= '

' . L10n::t('Content Filter (NSFW and more)') . '

'; + $s .= '
'; + $s .= ''; + $s .= '
'; + $s .= '
' . L10n::t('Use /expression/ to provide regular expressions') . '
'; return; @@ -98,11 +105,11 @@ function nsfw_addon_settings_post(&$a,&$b) { return; if($_POST['nsfw-submit']) { - set_pconfig(local_user(),'nsfw','words',trim($_POST['nsfw-words'])); + PConfig::set(local_user(),'nsfw','words',trim($_POST['nsfw-words'])); $enable = ((x($_POST,'nsfw-enable')) ? intval($_POST['nsfw-enable']) : 0); $disable = 1-$enable; - set_pconfig(local_user(),'nsfw','disable', $disable); - info( t('NSFW Settings saved.') . EOL); + PConfig::set(local_user(),'nsfw','disable', $disable); + info(L10n::t('NSFW Settings saved.') . EOL); } } @@ -110,17 +117,17 @@ function nsfw_prepare_body(&$a,&$b) { $words = null; - if(get_pconfig(local_user(),'nsfw','disable')) + if(PConfig::get(local_user(),'nsfw','disable')) return; if(local_user()) { - $words = get_pconfig(local_user(),'nsfw','words'); + $words = PConfig::get(local_user(),'nsfw','words'); } if($words) { $arr = explode(',',$words); } else { - $arr = array('nsfw'); + $arr = ['nsfw']; } $found = false; @@ -152,11 +159,12 @@ function nsfw_prepare_body(&$a,&$b) { } } } - } - } + } + } } - if($found) { + + if ($found) { $rnd = random_string(8); - $b['html'] = ''; + $b['html'] = ''; } }