2011-10-05 09:20:17 +00:00
< ? php
2018-03-25 04:08:19 +00:00
2011-10-05 09:20:17 +00:00
/**
* Name : NSFW
* Description : Collapse posts with inappropriate content
* Version : 1.0
* Author : Mike Macgirvin < http :// macgirvin . com / profile / mike >
2018-01-15 13:15:33 +00:00
*
2011-10-05 09:20:17 +00:00
*/
2018-01-17 00:51:12 +00:00
use Friendica\Core\Addon ;
2018-01-22 19:03:11 +00:00
use Friendica\Core\L10n ;
2017-11-06 23:55:24 +00:00
use Friendica\Core\PConfig ;
2018-01-22 19:03:11 +00:00
function nsfw_install ()
{
2018-04-05 02:51:44 +00:00
Addon :: registerHook ( 'prepare_body_content_filter' , 'addon/nsfw/nsfw.php' , 'nsfw_prepare_body_content_filter' , 10 );
2018-01-20 13:57:41 +00:00
Addon :: registerHook ( 'addon_settings' , 'addon/nsfw/nsfw.php' , 'nsfw_addon_settings' );
Addon :: registerHook ( 'addon_settings_post' , 'addon/nsfw/nsfw.php' , 'nsfw_addon_settings_post' );
2011-10-05 09:20:17 +00:00
}
2018-01-22 19:03:11 +00:00
function nsfw_uninstall ()
{
2018-04-05 02:51:44 +00:00
Addon :: unregisterHook ( 'prepare_body_content_filter' , 'addon/nsfw/nsfw.php' , 'nsfw_prepare_body_content_filter' );
2018-01-17 00:51:12 +00:00
Addon :: unregisterHook ( 'prepare_body' , 'addon/nsfw/nsfw.php' , 'nsfw_prepare_body' );
2018-01-20 13:57:41 +00:00
Addon :: unregisterHook ( 'addon_settings' , 'addon/nsfw/nsfw.php' , 'nsfw_addon_settings' );
Addon :: unregisterHook ( 'addon_settings_post' , 'addon/nsfw/nsfw.php' , 'nsfw_addon_settings_post' );
2011-10-14 03:53:24 +00:00
}
2018-01-15 13:15:33 +00:00
// 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
2012-09-17 00:42:36 +00:00
// inside them quite often. We don't need anything fancy, just pull out the data blob so we can
2018-01-15 13:15:33 +00:00
// check against the rest of the body.
2018-01-22 19:03:11 +00:00
function nsfw_extract_photos ( $body )
{
2012-09-17 00:42:36 +00:00
$new_body = '' ;
2018-01-15 13:15:33 +00:00
2018-03-15 09:00:09 +00:00
$img_start = strpos ( $body , 'src="data:' );
$img_end = (( $img_start !== false ) ? strpos ( substr ( $body , $img_start ), '>' ) : false );
2012-09-17 00:42:36 +00:00
$cnt = 0 ;
2018-03-25 04:08:19 +00:00
while ( $img_end !== false ) {
2012-09-17 00:42:36 +00:00
$img_end += $img_start ;
2018-03-15 09:00:09 +00:00
$new_body = $new_body . substr ( $body , 0 , $img_start );
2018-01-15 13:15:33 +00:00
2012-09-17 00:42:36 +00:00
$cnt ++ ;
2018-03-15 09:00:09 +00:00
$body = substr ( $body , 0 , $img_end );
2012-09-17 00:42:36 +00:00
2018-03-15 09:00:09 +00:00
$img_start = strpos ( $body , 'src="data:' );
$img_end = (( $img_start !== false ) ? strpos ( substr ( $body , $img_start ), '>' ) : false );
2012-09-17 00:42:36 +00:00
}
2018-03-15 09:00:09 +00:00
if ( ! $cnt ) {
2012-09-17 00:42:36 +00:00
return $body ;
2018-03-15 09:00:09 +00:00
}
2012-09-17 00:42:36 +00:00
return $new_body ;
}
2011-10-14 03:53:24 +00:00
2018-03-15 09:00:09 +00:00
function nsfw_addon_settings ( & $a , & $s )
{
if ( ! local_user ()) {
2011-10-14 03:53:24 +00:00
return ;
2018-03-15 09:00:09 +00:00
}
2011-10-14 03:53:24 +00:00
2018-03-15 09:00:09 +00:00
/* Add our stylesheet to the page so we can make our settings look nice */
2011-10-14 03:53:24 +00:00
2018-03-15 09:00:09 +00:00
$a -> page [ 'htmlhead' ] .= '<link rel="stylesheet" type="text/css" href="' . $a -> get_baseurl () . '/addon/nsfw/nsfw.css' . '" media="all" />' . " \r \n " ;
2011-10-14 03:53:24 +00:00
2018-03-15 09:00:09 +00:00
$enable_checked = ( intval ( PConfig :: get ( local_user (), 'nsfw' , 'disable' )) ? '' : ' checked="checked" ' );
$words = PConfig :: get ( local_user (), 'nsfw' , 'words' );
if ( ! $words ) {
2011-10-14 03:53:24 +00:00
$words = 'nsfw,' ;
2018-03-15 09:00:09 +00:00
}
2011-10-14 03:53:24 +00:00
2018-03-15 09:00:09 +00:00
$s .= '<span id="settings_nsfw_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_nsfw_expanded\'); openClose(\'settings_nsfw_inflated\');">' ;
2018-03-15 10:57:11 +00:00
$s .= '<h3>' . L10n :: t ( 'Content Filter (NSFW and more)' ) . '</h3>' ;
2018-03-15 09:00:09 +00:00
$s .= '</span>' ;
$s .= '<div id="settings_nsfw_expanded" class="settings-block" style="display: none;">' ;
$s .= '<span class="fakelink" onclick="openClose(\'settings_nsfw_expanded\'); openClose(\'settings_nsfw_inflated\');">' ;
2018-03-15 10:57:11 +00:00
$s .= '<h3>' . L10n :: t ( 'Content Filter (NSFW and more)' ) . '</h3>' ;
2018-03-15 09:00:09 +00:00
$s .= '</span>' ;
$s .= '<div id="nsfw-wrapper">' ;
$s .= '<p>' . L10n :: t ( 'This addon searches for specified words/text in posts and collapses them. It can be used to filter content tagged with for instance #NSFW that may be deemed inappropriate at certain times or places, such as being at work. It is also useful for hiding irrelevant or annoying content from direct view.' ) . '</p>' ;
$s .= '<label id="nsfw-enable-label" for="nsfw-enable">' . L10n :: t ( 'Enable Content filter' ) . ' </label>' ;
$s .= '<input id="nsfw-enable" type="checkbox" name="nsfw-enable" value="1"' . $enable_checked . ' />' ;
2012-02-04 11:56:55 +00:00
$s .= '<div class="clear"></div>' ;
2018-03-15 09:00:09 +00:00
$s .= '<label id="nsfw-label" for="nsfw-words">' . L10n :: t ( 'Comma separated list of keywords to hide' ) . ' </label>' ;
2018-03-25 04:08:19 +00:00
$s .= '<textarea id="nsfw-words" type="text" name="nsfw-words">' . $words . '</textarea>' ;
2018-03-15 09:00:09 +00:00
$s .= '</div><div class="clear"></div>' ;
2011-10-14 03:53:24 +00:00
2018-03-15 09:00:09 +00:00
$s .= '<div class="settings-submit-wrapper" ><input type="submit" id="nsfw-submit" name="nsfw-submit" class="settings-submit" value="' . L10n :: t ( 'Save Settings' ) . '" /></div>' ;
2018-01-22 19:03:11 +00:00
$s .= '<div class="nsfw-desc">' . L10n :: t ( 'Use /expression/ to provide regular expressions' ) . '</div></div>' ;
2011-10-14 03:53:24 +00:00
return ;
}
2018-03-15 09:00:09 +00:00
function nsfw_addon_settings_post ( & $a , & $b )
{
if ( ! local_user ()) {
2011-10-14 03:53:24 +00:00
return ;
2018-03-15 09:00:09 +00:00
}
2011-10-14 03:53:24 +00:00
2018-03-15 09:00:09 +00:00
if ( $_POST [ 'nsfw-submit' ]) {
PConfig :: set ( local_user (), 'nsfw' , 'words' , trim ( $_POST [ 'nsfw-words' ]));
2018-03-25 04:08:19 +00:00
$enable = ( x ( $_POST , 'nsfw-enable' ) ? intval ( $_POST [ 'nsfw-enable' ]) : 0 );
$disable = 1 - $enable ;
2018-03-15 09:00:09 +00:00
PConfig :: set ( local_user (), 'nsfw' , 'disable' , $disable );
2018-01-22 19:03:11 +00:00
info ( L10n :: t ( 'NSFW Settings saved.' ) . EOL );
2011-10-14 03:53:24 +00:00
}
2011-10-05 09:20:17 +00:00
}
2018-04-05 02:51:44 +00:00
function nsfw_prepare_body_content_filter ( \Friendica\App $a , & $hook_data )
2018-03-15 09:00:09 +00:00
{
2011-10-14 03:53:24 +00:00
$words = null ;
2018-03-15 09:00:09 +00:00
if ( PConfig :: get ( local_user (), 'nsfw' , 'disable' )) {
2012-02-04 11:56:55 +00:00
return ;
2018-03-15 08:44:00 +00:00
}
2018-03-15 09:00:09 +00:00
if ( local_user ()) {
$words = PConfig :: get ( local_user (), 'nsfw' , 'words' );
2011-10-14 03:53:24 +00:00
}
2018-03-25 04:08:19 +00:00
2018-03-15 09:00:09 +00:00
if ( $words ) {
2018-03-25 04:08:19 +00:00
$word_list = explode ( ',' , $words );
2018-03-15 09:00:09 +00:00
} else {
2018-03-25 04:08:19 +00:00
$word_list = [ 'nsfw' ];
2011-10-14 03:53:24 +00:00
}
$found = false ;
2018-03-25 04:08:19 +00:00
if ( count ( $word_list )) {
2018-04-01 06:32:08 +00:00
$body = $hook_data [ 'item' ][ 'title' ] . " \n " . nsfw_extract_photos ( $hook_data [ 'item' ][ 'body' ]);
2012-09-17 00:42:36 +00:00
2018-03-25 04:08:19 +00:00
foreach ( $word_list as $word ) {
2012-05-11 04:35:48 +00:00
$word = trim ( $word );
2018-03-15 09:00:09 +00:00
if ( ! strlen ( $word )) {
2011-10-14 03:53:24 +00:00
continue ;
}
2018-03-25 04:20:16 +00:00
2018-04-01 06:32:08 +00:00
$tag_search = false ;
2018-03-25 04:20:16 +00:00
switch ( $word [ 0 ]) {
case '/' ; // Regular expression
$found = preg_match ( $word , $body );
break ;
case '#' : // Hashtag-only search
2018-04-01 06:32:08 +00:00
$tag_search = true ;
$found = nsfw_find_word_in_item_tags ( $hook_data [ 'item' ][ 'hashtags' ], substr ( $word , 1 ));
2012-02-02 07:40:16 +00:00
break ;
2018-03-25 04:20:16 +00:00
default :
2018-04-01 06:32:08 +00:00
$found = stripos ( $body , $word ) !== false || nsfw_find_word_in_item_tags ( $hook_data [ 'item' ][ 'tags' ], $word );
2012-02-02 07:40:16 +00:00
break ;
2018-03-25 04:20:16 +00:00
}
if ( $found ) {
break ;
2018-01-15 13:15:33 +00:00
}
}
2011-10-14 03:53:24 +00:00
}
2018-01-22 19:03:11 +00:00
if ( $found ) {
2018-04-01 06:32:08 +00:00
if ( $tag_search ) {
$hook_data [ 'filter_reasons' ][] = L10n :: t ( 'Filtered tag: %s' , $word );
} else {
$hook_data [ 'filter_reasons' ][] = L10n :: t ( 'Filtered word: %s' , $word );
}
2011-10-05 09:20:17 +00:00
}
2011-10-14 03:53:24 +00:00
}
2018-03-25 04:20:16 +00:00
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 ;
}