]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
strip whitespace in xmppdaemon
authorEvan Prodromou <evan@prodromou.name>
Mon, 23 Jun 2008 03:02:59 +0000 (23:02 -0400)
committerEvan Prodromou <evan@prodromou.name>
Mon, 23 Jun 2008 03:02:59 +0000 (23:02 -0400)
darcs-hash:20080623030259-84dde-303fe8b38d237871861b5475c2b15b3d8605369b.gz

xmppdaemon.php

index f1a817e3f108bf3fc2af854c99c517a62bc94e46..2cf0017544a1a1793c76fa747a1b10a38ffa54d2 100644 (file)
@@ -24,7 +24,7 @@ require_once(INSTALLDIR . '/lib/common.php');
 require_once('xmpp.php');
 
 class XMPPDaemon {
-       
+
        function XMPPDaemon() {
                foreach (array('server', 'port', 'user', 'password', 'resource') as $attr) {
                        $this->$attr = common_config('xmpp', $attr);
@@ -40,10 +40,10 @@ class XMPPDaemon {
                $this->conn->connect();
                return !$this->conn->disconnected;
        }
-       
+
        function handle() {
                while(!$this->conn->disconnected) {
-                       $payloads = $this->conn->processUntil(array('message', 'presence', 
+                       $payloads = $this->conn->processUntil(array('message', 'presence',
                                                                                                                'end_stream', 'session_start'));
                        foreach($payloads as $event) {
                                $pl = $event[1];
@@ -95,16 +95,16 @@ class XMPPDaemon {
                $result = $user->update($orig);
                if (!$id) {
                        $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
-                       $this->log(LOG_ERROR, 
+                       $this->log(LOG_ERROR,
                                           'Could not set notify flag to ' . $notify .
-                                          ' for user ' . common_log_objstring($user) . 
+                                          ' for user ' . common_log_objstring($user) .
                                           ': ' . $last_error->message);
                } else {
                        $this->log(LOG_INFO,
                                           'User ' . $user->nickname . ' set notify flag to ' . $notify);
                }
        }
-       
+
        function add_notice(&$user, &$pl) {
                $notice = new Notice();
                $notice->profile_id = $user->id;
@@ -114,9 +114,9 @@ class XMPPDaemon {
                $id = $notice->insert();
                if (!$id) {
                        $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
-                       $this->log(LOG_ERROR, 
-                                          'Could not insert ' . common_log_objstring($notice) . 
-                                          ' for user ' . common_log_objstring($user) . 
+                       $this->log(LOG_ERROR,
+                                          'Could not insert ' . common_log_objstring($notice) .
+                                          ' for user ' . common_log_objstring($user) .
                                           ': ' . $last_error->message);
                        return;
                }
@@ -125,9 +125,9 @@ class XMPPDaemon {
                $result = $notice->update($orig);
                if (!$result) {
                        $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
-                       $this->log(LOG_ERROR, 
-                                          'Could not add URI to ' . common_log_objstring($notice) . 
-                                          ' for user ' . common_log_objstring($user) . 
+                       $this->log(LOG_ERROR,
+                                          'Could not add URI to ' . common_log_objstring($notice) .
+                                          ' for user ' . common_log_objstring($user) .
                                           ': ' . $last_error->message);
                        return;
                }
@@ -135,7 +135,7 @@ class XMPPDaemon {
                $this->log(LOG_INFO,
                                   'Added notice ' . $notice->id . ' from user ' . $user->nickname);
        }
-       
+
        function handle_presence(&$pl) {
                $user = User::staticGet('jabber', $pl['from']);
                if (!$user) {
@@ -146,11 +146,11 @@ class XMPPDaemon {
                        $this->add_notice($user, $pl);
                }
        }
-       
+
        function handle_session(&$pl) {
                $conn->presence($status="Send me a message to post a notice");
        }
-       
+
        function log($level, $msg) {
                common_log($level, 'XMPPDaemon('.$this->resource.'): '.$msg);
        }