friendica-addons/nsfw/nsfw.php

105 lines
2.7 KiB
PHP
Raw Normal View History

2011-10-05 11:20:17 +02:00
<?php
/**
* Name: NSFW
* Description: Collapse posts with inappropriate content
* Version: 1.0
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
*
*/
function nsfw_install() {
register_hook('prepare_body', 'addon/nsfw/nsfw.php', 'nsfw_prepare_body');
2011-10-14 05:53:24 +02:00
register_hook('plugin_settings', 'addon/nsfw/nsfw.php', 'nsfw_addon_settings');
register_hook('plugin_settings_post', 'addon/nsfw/nsfw.php', 'nsfw_addon_settings_post');
2011-10-05 11:20:17 +02:00
}
function nsfw_uninstall() {
unregister_hook('prepare_body', 'addon/nsfw/nsfw.php', 'nsfw_prepare_body');
2011-10-14 05:53:24 +02:00
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_addon_settings(&$a,&$s) {
if(! local_user())
return;
/* Add our stylesheet to the page so we can make our settings look nice */
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/nsfw/nsfw.css' . '" media="all" />' . "\r\n";
$words = get_pconfig(local_user(),'nsfw','words');
if(! $words)
$words = 'nsfw,';
$s .= '<div class="settings-block">';
$s .= '<h3>' . t('"Not Safe For Work" Settings') . '</h3>';
$s .= '<div id="nsfw-wrapper">';
$s .= '<label id="nsfw-label" for="nsfw-words">' . t('Comma separated words to treat as NSFW') . ' </label>';
$s .= '<input id="nsfw-words" type="text" name="nsfw-words" value="' . $words .'" />';
$s .= '</div><div class="clear"></div>';
$s .= '<div class="settings-submit-wrapper" ><input type="submit" id="nsfw-submit" name="nsfw-submit" class="settings-submit" value="' . t('Submit') . '" /></div></div>';
return;
}
function nsfw_addon_settings_post(&$a,&$b) {
if(! local_user())
return;
if($_POST['nsfw-submit']) {
set_pconfig(local_user(),'nsfw','words',trim($_POST['nsfw-words']));
info( t('NSFW Settings saved.') . EOL);
}
2011-10-05 11:20:17 +02:00
}
function nsfw_prepare_body(&$a,&$b) {
2011-10-14 05:53:24 +02:00
$words = null;
if(local_user()) {
$words = get_pconfig(local_user(),'nsfw','words');
}
if($words) {
$arr = explode(',',$words);
}
else {
$arr = array('nsfw');
}
$found = false;
if(count($arr)) {
foreach($arr as $word) {
if(! strlen(trim($word))) {
continue;
}
2011-10-25 00:53:20 +02:00
if(stristr($b['html'],$word)) {
2011-10-14 05:53:24 +02:00
$found = true;
break;
}
2011-10-25 00:53:20 +02:00
if(stristr($b['item']['tag'], ']' . $word . '[' )) {
$found = true;
break;
}
2011-10-14 05:53:24 +02:00
}
}
if($found) {
2011-10-05 11:20:17 +02:00
$rnd = random_string(8);
2011-11-11 03:19:22 +01:00
$b['html'] = '<div id="nsfw-wrap-' . $rnd . '" class="fakelink" onclick=openClose(\'nsfw-' . $rnd . '\'); >' . sprintf( t('%s - Click to open/close'),$word ) . '</div><div id="nsfw-' . $rnd . '" style="display: none; " >' . $b['html'] . '</div>';
2011-10-05 11:20:17 +02:00
}
2011-10-14 05:53:24 +02:00
}