]> git.mxchange.org Git - friendica-addons.git/commitdiff
nsfw custom wordlist
authorFriendika <info@friendika.com>
Fri, 14 Oct 2011 03:53:24 +0000 (20:53 -0700)
committerFriendika <info@friendika.com>
Fri, 14 Oct 2011 03:53:24 +0000 (20:53 -0700)
nsfw.tgz
nsfw/nsfw.css [new file with mode: 0644]
nsfw/nsfw.php

index 294f9ec8bbac3779447491d58450cfa803adb9db..e7c959e8e692ac13a7746ea7aacf794887483e6d 100644 (file)
Binary files a/nsfw.tgz and b/nsfw.tgz differ
diff --git a/nsfw/nsfw.css b/nsfw/nsfw.css
new file mode 100644 (file)
index 0000000..548b63a
--- /dev/null
@@ -0,0 +1,16 @@
+
+#nsfw-label {
+       float: left;
+       width: 300px;
+       margin-top: 10px;
+}
+
+#nsfw-words {
+       float: left;
+       margin-top: 10px;
+}
+
+#nsfw-submit {
+       margin-top: 15px;
+}
+
index 776df194837c3e18cf125c1d62a8ab7311e1c360..dba9f1e85e161724d751f54ef08cf4a6a2ee6c54 100644 (file)
 
 function nsfw_install() {
        register_hook('prepare_body', 'addon/nsfw/nsfw.php', 'nsfw_prepare_body');
+       register_hook('plugin_settings', 'addon/nsfw/nsfw.php', 'nsfw_addon_settings');
+       register_hook('plugin_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_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);
+       }
 }
 
 function nsfw_prepare_body(&$a,&$b) {
-       if(stristr($b,'nsfw')) {
+
+       $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;
+                       }
+
+                       if(stristr($b,$word)) {
+                               $found = true;
+                               break;
+                       }
+               }
+       }
+       if($found) {
                $rnd = random_string(8);
                $b = '<div id="nsfw-wrap-' . $rnd . '" class="fakelink" onclick=openClose(\'nsfw-' . $rnd . '\'); >' . t('NSFW - Click to open/close') . '</div><div id="nsfw-' . $rnd . '" style="display: none; " >' . $b . '</div>';  
        }
-}
\ No newline at end of file
+}