]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
remove dead code for handling direct messages, now done with commands
authorEvan Prodromou <evan@status.net>
Tue, 15 Dec 2009 15:12:36 +0000 (10:12 -0500)
committerEvan Prodromou <evan@status.net>
Tue, 15 Dec 2009 15:12:36 +0000 (10:12 -0500)
scripts/xmppdaemon.php

index e52e2a6afe6d3fdcb6293a2f340b00dd86102739..20105b602e94da6995de987a80e7188a1041967b 100755 (executable)
@@ -195,17 +195,6 @@ class XMPPDaemon extends Daemon
         } else if ($this->is_otr($pl['body'])) {
             $this->log(LOG_INFO, 'Ignoring OTR from ' . $from);
             return;
-        } else if ($this->is_direct($pl['body'])) {
-            $this->log(LOG_INFO, 'Got a direct message ' . $from);
-
-            preg_match_all('/d[\ ]*([a-z0-9]{1,64})/', $pl['body'], $to);
-
-            $to = preg_replace('/^d([\ ])*/', '', $to[0][0]);
-            $body = preg_replace('/d[\ ]*('. $to .')[\ ]*/', '', $pl['body']);
-
-            $this->log(LOG_INFO, 'Direct message from '. $user->nickname . ' to ' . $to);
-
-            $this->add_direct($user, $body, $to, $from);
         } else {
 
             $this->log(LOG_INFO, 'Posting a notice from ' . $user->nickname);
@@ -284,15 +273,6 @@ class XMPPDaemon extends Daemon
         }
     }
 
-    function is_direct($txt)
-    {
-        if (strtolower(substr($txt, 0, 2))=='d ') {
-            return true;
-        } else {
-            return false;
-        }
-    }
-
     function from_site($address, $msg)
     {
         $text = '['.common_config('site', 'name') . '] ' . $msg;