]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Merge branch '0.9.x' into 1.0.x
authorCraig Andrews <candrews@integralblue.com>
Mon, 8 Mar 2010 22:22:23 +0000 (17:22 -0500)
committerCraig Andrews <candrews@integralblue.com>
Mon, 8 Mar 2010 22:22:23 +0000 (17:22 -0500)
Conflicts:
classes/statusnet.ini
db/statusnet.sql
lib/jabber.php
lib/xmppmanager.php

46 files changed:
EVENTS.txt
actions/apiaccountupdatedeliverydevice.php
actions/confirmaddress.php
actions/imsettings.php
actions/shownotice.php
actions/showstream.php
classes/User.php
classes/User_im_prefs.php [new file with mode: 0644]
classes/statusnet.ini
db/statusnet.sql
lib/channel.php
lib/command.php
lib/imchannel.php [new file with mode: 0644]
lib/immanager.php [new file with mode: 0644]
lib/implugin.php [new file with mode: 0644]
lib/imqueuehandler.php [new file with mode: 0644]
lib/imreceiverqueuehandler.php [new file with mode: 0644]
lib/imsenderqueuehandler.php [new file with mode: 0644]
lib/jabber.php [deleted file]
lib/jabberqueuehandler.php [deleted file]
lib/publicqueuehandler.php [deleted file]
lib/queued_xmpp.php [deleted file]
lib/queuehandler.php
lib/queuemanager.php
lib/queuemonitor.php
lib/statusnet.php
lib/util.php
lib/xmppmanager.php [deleted file]
lib/xmppoutqueuehandler.php [deleted file]
plugins/Aim/AimPlugin.php [new file with mode: 0644]
plugins/Aim/Fake_Aim.php [new file with mode: 0644]
plugins/Aim/README [new file with mode: 0644]
plugins/Aim/aimmanager.php [new file with mode: 0644]
plugins/Aim/extlib/phptoclib/README.txt [new file with mode: 0755]
plugins/Aim/extlib/phptoclib/aimclassw.php [new file with mode: 0755]
plugins/Aim/extlib/phptoclib/dconnection.php [new file with mode: 0755]
plugins/Imap/imapmanager.php
plugins/Xmpp/Fake_XMPP.php [new file with mode: 0644]
plugins/Xmpp/README [new file with mode: 0644]
plugins/Xmpp/Sharing_XMPP.php [new file with mode: 0644]
plugins/Xmpp/XmppPlugin.php [new file with mode: 0644]
plugins/Xmpp/xmppmanager.php [new file with mode: 0644]
scripts/getvaliddaemons.php
scripts/imdaemon.php [new file with mode: 0755]
scripts/stopdaemons.sh
scripts/xmppdaemon.php [deleted file]

index 2da6f3da61b1e89438e269424c8ad2fdc2f3f307..56cbe14c7a97ee2ccc375c98971769f410e12611 100644 (file)
@@ -716,6 +716,24 @@ StartShowContentLicense: Showing the default license for content
 EndShowContentLicense: Showing the default license for content
 - $action: the current action
 
+GetImTransports: Get IM transports that are available
+- &$transports: append your transport to this array like so: $transports[transportName]=array('display'=>display)
+
+NormalizeImScreenname: Normalize an IM screenname
+- $transport: transport the screenname is on
+- &$screenname: screenname to be normalized
+
+ValidateImScreenname: Validate an IM screenname
+- $transport: transport the screenname is on
+- $screenname: screenname to be validated
+- $valid: is the screenname valid?
+
+SendImConfirmationCode: Send a confirmation code to confirm a user owns an IM screenname
+- $transport: transport the screenname exists on
+- $screenname: screenname being confirmed
+- $code: confirmation code for confirmation URL
+- $user: user requesting the confirmation
+
 StartUserRegister: When a new user is being registered
 - &$profile: new profile data (no ID)
 - &$user: new user account (no ID or URI)
index 684906fe9019eb75604c733a3e16ff7e4d842218..4bd6c326f8d25e129ab9d5ff234e0191eb2ed269 100644 (file)
@@ -119,10 +119,16 @@ class ApiAccountUpdateDeliveryDeviceAction extends ApiAuthAction
         if (strtolower($this->device) == 'sms') {
             $this->user->smsnotify = true;
         } elseif (strtolower($this->device) == 'im') {
-            $this->user->jabbernotify = true;
+            //TODO IM is pluginized now, so what should we do?
+            //Enable notifications for all IM plugins?
+            //For now, don't do anything
+            //$this->user->jabbernotify = true;
         } elseif (strtolower($this->device == 'none')) {
             $this->user->smsnotify    = false;
-            $this->user->jabbernotify = false;
+            //TODO IM is pluginized now, so what should we do?
+            //Disable notifications for all IM plugins?
+            //For now, don't do anything
+            //$this->user->jabbernotify = false;
         }
 
         $result = $this->user->update($original);
index cc8351d8dcc0309ae593b77e120688fb571602c9..eaf1c91c1a5c897053583c455b8e38affcc4908b 100644 (file)
@@ -49,7 +49,7 @@ class ConfirmaddressAction extends Action
 {
     /** type of confirmation. */
 
-    var $type = null;
+    var $address;
 
     /**
      * Accept a confirmation code
@@ -86,37 +86,75 @@ class ConfirmaddressAction extends Action
             return;
         }
         $type = $confirm->address_type;
-        if (!in_array($type, array('email', 'jabber', 'sms'))) {
+        $transports = array();
+        Event::handle('GetImTransports', array(&$transports));
+        if (!in_array($type, array('email', 'sms')) && !in_array($type, array_keys($transports))) {
             $this->serverError(sprintf(_('Unrecognized address type %s'), $type));
             return;
         }
-        if ($cur->$type == $confirm->address) {
-            $this->clientError(_('That address has already been confirmed.'));
-            return;
-        }
-
+        $this->address = $confirm->address;
         $cur->query('BEGIN');
+        if (in_array($type, array('email', 'sms')))
+        {
+            if ($cur->$type == $confirm->address) {
+                $this->clientError(_('That address has already been confirmed.'));
+                return;
+            }
+
+            $orig_user = clone($cur);
+
+            $cur->$type = $confirm->address;
+
+            if ($type == 'sms') {
+                $cur->carrier  = ($confirm->address_extra)+0;
+                $carrier       = Sms_carrier::staticGet($cur->carrier);
+                $cur->smsemail = $carrier->toEmailAddress($cur->sms);
+            }
+
+            $result = $cur->updateKeys($orig_user);
+
+            if (!$result) {
+                common_log_db_error($cur, 'UPDATE', __FILE__);
+                $this->serverError(_('Couldn\'t update user.'));
+                return;
+            }
+
+            if ($type == 'email') {
+                $cur->emailChanged();
+            }
+
+        } else {
+
+            $user_im_prefs = new User_im_prefs();
+            $user_im_prefs->transport = $confirm->address_type;
+            $user_im_prefs->user_id = $cur->id;
+            if ($user_im_prefs->find() && $user_im_prefs->fetch()) {
+                if($user_im_prefs->screenname == $confirm->address){
+                    $this->clientError(_('That address has already been confirmed.'));
+                    return;
+                }
+                $user_im_prefs->screenname = $confirm->address;
+                $result = $user_im_prefs->update();
+
+                if (!$result) {
+                    common_log_db_error($user_im_prefs, 'UPDATE', __FILE__);
+                    $this->serverError(_('Couldn\'t update user im preferences.'));
+                    return;
+                }
+            }else{
+                $user_im_prefs = new User_im_prefs();
+                $user_im_prefs->screenname = $confirm->address;
+                $user_im_prefs->transport = $confirm->address_type;
+                $user_im_prefs->user_id = $cur->id;
+                $result = $user_im_prefs->insert();
+
+                if (!$result) {
+                    common_log_db_error($user_im_prefs, 'INSERT', __FILE__);
+                    $this->serverError(_('Couldn\'t insert user im preferences.'));
+                    return;
+                }
+            }
 
-        $orig_user = clone($cur);
-
-        $cur->$type = $confirm->address;
-
-        if ($type == 'sms') {
-            $cur->carrier  = ($confirm->address_extra)+0;
-            $carrier       = Sms_carrier::staticGet($cur->carrier);
-            $cur->smsemail = $carrier->toEmailAddress($cur->sms);
-        }
-
-        $result = $cur->updateKeys($orig_user);
-
-        if (!$result) {
-            common_log_db_error($cur, 'UPDATE', __FILE__);
-            $this->serverError(_('Couldn\'t update user.'));
-            return;
-        }
-
-        if ($type == 'email') {
-            $cur->emailChanged();
         }
 
         $result = $confirm->delete();
@@ -128,8 +166,6 @@ class ConfirmaddressAction extends Action
         }
 
         $cur->query('COMMIT');
-
-        $this->type = $type;
         $this->showPage();
     }
 
@@ -153,11 +189,10 @@ class ConfirmaddressAction extends Action
     function showContent()
     {
         $cur  = common_current_user();
-        $type = $this->type;
 
         $this->element('p', null,
                        sprintf(_('The address "%s" has been '.
                                  'confirmed for your account.'),
-                               $cur->$type));
+                               $this->address));
     }
 }
index af4915843d5f799fab73d4075795d65aa23dc648..fe1864f0d1cb6c326af4762cc57ff2c0b84c1190 100644 (file)
@@ -31,9 +31,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
     exit(1);
 }
 
-require_once INSTALLDIR.'/lib/connectsettingsaction.php';
-require_once INSTALLDIR.'/lib/jabber.php';
-
 /**
  * Settings for Jabber/XMPP integration
  *
@@ -68,8 +65,8 @@ class ImsettingsAction extends ConnectSettingsAction
     function getInstructions()
     {
         return _('You can send and receive notices through '.
-                 'Jabber/GTalk [instant messages](%%doc.im%%). '.
-                 'Configure your address and settings below.');
+                 'instant messaging [instant messages](%%doc.im%%). '.
+                 'Configure your addresses and settings below.');
     }
 
     /**
@@ -84,85 +81,108 @@ class ImsettingsAction extends ConnectSettingsAction
 
     function showContent()
     {
-        if (!common_config('xmpp', 'enabled')) {
+        $transports = array();
+        Event::handle('GetImTransports', array(&$transports));
+        if (! $transports) {
             $this->element('div', array('class' => 'error'),
                            _('IM is not available.'));
             return;
         }
 
         $user = common_current_user();
-        $this->elementStart('form', array('method' => 'post',
-                                          'id' => 'form_settings_im',
-                                          'class' => 'form_settings',
-                                          'action' =>
-                                          common_local_url('imsettings')));
-        $this->elementStart('fieldset', array('id' => 'settings_im_address'));
-        $this->element('legend', null, _('Address'));
-        $this->hidden('token', common_session_token());
-
-        if ($user->jabber) {
-            $this->element('p', 'form_confirmed', $user->jabber);
-            $this->element('p', 'form_note',
-                           _('Current confirmed Jabber/GTalk address.'));
-            $this->hidden('jabber', $user->jabber);
-            $this->submit('remove', _('Remove'));
-        } else {
-            $confirm = $this->getConfirmation();
-            if ($confirm) {
-                $this->element('p', 'form_unconfirmed', $confirm->address);
+
+        $user_im_prefs_by_transport = array();
+        
+        foreach($transports as $transport=>$transport_info)
+        {
+            $this->elementStart('form', array('method' => 'post',
+                                              'id' => 'form_settings_im',
+                                              'class' => 'form_settings',
+                                              'action' =>
+                                              common_local_url('imsettings')));
+            $this->elementStart('fieldset', array('id' => 'settings_im_address'));
+            $this->element('legend', null, $transport_info['display']);
+            $this->hidden('token', common_session_token());
+            $this->hidden('transport', $transport);
+
+            if ($user_im_prefs = User_im_prefs::pkeyGet( array('transport' => $transport, 'user_id' => $user->id) )) {
+                $user_im_prefs_by_transport[$transport] = $user_im_prefs;
+                $this->element('p', 'form_confirmed', $user_im_prefs->screenname);
                 $this->element('p', 'form_note',
-                               sprintf(_('Awaiting confirmation on this address. '.
-                                         'Check your Jabber/GTalk account for a '.
-                                         'message with further instructions. '.
-                                         '(Did you add %s to your buddy list?)'),
-                                       jabber_daemon_address()));
-                $this->hidden('jabber', $confirm->address);
-                $this->submit('cancel', _('Cancel'));
+                               sprintf(_('Current confirmed %s address.'),$transport_info['display']));
+                $this->hidden('screenname', $user_im_prefs->screenname);
+                $this->submit('remove', _('Remove'));
             } else {
-                $this->elementStart('ul', 'form_data');
-                $this->elementStart('li');
-                $this->input('jabber', _('IM address'),
-                             ($this->arg('jabber')) ? $this->arg('jabber') : null,
-                             sprintf(_('Jabber or GTalk address, '.
-                                       'like "UserName@example.org". '.
-                                       'First, make sure to add %s to your '.
-                                       'buddy list in your IM client or on GTalk.'),
-                                     jabber_daemon_address()));
-                $this->elementEnd('li');
-                $this->elementEnd('ul');
-                $this->submit('add', _('Add'));
+                $confirm = $this->getConfirmation($transport);
+                if ($confirm) {
+                    $this->element('p', 'form_unconfirmed', $confirm->address);
+                    $this->element('p', 'form_note',
+                                   sprintf(_('Awaiting confirmation on this address. '.
+                                             'Check your %s account for a '.
+                                             'message with further instructions.'),
+                                           $transport_info['display']));
+                    $this->hidden('screenname', $confirm->address);
+                    $this->submit('cancel', _('Cancel'));
+                } else {
+                    $this->elementStart('ul', 'form_data');
+                    $this->elementStart('li');
+                    $this->input('screenname', _('IM address'),
+                                 ($this->arg('screenname')) ? $this->arg('screenname') : null,
+                                 sprintf(_('%s screenname.'),
+                                         $transport_info['display']));
+                    $this->elementEnd('li');
+                    $this->elementEnd('ul');
+                    $this->submit('add', _('Add'));
+                }
             }
+            $this->elementEnd('fieldset');
+            $this->elementEnd('form');
+        }
+
+        if($user_im_prefs_by_transport)
+        {
+            $this->elementStart('form', array('method' => 'post',
+                                              'id' => 'form_settings_im',
+                                              'class' => 'form_settings',
+                                              'action' =>
+                                              common_local_url('imsettings')));
+            $this->elementStart('fieldset', array('id' => 'settings_im_preferences'));
+            $this->element('legend', null, _('Preferences'));
+            $this->hidden('token', common_session_token());
+            $this->elementStart('table');
+            $this->elementStart('tr');
+            $this->element('th', null, _('Preferences'));
+            foreach($user_im_prefs_by_transport as $transport=>$user_im_prefs)
+            {
+                $this->element('th', null, $transports[$transport]['display']);
+            }
+            $this->elementEnd('tr');
+            $preferences = array(
+                array('name'=>'notify', 'description'=>_('Send me notices')),
+                array('name'=>'updatefrompresence', 'description'=>_('Post a notice when my status changes.')),
+                array('name'=>'replies', 'description'=>_('Send me replies '.
+                              'from people I\'m not subscribed to.')),
+                array('name'=>'microid', 'description'=>_('Publish a MicroID'))
+            );
+            foreach($preferences as $preference)
+            {
+                $this->elementStart('tr');
+                foreach($user_im_prefs_by_transport as $transport=>$user_im_prefs)
+                {
+                    $preference_name = $preference['name'];
+                    $this->elementStart('td');
+                    $this->checkbox($transport . '_' . $preference['name'],
+                                $preference['description'],
+                                $user_im_prefs->$preference_name);
+                    $this->elementEnd('td');
+                }
+                $this->elementEnd('tr');
+            }
+            $this->elementEnd('table');
+            $this->submit('save', _('Save'));
+            $this->elementEnd('fieldset');
+            $this->elementEnd('form');
         }
-        $this->elementEnd('fieldset');
-        
-        $this->elementStart('fieldset', array('id' => 'settings_im_preferences'));
-        $this->element('legend', null, _('Preferences'));
-        $this->elementStart('ul', 'form_data');
-        $this->elementStart('li');
-        $this->checkbox('jabbernotify',
-                        _('Send me notices through Jabber/GTalk.'),
-                        $user->jabbernotify);
-        $this->elementEnd('li');
-        $this->elementStart('li');
-        $this->checkbox('updatefrompresence',
-                        _('Post a notice when my Jabber/GTalk status changes.'),
-                        $user->updatefrompresence);
-        $this->elementEnd('li');
-        $this->elementStart('li');
-        $this->checkbox('jabberreplies',
-                        _('Send me replies through Jabber/GTalk '.
-                          'from people I\'m not subscribed to.'),
-                        $user->jabberreplies);
-        $this->elementEnd('li');
-        $this->elementStart('li');
-        $this->checkbox('jabbermicroid',
-                        _('Publish a MicroID for my Jabber/GTalk address.'),
-                        $user->jabbermicroid);
-        $this->elementEnd('li');
-        $this->elementEnd('ul');
-        $this->submit('save', _('Save'));
-        $this->elementEnd('fieldset');
-        $this->elementEnd('form');
     }
 
     /**
@@ -171,14 +191,14 @@ class ImsettingsAction extends ConnectSettingsAction
      * @return Confirm_address address object for this user
      */
 
-    function getConfirmation()
+    function getConfirmation($transport)
     {
         $user = common_current_user();
 
         $confirm = new Confirm_address();
 
         $confirm->user_id      = $user->id;
-        $confirm->address_type = 'jabber';
+        $confirm->address_type = $transport;
 
         if ($confirm->find(true)) {
             return $confirm;
@@ -232,35 +252,31 @@ class ImsettingsAction extends ConnectSettingsAction
 
     function savePreferences()
     {
-
-        $jabbernotify       = $this->boolean('jabbernotify');
-        $updatefrompresence = $this->boolean('updatefrompresence');
-        $jabberreplies      = $this->boolean('jabberreplies');
-        $jabbermicroid      = $this->boolean('jabbermicroid');
-
         $user = common_current_user();
 
-        assert(!is_null($user)); // should already be checked
-
-        $user->query('BEGIN');
-
-        $original = clone($user);
-
-        $user->jabbernotify       = $jabbernotify;
-        $user->updatefrompresence = $updatefrompresence;
-        $user->jabberreplies      = $jabberreplies;
-        $user->jabbermicroid      = $jabbermicroid;
-
-        $result = $user->update($original);
-
-        if ($result === false) {
-            common_log_db_error($user, 'UPDATE', __FILE__);
-            $this->serverError(_('Couldn\'t update user.'));
-            return;
+        $user_im_prefs = new User_im_prefs();
+        $user_im_prefs->user_id = $user->id;
+        if($user_im_prefs->find() && $user_im_prefs->fetch())
+        {
+            $preferences = array('notify', 'updatefrompresence', 'replies', 'microid');
+            $user_im_prefs->query('BEGIN');
+            do
+            {
+                $original = clone($user_im_prefs);
+                foreach($preferences as $preference)
+                {
+                    $user_im_prefs->$preference = $this->boolean($user_im_prefs->transport . '_' . $preference);
+                }
+                $result = $user_im_prefs->update($original);
+
+                if ($result === false) {
+                    common_log_db_error($user, 'UPDATE', __FILE__);
+                    $this->serverError(_('Couldn\'t update IM preferences.'));
+                    return;
+                }
+            }while($user_im_prefs->fetch());
+            $user_im_prefs->query('COMMIT');
         }
-
-        $user->query('COMMIT');
-
         $this->showForm(_('Preferences saved.'), true);
     }
 
@@ -268,7 +284,7 @@ class ImsettingsAction extends ConnectSettingsAction
      * Sends a confirmation to the address given
      *
      * Stores a confirmation record and sends out a
-     * Jabber message with the confirmation info.
+     * message with the confirmation info.
      *
      * @return void
      */
@@ -277,36 +293,41 @@ class ImsettingsAction extends ConnectSettingsAction
     {
         $user = common_current_user();
 
-        $jabber = $this->trimmed('jabber');
+        $screenname = $this->trimmed('screenname');
+        $transport = $this->trimmed('transport');
 
         // Some validation
 
-        if (!$jabber) {
-            $this->showForm(_('No Jabber ID.'));
+        if (!$screenname) {
+            $this->showForm(_('No screenname.'));
             return;
         }
 
-        $jabber = jabber_normalize_jid($jabber);
-
-        if (!$jabber) {
-            $this->showForm(_('Cannot normalize that Jabber ID'));
+        if (!$transport) {
+            $this->showForm(_('No transport.'));
             return;
         }
-        if (!jabber_valid_base_jid($jabber)) {
-            $this->showForm(_('Not a valid Jabber ID'));
+
+        Event::handle('NormalizeImScreenname', array($transport, &$screenname));
+
+        if (!$screenname) {
+            $this->showForm(_('Cannot normalize that screenname'));
             return;
-        } else if ($user->jabber == $jabber) {
-            $this->showForm(_('That is already your Jabber ID.'));
+        }
+        $valid = false;
+        Event::handle('ValidateImScreenname', array($transport, $screenname, &$valid));
+        if (!$valid) {
+            $this->showForm(_('Not a valid screenname'));
             return;
-        } else if ($this->jabberExists($jabber)) {
-            $this->showForm(_('Jabber ID already belongs to another user.'));
+        } else if ($this->screennameExists($transport, $screenname)) {
+            $this->showForm(_('Screenname already belongs to another user.'));
             return;
         }
 
         $confirm = new Confirm_address();
 
-        $confirm->address      = $jabber;
-        $confirm->address_type = 'jabber';
+        $confirm->address      = $screenname;
+        $confirm->address_type = $transport;
         $confirm->user_id      = $user->id;
         $confirm->code         = common_confirmation_code(64);
         $confirm->sent         = common_sql_now();
@@ -320,15 +341,10 @@ class ImsettingsAction extends ConnectSettingsAction
             return;
         }
 
-        jabber_confirm_address($confirm->code,
-                               $user->nickname,
-                               $jabber);
+        Event::handle('SendImConfirmationCode', array($transport, $screenname, $confirm->code, $user));
 
-        $msg = sprintf(_('A confirmation code was sent '.
-                         'to the IM address you added. '.
-                         'You must approve %s for '.
-                         'sending messages to you.'),
-                       jabber_daemon_address());
+        $msg = _('A confirmation code was sent '.
+                         'to the IM address you added.');
 
         $this->showForm($msg, true);
     }
@@ -343,15 +359,16 @@ class ImsettingsAction extends ConnectSettingsAction
 
     function cancelConfirmation()
     {
-        $jabber = $this->arg('jabber');
+        $screenname = $this->trimmed('screenname');
+        $transport = $this->trimmed('transport');
 
-        $confirm = $this->getConfirmation();
+        $confirm = $this->getConfirmation($transport);
 
         if (!$confirm) {
             $this->showForm(_('No pending confirmation to cancel.'));
             return;
         }
-        if ($confirm->address != $jabber) {
+        if ($confirm->address != $screenname) {
             $this->showForm(_('That is the wrong IM address.'));
             return;
         }
@@ -360,7 +377,7 @@ class ImsettingsAction extends ConnectSettingsAction
 
         if (!$result) {
             common_log_db_error($confirm, 'DELETE', __FILE__);
-            $this->serverError(_('Couldn\'t delete email confirmation.'));
+            $this->serverError(_('Couldn\'t delete confirmation.'));
             return;
         }
 
@@ -379,29 +396,25 @@ class ImsettingsAction extends ConnectSettingsAction
     {
         $user = common_current_user();
 
-        $jabber = $this->arg('jabber');
+        $screenname = $this->trimmed('screenname');
+        $transport = $this->trimmed('transport');
 
         // Maybe an old tab open...?
 
-        if ($user->jabber != $jabber) {
-            $this->showForm(_('That is not your Jabber ID.'));
+        $user_im_prefs = new User_im_prefs();
+        $user_im_prefs->user_id = $user->id;
+        if(! ($user_im_prefs->find() && $user_im_prefs->fetch())) {
+            $this->showForm(_('That is not your screenname.'));
             return;
         }
 
-        $user->query('BEGIN');
-
-        $original = clone($user);
-
-        $user->jabber = null;
-
-        $result = $user->updateKeys($original);
+        $result = $user_im_prefs->delete();
 
         if (!$result) {
             common_log_db_error($user, 'UPDATE', __FILE__);
-            $this->serverError(_('Couldn\'t update user.'));
+            $this->serverError(_('Couldn\'t update user im prefs.'));
             return;
         }
-        $user->query('COMMIT');
 
         // XXX: unsubscribe to the old address
 
@@ -409,25 +422,27 @@ class ImsettingsAction extends ConnectSettingsAction
     }
 
     /**
-     * Does this Jabber ID exist?
+     * Does this screenname exist?
      *
      * Checks if we already have another user with this address.
      *
-     * @param string $jabber Address to check
+     * @param string $transport Transport to check
+     * @param string $screenname Screenname to check
      *
-     * @return boolean whether the Jabber ID exists
+     * @return boolean whether the screenname exists
      */
 
-    function jabberExists($jabber)
+    function screennameExists($transport, $screenname)
     {
         $user = common_current_user();
 
-        $other = User::staticGet('jabber', $jabber);
-
-        if (!$other) {
+        $user_im_prefs = new User_im_prefs();
+        $user_im_prefs->transport = $transport;
+        $user_im_prefs->screenname = $screenname;
+        if($user_im_prefs->find() && $user_im_prefs->fetch()){
+            return true;
+        }else{
             return false;
-        } else {
-            return $other->id != $user->id;
         }
     }
 }
index d09100f676aaf473e46e54aadd409f6ff1b1eb0c..d0528a9f0f6764b9fd84da214faa81d768195118 100644 (file)
@@ -275,12 +275,6 @@ class ShownoticeAction extends OwnerDesignAction
                                          'content' => $id->toString()));
         }
 
-        if ($user->jabbermicroid && $user->jabber && $this->notice->uri) {
-            $id = new Microid('xmpp:', $user->jabber,
-                              $this->notice->uri);
-            $this->element('meta', array('name' => 'microid',
-                                         'content' => $id->toString()));
-        }
         $this->element('link',array('rel'=>'alternate',
             'type'=>'application/json+oembed',
             'href'=>common_local_url(
index f9407e35a1f7890189b817c39dd8900c2c6a1f33..5a9add36ce14ef1caae088324000d94beb2999ad 100644 (file)
@@ -166,12 +166,6 @@ class ShowstreamAction extends ProfileAction
             $this->element('meta', array('name' => 'microid',
                                          'content' => $id->toString()));
         }
-        if ($this->user->jabbermicroid && $this->user->jabber && $this->profile->profileurl) {
-            $id = new Microid('xmpp:'.$this->user->jabber,
-                              $this->selfUrl());
-            $this->element('meta', array('name' => 'microid',
-                                         'content' => $id->toString()));
-        }
 
         // See https://wiki.mozilla.org/Microsummaries
 
index fade0f35deaa28f930c346fa4c80a21d3e0d4d4f..15ec4ad946192896d527b2e0fc4a6c1878c6fb5a 100644 (file)
@@ -48,11 +48,6 @@ class User extends Memcached_DataObject
     public $language;                        // varchar(50)
     public $timezone;                        // varchar(50)
     public $emailpost;                       // tinyint(1)   default_1
-    public $jabber;                          // varchar(255)  unique_key
-    public $jabbernotify;                    // tinyint(1)
-    public $jabberreplies;                   // tinyint(1)
-    public $jabbermicroid;                   // tinyint(1)   default_1
-    public $updatefrompresence;              // tinyint(1)
     public $sms;                             // varchar(64)  unique_key
     public $carrier;                         // int(4)
     public $smsnotify;                       // tinyint(1)
@@ -88,7 +83,7 @@ class User extends Memcached_DataObject
     function updateKeys(&$orig)
     {
         $parts = array();
-        foreach (array('nickname', 'email', 'jabber', 'incomingemail', 'sms', 'carrier', 'smsemail', 'language', 'timezone') as $k) {
+        foreach (array('nickname', 'email', 'incomingemail', 'sms', 'carrier', 'smsemail', 'language', 'timezone') as $k) {
             if (strcmp($this->$k, $orig->$k) != 0) {
                 $parts[] = $k . ' = ' . $this->_quote($this->$k);
             }
diff --git a/classes/User_im_prefs.php b/classes/User_im_prefs.php
new file mode 100644 (file)
index 0000000..8ecdfe9
--- /dev/null
@@ -0,0 +1,71 @@
+<?php
+/**
+ * StatusNet, the distributed open-source microblogging tool
+ *
+ * Data class for user IM preferences
+ *
+ * PHP version 5
+ *
+ * LICENCE: This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ * @category  Data
+ * @package   StatusNet
+ * @author    Craig Andrews <candrews@integralblue.com>
+ * @copyright 2009 StatusNet Inc.
+ * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
+ * @link      http://status.net/
+ */
+
+require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
+
+class User_im_prefs extends Memcached_DataObject
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__table = 'user_im_prefs';       // table name
+    public $user_id;                         // int(4)  primary_key not_null
+    public $screenname;                      // varchar(255)  not_null
+    public $transport;                       // varchar(255)  not_null
+    public $notify;                          // tinyint(1)
+    public $replies;                         // tinyint(1)
+    public $microid;                         // tinyint(1)
+    public $updatefrompresence;              // tinyint(1)
+    public $created;                         // datetime   not_null default_0000-00-00%2000%3A00%3A00
+    public $modified;                        // timestamp   not_null default_CURRENT_TIMESTAMP
+
+    /* Static get */
+    function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('User_im_prefs',$k,$v); }
+
+    function pkeyGet($kv)
+    {
+        return Memcached_DataObject::pkeyGet('User_im_prefs', $kv);
+    }
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+
+    /*
+    DB_DataObject calculates the sequence key(s) by taking the first key returned by the keys() function.
+    In this case, the keys() function returns user_id as the first key. user_id is not a sequence, but
+    DB_DataObject's sequenceKey() will incorrectly think it is. Then, since the sequenceKey() is a numeric
+    type, but is not set to autoincrement in the database, DB_DataObject will create a _seq table and
+    manage the sequence itself. This is not the correct behavior for the user_id in this class.
+    So we override that incorrect behavior, and simply say there is no sequence key.
+    */
+    function sequenceKey()
+    {
+        return array(false,false);
+    }
+}
index 3fb8ee208ba17c850abd0df50544028b0e504712..473bd6ff5f7180d81e80b5901b9cf83b111f4544 100644 (file)
@@ -561,11 +561,6 @@ emailmicroid = 17
 language = 2
 timezone = 2
 emailpost = 17
-jabber = 2
-jabbernotify = 17
-jabberreplies = 17
-jabbermicroid = 17
-updatefrompresence = 17
 sms = 2
 carrier = 1
 smsnotify = 17
@@ -585,7 +580,6 @@ id = K
 nickname = U
 email = U
 incomingemail = U
-jabber = U
 sms = U
 uri = U
 
@@ -638,3 +632,20 @@ modified = 384
 
 [user_location_prefs__keys]
 user_id = K
+
+[user_im_prefs]
+user_id = 129
+screenname = 130
+transport = 130
+notify = 17
+replies = 17
+microid = 17
+updatefrompresence = 17
+created = 142
+modified = 384
+
+[user_im_prefs__keys]
+user_id = K
+transport = K
+transport = U
+screenname = U
index 3f95948e1ed5ede5d9cde05511f78fb49f657021..d1cd67075091c3f83083991f4481ec8383bc0a5e 100644 (file)
@@ -62,11 +62,6 @@ create table user (
     language varchar(50) comment 'preferred language',
     timezone varchar(50) comment 'timezone',
     emailpost tinyint default 1 comment 'Post by email',
-    jabber varchar(255) unique key comment 'jabber ID for notices',
-    jabbernotify tinyint default 0 comment 'whether to send notices to jabber',
-    jabberreplies tinyint default 0 comment 'whether to send notices to jabber on replies',
-    jabbermicroid tinyint default 1 comment 'whether to publish xmpp microid',
-    updatefrompresence tinyint default 0 comment 'whether to record updates from Jabber presence notices',
     sms varchar(64) unique key comment 'sms phone number',
     carrier integer comment 'foreign key to sms_carrier' references sms_carrier (id),
     smsnotify tinyint default 0 comment 'whether to send notices to SMS',
@@ -259,9 +254,9 @@ create table oid_nonces (
 create table confirm_address (
     code varchar(32) not null primary key comment 'good random code',
     user_id integer not null comment 'user who requested confirmation' references user (id),
-    address varchar(255) not null comment 'address (email, Jabber, SMS, etc.)',
+    address varchar(255) not null comment 'address (email, xmpp, SMS, etc.)',
     address_extra varchar(255) not null comment 'carrier ID, for SMS',
-    address_type varchar(8) not null comment 'address type ("email", "jabber", "sms")',
+    address_type varchar(8) not null comment 'address type ("email", "xmpp", "sms")',
     claimed datetime comment 'date this was claimed for queueing',
     sent datetime comment 'date this was sent for queueing',
     modified timestamp comment 'date this record was modified'
@@ -276,7 +271,7 @@ create table remember_me (
 create table queue_item (
     id integer auto_increment primary key comment 'unique identifier',
     frame blob not null comment 'data: object reference or opaque string',
-    transport varchar(8) not null comment 'queue for what? "email", "jabber", "sms", "irc", ...',
+    transport varchar(8) not null comment 'queue for what? "email", "xmpp", "sms", "irc", ...',
     created datetime not null comment 'date this record was created',
     claimed datetime comment 'date this item was claimed',
 
@@ -348,7 +343,7 @@ create table invitation (
      code varchar(32) not null primary key comment 'random code for an invitation',
      user_id int not null comment 'who sent the invitation' references user (id),
      address varchar(255) not null comment 'invitation sent to',
-     address_type varchar(8) not null comment 'address type ("email", "jabber", "sms")',
+     address_type varchar(8) not null comment 'address type ("email", "xmpp", "sms")',
      created datetime not null comment 'date this record was created',
 
      index invitation_address_idx (address, address_type),
@@ -639,6 +634,21 @@ create table inbox (
 
 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
 
+create table user_im_prefs (
+    user_id integer not null comment 'user' references user (id),
+    screenname varchar(255) not null comment 'screenname on this service',
+    transport varchar(255) not null comment 'transport (ex xmpp, aim)',
+    notify tinyint(1) not null default 0 comment 'Notify when a new notice is sent',
+    replies tinyint(1) not null default 0 comment 'Send replies  from people not subscribed to',
+    microid tinyint(1) not null default 1 comment 'Publish a MicroID',
+    updatefrompresence tinyint(1) not null default 0 comment 'Send replies  from people not subscribed to.',
+    created timestamp not null DEFAULT CURRENT_TIMESTAMP comment 'date this record was created',
+    modified timestamp comment 'date this record was modified',
+
+    constraint primary key (user_id, transport),
+    constraint unique key `transport_screenname_key` ( `transport` , `screenname` )
+);
+
 create table conversation (
     id integer auto_increment primary key comment 'unique identifier',
     uri varchar(225) unique comment 'URI of the conversation',
@@ -655,4 +665,3 @@ create table local_group (
    modified timestamp comment 'date this record was modified'
 
 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
-
index 3cd168786c9d69e89343170e19cdda7bf27a308c..05437b4e9eaa44c3720b9ed9a192cbb7cbf43807 100644 (file)
@@ -47,63 +47,6 @@ class Channel
     }
 }
 
-class XMPPChannel extends Channel
-{
-
-    var $conn = null;
-
-    function source()
-    {
-        return 'xmpp';
-    }
-
-    function __construct($conn)
-    {
-        $this->conn = $conn;
-    }
-
-    function on($user)
-    {
-        return $this->set_notify($user, 1);
-    }
-
-    function off($user)
-    {
-        return $this->set_notify($user, 0);
-    }
-
-    function output($user, $text)
-    {
-        $text = '['.common_config('site', 'name') . '] ' . $text;
-        jabber_send_message($user->jabber, $text);
-    }
-
-    function error($user, $text)
-    {
-        $text = '['.common_config('site', 'name') . '] ' . $text;
-        jabber_send_message($user->jabber, $text);
-    }
-
-    function set_notify(&$user, $notify)
-    {
-        $orig = clone($user);
-        $user->jabbernotify = $notify;
-        $result = $user->update($orig);
-        if (!$result) {
-            $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
-            common_log(LOG_ERR,
-                       'Could not set notify flag to ' . $notify .
-                       ' for user ' . common_log_objstring($user) .
-                       ': ' . $last_error->message);
-            return false;
-        } else {
-            common_log(LOG_INFO,
-                       'User ' . $user->nickname . ' set notify flag to ' . $notify);
-            return true;
-        }
-    }
-}
-
 class WebChannel extends Channel
 {
     var $out = null;
index db8e8003041f0d2cdfc35cc10d8a259b42364e7a..5be9cd6e85bdc161145a345796ba53d1084b1c3f 100644 (file)
@@ -609,7 +609,7 @@ class OffCommand extends Command
     }
     function execute($channel)
     {
-        if ($other) {
+        if ($this->other) {
             $channel->error($this->user, _("Command not yet implemented."));
         } else {
             if ($channel->off($this->user)) {
@@ -632,7 +632,7 @@ class OnCommand extends Command
 
     function execute($channel)
     {
-        if ($other) {
+        if ($this->other) {
             $channel->error($this->user, _("Command not yet implemented."));
         } else {
             if ($channel->on($this->user)) {
diff --git a/lib/imchannel.php b/lib/imchannel.php
new file mode 100644 (file)
index 0000000..12354ce
--- /dev/null
@@ -0,0 +1,104 @@
+<?php
+/*
+ * StatusNet - the distributed open-source microblogging tool
+ * Copyright (C) 2008, 2009, StatusNet, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
+
+class IMChannel extends Channel
+{
+
+    var $imPlugin;
+
+    function source()
+    {
+        return $imPlugin->transport;
+    }
+
+    function __construct($imPlugin)
+    {
+        $this->imPlugin = $imPlugin;
+    }
+
+    function on($user)
+    {
+        return $this->set_notify($user, 1);
+    }
+
+    function off($user)
+    {
+        return $this->set_notify($user, 0);
+    }
+
+    function output($user, $text)
+    {
+        $text = '['.common_config('site', 'name') . '] ' . $text;
+        $this->imPlugin->send_message($this->imPlugin->get_screenname($user), $text);
+    }
+
+    function error($user, $text)
+    {
+        $text = '['.common_config('site', 'name') . '] ' . $text;
+
+        $screenname = $this->imPlugin->get_screenname($user);
+        if($screenname){
+            $this->imPlugin->send_message($screenname, $text);
+            return true;
+        }else{
+            common_log(LOG_ERR,
+                'Could not send error message to user ' . common_log_objstring($user) .
+                ' on transport ' . $this->imPlugin->transport .' : user preference does not exist');
+            return false;
+        }
+    }
+
+    function set_notify($user, $notify)
+    {
+        $user_im_prefs = new User_im_prefs();
+        $user_im_prefs->transport = $this->imPlugin->transport;
+        $user_im_prefs->user_id = $user->id;
+        if($user_im_prefs->find() && $user_im_prefs->fetch()){
+            if($user_im_prefs->notify == $notify){
+                //notify is already set the way they want
+                return true;
+            }else{
+                $original = clone($user_im_prefs);
+                $user_im_prefs->notify = $notify;
+                $result = $user_im_prefs->update($original);
+
+                if (!$result) {
+                    $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
+                    common_log(LOG_ERR,
+                               'Could not set notify flag to ' . $notify .
+                               ' for user ' . common_log_objstring($user) .
+                               ' on transport ' . $this->imPlugin->transport .' : ' . $last_error->message);
+                    return false;
+                } else {
+                    common_log(LOG_INFO,
+                               'User ' . $user->nickname . ' set notify flag to ' . $notify);
+                    return true;
+                }
+            }
+        }else{
+                common_log(LOG_ERR,
+                           'Could not set notify flag to ' . $notify .
+                           ' for user ' . common_log_objstring($user) .
+                           ' on transport ' . $this->imPlugin->transport .' : user preference does not exist');
+                return false;
+        }
+    }
+}
diff --git a/lib/immanager.php b/lib/immanager.php
new file mode 100644 (file)
index 0000000..da80b74
--- /dev/null
@@ -0,0 +1,56 @@
+<?php
+/*
+ * StatusNet - the distributed open-source microblogging tool
+ * Copyright (C) 2008, 2009, StatusNet, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
+
+/**
+ * IKM background connection manager for IM-using queue handlers,
+ * allowing them to send outgoing messages on the right connection.
+ *
+ * In a multi-site queuedaemon.php run, one connection will be instantiated
+ * for each site being handled by the current process that has IM enabled.
+ *
+ * Implementations that extend this class will likely want to:
+ * 1) override start() with their connection process.
+ * 2) override handleInput() with what to do when data is waiting on
+ *    one of the sockets
+ * 3) override idle($timeout) to do keepalives (if necessary)
+ * 4) implement send_raw_message() to send raw data that ImPlugin::enqueue_outgoing_raw
+ *      enqueued
+ */
+
+abstract class ImManager extends IoManager
+{
+    abstract function send_raw_message($data);
+
+    function __construct($imPlugin)
+    {
+        $this->plugin = $imPlugin;
+        $this->plugin->imManager = $this;
+    }
+
+    /**
+     * Fetch the singleton manager for the current site.
+     * @return mixed ImManager, or false if unneeded
+     */
+    public static function get()
+    {
+        throw new Exception('ImManager should be created using it\'s constructor, not the static get method');
+    }
+}
diff --git a/lib/implugin.php b/lib/implugin.php
new file mode 100644 (file)
index 0000000..018b0ec
--- /dev/null
@@ -0,0 +1,613 @@
+<?php
+/**
+ * StatusNet, the distributed open-source microblogging tool
+ *
+ * Superclass for plugins that do instant messaging
+ *
+ * PHP version 5
+ *
+ * LICENCE: This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ * @category  Plugin
+ * @package   StatusNet
+ * @author    Craig Andrews <candrews@integralblue.com>
+ * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
+ * @link      http://status.net/
+ */
+
+if (!defined('STATUSNET') && !defined('LACONICA')) {
+    exit(1);
+}
+
+/**
+ * Superclass for plugins that do authentication
+ *
+ * Implementations will likely want to override onStartIoManagerClasses() so that their
+ *   IO manager is used
+ *
+ * @category Plugin
+ * @package  StatusNet
+ * @author   Craig Andrews <candrews@integralblue.com>
+ * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
+ * @link     http://status.net/
+ */
+
+abstract class ImPlugin extends Plugin
+{
+    //name of this IM transport
+    public $transport = null;
+    //list of screennames that should get all public notices
+    public $public = array();
+
+    /**
+     * normalize a screenname for comparison
+     *
+     * @param string $screenname screenname to normalize
+     *
+     * @return string an equivalent screenname in normalized form
+     */
+    abstract function normalize($screenname);
+
+
+    /**
+     * validate (ensure the validity of) a screenname
+     *
+     * @param string $screenname screenname to validate
+     *
+     * @return boolean
+     */
+    abstract function validate($screenname);
+
+    /**
+     * get the internationalized/translated display name of this IM service
+     *
+     * @return string
+     */
+    abstract function getDisplayName();
+
+    /**
+     * send a single notice to a given screenname
+     * The implementation should put raw data, ready to send, into the outgoing
+     *   queue using enqueue_outgoing_raw()
+     *
+     * @param string $screenname screenname to send to
+     * @param Notice $notice notice to send
+     *
+     * @return boolean success value
+     */
+    function send_notice($screenname, $notice)
+    {
+        return $this->send_message($screenname, $this->format_notice($notice));
+    }
+
+    /**
+     * send a message (text) to a given screenname
+     * The implementation should put raw data, ready to send, into the outgoing
+     *   queue using enqueue_outgoing_raw()
+     *
+     * @param string $screenname screenname to send to
+     * @param Notice $body text to send
+     *
+     * @return boolean success value
+     */
+    abstract function send_message($screenname, $body);
+
+    /**
+     * receive a raw message
+     * Raw IM data is taken from the incoming queue, and passed to this function.
+     * It should parse the raw message and call handle_incoming()
+     *
+     * @param object $data raw IM data
+     *
+     * @return boolean success value
+     */
+    abstract function receive_raw_message($data);
+
+    /**
+     * get the screenname of the daemon that sends and receives message for this service
+     *
+     * @return string screenname of this plugin
+     */
+    abstract function daemon_screenname();
+
+    /**
+     * get the microid uri of a given screenname
+     *
+     * @param string $screenname screenname
+     *
+     * @return string microid uri
+     */
+    function microiduri($screenname)
+    {
+        return $this->transport . ':' . $screenname;    
+    }
+    //========================UTILITY FUNCTIONS USEFUL TO IMPLEMENTATIONS - MISC ========================\
+
+    /**
+     * Put raw message data (ready to send) into the outgoing queue
+     *
+     * @param object $data
+     */
+    function enqueue_outgoing_raw($data)
+    {
+        $qm = QueueManager::get();
+        $qm->enqueue($data, $this->transport . '-out');
+    }
+
+    /**
+     * Put raw message data (received, ready to be processed) into the incoming queue
+     *
+     * @param object $data
+     */
+    function enqueue_incoming_raw($data)
+    {
+        $qm = QueueManager::get();
+        $qm->enqueue($data, $this->transport . '-in');
+    }
+
+    /**
+     * given a screenname, get the corresponding user
+     *
+     * @param string $screenname
+     *
+     * @return User user
+     */
+    function get_user($screenname)
+    {
+        $user_im_prefs = $this->get_user_im_prefs_from_screenname($screenname);
+        if($user_im_prefs){
+            $user = User::staticGet('id', $user_im_prefs->user_id);
+            $user_im_prefs->free();
+            return $user;
+        }else{
+            return false;
+        }
+    }
+
+
+    /**
+     * given a screenname, get the User_im_prefs object for this transport
+     *
+     * @param string $screenname
+     *
+     * @return User_im_prefs user_im_prefs
+     */
+    function get_user_im_prefs_from_screenname($screenname)
+    {
+        if($user_im_prefs = User_im_prefs::pkeyGet( array('transport' => $this->transport, 'screenname' => $screenname) )){
+            return $user_im_prefs;
+        }else{
+            return false;
+        }
+    }
+
+
+    /**
+     * given a User, get their screenname
+     *
+     * @param User $user
+     *
+     * @return string screenname of that user
+     */
+    function get_screenname($user)
+    {
+        $user_im_prefs = $this->get_user_im_prefs_from_user($user);
+        if($user_im_prefs){
+            return $user_im_prefs->screenname;
+        }else{
+            return false;
+        }
+    }
+
+
+    /**
+     * given a User, get their User_im_prefs
+     *
+     * @param User $user
+     *
+     * @return User_im_prefs user_im_prefs of that user
+     */
+    function get_user_im_prefs_from_user($user)
+    {
+        if($user_im_prefs = User_im_prefs::pkeyGet( array('transport' => $this->transport, 'user_id' => $user->id) )){
+            return $user_im_prefs;
+        }else{
+            return false;
+        }
+    }
+    //========================UTILITY FUNCTIONS USEFUL TO IMPLEMENTATIONS - SENDING ========================\
+    /**
+     * Send a message to a given screenname from the site
+     *
+     * @param string $screenname screenname to send the message to
+     * @param string $msg message contents to send
+     *
+     * @param boolean success
+     */
+    protected function send_from_site($screenname, $msg)
+    {
+        $text = '['.common_config('site', 'name') . '] ' . $msg;
+        $this->send_message($screenname, $text);
+    }
+
+    /**
+     * send a confirmation code to a user
+     *
+     * @param string $screenname screenname sending to
+     * @param string $code the confirmation code
+     * @param User $user user sending to
+     *
+     * @return boolean success value
+     */
+    function send_confirmation_code($screenname, $code, $user)
+    {
+        $body = sprintf(_('User "%s" on %s has said that your %s screenname belongs to them. ' .
+          'If that\'s true, you can confirm by clicking on this URL: ' .
+          '%s' .
+          ' . (If you cannot click it, copy-and-paste it into the ' .
+          'address bar of your browser). If that user isn\'t you, ' .
+          'or if you didn\'t request this confirmation, just ignore this message.'),
+          $user->nickname, common_config('site', 'name'), $this->getDisplayName(), common_local_url('confirmaddress', array('code' => $code)));
+
+        return $this->send_message($screenname, $body);
+    }
+
+    /**
+     * send a notice to all public listeners
+     *
+     * For notices that are generated on the local system (by users), we can optionally
+     * forward them to remote listeners by XMPP.
+     *
+     * @param Notice $notice notice to broadcast
+     *
+     * @return boolean success flag
+     */
+
+    function public_notice($notice)
+    {
+        // Now, users who want everything
+
+        // FIXME PRIV don't send out private messages here
+        // XXX: should we send out non-local messages if public,localonly
+        // = false? I think not
+
+        foreach ($this->public as $screenname) {
+            common_log(LOG_INFO,
+                       'Sending notice ' . $notice->id .
+                       ' to public listener ' . $screenname,
+                       __FILE__);
+            $this->send_notice($screenname, $notice);
+        }
+
+        return true;
+    }
+
+    /**
+     * broadcast a notice to all subscribers and reply recipients
+     *
+     * This function will send a notice to all subscribers on the local server
+     * who have IM addresses, and have IM notification enabled, and
+     * have this subscription enabled for IM. It also sends the notice to
+     * all recipients of @-replies who have IM addresses and IM notification
+     * enabled. This is really the heart of IM distribution in StatusNet.
+     *
+     * @param Notice $notice The notice to broadcast
+     *
+     * @return boolean success flag
+     */
+
+    function broadcast_notice($notice)
+    {
+
+        $ni = $notice->whoGets();
+
+        foreach ($ni as $user_id => $reason) {
+            $user = User::staticGet($user_id);
+            if (empty($user)) {
+                // either not a local user, or just not found
+                continue;
+            }
+            $user_im_prefs = $this->get_user_im_prefs_from_user($user);
+            if(!$user_im_prefs || !$user_im_prefs->notify){
+                continue;
+            }
+
+            switch ($reason) {
+            case NOTICE_INBOX_SOURCE_REPLY:
+                if (!$user_im_prefs->replies) {
+                    continue 2;
+                }
+                break;
+            case NOTICE_INBOX_SOURCE_SUB:
+                $sub = Subscription::pkeyGet(array('subscriber' => $user->id,
+                                                   'subscribed' => $notice->profile_id));
+                if (empty($sub) || !$sub->jabber) {
+                    continue 2;
+                }
+                break;
+            case NOTICE_INBOX_SOURCE_GROUP:
+                break;
+            default:
+                throw new Exception(sprintf(_("Unknown inbox source %d."), $reason));
+            }
+
+            common_log(LOG_INFO,
+                       'Sending notice ' . $notice->id . ' to ' . $user_im_prefs->screenname,
+                       __FILE__);
+            $this->send_notice($user_im_prefs->screenname, $notice);
+            $user_im_prefs->free();
+        }
+
+        return true;
+    }
+
+    /**
+     * makes a plain-text formatted version of a notice, suitable for IM distribution
+     *
+     * @param Notice  $notice  notice being sent
+     *
+     * @return string plain-text version of the notice, with user nickname prefixed
+     */
+
+    function format_notice($notice)
+    {
+        $profile = $notice->getProfile();
+        return $profile->nickname . ': ' . $notice->content . ' [' . $notice->id . ']';
+    }
+    //========================UTILITY FUNCTIONS USEFUL TO IMPLEMENTATIONS - RECEIVING ========================\
+
+    /**
+     * Attempt to handle a message as a command
+     * @param User $user user the message is from
+     * @param string $body message text
+     * @return boolean true if the message was a command and was executed, false if it was not a command
+     */
+    protected function handle_command($user, $body)
+    {
+        $inter = new CommandInterpreter();
+        $cmd = $inter->handle_command($user, $body);
+        if ($cmd) {
+            $chan = new IMChannel($this);
+            $cmd->execute($chan);
+            return true;
+        } else {
+            return false;
+        }
+    }
+
+    /**
+     * Is some text an autoreply message?
+     * @param string $txt message text
+     * @return boolean true if autoreply
+     */
+    protected function is_autoreply($txt)
+    {
+        if (preg_match('/[\[\(]?[Aa]uto[-\s]?[Rr]e(ply|sponse)[\]\)]/', $txt)) {
+            return true;
+        } else if (preg_match('/^System: Message wasn\'t delivered. Offline storage size was exceeded.$/', $txt)) {
+            return true;
+        } else {
+            return false;
+        }
+    }
+
+    /**
+     * Is some text an OTR message?
+     * @param string $txt message text
+     * @return boolean true if OTR
+     */
+    protected function is_otr($txt)
+    {
+        if (preg_match('/^\?OTR/', $txt)) {
+            return true;
+        } else {
+            return false;
+        }
+    }
+
+    /**
+     * Helper for handling incoming messages
+     * Your incoming message handler will probably want to call this function
+     *
+     * @param string $from screenname the message was sent from
+     * @param string $message message contents
+     *
+     * @param boolean success
+     */
+    protected function handle_incoming($from, $notice_text)
+    {
+        $user = $this->get_user($from);
+        // For common_current_user to work
+        global $_cur;
+        $_cur = $user;
+
+        if (!$user) {
+            $this->send_from_site($from, 'Unknown user; go to ' .
+                             common_local_url('imsettings') .
+                             ' to add your address to your account');
+            common_log(LOG_WARNING, 'Message from unknown user ' . $from);
+            return;
+        }
+        if ($this->handle_command($user, $notice_text)) {
+            common_log(LOG_INFO, "Command message by $from handled.");
+            return;
+        } else if ($this->is_autoreply($notice_text)) {
+            common_log(LOG_INFO, 'Ignoring auto reply from ' . $from);
+            return;
+        } else if ($this->is_otr($notice_text)) {
+            common_log(LOG_INFO, 'Ignoring OTR from ' . $from);
+            return;
+        } else {
+
+            common_log(LOG_INFO, 'Posting a notice from ' . $user->nickname);
+
+            $this->add_notice($from, $user, $notice_text);
+        }
+
+        $user->free();
+        unset($user);
+        unset($_cur);
+        unset($message);
+    }
+
+    /**
+     * Helper for handling incoming messages
+     * Your incoming message handler will probably want to call this function
+     *
+     * @param string $from screenname the message was sent from
+     * @param string $message message contents
+     *
+     * @param boolean success
+     */
+    protected function add_notice($screenname, $user, $body)
+    {
+        $body = trim(strip_tags($body));
+        $content_shortened = common_shorten_links($body);
+        if (Notice::contentTooLong($content_shortened)) {
+          $this->send_from_site($screenname, sprintf(_('Message too long - maximum is %1$d characters, you sent %2$d.'),
+                                          Notice::maxContent(),
+                                          mb_strlen($content_shortened)));
+          return;
+        }
+
+        try {
+            $notice = Notice::saveNew($user->id, $content_shortened, $this->transport);
+        } catch (Exception $e) {
+            common_log(LOG_ERR, $e->getMessage());
+            $this->send_from_site($from, $e->getMessage());
+            return;
+        }
+
+        common_broadcast_notice($notice);
+        common_log(LOG_INFO,
+                   'Added notice ' . $notice->id . ' from user ' . $user->nickname);
+        $notice->free();
+        unset($notice);
+    }
+
+    //========================EVENT HANDLERS========================\
+    
+    /**
+     * Register notice queue handler
+     *
+     * @param QueueManager $manager
+     *
+     * @return boolean hook return
+     */
+    function onEndInitializeQueueManager($manager)
+    {
+        $manager->connect($this->transport . '-in', new ImReceiverQueueHandler($this), 'im');
+        $manager->connect($this->transport, new ImQueueHandler($this));
+        $manager->connect($this->transport . '-out', new ImSenderQueueHandler($this), 'im');
+        return true;
+    }
+
+    function onStartImDaemonIoManagers(&$classes)
+    {
+        //$classes[] = new ImManager($this); // handles sending/receiving/pings/reconnects
+        return true;
+    }
+
+    function onStartEnqueueNotice($notice, &$transports)
+    {
+        $profile = Profile::staticGet($notice->profile_id);
+
+        if (!$profile) {
+            common_log(LOG_WARNING, 'Refusing to broadcast notice with ' .
+                       'unknown profile ' . common_log_objstring($notice),
+                       __FILE__);
+        }else{
+            $transports[] = $this->transport;
+        }
+
+        return true;
+    }
+
+    function onEndShowHeadElements($action)
+    {
+        $aname = $action->trimmed('action');
+
+        if ($aname == 'shownotice') {
+
+            $user_im_prefs = new User_im_prefs();
+            $user_im_prefs->user_id = $action->profile->id;
+            $user_im_prefs->transport = $this->transport;
+
+            if ($user_im_prefs->find() && $user_im_prefs->fetch() && $user_im_prefs->microid && $action->notice->uri) {
+                $id = new Microid($this->microiduri($user_im_prefs->screenname),
+                                  $action->notice->uri);
+                $action->element('meta', array('name' => 'microid',
+                                             'content' => $id->toString()));
+            }
+
+        } else if ($aname == 'showstream') {
+
+            $user_im_prefs = new User_im_prefs();
+            $user_im_prefs->user_id = $action->user->id;
+            $user_im_prefs->transport = $this->transport;
+
+            if ($user_im_prefs->find() && $user_im_prefs->fetch() && $user_im_prefs->microid && $action->profile->profileurl) {
+                $id = new Microid($this->microiduri($user_im_prefs->screenname),
+                                  $action->selfUrl());
+                $action->element('meta', array('name' => 'microid',
+                                               'content' => $id->toString()));
+            }
+        }
+    }
+
+    function onNormalizeImScreenname($transport, &$screenname)
+    {
+        if($transport == $this->transport)
+        {
+            $screenname = $this->normalize($screenname);
+            return false;
+        }
+    }
+
+    function onValidateImScreenname($transport, $screenname, &$valid)
+    {
+        if($transport == $this->transport)
+        {
+            $valid = $this->validate($screenname);
+            return false;
+        }
+    }
+
+    function onGetImTransports(&$transports)
+    {
+        $transports[$this->transport] = array('display' => $this->getDisplayName());
+    }
+
+    function onSendImConfirmationCode($transport, $screenname, $code, $user)
+    {
+        if($transport == $this->transport)
+        {
+            $this->send_confirmation_code($screenname, $code, $user);
+            return false;
+        }
+    }
+
+    function onUserDeleteRelated($user, &$tables)
+    {
+        $tables[] = 'User_im_prefs';
+        return true;
+    }
+
+    function initialize()
+    {
+        if(is_null($this->transport)){
+            throw new Exception('transport cannot be null');
+        }
+    }
+}
diff --git a/lib/imqueuehandler.php b/lib/imqueuehandler.php
new file mode 100644 (file)
index 0000000..b42d8e7
--- /dev/null
@@ -0,0 +1,48 @@
+<?php
+/*
+ * StatusNet - the distributed open-source microblogging tool
+ * Copyright (C) 2008, 2009, StatusNet, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
+
+/**
+ * Common superclass for all IM sending queue handlers.
+ */
+
+class ImQueueHandler extends QueueHandler
+{
+    function __construct($plugin)
+    {
+        $this->plugin = $plugin;
+    }
+
+    /**
+     * Handle a notice
+     * @param Notice $notice
+     * @return boolean success
+     */
+    function handle($notice)
+    {
+        $this->plugin->broadcast_notice($notice);
+        if ($notice->is_local == Notice::LOCAL_PUBLIC ||
+            $notice->is_local == Notice::LOCAL_NONPUBLIC) {
+            $this->plugin->public_notice($notice);
+        }
+        return true;
+    }
+
+}
diff --git a/lib/imreceiverqueuehandler.php b/lib/imreceiverqueuehandler.php
new file mode 100644 (file)
index 0000000..269c7db
--- /dev/null
@@ -0,0 +1,42 @@
+<?php
+/*
+ * StatusNet - the distributed open-source microblogging tool
+ * Copyright (C) 2008, 2009, StatusNet, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
+
+/**
+ * Common superclass for all IM receiving queue handlers.
+ */
+
+class ImReceiverQueueHandler extends QueueHandler
+{
+    function __construct($plugin)
+    {
+        $this->plugin = $plugin;
+    }
+
+    /**
+     * Handle incoming IM data sent by a user to the IM bot
+     * @param object $data
+     * @return boolean success
+     */
+    function handle($data)
+    {
+        return $this->plugin->receive_raw_message($data);
+    }
+}
diff --git a/lib/imsenderqueuehandler.php b/lib/imsenderqueuehandler.php
new file mode 100644 (file)
index 0000000..790dd7b
--- /dev/null
@@ -0,0 +1,43 @@
+<?php
+/*
+ * StatusNet - the distributed open-source microblogging tool
+ * Copyright (C) 2008, 2009, StatusNet, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
+
+/**
+ * Common superclass for all IM sending queue handlers.
+ */
+
+class ImSenderQueueHandler extends QueueHandler
+{
+    function __construct($plugin)
+    {
+        $this->plugin = $plugin;
+    }
+
+    /**
+     * Handle outgoing IM data to be sent from the bot to a user
+     * @param object $data
+     * @return boolean success
+     */
+    function handle($data)
+    {
+        return $this->plugin->imManager->send_raw_message($data);
+    }
+}
+
diff --git a/lib/jabber.php b/lib/jabber.php
deleted file mode 100644 (file)
index db4e2e9..0000000
+++ /dev/null
@@ -1,481 +0,0 @@
-<?php
-/**
- * StatusNet, the distributed open-source microblogging tool
- *
- * utility functions for Jabber/GTalk/XMPP messages
- *
- * PHP version 5
- *
- * LICENCE: This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- *
- * @category  Network
- * @package   StatusNet
- * @author    Evan Prodromou <evan@status.net>
- * @copyright 2008 StatusNet, Inc.
- * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
- * @link      http://status.net/
- */
-
-if (!defined('STATUSNET') && !defined('LACONICA')) {
-    exit(1);
-}
-
-require_once 'XMPPHP/XMPP.php';
-
-/**
- * checks whether a string is a syntactically valid Jabber ID (JID)
- *
- * @param string $jid string to check
- *
- * @return     boolean whether the string is a valid JID
- */
-
-function jabber_valid_base_jid($jid)
-{
-    // Cheap but effective
-    return Validate::email($jid);
-}
-
-/**
- * normalizes a Jabber ID for comparison
- *
- * @param string $jid JID to check
- *
- * @return string an equivalent JID in normalized (lowercase) form
- */
-
-function jabber_normalize_jid($jid)
-{
-    if (preg_match("/(?:([^\@]+)\@)?([^\/]+)(?:\/(.*))?$/", $jid, $matches)) {
-        $node   = $matches[1];
-        $server = $matches[2];
-        return strtolower($node.'@'.$server);
-    } else {
-        return null;
-    }
-}
-
-/**
- * the JID of the Jabber daemon for this StatusNet instance
- *
- * @return string JID of the Jabber daemon
- */
-
-function jabber_daemon_address()
-{
-    return common_config('xmpp', 'user') . '@' . common_config('xmpp', 'server');
-}
-
-class Sharing_XMPP extends XMPPHP_XMPP
-{
-    function getSocket()
-    {
-        return $this->socket;
-    }
-}
-
-/**
- * Build an XMPP proxy connection that'll save outgoing messages
- * to the 'xmppout' queue to be picked up by xmppdaemon later.
- *
- * If queueing is disabled, we'll grab a live connection.
- *
- * @return XMPPHP
- */
-function jabber_proxy()
-{
-    if (common_config('queue', 'enabled')) {
-           $proxy = new Queued_XMPP(common_config('xmpp', 'host') ?
-                                 common_config('xmpp', 'host') :
-                                 common_config('xmpp', 'server'),
-                                 common_config('xmpp', 'port'),
-                                 common_config('xmpp', 'user'),
-                                 common_config('xmpp', 'password'),
-                                 common_config('xmpp', 'resource') . 'daemon',
-                                 common_config('xmpp', 'server'),
-                                 common_config('xmpp', 'debug') ?
-                                 true : false,
-                                 common_config('xmpp', 'debug') ?
-                                 XMPPHP_Log::LEVEL_VERBOSE :  null);
-        return $proxy;
-    } else {
-        return jabber_connect();
-    }
-}
-
-/**
- * Lazy-connect the configured Jabber account to the configured server;
- * if already opened, the same connection will be returned.
- *
- * In a multi-site background process, each site configuration
- * will get its own connection.
- *
- * @param string $resource Resource to connect (defaults to configured resource)
- *
- * @return XMPPHP connection to the configured server
- */
-
-function jabber_connect($resource=null)
-{
-    static $connections = array();
-    $site = common_config('site', 'server');
-    if (empty($connections[$site])) {
-        if (empty($resource)) {
-            $resource = common_config('xmpp', 'resource');
-        }
-        $conn = new Sharing_XMPP(common_config('xmpp', 'host') ?
-                                common_config('xmpp', 'host') :
-                                common_config('xmpp', 'server'),
-                                common_config('xmpp', 'port'),
-                                common_config('xmpp', 'user'),
-                                common_config('xmpp', 'password'),
-                                $resource,
-                                common_config('xmpp', 'server'),
-                                common_config('xmpp', 'debug') ?
-                                true : false,
-                                common_config('xmpp', 'debug') ?
-                                XMPPHP_Log::LEVEL_VERBOSE :  null
-                                );
-
-        if (!$conn) {
-            return false;
-        }
-        $connections[$site] = $conn;
-
-        $conn->autoSubscribe();
-        $conn->useEncryption(common_config('xmpp', 'encryption'));
-
-        try {
-            common_log(LOG_INFO, __METHOD__ . ": connecting " .
-                common_config('xmpp', 'user') . '/' . $resource);
-            //$conn->connect(true); // true = persistent connection
-            $conn->connect(); // persistent connections break multisite
-        } catch (XMPPHP_Exception $e) {
-            common_log(LOG_ERR, $e->getMessage());
-            return false;
-        }
-
-        $conn->processUntil('session_start');
-    }
-    return $connections[$site];
-}
-
-/**
- * Queue send for a single notice to a given Jabber address
- *
- * @param string $to     JID to send the notice to
- * @param Notice $notice notice to send
- *
- * @return boolean success value
- */
-
-function jabber_send_notice($to, $notice)
-{
-    $conn = jabber_proxy();
-    $profile = Profile::staticGet($notice->profile_id);
-    if (!$profile) {
-        common_log(LOG_WARNING, 'Refusing to send notice with ' .
-                   'unknown profile ' . common_log_objstring($notice),
-                   __FILE__);
-        return false;
-    }
-    $msg   = jabber_format_notice($profile, $notice);
-    $entry = jabber_format_entry($profile, $notice);
-    $conn->message($to, $msg, 'chat', null, $entry);
-    $profile->free();
-    return true;
-}
-
-/**
- * extra information for XMPP messages, as defined by Twitter
- *
- * @param Profile $profile Profile of the sending user
- * @param Notice  $notice  Notice being sent
- *
- * @return string Extra information (Atom, HTML, addresses) in string format
- */
-
-function jabber_format_entry($profile, $notice)
-{
-    $entry = $notice->asAtomEntry(true, true);
-
-    $xs = new XMLStringer();
-    $xs->elementStart('html', array('xmlns' => 'http://jabber.org/protocol/xhtml-im'));
-    $xs->elementStart('body', array('xmlns' => 'http://www.w3.org/1999/xhtml'));
-    $xs->element('a', array('href' => $profile->profileurl),
-                 $profile->nickname);
-    $xs->text(": ");
-    if (!empty($notice->rendered)) {
-        $xs->raw($notice->rendered);
-    } else {
-        $xs->raw(common_render_content($notice->content, $notice));
-    }
-    $xs->text(" ");
-    $xs->element('a', array(
-        'href'=>common_local_url('conversation',
-            array('id' => $notice->conversation)).'#notice-'.$notice->id
-         ),sprintf(_('[%s]'),$notice->id));
-    $xs->elementEnd('body');
-    $xs->elementEnd('html');
-
-    $html = $xs->getString();
-
-    return $html . ' ' . $entry;
-}
-
-/**
- * sends a single text message to a given JID
- *
- * @param string $to      JID to send the message to
- * @param string $body    body of the message
- * @param string $type    type of the message
- * @param string $subject subject of the message
- *
- * @return boolean success flag
- */
-
-function jabber_send_message($to, $body, $type='chat', $subject=null)
-{
-    $conn = jabber_proxy();
-    $conn->message($to, $body, $type, $subject);
-    return true;
-}
-
-/**
- * sends a presence stanza on the Jabber network
- *
- * @param string $status   current status, free-form string
- * @param string $show     structured status value
- * @param string $to       recipient of presence, null for general
- * @param string $type     type of status message, related to $show
- * @param int    $priority priority of the presence
- *
- * @return boolean success value
- */
-
-function jabber_send_presence($status, $show='available', $to=null,
-                              $type = 'available', $priority=null)
-{
-    $conn = jabber_connect();
-    if (!$conn) {
-        return false;
-    }
-    $conn->presence($status, $show, $to, $type, $priority);
-    return true;
-}
-
-/**
- * sends a confirmation request to a JID
- *
- * @param string $code     confirmation code for confirmation URL
- * @param string $nickname nickname of confirming user
- * @param string $address  JID to send confirmation to
- *
- * @return boolean success flag
- */
-
-function jabber_confirm_address($code, $nickname, $address)
-{
-    $body = 'User "' . $nickname . '" on ' . common_config('site', 'name') . ' ' .
-      'has said that your Jabber ID belongs to them. ' .
-      'If that\'s true, you can confirm by clicking on this URL: ' .
-      common_local_url('confirmaddress', array('code' => $code)) .
-      ' . (If you cannot click it, copy-and-paste it into the ' .
-      'address bar of your browser). If that user isn\'t you, ' .
-      'or if you didn\'t request this confirmation, just ignore this message.';
-
-    return jabber_send_message($address, $body);
-}
-
-/**
- * sends a "special" presence stanza on the Jabber network
- *
- * @param string $type   Type of presence
- * @param string $to     JID to send presence to
- * @param string $show   show value for presence
- * @param string $status status value for presence
- *
- * @return boolean success flag
- *
- * @see jabber_send_presence()
- */
-
-function jabber_special_presence($type, $to=null, $show=null, $status=null)
-{
-    // FIXME: why use this instead of jabber_send_presence()?
-    $conn = jabber_connect();
-
-    $to     = htmlspecialchars($to);
-    $status = htmlspecialchars($status);
-
-    $out = "<presence";
-    if ($to) {
-        $out .= " to='$to'";
-    }
-    if ($type) {
-        $out .= " type='$type'";
-    }
-    if ($show == 'available' and !$status) {
-        $out .= "/>";
-    } else {
-        $out .= ">";
-        if ($show && ($show != 'available')) {
-            $out .= "<show>$show</show>";
-        }
-        if ($status) {
-            $out .= "<status>$status</status>";
-        }
-        $out .= "</presence>";
-    }
-    $conn->send($out);
-}
-
-/**
- * Queue broadcast of a notice to all subscribers and reply recipients
- *
- * This function will send a notice to all subscribers on the local server
- * who have Jabber addresses, and have Jabber notification enabled, and
- * have this subscription enabled for Jabber. It also sends the notice to
- * all recipients of @-replies who have Jabber addresses and Jabber notification
- * enabled. This is really the heart of Jabber distribution in StatusNet.
- *
- * @param Notice $notice The notice to broadcast
- *
- * @return boolean success flag
- */
-
-function jabber_broadcast_notice($notice)
-{
-    if (!common_config('xmpp', 'enabled')) {
-        return true;
-    }
-    $profile = Profile::staticGet($notice->profile_id);
-
-    if (!$profile) {
-        common_log(LOG_WARNING, 'Refusing to broadcast notice with ' .
-                   'unknown profile ' . common_log_objstring($notice),
-                   __FILE__);
-        return true; // not recoverable; discard.
-    }
-
-    $msg   = jabber_format_notice($profile, $notice);
-    $entry = jabber_format_entry($profile, $notice);
-
-    $profile->free();
-    unset($profile);
-
-    $sent_to = array();
-
-    $conn = jabber_proxy();
-
-    $ni = $notice->whoGets();
-
-    foreach ($ni as $user_id => $reason) {
-        $user = User::staticGet($user_id);
-        if (empty($user) ||
-            empty($user->jabber) ||
-            !$user->jabbernotify) {
-            // either not a local user, or just not found
-            continue;
-        }
-        switch ($reason) {
-        case NOTICE_INBOX_SOURCE_REPLY:
-            if (!$user->jabberreplies) {
-                continue 2;
-            }
-            break;
-        case NOTICE_INBOX_SOURCE_SUB:
-            $sub = Subscription::pkeyGet(array('subscriber' => $user->id,
-                                               'subscribed' => $notice->profile_id));
-            if (empty($sub) || !$sub->jabber) {
-                continue 2;
-            }
-            break;
-        case NOTICE_INBOX_SOURCE_GROUP:
-            break;
-        default:
-            throw new Exception(sprintf(_("Unknown inbox source %d."), $reason));
-        }
-
-        common_log(LOG_INFO,
-                   'Sending notice ' . $notice->id . ' to ' . $user->jabber,
-                   __FILE__);
-        $conn->message($user->jabber, $msg, 'chat', null, $entry);
-    }
-
-    return true;
-}
-
-/**
- * Queue send of a notice to all public listeners
- *
- * For notices that are generated on the local system (by users), we can optionally
- * forward them to remote listeners by XMPP.
- *
- * @param Notice $notice notice to broadcast
- *
- * @return boolean success flag
- */
-
-function jabber_public_notice($notice)
-{
-    // Now, users who want everything
-
-    $public = common_config('xmpp', 'public');
-
-    // FIXME PRIV don't send out private messages here
-    // XXX: should we send out non-local messages if public,localonly
-    // = false? I think not
-
-    if ($public && $notice->is_local == Notice::LOCAL_PUBLIC) {
-        $profile = Profile::staticGet($notice->profile_id);
-
-        if (!$profile) {
-            common_log(LOG_WARNING, 'Refusing to broadcast notice with ' .
-                       'unknown profile ' . common_log_objstring($notice),
-                       __FILE__);
-            return true; // not recoverable; discard.
-        }
-
-        $msg   = jabber_format_notice($profile, $notice);
-        $entry = jabber_format_entry($profile, $notice);
-
-        $conn = jabber_proxy();
-
-        foreach ($public as $address) {
-            common_log(LOG_INFO,
-                       'Sending notice ' . $notice->id .
-                       ' to public listener ' . $address,
-                       __FILE__);
-            $conn->message($address, $msg, 'chat', null, $entry);
-        }
-        $profile->free();
-    }
-
-    return true;
-}
-
-/**
- * makes a plain-text formatted version of a notice, suitable for Jabber distribution
- *
- * @param Profile &$profile profile of the sending user
- * @param Notice  &$notice  notice being sent
- *
- * @return string plain-text version of the notice, with user nickname prefixed
- */
-
-function jabber_format_notice(&$profile, &$notice)
-{
-    return $profile->nickname . ': ' . $notice->content . ' [' . $notice->id . ']';
-}
diff --git a/lib/jabberqueuehandler.php b/lib/jabberqueuehandler.php
deleted file mode 100644 (file)
index d6b4b74..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-<?php
-/*
- * StatusNet - the distributed open-source microblogging tool
- * Copyright (C) 2008, 2009, StatusNet, Inc.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-if (!defined('STATUSNET') && !defined('LACONICA')) {
-    exit(1);
-}
-
-/**
- * Queue handler for pushing new notices to Jabber users.
- * @fixme this exception handling doesn't look very good.
- */
-class JabberQueueHandler extends QueueHandler
-{
-    var $conn = null;
-
-    function transport()
-    {
-        return 'jabber';
-    }
-
-    function handle($notice)
-    {
-        require_once(INSTALLDIR.'/lib/jabber.php');
-        try {
-            return jabber_broadcast_notice($notice);
-        } catch (XMPPHP_Exception $e) {
-            common_log(LOG_ERR, "Got an XMPPHP_Exception: " . $e->getMessage());
-            return false;
-        }
-    }
-}
diff --git a/lib/publicqueuehandler.php b/lib/publicqueuehandler.php
deleted file mode 100644 (file)
index a497d13..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-<?php
-/*
- * StatusNet - the distributed open-source microblogging tool
- * Copyright (C) 2008, 2009, StatusNet, Inc.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-if (!defined('STATUSNET') && !defined('LACONICA')) {
-    exit(1);
-}
-
-/**
- * Queue handler for pushing new notices to public XMPP subscribers.
- */
-class PublicQueueHandler extends QueueHandler
-{
-
-    function transport()
-    {
-        return 'public';
-    }
-
-    function handle($notice)
-    {
-        require_once(INSTALLDIR.'/lib/jabber.php');
-        try {
-            return jabber_public_notice($notice);
-        } catch (XMPPHP_Exception $e) {
-            common_log(LOG_ERR, "Got an XMPPHP_Exception: " . $e->getMessage());
-            return false;
-        }
-    }
-}
diff --git a/lib/queued_xmpp.php b/lib/queued_xmpp.php
deleted file mode 100644 (file)
index f6bccfd..0000000
+++ /dev/null
@@ -1,127 +0,0 @@
-<?php
-/**
- * StatusNet, the distributed open-source microblogging tool
- *
- * Queue-mediated proxy class for outgoing XMPP messages.
- *
- * PHP version 5
- *
- * LICENCE: This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- *
- * @category  Network
- * @package   StatusNet
- * @author    Brion Vibber <brion@status.net>
- * @copyright 2010 StatusNet, Inc.
- * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
- * @link      http://status.net/
- */
-
-if (!defined('STATUSNET') && !defined('LACONICA')) {
-    exit(1);
-}
-
-require_once INSTALLDIR . '/lib/jabber.php';
-
-class Queued_XMPP extends XMPPHP_XMPP
-{
-       /**
-        * Constructor
-        *
-        * @param string  $host
-        * @param integer $port
-        * @param string  $user
-        * @param string  $password
-        * @param string  $resource
-        * @param string  $server
-        * @param boolean $printlog
-        * @param string  $loglevel
-        */
-       public function __construct($host, $port, $user, $password, $resource, $server = null, $printlog = false, $loglevel = null)
-       {
-        parent::__construct($host, $port, $user, $password, $resource, $server, $printlog, $loglevel);
-
-        // We use $host to connect, but $server to build JIDs if specified.
-        // This seems to fix an upstream bug where $host was used to build
-        // $this->basejid, never seen since it isn't actually used in the base
-        // classes.
-        if (!$server) {
-            $server = $this->host;
-        }
-        $this->basejid = $this->user . '@' . $server;
-
-        // Normally the fulljid is filled out by the server at resource binding
-        // time, but we need to do it since we're not talking to a real server.
-        $this->fulljid = "{$this->basejid}/{$this->resource}";
-    }
-
-    /**
-     * Send a formatted message to the outgoing queue for later forwarding
-     * to a real XMPP connection.
-     *
-     * @param string $msg
-     */
-    public function send($msg, $timeout=NULL)
-    {
-        $qm = QueueManager::get('xmppout');
-        $qm->enqueue(strval($msg), 'xmppout');
-    }
-
-    /**
-     * Since we'll be getting input through a queue system's run loop,
-     * we'll process one standalone message at a time rather than our
-     * own XMPP message pump.
-     *
-     * @param string $message
-     */
-    public function processMessage($message) {
-       $frame = array_shift($this->frames);
-       xml_parse($this->parser, $frame->body, false);
-    }
-
-    //@{
-    /**
-     * Stream i/o functions disabled; push input through processMessage()
-     */
-    public function connect($timeout = 30, $persistent = false, $sendinit = true)
-    {
-        throw new Exception("Can't connect to server from XMPP queue proxy.");
-    }
-
-    public function disconnect()
-    {
-        throw new Exception("Can't connect to server from XMPP queue proxy.");
-    }
-
-    public function process()
-    {
-        throw new Exception("Can't read stream from XMPP queue proxy.");
-    }
-
-    public function processUntil($event, $timeout=-1)
-    {
-        throw new Exception("Can't read stream from XMPP queue proxy.");
-    }
-
-    public function read()
-    {
-        throw new Exception("Can't read stream from XMPP queue proxy.");
-    }
-
-    public function readyToProcess()
-    {
-        throw new Exception("Can't read stream from XMPP queue proxy.");
-    }
-    //@}
-}
-
index 2909cd83b100656efd354063323610590191d152..2194dd1618b088a5796f6e4664c4053974c30060 100644 (file)
@@ -36,20 +36,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
 class QueueHandler
 {
 
-    /**
-     * Return transport keyword which identifies items this queue handler
-     * services; must be defined for all subclasses.
-     *
-     * Must be 8 characters or less to fit in the queue_item database.
-     * ex "email", "jabber", "sms", "irc", ...
-     *
-     * @return string
-     */
-    function transport()
-    {
-        return null;
-    }
-
     /**
      * Here's the meat of your queue handler -- you're handed a Notice
      * or other object, which you may do as you will with.
index 87bd356aa2b0d7ea43c959513bda4e0001958884..fe45e8bbff8079981b7064996b3afc06925101dc 100644 (file)
@@ -156,21 +156,14 @@ abstract class QueueManager extends IoManager
     }
 
     /**
-     * Encode an object or variable for queued storage.
-     * Notice objects are currently stored as an id reference;
-     * other items are serialized.
+     * Encode an object for queued storage.
      *
      * @param mixed $item
      * @return string
      */
     protected function encode($item)
     {
-        if ($item instanceof Notice) {
-            // Backwards compat
-            return $item->id;
-        } else {
-            return serialize($item);
-        }
+        return serialize($item);
     }
 
     /**
@@ -182,25 +175,7 @@ abstract class QueueManager extends IoManager
      */
     protected function decode($frame)
     {
-        if (is_numeric($frame)) {
-            // Back-compat for notices...
-            return Notice::staticGet(intval($frame));
-        } elseif (substr($frame, 0, 1) == '<') {
-            // Back-compat for XML source
-            return $frame;
-        } else {
-            // Deserialize!
-            #$old = error_reporting();
-            #error_reporting($old & ~E_NOTICE);
-            $out = unserialize($frame);
-            #error_reporting($old);
-
-            if ($out === false && $frame !== 'b:0;') {
-                common_log(LOG_ERR, "Couldn't unserialize queued frame: $frame");
-                return false;
-            }
-            return $out;
-        }
+        return unserialize($frame);
     }
 
     /**
@@ -267,16 +242,6 @@ abstract class QueueManager extends IoManager
             // Broadcasting profile updates to OMB remote subscribers
             $this->connect('profile', 'ProfileQueueHandler');
 
-            // XMPP output handlers...
-            if (common_config('xmpp', 'enabled')) {
-                // Delivery prep, read by queuedaemon.php:
-                $this->connect('jabber', 'JabberQueueHandler');
-                $this->connect('public', 'PublicQueueHandler');
-
-                // Raw output, read by xmppdaemon.php:
-                $this->connect('xmppout', 'XmppOutQueueHandler', 'xmpp');
-            }
-
             // For compat with old plugins not registering their own handlers.
             $this->connect('plugin', 'PluginQueueHandler');
         }
index 1c306a6298a3c9126aa39786f166af7179ccf155..3dc0ea65aa55fb3b89984fe89c17d3dbcac969eb 100644 (file)
@@ -36,7 +36,7 @@ class QueueMonitor
      * Only explicitly listed thread/site/queue owners will be incremented.
      *
      * @param string $key counter name
-     * @param array $owners list of owner keys like 'queue:jabber' or 'site:stat01'
+     * @param array $owners list of owner keys like 'queue:xmpp' or 'site:stat01'
      */
     public function stats($key, $owners=array())
     {
index ef3adebf94fdf4bbc9223bc6a2d9435bf79e6411..afb8f5af02f4ad830d496c633dbfd61ef7a17caf 100644 (file)
@@ -339,7 +339,6 @@ class StatusNet
         }
 
         // Backwards compatibility
-
         if (array_key_exists('memcached', $config)) {
             if ($config['memcached']['enabled']) {
                 if(class_exists('Memcached')) {
@@ -353,6 +352,21 @@ class StatusNet
                 $config['cache']['base'] = $config['memcached']['base'];
             }
         }
+        if (array_key_exists('xmpp', $config)) {
+            if ($config['xmpp']['enabled']) {
+                addPlugin('xmpp', array(
+                    'server' => $config['xmpp']['server'],
+                    'port' => $config['xmpp']['port'],
+                    'user' => $config['xmpp']['user'],
+                    'resource' => $config['xmpp']['resource'],
+                    'encryption' => $config['xmpp']['encryption'],
+                    'password' => $config['xmpp']['password'],
+                    'host' => $config['xmpp']['host'],
+                    'debug' => $config['xmpp']['debug'],
+                    'public' => $config['xmpp']['public']
+                ));
+            }
+        }
     }
 }
 
index da2799d4f92d23766c464b1e15b4c66ab6704217..6a849427584c21c22245af8ba0d8ef1f0500d355 100644 (file)
@@ -1145,19 +1145,10 @@ function common_enqueue_notice($notice)
         $transports[] = 'plugin';
     }
 
-    $xmpp = common_config('xmpp', 'enabled');
-
-    if ($xmpp) {
-        $transports[] = 'jabber';
-    }
-
     // @fixme move these checks into QueueManager and/or individual handlers
     if ($notice->is_local == Notice::LOCAL_PUBLIC ||
         $notice->is_local == Notice::LOCAL_NONPUBLIC) {
         $transports = array_merge($transports, $localTransports);
-        if ($xmpp) {
-            $transports[] = 'public';
-        }
     }
 
     if (Event::handle('StartEnqueueNotice', array($notice, &$transports))) {
diff --git a/lib/xmppmanager.php b/lib/xmppmanager.php
deleted file mode 100644 (file)
index cca54db..0000000
+++ /dev/null
@@ -1,486 +0,0 @@
-<?php
-/*
- * StatusNet - the distributed open-source microblogging tool
- * Copyright (C) 2008, 2009, StatusNet, Inc.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
-
-/**
- * XMPP background connection manager for XMPP-using queue handlers,
- * allowing them to send outgoing messages on the right connection.
- *
- * Input is handled during socket select loop, keepalive pings during idle.
- * Any incoming messages will be forwarded to the main XmppDaemon process,
- * which handles direct user interaction.
- *
- * In a multi-site queuedaemon.php run, one connection will be instantiated
- * for each site being handled by the current process that has XMPP enabled.
- */
-
-class XmppManager extends IoManager
-{
-    protected $site = null;
-    protected $pingid = 0;
-    protected $lastping = null;
-    protected $conn = null;
-
-    static protected $singletons = array();
-    
-    const PING_INTERVAL = 120;
-
-    /**
-     * Fetch the singleton XmppManager for the current site.
-     * @return mixed XmppManager, or false if unneeded
-     */
-    public static function get()
-    {
-        if (common_config('xmpp', 'enabled')) {
-            $site = StatusNet::currentSite();
-            if (empty(self::$singletons[$site])) {
-                self::$singletons[$site] = new XmppManager();
-            }
-            return self::$singletons[$site];
-        } else {
-            return false;
-        }
-    }
-
-    /**
-     * Tell the i/o master we need one instance for each supporting site
-     * being handled in this process.
-     */
-    public static function multiSite()
-    {
-        return IoManager::INSTANCE_PER_SITE;
-    }
-
-    function __construct()
-    {
-        $this->site = StatusNet::currentSite();
-        $this->resource = common_config('xmpp', 'resource') . 'daemon';
-    }
-
-    /**
-     * Initialize connection to server.
-     * @return boolean true on success
-     */
-    public function start($master)
-    {
-        parent::start($master);
-        $this->switchSite();
-
-        require_once INSTALLDIR . "/lib/jabber.php";
-
-        # Low priority; we don't want to receive messages
-
-        common_log(LOG_INFO, "INITIALIZE");
-        $this->conn = jabber_connect($this->resource);
-
-        if (empty($this->conn)) {
-            common_log(LOG_ERR, "Couldn't connect to server.");
-            return false;
-        }
-
-        $this->log(LOG_DEBUG, "Initializing stanza handlers.");
-
-        $this->conn->addEventHandler('message', 'handle_message', $this);
-        $this->conn->addEventHandler('presence', 'handle_presence', $this);
-        $this->conn->addEventHandler('reconnect', 'handle_reconnect', $this);
-
-        $this->conn->setReconnectTimeout(600);
-        jabber_send_presence("Send me a message to post a notice", 'available', null, 'available', 100);
-
-        return !is_null($this->conn);
-    }
-
-    /**
-     * Message pump is triggered on socket input, so we only need an idle()
-     * call often enough to trigger our outgoing pings.
-     */
-    function timeout()
-    {
-        return self::PING_INTERVAL;
-    }
-
-    /**
-     * Lists the XMPP connection socket to allow i/o master to wake
-     * when input comes in here as well as from the queue source.
-     *
-     * @return array of resources
-     */
-    public function getSockets()
-    {
-        if ($this->conn) {
-            return array($this->conn->getSocket());
-        } else {
-            return array();
-        }
-    }
-
-    /**
-     * Process XMPP events that have come in over the wire.
-     * Side effects: may switch site configuration
-     * @fixme may kill process on XMPP error
-     * @param resource $socket
-     */
-    public function handleInput($socket)
-    {
-        $this->switchSite();
-
-        # Process the queue for as long as needed
-        try {
-            if ($this->conn) {
-                assert($socket === $this->conn->getSocket());
-                
-                common_log(LOG_DEBUG, "Servicing the XMPP queue.");
-                $this->stats('xmpp_process');
-                $this->conn->processTime(0);
-            }
-        } catch (XMPPHP_Exception $e) {
-            common_log(LOG_ERR, "Got an XMPPHP_Exception: " . $e->getMessage());
-            die($e->getMessage());
-        }
-    }
-
-    /**
-     * Idle processing for io manager's execution loop.
-     * Send keepalive pings to server.
-     *
-     * Side effect: kills process on exception from XMPP library.
-     *
-     * @fixme non-dying error handling
-     */
-    public function idle($timeout=0)
-    {
-        if ($this->conn) {
-            $now = time();
-            if (empty($this->lastping) || $now - $this->lastping > self::PING_INTERVAL) {
-                $this->switchSite();
-                try {
-                    $this->sendPing();
-                    $this->lastping = $now;
-                } catch (XMPPHP_Exception $e) {
-                    common_log(LOG_ERR, "Got an XMPPHP_Exception: " . $e->getMessage());
-                    die($e->getMessage());
-                }
-            }
-        }
-    }
-
-    /**
-     * For queue handlers to pass us a message to push out,
-     * if we're active.
-     *
-     * @fixme should this be blocking etc?
-     *
-     * @param string $msg XML stanza to send
-     * @return boolean success
-     */
-    public function send($msg)
-    {
-        if ($this->conn && !$this->conn->isDisconnected()) {
-            $bytes = $this->conn->send($msg);
-            if ($bytes > 0) {
-                $this->conn->processTime(0);
-                return true;
-            } else {
-                return false;
-            }
-        } else {
-            // Can't send right now...
-            return false;
-        }
-    }
-
-    /**
-     * Send a keepalive ping to the XMPP server.
-     */
-    protected function sendPing()
-    {
-        $jid = jabber_daemon_address().'/'.$this->resource;
-        $server = common_config('xmpp', 'server');
-
-        if (!isset($this->pingid)) {
-            $this->pingid = 0;
-        } else {
-            $this->pingid++;
-        }
-
-        common_log(LOG_DEBUG, "Sending ping #{$this->pingid}");
-
-        $this->conn->send("<iq from='{$jid}' to='{$server}' id='ping_{$this->pingid}' type='get'><ping xmlns='urn:xmpp:ping'/></iq>");
-    }
-
-    /**
-     * Callback for Jabber reconnect event
-     * @param $pl
-     */
-    function handle_reconnect(&$pl)
-    {
-        common_log(LOG_NOTICE, 'XMPP reconnected');
-
-        $this->conn->processUntil('session_start');
-        $this->conn->presence(null, 'available', null, 'available', 100);
-    }
-
-
-    function get_user($from)
-    {
-        $user = User::staticGet('jabber', jabber_normalize_jid($from));
-        return $user;
-    }
-
-    /**
-     * XMPP callback for handling message input...
-     * @param array $pl XMPP payload
-     */
-    function handle_message(&$pl)
-    {
-        $from = jabber_normalize_jid($pl['from']);
-
-        if ($pl['type'] != 'chat') {
-            $this->log(LOG_WARNING, "Ignoring message of type ".$pl['type']." from $from.");
-            return;
-        }
-
-        if (mb_strlen($pl['body']) == 0) {
-            $this->log(LOG_WARNING, "Ignoring message with empty body from $from.");
-            return;
-        }
-
-        // Forwarded from another daemon for us to handle; this shouldn't
-        // happen any more but we might get some legacy items.
-        if ($this->is_self($from)) {
-            $this->log(LOG_INFO, "Got forwarded notice from self ($from).");
-            $from = $this->get_ofrom($pl);
-            $this->log(LOG_INFO, "Originally sent by $from.");
-            if (is_null($from) || $this->is_self($from)) {
-                $this->log(LOG_INFO, "Ignoring notice originally sent by $from.");
-                return;
-            }
-        }
-
-        $user = $this->get_user($from);
-
-        // For common_current_user to work
-        global $_cur;
-        $_cur = $user;
-
-        if (!$user) {
-            $this->from_site($from, 'Unknown user; go to ' .
-                             common_local_url('imsettings') .
-                             ' to add your address to your account');
-            $this->log(LOG_WARNING, 'Message from unknown user ' . $from);
-            return;
-        }
-        if ($this->handle_command($user, $pl['body'])) {
-            $this->log(LOG_INFO, "Command message by $from handled.");
-            return;
-        } else if ($this->is_autoreply($pl['body'])) {
-            $this->log(LOG_INFO, 'Ignoring auto reply from ' . $from);
-            return;
-        } else if ($this->is_otr($pl['body'])) {
-            $this->log(LOG_INFO, 'Ignoring OTR from ' . $from);
-            return;
-        } else {
-
-            $this->log(LOG_INFO, 'Posting a notice from ' . $user->nickname);
-
-            $this->add_notice($user, $pl);
-        }
-
-        $user->free();
-        unset($user);
-        unset($_cur);
-
-        unset($pl['xml']);
-        $pl['xml'] = null;
-
-        $pl = null;
-        unset($pl);
-    }
-
-
-    function is_self($from)
-    {
-        return preg_match('/^'.strtolower(jabber_daemon_address()).'/', strtolower($from));
-    }
-
-    function get_ofrom($pl)
-    {
-        $xml = $pl['xml'];
-        $addresses = $xml->sub('addresses');
-        if (!$addresses) {
-            $this->log(LOG_WARNING, 'Forwarded message without addresses');
-            return null;
-        }
-        $address = $addresses->sub('address');
-        if (!$address) {
-            $this->log(LOG_WARNING, 'Forwarded message without address');
-            return null;
-        }
-        if (!array_key_exists('type', $address->attrs)) {
-            $this->log(LOG_WARNING, 'No type for forwarded message');
-            return null;
-        }
-        $type = $address->attrs['type'];
-        if ($type != 'ofrom') {
-            $this->log(LOG_WARNING, 'Type of forwarded message is not ofrom');
-            return null;
-        }
-        if (!array_key_exists('jid', $address->attrs)) {
-            $this->log(LOG_WARNING, 'No jid for forwarded message');
-            return null;
-        }
-        $jid = $address->attrs['jid'];
-        if (!$jid) {
-            $this->log(LOG_WARNING, 'Could not get jid from address');
-            return null;
-        }
-        $this->log(LOG_DEBUG, 'Got message forwarded from jid ' . $jid);
-        return $jid;
-    }
-
-    function is_autoreply($txt)
-    {
-        if (preg_match('/[\[\(]?[Aa]uto[-\s]?[Rr]e(ply|sponse)[\]\)]/', $txt)) {
-            return true;
-        } else if (preg_match('/^System: Message wasn\'t delivered. Offline storage size was exceeded.$/', $txt)) {
-            return true;
-        } else {
-            return false;
-        }
-    }
-
-    function is_otr($txt)
-    {
-        if (preg_match('/^\?OTR/', $txt)) {
-            return true;
-        } else {
-            return false;
-        }
-    }
-
-    function from_site($address, $msg)
-    {
-        $text = '['.common_config('site', 'name') . '] ' . $msg;
-        jabber_send_message($address, $text);
-    }
-
-    function handle_command($user, $body)
-    {
-        $inter = new CommandInterpreter();
-        $cmd = $inter->handle_command($user, $body);
-        if ($cmd) {
-            $chan = new XMPPChannel($this->conn);
-            $cmd->execute($chan);
-            return true;
-        } else {
-            return false;
-        }
-    }
-
-    function add_notice(&$user, &$pl)
-    {
-        $body = trim($pl['body']);
-        $content_shortened = common_shorten_links($body);
-        if (Notice::contentTooLong($content_shortened)) {
-          $from = jabber_normalize_jid($pl['from']);
-          $this->from_site($from, sprintf(_('Message too long - maximum is %1$d characters, you sent %2$d.'),
-                                          Notice::maxContent(),
-                                          mb_strlen($content_shortened)));
-          return;
-        }
-
-        try {
-            $notice = Notice::saveNew($user->id, $content_shortened, 'xmpp');
-        } catch (Exception $e) {
-            $this->log(LOG_ERR, $e->getMessage());
-            $this->from_site($user->jabber, $e->getMessage());
-            return;
-        }
-
-        common_broadcast_notice($notice);
-        $this->log(LOG_INFO,
-                   'Added notice ' . $notice->id . ' from user ' . $user->nickname);
-        $notice->free();
-        unset($notice);
-    }
-
-    function handle_presence(&$pl)
-    {
-        $from = jabber_normalize_jid($pl['from']);
-        switch ($pl['type']) {
-         case 'subscribe':
-            # We let anyone subscribe
-            $this->subscribed($from);
-            $this->log(LOG_INFO,
-                       'Accepted subscription from ' . $from);
-            break;
-         case 'subscribed':
-         case 'unsubscribed':
-         case 'unsubscribe':
-            $this->log(LOG_INFO,
-                       'Ignoring  "' . $pl['type'] . '" from ' . $from);
-            break;
-         default:
-            if (!$pl['type']) {
-                $user = User::staticGet('jabber', $from);
-                if (!$user) {
-                    $this->log(LOG_WARNING, 'Presence from unknown user ' . $from);
-                    return;
-                }
-                if ($user->updatefrompresence) {
-                    $this->log(LOG_INFO, 'Updating ' . $user->nickname .
-                               ' status from presence.');
-                    $this->add_notice($user, $pl);
-                }
-                $user->free();
-                unset($user);
-            }
-            break;
-        }
-        unset($pl['xml']);
-        $pl['xml'] = null;
-
-        $pl = null;
-        unset($pl);
-    }
-
-    function log($level, $msg)
-    {
-        $text = 'XMPPDaemon('.$this->resource.'): '.$msg;
-        common_log($level, $text);
-    }
-
-    function subscribed($to)
-    {
-        jabber_special_presence('subscribed', $to);
-    }
-
-    /**
-     * Make sure we're on the right site configuration
-     */
-    protected function switchSite()
-    {
-        if ($this->site != StatusNet::currentSite()) {
-            common_log(LOG_DEBUG, __METHOD__ . ": switching to site $this->site");
-            $this->stats('switch');
-            StatusNet::switchSite($this->site);
-        }
-    }
-}
diff --git a/lib/xmppoutqueuehandler.php b/lib/xmppoutqueuehandler.php
deleted file mode 100644 (file)
index 2afa260..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-<?php
-/*
- * StatusNet - the distributed open-source microblogging tool
- * Copyright (C) 2010, StatusNet, Inc.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-/**
- * Queue handler for pre-processed outgoing XMPP messages.
- * Formatted XML stanzas will have been pushed into the queue
- * via the Queued_XMPP connection proxy, probably from some
- * other queue processor.
- *
- * Here, the XML stanzas are simply pulled out of the queue and
- * pushed out over the wire; an XmppManager is needed to set up
- * and maintain the actual server connection.
- *
- * This queue will be run via XmppDaemon rather than QueueDaemon.
- *
- * @author Brion Vibber <brion@status.net>
- */
-class XmppOutQueueHandler extends QueueHandler
-{
-    function transport() {
-        return 'xmppout';
-    }
-
-    /**
-     * Take a previously-queued XMPP stanza and send it out ot the server.
-     * @param string $msg
-     * @return boolean true on success
-     */
-    function handle($msg)
-    {
-        assert(is_string($msg));
-
-        $xmpp = XmppManager::get();
-        $ok = $xmpp->send($msg);
-
-        return $ok;
-    }
-}
-
diff --git a/plugins/Aim/AimPlugin.php b/plugins/Aim/AimPlugin.php
new file mode 100644 (file)
index 0000000..3855d1f
--- /dev/null
@@ -0,0 +1,162 @@
+<?php
+/**
+ * StatusNet - the distributed open-source microblogging tool
+ * Copyright (C) 2009, StatusNet, Inc.
+ *
+ * Send and receive notices using the AIM network
+ *
+ * PHP version 5
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ * @category  IM
+ * @package   StatusNet
+ * @author    Craig Andrews <candrews@integralblue.com>
+ * @copyright 2009 StatusNet, Inc.
+ * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link      http://status.net/
+ */
+
+if (!defined('STATUSNET')) {
+    // This check helps protect against security problems;
+    // your code file can't be executed directly from the web.
+    exit(1);
+}
+// We bundle the phptoclib library...
+set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/extlib/phptoclib');
+
+/**
+ * Plugin for AIM
+ *
+ * @category  Plugin
+ * @package   StatusNet
+ * @author    Craig Andrews <candrews@integralblue.com>
+ * @copyright 2009 StatusNet, Inc.
+ * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link      http://status.net/
+ */
+
+class AimPlugin extends ImPlugin
+{
+    public $user =  null;
+    public $password = null;
+    public $publicFeed = array();
+
+    public $transport = 'aim';
+
+    function getDisplayName()
+    {
+        return _m('AIM');
+    }
+
+    function normalize($screenname)
+    {
+               $screenname = str_replace(" ","", $screenname);
+        return strtolower($screenname);
+    }
+
+    function daemon_screenname()
+    {
+        return $this->user;
+    }
+
+    function validate($screenname)
+    {
+        if(preg_match('/^[a-z]\w{2,15}$/i', $screenname)) {
+            return true;
+        }else{
+            return false;
+        }
+    }
+
+    /**
+     * Load related modules when needed
+     *
+     * @param string $cls Name of the class to be loaded
+     *
+     * @return boolean hook value; true means continue processing, false means stop.
+     */
+    function onAutoload($cls)
+    {
+        $dir = dirname(__FILE__);
+
+        switch ($cls)
+        {
+        case 'Aim':
+            require_once(INSTALLDIR.'/plugins/Aim/extlib/phptoclib/aimclassw.php');
+            return false;
+        case 'AimManager':
+            include_once $dir . '/'.strtolower($cls).'.php';
+            return false;
+        case 'Fake_Aim':
+            include_once $dir . '/'. $cls .'.php';
+            return false;
+        default:
+            return true;
+        }
+    }
+
+    function onStartImDaemonIoManagers(&$classes)
+    {
+        parent::onStartImDaemonIoManagers(&$classes);
+        $classes[] = new AimManager($this); // handles sending/receiving
+        return true;
+    }
+
+    function microiduri($screenname)
+    {
+        return 'aim:' . $screenname;    
+    }
+
+    function send_message($screenname, $body)
+    {
+        $this->fake_aim->sendIm($screenname, $body);
+           $this->enqueue_outgoing_raw($this->fake_aim->would_be_sent);
+        return true;
+    }
+
+    function receive_raw_message($message)
+    {
+        $info=Aim::getMessageInfo($message);
+        $from = $info['from'];
+        $user = $this->get_user($from);
+        $notice_text = $info['message'];
+
+        return $this->handle_incoming($from, $notice_text);
+    }
+
+    function initialize(){
+        if(!isset($this->user)){
+            throw new Exception("must specify a user");
+        }
+        if(!isset($this->password)){
+            throw new Exception("must specify a password");
+        }
+
+        $this->fake_aim = new Fake_Aim($this->user,$this->password,4);
+        return true;
+    }
+
+    function onPluginVersion(&$versions)
+    {
+        $versions[] = array('name' => 'AIM',
+                            'version' => STATUSNET_VERSION,
+                            'author' => 'Craig Andrews',
+                            'homepage' => 'http://status.net/wiki/Plugin:AIM',
+                            'rawdescription' =>
+                            _m('The AIM plugin allows users to send and receive notices over the AIM network.'));
+        return true;
+    }
+}
+
diff --git a/plugins/Aim/Fake_Aim.php b/plugins/Aim/Fake_Aim.php
new file mode 100644 (file)
index 0000000..139b68f
--- /dev/null
@@ -0,0 +1,43 @@
+<?php
+/**
+ * StatusNet, the distributed open-source microblogging tool
+ *
+ * Instead of sending AIM messages, retrieve the raw data that would be sent
+ *
+ * PHP version 5
+ *
+ * LICENCE: This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ * @category  Network
+ * @package   StatusNet
+ * @author    Craig Andrews <candrews@integralblue.com>
+ * @copyright 2010 StatusNet, Inc.
+ * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
+ * @link      http://status.net/
+ */
+
+if (!defined('STATUSNET') && !defined('LACONICA')) {
+    exit(1);
+}
+
+class Fake_Aim extends Aim
+{
+    public $would_be_sent = null;
+
+    function sflapSend($sflap_type, $sflap_data, $no_null, $formatted)
+    {
+        $this->would_be_sent = array($sflap_type, $sflap_data, $no_null, $formatted);
+    }
+}
+
diff --git a/plugins/Aim/README b/plugins/Aim/README
new file mode 100644 (file)
index 0000000..0465917
--- /dev/null
@@ -0,0 +1,27 @@
+The AIM plugin allows users to send and receive notices over the AIM network.
+
+Installation
+============
+add "addPlugin('aim',
+    array('setting'=>'value', 'setting2'=>'value2', ...);"
+to the bottom of your config.php
+
+The daemon included with this plugin must be running. It will be started by
+the plugin along with their other daemons when you run scripts/startdaemons.sh.
+See the StatusNet README for more about queuing and daemons.
+
+Settings
+========
+user*: username (screenname) to use when logging into AIM
+password*: password for that user
+
+* required
+default values are in (parenthesis)
+
+Example
+=======
+addPlugin('aim', array(
+    'user=>'...',
+    'password'=>'...'
+));
+
diff --git a/plugins/Aim/aimmanager.php b/plugins/Aim/aimmanager.php
new file mode 100644 (file)
index 0000000..d9b7421
--- /dev/null
@@ -0,0 +1,100 @@
+<?php
+/*
+ * StatusNet - the distributed open-source microblogging tool
+ * Copyright (C) 2008, 2009, StatusNet, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
+
+/**
+ * AIM background connection manager for AIM-using queue handlers,
+ * allowing them to send outgoing messages on the right connection.
+ *
+ * Input is handled during socket select loop, keepalive pings during idle.
+ * Any incoming messages will be handled.
+ *
+ * In a multi-site queuedaemon.php run, one connection will be instantiated
+ * for each site being handled by the current process that has XMPP enabled.
+ */
+
+class AimManager extends ImManager
+{
+
+    public $conn = null;
+    /**
+     * Initialize connection to server.
+     * @return boolean true on success
+     */
+    public function start($master)
+    {
+        if(parent::start($master))
+        {
+            $this->connect();
+            return true;
+        }else{
+            return false;
+        }
+    }
+
+    public function getSockets()
+    {
+        $this->connect();
+        if($this->conn){
+            return array($this->conn->myConnection);
+        }else{
+            return array();
+        }
+    }
+
+    /**
+     * Process AIM events that have come in over the wire.
+     * @param resource $socket
+     */
+    public function handleInput($socket)
+    {
+        common_log(LOG_DEBUG, "Servicing the AIM queue.");
+        $this->stats('aim_process');
+        $this->conn->receive();
+    }
+
+    function connect()
+    {
+        if (!$this->conn) {
+            $this->conn=new Aim($this->plugin->user,$this->plugin->password,4);
+            $this->conn->registerHandler("IMIn",array($this,"handle_aim_message"));
+            $this->conn->myServer="toc.oscar.aol.com";
+            $this->conn->signon();
+            $this->conn->setProfile(_m('Send me a message to post a notice'),false);
+        }
+        return $this->conn;
+    }
+
+    function handle_aim_message($data)
+    {
+        $this->plugin->enqueue_incoming_raw($data);
+        return true;
+    }
+
+    function send_raw_message($data)
+    {
+        $this->connect();
+        if (!$this->conn) {
+            return false;
+        }
+        $this->conn->sflapSend($data[0],$data[1],$data[2],$data[3]);
+        return true;
+    }
+}
diff --git a/plugins/Aim/extlib/phptoclib/README.txt b/plugins/Aim/extlib/phptoclib/README.txt
new file mode 100755 (executable)
index 0000000..0eec13a
--- /dev/null
@@ -0,0 +1,169 @@
+phpTOCLib version 1.0 RC1\r
+\r
+This is released under the LGPL. AIM,TOC,OSCAR, and all other related protocols/terms are \r
+copyright AOL/Time Warner. This project is in no way affiliated with them, nor is this\r
+project supported by them.\r
+\r
+Some of the code is loosely based off of a script by Jeffrey Grafton. Mainly the decoding of packets, and the\r
+function for roasting passwords is entirly his.\r
+\r
+TOC documentation used is available at http://simpleaim.sourceforge.net/docs/TOC.txt\r
+\r
+\r
+About:\r
+phpTOCLib aims to be a PHP equivalent to the PERL module NET::AIM. Due to some limitations, \r
+this is difficult. Many features have been excluded in the name of simplicity, and leaves\r
+you alot of room to code with externally, providing function access to the variables that\r
+need them.\r
+\r
+I have aimed to make this extensible, and easy to use, therefore taking away some built in\r
+functionality that I had originally out in. This project comes after several months of\r
+researching the TOC protocol.\r
+\r
+example.php is included with the class. It needs to be executed from the command line\r
+(ie:php -q testscript.php) and you need to call php.exe with the -q\r
+example is provided as a demonstaration only. Though it creats a very simple, functional bot, it lacks any sort of commands, it merely resends the message it recieves in reverse.\r
+\r
+\r
+Revisions:\r
+\r
+-----------------------------------\r
+by Rajiv Makhijani\r
+(02/24/04)\r
+        - Fixed Bug in Setting Permit/Deny Mode\r
+        - Fixes so Uninitialized string offset notice doesn't appear\r
+        - Replaced New Lines Outputed for Each Flap Read with " . " so\r
+          that you can still tell it is active but it does not take so much space\r
+        - Removed "eh?" message\r
+        - Added MySQL Database Connection Message\r
+        - New Functions:\r
+               update_profile(profile data string, powered by boolean)\r
+                       * The profile data string is the text that goes in the profile.\r
+                       * The powered by boolean if set to true displays a link to the\r
+                         sourceforge page of the script.\r
+(02/28/04)\r
+       - Silent option added to set object not to output any information\r
+               - To follow silent rule use sEcho function instead of Echo\r
+-----------------------------------\r
+by Jeremy (pickleman78)\r
+(05/26/04) beta 1 release\r
+       -Complete overhaul of class design and message handling\r
+       -Fixed bug involving sign off after long periods of idling\r
+       -Added new function $Aim->registerHandler\r
+       -Added the capability to handle all AIM messages\r
+               -Processing the messages is still the users responsibility\r
+       -Did a little bit of code cleanup\r
+       -Added a few internal functions to make the classes internal life easier\r
+       -Improved AIM server error message processing\r
+       -Updated this document (hopefully Rajiv will clean it up some, since I'm a terrible documenter)\r
+-------------------------------------------------------------------------------------------------------------\r
+\r
+\r
+\r
+Functions:\r
+\r
+Several methods are provided in the class that allow for simple access to some of the \r
+common features of AIM. Below are details.\r
+\r
+$Aim->Aim($sn,$password,$pdmode, $silent=false)\r
+The constructor, it takes 4 arguments. \r
+$sn is your screen name\r
+$password is you password, in plain text\r
+$pdmode is the permit deny mode. This can be as follows:\r
+1 - Allow All\r
+2 - Deny All\r
+3 - Permit only those on your permit list\r
+4 - Permit all those not on your deny list\r
+$silent if set to true prints out nothing\r
+\r
+So, if your screen-name is JohnDoe746 and your password is fertu, and you want to allow\r
+all users of the AIM server to contact you, you would code as follows\r
+$myaim=new Aim("JohnDoe746","fertu",1);\r
+\r
+\r
+$Aim->add_permit($buddy)\r
+This adds the buddy passed to the function to your permit list.\r
+ie: $myaim->add_permit("My friend22");\r
+\r
+$Aim->block_buddy($buddy)\r
+Blocks a user. This will switch your pd mode to 4. After using this, for the user to remain\r
+out of contact with you, it is required to provide the constructor with a pd mode of 4\r
+ie:$myaim->block_buddy("Annoying guy 4");\r
+\r
+$Aim->send_im($to,$message,$auto=false)\r
+Sends $message to $user. If you set the 3rd argument to true, then the recipient will receive it in\r
+the same format as an away message. (Auto Response from me:)\r
+A message longer than 65535 will be truncated\r
+ie:$myaim->send_im("myfriend","This is a happy message");\r
+\r
+$Aim->set_my_info()\r
+Sends an update buddy command to the server and allows some internal values about yourself\r
+to be set.\r
+ie:$myaim->set_my_info();\r
+\r
+$Aim->signon()\r
+Call this to connect to the server. This must be called before any other methods will work\r
+properly\r
+ie:$mybot->signon();\r
+\r
+$Aim->getLastReceived()\r
+Returns $this->myLastReceived['decoded']. This should be the only peice of the gotten data\r
+you need to concern yourself with. This is a preferred method of accessing this variable to prevent\r
+accidental modification of $this->myLastReceived. Accidently modifying this variable can\r
+cause some internal failures.\r
+\r
+$Aim->read_from_aim()\r
+This is a wrapper for $Aim->sflap_read(), and only returns the $this->myLastReceived['data']\r
+portion of the message. It is preferred that you do not call $Aim->sflap_read() and use this\r
+function instead. This function has a return value. Calling this prevents the need to call\r
+$Aim->getLastReceived()\r
+\r
+$Aim->setWarning($wl)\r
+This allows you to update the bots warning level when warned.\r
+\r
+$Aim->getBuddies()\r
+Returns the $this->myBuddyList array. Use this instead of modifying the internal variable\r
+\r
+$Aim->getPermit()\r
+Returns the $this->myPermitList array. Use this instead of modifying the internal variable\r
+\r
+$Aim->getBlocked()\r
+Returns the $this->myBlockedList array. Use this instead of modifying the internal variable\r
+\r
+$Aim->warn_user($user,$anon=false)\r
+Warn $user. If anon is set to true, then it warns the user anonomously\r
+\r
+$Aim->update_profile($information, $poweredby=false)\r
+Updates Profile to $information.  If $poweredby is true a link to\r
+sourceforge page for this script is appended to profile\r
+\r
+$Aim->registerHandler($function_name,$command)\r
+This is by far the best thing about the new release. \r
+For more information please reas supplement.txt. It is not included here because of the sheer size of the document.\r
+supplement.txt contains full details on using registerHandler and what to expect for each input.\r
+\r
+\r
+For convenience, I have provided some functions to simplify message processing. \r
+\r
+They can be read about in the file "supplement.txt". I chose not to include the text here because it\r
+is a huge document\r
+\r
+\r
+\r
+There are a few things you should note about AIM\r
+1)An incoming message has HTML tags in it. You are responsible for stripping those tags\r
+2)Outgoing messages can have HTML tags, but will work fine if they don't. To include things\r
+  in the time feild next to the users name, send it as a comment\r
+\r
+Conclusion:\r
+The class is released under the LGPL. If you have any bug reports, comments, questions\r
+feature requests, or want to help/show me what you've created with this(I am very interested in this), \r
+please drop me an email: pickleman78@users.sourceforge.net. This code was written by \r
+Jeremy(a.k.a pickleman78) and Rajiv M (a.k.a compwiz562).\r
+\r
+\r
+Special thanks:\r
+I'd like to thank all of the people who have contributed ideas, testing, bug reports, and code additions to\r
+this project. I'd like to especially thank Rajiv, who has done do much for the project, and has kept this documnet\r
+looking nice. He also has done alot of testing of this script too. I'd also like to thank SpazLink for his help in\r
+testing. And finally I'd like to thank Jeffery Grafton, whose script inspired me to start this project.\r
diff --git a/plugins/Aim/extlib/phptoclib/aimclassw.php b/plugins/Aim/extlib/phptoclib/aimclassw.php
new file mode 100755 (executable)
index 0000000..0657910
--- /dev/null
@@ -0,0 +1,2370 @@
+<?php
+/*
+*      PHPTOCLIB: A library for AIM connectivity through PHP using the TOC protocal.
+*
+*      This library is free software; you can redistribute it and/or
+*      modify it under the terms of the GNU Lesser General Public
+*      License as published by the Free Software Foundation; either
+*      version 2.1 of the License, or (at your option) any later version.
+*
+*      This library is distributed in the hope that it will be useful,
+*      but WITHOUT ANY WARRANTY; without even the implied warranty of
+*      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+*      Lesser General Public License for more details.
+*
+*      You should have received a copy of the GNU Lesser General Public
+*      License along with this library; if not, write to the Free Software
+*      Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+*
+*/
+/**
+* The version of PHPTOCLIB we are running right now
+*
+* @access private
+* @var int
+*/
+define("PHPTOCLIB_VERSION","1.0.0 RC1");
+
+// Prevents Script from Timing Out
+//set_time_limit(0);
+
+// Constant Declarations
+
+/**
+* Maximum size for a direct connection IM in bytes
+*
+* @access private
+* @var int
+*/
+
+define("MAX_DIM_SIZE",3072); //Default to 3kb
+
+/**
+* Internally used for message type
+*
+* @access private
+* @var int
+*/
+define("AIM_TYPE_WARN",74);
+/**
+* Internally used for message type
+*
+* @access private
+* @var int
+*/
+define("AIM_TYPE_MSG",75);
+/**
+* Internally used for message type
+*
+* @access private
+* @var int
+*/
+define("AIM_TYPE_UPDATEBUDDY",76);
+/**
+* Internally used for message type
+*
+* @access private
+* @var int
+*/
+define("AIM_TYPE_SIGNON",77);
+/**
+* Internally used for message type
+*
+* @access private
+* @var int
+*/
+define("AIM_TYPE_NICK",78);
+/**
+* Internally used for message type
+*
+* @access private
+* @var int
+*/
+define("AIM_TYPE_ERROR",79);
+/**
+* Internally used for message type
+*
+* @access private
+* @var int
+*/
+define("AIM_TYPE_CHATJ",80);
+/**
+* Internally used for message type
+*
+* @access private
+* @var int
+*/
+define("AIM_TYPE_CHATI",81);
+/**
+* Internally used for message type
+*
+* @access private
+* @var int
+*/
+define("AIM_TYPE_CHATUPDBUD",82);
+/**
+* Internally used for message type
+*
+* @access private
+* @var int
+*/
+define("AIM_TYPE_CHATINV",83);
+/**
+* Internally used for message type
+*
+* @access private
+* @var int
+*/
+define("AIM_TYPE_CHATLE",84);
+/**
+* Internally used for message type
+*
+* @access private
+* @var int
+*/
+define("AIM_TYPE_URL",85);
+/**
+* Internally used for message type
+*
+* @access private
+* @var int
+*/
+define("AIM_TYPE_NICKSTAT",86);
+/**
+* Internally used for message type
+*
+* @access private
+* @var int
+*/
+define("AIM_TYPE_PASSSTAT",87);
+/**
+* Internally used for message type
+*
+* @access private
+* @var int
+*/
+define("AIM_TYPE_RVOUSP",88);
+/**
+* Internally used for message type
+*
+* @access private
+* @var int
+*/
+define("AIM_TYPE_NOT_IMPLEMENTED",666);
+
+
+
+/**
+* Internally used for connection type
+*
+* Internal type for a normal connection
+*
+* @access private
+* @var int
+*/
+define("CONN_TYPE_NORMAL",1);
+/**
+* Internally used for connection type
+*
+* Internal type of a Dirct Connection
+*
+* @access private
+* @var int
+*/
+define("CONN_TYPE_DC",2);
+/**
+* Internally used for connection type
+*
+*Internal type for a file transfer connection
+*
+* @access private
+* @var int
+*/
+define("CONN_TYPE_FT",3);
+/**
+* Internally used for connection type
+*
+*Internal type for a file get connection
+*
+* @access private
+* @var int
+*/
+define("CONN_TYPE_FTG",4);
+
+/**
+* Maximum size for a TOC packet
+*
+* @access private
+* @var int
+*/
+define("MAX_PACKLENGTH",2048);
+
+/**
+* TOC packet type
+*
+* @access private
+* @var int
+*/
+define("SFLAP_TYPE_SIGNON",1);
+/**
+* TOC packet type
+*
+* @access private
+* @var int
+*/
+define("SFLAP_TYPE_DATA",2);
+/**
+* TOC packet type
+*
+* @access private
+* @var int
+*/
+define("SFLAP_TYPE_ERROR",3);
+/**
+* TOC packet type
+*
+* @access private
+* @var int
+*/
+define("SFLAP_TYPE_SIGNOFF",4);
+/**
+* TOC packet type
+*
+* @access private
+* @var int
+*/
+define("SFLAP_TYPE_KEEPALIVE",5);
+/**
+* TOC packet type
+*
+* @access private
+* @var int
+*/
+define("SFLAP_MAX_LENGTH",1024);
+
+
+
+/**
+* Service UID for a voice connection
+*
+* @access private
+* @var int
+*/
+define('VOICE_UID', '09461341-4C7F-11D1-8222-444553540000');
+/**
+* Service UID for file sending 
+*
+* @access private
+* @var int
+*/
+define('FILE_SEND_UID', '09461343-4C7F-11D1-8222-444553540000');
+/**
+* Service UID for file getting
+*
+* @access private
+* @var int
+*/
+define('FILE_GET_UID', '09461348-4C7F-11D1-8222-444553540000');
+/**
+* Service UID for Direct connections 
+*
+* @access private
+* @var int
+*/
+define('IMAGE_UID', '09461345-4C7F-11D1-8222-444553540000');
+/**
+* Service UID for Buddy Icons
+*
+* @access private
+* @var int
+*/
+define('BUDDY_ICON_UID', '09461346-4C7F-11D1-8222-444553540000');
+/**
+* Service UID for stocks
+*
+* @access private
+* @var int
+*/
+define('STOCKS_UID', '09461347-4C7F-11D1-8222-444553540000');
+/**
+* Service UID for games
+*
+* @access private
+* @var int
+*/
+define('GAMES_UID', '0946134a-4C7F-11D1-8222-444553540000');
+
+/**
+* FLAP return code
+*
+* @access private
+* @var int
+*/
+define("SFLAP_SUCCESS",0);
+/**
+* FLAP return code
+*
+* @access private
+* @var int
+*/
+define("SFLAP_ERR_UNKNOWN",1);
+/**
+* FLAP return code
+*
+* @access private
+* @var int
+*/
+define("SFLAP_ERR_ARGS",2);
+/**
+* FLAP return code
+*
+* @access private
+* @var int
+*/
+define("SFLAP_ERR_LENGTH",3);
+/**
+* FLAP return code
+*
+* @access private
+* @var int
+*/
+define("SFLAP_ERR_READ",4);
+/**
+* FLAP return code
+*
+* @access private
+* @var int
+*/
+define("SFLAP_ERR_SEND",5);
+
+/**
+* FLAP version number
+*
+* @access private
+* @var int
+*/
+define("SFLAP_FLAP_VERSION",1);
+/**
+* FLAP TLV code
+*
+* @access private
+* @var int
+*/
+define("SFLAP_TLV_TAG",1);
+/**
+* Bytes in a FLAP header
+*
+* @access private
+* @var int
+*/
+define("SFLAP_HEADER_LEN",6);
+
+/** 
+ * PHPTocLib AIM Class
+ *
+ * @author Jeremy Bryant <pickleman78@users.sourceforge.net>
+ * @author Rajiv Makhijani <rajiv@blue-tech.org>
+ * @package phptoclib
+ * @version 1.0RC1
+ * @copyright 2005
+ * @access public
+ *
+ */
+class Aim
+{
+       /** 
+        * AIM ScreenName
+        *
+        * @var String
+        * @access private
+        */
+       var $myScreenName;
+       
+       /** 
+        * AIM Password (Plain Text)
+        *
+        * @var String
+        * @access private
+        */
+       var $myPassword;
+       
+
+       /** 
+        * AIM TOC Server
+        *
+        * @var String
+        * @access public
+        */
+       var $myServer="toc.oscar.aol.com";
+       
+       /** 
+        * AIM Formatted ScreenName
+        *
+        * @var String
+        * @access private
+        */
+       var $myFormatSN;
+       
+       /** 
+        * AIM TOC Server Port
+        *
+        * @var String
+        * @access public
+        */
+       var $myPort="5190";
+       
+       /** 
+        * Profile Data
+        * Use setProfile() to update
+        *
+        * @var String
+        * @access private
+        */
+       var $myProfile="Powered by phpTOCLib. Please visit http://sourceforge.net/projects/phptoclib for more information";     //The profile of the bot
+
+       /** 
+        * Socket Connection Resource ID
+        *
+        * @var Resource
+        * @access private
+        */
+       var $myConnection;  //Connection resource ID
+       
+       /** 
+        * Roasted AIM Password
+        *
+        * @var String
+        * @access private
+        */
+       var $myRoastedPass;
+       
+       /** 
+        * Last Message Recieved From Server
+        *
+        * @var String
+        * @access private
+        */
+       var $myLastReceived;
+       
+       /** 
+        * Current Seq Number Used to Communicate with Server
+        *
+        * @var Integer
+        * @access private
+        */
+       var $mySeqNum;
+        
+        /** 
+        * Current Warning Level
+        * Getter: getWarning()
+        * Setter: setWarning()
+        *
+        * @var Integer
+        * @access private
+        */
+       var $myWarnLevel;   //Warning Level of the bot
+       
+        /** 
+        * Auth Code
+        *
+        * @var Integer
+        * @access private
+        */
+       var $myAuthCode;
+       
+       /** 
+        * Buddies
+        * Getter: getBuddies()
+        *
+        * @var Array
+        * @access private
+        */
+       var $myBuddyList;
+       
+       /** 
+        * Blocked Buddies
+        * Getter: getBlocked()
+        *
+        * @var Array
+        * @access private
+        */
+       var $myBlockedList;
+       
+       /** 
+        * Permited Buddies
+        * Getter: getBlocked()
+        *
+        * @var Array
+        * @access private
+        */
+       var $myPermitList;
+       
+       /** 
+        * Permit/Deny Mode
+        * 1 - Allow All
+        * 2 - Deny All
+        * 3 - Permit only those on your permit list
+        * 4 - Permit all those not on your deny list
+        *
+        * @var Integer
+        * @access private
+        */
+       var $myPdMode;
+       
+       //Below variables added 4-29 by Jeremy: Implementing chat
+
+       /** 
+        * Contains Chat Room Info
+        * $myChatRooms['roomid'] = people in room
+        *
+        * @var Array
+        * @access private
+        */
+       var $myChatRooms;
+               
+       //End of chat implementation
+       
+
+       /** 
+        * Event Handler Functions
+        *
+        * @var Array
+        * @access private
+        */
+       var $myEventHandlers = array();
+       
+       /** 
+        * Array of direct connection objects(including file transfers)
+        *
+        * @var Array
+        * @access private
+        */
+       var $myDirectConnections = array();
+       
+       /** 
+        * Array of the actual connections
+        *
+        * @var Array
+        * @access private
+        */
+       var $myConnections = array();
+       
+       /**
+        * The current state of logging
+        * 
+        * @var Boolean
+        * @access private
+        */
+       
+       var $myLogging = false;
+       
+    /** 
+        * Constructor
+        *
+        * Permit/Deny Mode Options
+        * 1 - Allow All
+        * 2 - Deny All
+        * 3 - Permit only those on your permit list
+        * 4 - Permit all those not on your deny list
+        *
+        * @param String $sn AIM Screenname
+        * @param String $password AIM Password
+        * @param Integer $pdmode Permit/Deny Mode
+        * @access public
+        */
+       function Aim($sn, $password, $pdmode)
+    {
+        //Constructor assignment
+               $this->myScreenName = $this->normalize($sn);
+               $this->myPassword = $password;
+               $this->myRoastedPass = $this->roastPass($password);
+               $this->mySeqNum = 1;
+               $this->myConnection = 0;
+               $this->myWarnLevel = 0;
+               $this->myAuthCode = $this->makeCode();
+               $this->myPdMode = $pdmode;
+               $this->myFormatSN = $this->myScreenName;
+               
+               $this->log("PHPTOCLIB v" . PHPTOCLIB_VERSION . " Object Created");
+               
+       }
+
+       /** 
+        * Enables debug logging (Logging is disabled by default)
+        *
+        * 
+        * @access public
+        * @return void
+        */
+
+       function setLogging($enable)
+       {
+               $this->myLogging=$enable;
+       }
+
+       function log($data)
+       {
+           if($this->myLogging){
+            error_log($data);
+        }
+       }
+       
+        /** 
+        * Logs a packet
+        *
+        * 
+        * @access private
+        * @param Array $packary Packet
+        * @param String $in Prepend
+        * @return void
+        */
+       function logPacket($packary,$in)
+       {
+               if(!$this->myLogging || sizeof($packary)<=0 || (@strlen($packary['decoded'])<=0 && @isset($packary['decoded'])))
+                  return;
+               $towrite=$in . ":  ";
+               foreach($packary as $k=>$d)
+               {
+                       $towrite.=$k . ":" . $d . "\r\n";
+               }
+               $towrite.="\r\n\r\n";
+               $this->log($towrite);
+       }
+       /** 
+        * Roasts/Hashes Password
+        *
+        * @param String $password Password
+        * @access private
+        * @return String Roasted Password
+        */
+       function roastPass($password)
+       {
+               $roaststring = 'Tic/Toc';
+               $roasted_password = '0x';
+               for ($i = 0; $i < strlen($password); $i++)
+                       $roasted_password .= bin2hex($password[$i] ^ $roaststring[($i % 7)]);
+               return $roasted_password;
+       }
+       
+       /** 
+        * Access Method for myScreenName
+        *
+        * @access public
+        * @param $formated Returns formatted Screenname if true as returned by server
+        * @return String Screenname
+        */
+       function getMyScreenName($formated = false)
+       {
+               if ($formated)
+               {
+                       return $this->myFormatSN;
+               }
+               else
+               {
+                       return $this->normalize($this->myScreenName);
+               }
+       }
+       
+       /** 
+        * Generated Authorization Code
+        *
+        * @access private
+        * @return Integer Auth Code
+        */
+       function makeCode()
+       {
+               $sn = ord($this->myScreenName[0]) - 96;
+               $pw = ord($this->myPassword[0]) - 96;
+               $a = $sn * 7696 + 738816;
+               $b = $sn * 746512;
+               $c = $pw * $a;
+
+               return $c - $a + $b + 71665152;
+       }
+
+
+       /** 
+        * Reads from Socket
+        *
+        * @access private
+        * @return String Data
+        */
+       function sflapRead()
+       {
+               if ($this->socketcheck($this->myConnection))
+               {
+                       $this->log("Disconnected.... Reconnecting in 60 seconds");
+                       sleep(60);
+                       $this->signon();
+               }
+               
+               $header = fread($this->myConnection,SFLAP_HEADER_LEN);
+               
+               if (strlen($header) == 0)
+               {
+                       $this->myLastReceived = "";
+                       return "";
+               }
+               $header_data = unpack("aast/Ctype/nseq/ndlen", $header);
+               $this->log(" . ", false);
+               $packet = fread($this->myConnection, $header_data['dlen']);
+               if (strlen($packet) <= 0 && $sockinfo['blocked'])
+                       $this->derror("Could not read data");
+               
+               if ($header_data['type'] == SFLAP_TYPE_SIGNON)
+               {
+                       $packet_data=unpack("Ndecoded", $packet);
+               }
+               
+               if ($header_data['type'] == SFLAP_TYPE_KEEPALIVE)
+               {
+                       $this->myLastReceived = '';
+                       return 0;
+               } 
+               else if (strlen($packet)>0)
+               {
+                       $packet_data = unpack("a*decoded", $packet);
+               }
+               $this->log("socketcheck check now");
+               if ($this->socketcheck($this->myConnection))
+               {
+                       $this->derror("Connection ended unexpectedly");
+               }
+               
+               $data = array_merge($header_data, $packet_data);
+               $this->myLastReceived = $data;
+               $this->logPacket($data,"in");
+               return $data;
+    }
+
+       /** 
+        * Sends Data on Socket
+        *
+        * @param String $sflap_type Type
+        * @param String $sflap_data Data
+        * @param boolean $no_null No Null
+        * @param boolean $formatted Format
+        * @access private
+        * @return String Roasted Password
+        */
+       function sflapSend($sflap_type, $sflap_data, $no_null, $formatted)
+       {
+               $packet = "";
+               if (strlen($sflap_data) >= MAX_PACKLENGTH)
+                       $sflap_data = substr($sflap_data,0,MAX_PACKLENGTH);
+                       
+               if ($formatted)
+               {
+                       $len = strlen($sflap_len);
+                       $sflap_header = pack("aCnn",'*', $sflap_type, $this->mySeqNum, $len);
+                       $packet = $sflap_header . $sflap_data;
+               } else {
+                       if (!$no_null)
+                       {
+                               $sflap_data = str_replace("\0","", trim($sflap_data));
+                               $sflap_data .= "\0";
+                       }
+                       $data = pack("a*", $sflap_data);
+                       $len = strlen($sflap_data);
+                       $header = pack("aCnn","*", $sflap_type, $this->mySeqNum, $len);
+                       $packet = $header . $data;
+               }
+               
+               //Make sure we are still connected
+               if ($this->socketcheck($this->myConnection))
+               {
+                       $this->log("Disconnected.... reconnecting in 60 seconds");
+                       sleep(60);
+                       $this->signon();
+               }
+               $sent = fputs($this->myConnection, $packet) or $this->derror("Error sending packet to AIM");
+               $this->mySeqNum++;
+               sleep(ceil($this->myWarnLevel/10));
+               $this->logPacket(array($sflap_type,$sflap_data),"out");
+       }
+
+       /** 
+        * Escape the thing that TOC doesn't like,that would be
+        * ",', $,{,},[,]
+        *
+        * @param String $data Data to Escape
+        * @see decodeData
+        * @access private
+        * @return String $data Escaped Data
+        */
+       function encodeData($data)
+       {
+               $data = str_replace('"','\"', $data);
+               $data = str_replace('$','\$', $data);
+               $data = str_replace("'","\'", $data);
+               $data = str_replace('{','\{', $data);
+               $data = str_replace('}','\}', $data);
+               $data = str_replace('[','\[', $data);
+               $data = str_replace(']','\]', $data);
+               return $data;
+       }
+       
+       /** 
+        * Unescape data TOC has escaped
+        * ",', $,{,},[,]
+        *
+        * @param String $data Data to Unescape
+        * @see encodeData
+        * @access private
+        * @return String $data Unescape Data
+        */
+       function decodeData($data)
+       {
+               $data = str_replace('\"','"', $data);
+               $data = str_replace('\$','$', $data);
+               $data = str_replace("\'","'", $data);
+               $data = str_replace('\{','{', $data);
+               $data = str_replace('\}','}', $data);
+               $data = str_replace('\[','[', $data);
+               $data = str_replace('\]',']', $data);
+               $data = str_replace('&quot;','"', $data);
+               $data = str_replace('&amp;','&', $data);
+               return $data;
+       }
+
+       /** 
+        * Normalize ScreenName
+        * no spaces and all lowercase
+        *
+        * @param String $nick ScreenName
+        * @access public
+        * @return String $nick Normalized ScreenName
+        */
+       function normalize($nick)
+       {
+               $nick = str_replace(" ","", $nick);
+               $nick = strtolower($nick);
+               return $nick;
+       }
+
+       /** 
+        * Sets internal info with update buddy
+        * Currently only sets warning level
+        * 
+        * @access public
+        * @return void
+        */
+       function setMyInfo()
+       {
+               //Sets internal values bvase on the update buddy command
+               $this->log("Setting my warning level ...");
+               $this->sflapSend(SFLAP_TYPE_DATA,"toc_get_status " . $this->normalize($this->myScreenName),0,0);
+               //The rest of this will now be handled by the other functions. It is assumed
+               //that we may have other data queued in the socket, do we should just add this
+               //message to the queue instead of trying to set it in here
+       }
+
+       /** 
+        * Connects to AIM and Signs On Using Info Provided in Constructor
+        * 
+        * @access public
+        * @return void
+        */
+       function signon()
+       {
+               $this->log("Ready to sign on to the server");
+               $this->myConnection = fsockopen($this->myServer, $this->myPort, $errno, $errstr,10) or die("$errorno:$errstr");
+               $this->log("Connected to server");
+               $this->mySeqNum = (time() % 65536); //Select an arbitrary starting point for
+                                                                                 //sequence numbers
+               if (!$this->myConnection)
+                       $this->derror("Error connecting to toc.oscar.aol.com");
+               $this->log("Connected to AOL");
+               //Send the flapon packet
+               fputs($this->myConnection,"FLAPON\r\n\n\0"); //send the initial handshake
+               $this->log("Sent flapon");
+               $this->sflapRead();  //Make sure the server responds with what we expect
+               if (!$this->myLastReceived)
+                       $this->derror("Error sending the initialization string");
+
+               //send the FLAP SIGNON packet back with what it needs
+               //There are 2 parts to the signon packet. They are sent in succession, there
+               //is no indication if either packet was correctly sent
+               $signon_packet = pack("Nnna".strlen($this->myScreenName),1,1,strlen($this->myScreenName), $this->myScreenName);
+               $this->sflapSend(SFLAP_TYPE_SIGNON, $signon_packet,1,0);
+               $this->log("sent signon packet part one");
+               
+               $signon_packet_part2 = 'toc2_signon login.oscar.aol.com 29999 ' . $this->myScreenName . ' ' . $this->myRoastedPass . ' english-US "TIC:TOC2:REVISION" 160 ' . $this->myAuthCode;
+               $this->log($signon_packet_part2 . "");
+               $this->sflapSend(SFLAP_TYPE_DATA, $signon_packet_part2,0,0);
+               $this->log("Sent signon packet part 2... Awaiting response...");
+
+               $this->sflapRead();
+               $this->log("Received Sign on packet, beginning initilization...");
+               $message = $this->getLastReceived();
+               $this->log($message . "\n");
+               if (strstr($message,"ERROR:"))
+               {
+                       $this->onError($message);
+                       die("Fatal signon error");
+               }
+               stream_set_timeout($this->myConnection,2);
+               //The information sent before the config2 command is utterly useless to us
+               //So we will just skim through them until we reach it
+               
+               //Add the first entry to the connection array
+               $this->myConnections[] = $this->myConnection;
+               
+               
+               //UPDATED 4/12/03: Now this will use the receive function and send the
+               //received messaged to the assigned handlers. This is where the signon 
+               //method has no more use
+               
+               $this->log("Done with signon proccess");
+               //socket_set_blocking($this->myConnection,false);
+       }
+       
+       /** 
+        * Sends Instant Message
+        *
+        * @param String $to Message Recipient SN
+        * @param String $message Message to Send
+        * @param boolean $auto Sent as Auto Response / Away Message Style
+        * @access public
+        * @return void
+        */
+       function sendIM($to, $message, $auto = false)
+       {
+               if ($auto) $auto = "auto";
+               else $auto = "";
+               $to = $this->normalize($to);
+               $message = $this->encodeData($message);
+               $command = 'toc2_send_im "' . $to . '" "' . $message . '" ' .  $auto;
+               $this->sflapSend(SFLAP_TYPE_DATA, trim($command),0,0);
+               $cleanedmessage = str_replace("<br>", "   ", $this->decodeData($message));
+               $cleanedmessage = strip_tags($cleanedmessage);
+               $this->log("TO - " . $to . " : " . $cleanedmessage);
+       }
+       
+       /** 
+        * Set Away Message
+        *
+        * @param String $message Away message (some HTML supported).
+        *   Use null to remove the away message
+        * @access public
+        * @return void
+        */
+       function setAway($message)
+       {
+               $message = $this->encodeData($message);
+               $command = 'toc_set_away "' . $message . '"';
+               $this->sflapSend(SFLAP_TYPE_DATA, trim($command),0,0);
+               $this->log("SET AWAY MESSAGE - " . $this->decodeData($message));
+       }
+
+       /** 
+        * Fills Buddy List
+        * Not implemented fully yet
+        *
+        * @access public
+        * @return void
+        */
+       function setBuddyList()
+       {
+               //This better be the right message
+               $message = $this->myLastReceived['decoded'];
+               if (strpos($message,"CONFIG2:") === false)
+               {
+                       $this->log("setBuddyList cannot be called at this time because I got $message");
+                       return false;
+               }
+               $people = explode("\n",trim($message,"\n"));
+               //The first 3 elements of the array are who knows what, element 3 should be
+               //a letter followed by a person
+               for($i = 1; $i<sizeof($people); $i++)
+               {
+                       @list($mode, $name) = explode(":", $people[$i]);
+                       switch($mode)
+                       {
+                               case 'p':
+                                       $this->myPermitList[] = $name;
+                                       break;
+                               case 'd':
+                                       $this->myBlockedList[] = $name;
+                                       break;
+                               case 'b':
+                                       $this->myBuddyList[] = $name;
+                                       break;
+                               case 'done':
+                                       break;
+                               default:
+                                       //
+                       }
+               }
+       }
+       
+       /** 
+        * Adds buddy to Permit list
+        *
+        * @param String $buddy Buddy's Screenname
+        * @access public
+        * @return void
+        */
+       function addPermit($buddy)
+       {
+               $this->sflapSend(SFLAP_TYPE_DATA,"toc2_add_permit " . $this->normalize($buddy),0,0);
+               $this->myPermitList[] = $this->normalize($buddy);
+               return 1;
+       }
+       
+       /** 
+        * Blocks buddy
+        *
+        * @param String $buddy Buddy's Screenname
+        * @access public
+        * @return void
+        */
+       function blockBuddy($buddy)
+       {
+               $this->sflapSend(SFLAP_TYPE_DATA,"toc2_add_deny " . $this->normalize($buddy),0,0);
+               $this->myBlockedList[] = $this->normalize($buddy);
+               return 1;
+       }
+       
+       /** 
+        * Returns last message received from server
+        *
+        * @access private
+        * @return String Last Message from Server
+        */
+       function getLastReceived()
+       {
+               if (@$instuff = $this->myLastReceived['decoded']){
+                       return $this->myLastReceived['decoded'];
+               }else{
+                       return;
+               }
+       }
+       
+       /** 
+        * Returns Buddy List
+        *
+        * @access public
+        * @return array Buddy List
+        */
+       function getBuddies()
+       {
+               return $this->myBuddyList;
+       }
+       
+       /** 
+        * Returns Permit List
+        *
+        * @access public
+        * @return array Permit List
+        */
+       function getPermit()
+       {
+               return $this->myPermitList;
+       }
+       
+       /** 
+        * Returns Blocked Buddies
+        *
+        * @access public
+        * @return array Blocked List
+        */
+       function getBlocked()
+       {
+               return $this->myBlockedList;
+       }
+       
+       
+
+
+       /** 
+        * Reads and returns data from server
+        *
+        * This is a wrapper for $Aim->sflap_read(), and only returns the $this->myLastReceived['data']
+        * portion of the message. It is preferred that you do not call $Aim->sflap_read() and use this
+        * function instead. This function has a return value. Calling this prevents the need to call
+        * $Aim->getLastReceived()
+        *
+        * @access public
+        * @return String Data recieved from server
+        */
+       function read_from_aim()
+       {
+               $this->sflapRead();
+               $returnme = $this->getLastReceived();
+               return $returnme;
+       }
+       
+       /** 
+        * Sets current internal warning level
+        * 
+        * This allows you to update the bots warning level when warned.
+        *
+        * @param int Warning Level %
+        * @access private
+        * @return void
+        */
+       function setWarningLevel($warnlevel)
+       {
+               $this->myWarnLevel = $warnlevel;
+       }
+       
+       /** 
+        * Warns / "Evils" a User
+        *
+        * To successfully warn another user they must have sent you a message.
+        * There is a limit on how much and how often you can warn another user.
+        * Normally when you warn another user they are aware who warned them,
+        * however there is the option to warn anonymously.  When warning anon.
+        * note that the warning is less severe.
+        *
+        * @param String $to Screenname to warn
+        * @param boolean $anon Warn's anonymously if true. (default = false)
+        * @access public
+        * @return void
+        */
+       function warnUser($to, $anon = false)
+       {
+               if (!$anon)
+                       $anon = '"norm"';
+
+               else
+                       $anon = '"anon"';
+               $this->sflapSend(SFLAP_TYPE_DATA,"toc_evil " . $this->normalize($to) . " $anon",0,0);
+       }
+       
+       /** 
+        * Returns warning level of bot
+        *
+        * @access public
+        * @return void
+        */
+       function getWarningLevel()
+       {
+               return $this->myWarningLevel;
+       }
+       
+       /** 
+        * Sets bot's profile/info
+        *
+        * Limited to 1024 bytes.
+        *
+        * @param String $profiledata Profile Data (Can contain limited html: br,hr,font,b,i,u etc)
+        * @param boolean $poweredby If true, appends link to phpTOCLib project to profile
+        * @access public
+        * @return void
+        */
+       function setProfile($profiledata, $poweredby = false)
+       {
+               if ($poweredby == false){
+                       $this->myProfile = $profiledata;
+               }else{
+                       $this->myProfile = $profiledata . "<font size=1 face=tahoma><br><br>Powered by phpTOCLib<br>http://sourceforge.net/projects/phptoclib</font>";
+               }
+               
+               $this->sflapSend(SFLAP_TYPE_DATA,"toc_set_info \"" . $this->encodeData($this->myProfile) . "\"",0,0);
+               $this->setMyInfo();
+               $this->log("Profile has been updated...");
+       }
+       
+       //6/29/04 by Jeremy:
+       //Added mthod to accept a rvous,decline it, and
+       //read from the rvous socket
+       
+       //Decline
+       
+       /** 
+        * Declines a direct connection request (rvous)
+        *
+        * @param String $nick ScreenName request was from
+        * @param String $cookie Request cookie (from server)
+        * @param String $uuid UUID
+        * 
+        * @access public
+        * @return void
+        */
+       function declineRvous($nick, $cookie, $uuid)
+       {
+               $nick = $this->normalize($nick);
+               $this->sflapSend(SFLAP_TYPE_DATA,"toc_rvous_cancel $nick $cookie $uuid",0,0);
+       }
+       
+       /** 
+        * Accepts a direct connection request (rvous)
+        *
+        * @param String $nick ScreenName request was from
+        * @param String $cookie Request cookie (from server)
+        * @param String $uuid UUID
+        * @param String $vip IP of User DC with
+        * @param int $port Port number to connect to
+        * 
+        * @access public
+        * @return void
+        */
+       function acceptRvous($nick, $cookie, $uuid, $vip, $port)
+       {
+               $this->sflapSend(SFLAP_TYPE_DATA,"toc_rvous_accept $nick $cookie $uuid",0,0);
+               
+               //Now open the connection to that user
+               if ($uuid == IMAGE_UID)
+               {       
+                       $dcon = new Dconnect($vip, $port);
+               }
+               else if ($uuid == FILE_SEND_UID)
+               {
+                       $dcon = new FileSendConnect($vip, $port);
+               }
+               if (!$dcon->connected)
+               {
+                       $this->log("The connection failed");                            
+                       return false;
+               }
+               
+               //Place this dcon object inside the array
+               $this->myDirectConnections[] = $dcon;
+               //Place the socket in an array to
+               $this->myConnections[] = $dcon->sock;
+
+               
+               //Get rid of the first packet because its worthless
+               //and confusing
+               $dcon->readDIM();
+               //Assign the cookie
+               $dcon->cookie = $dcon->lastReceived['cookie'];
+               $dcon->connectedTo = $this->normalize($nick);
+               return $dcon;
+       }       
+       
+       /** 
+        * Sends a Message over a Direct Connection
+        *
+        * Only works if a direct connection is already established with user
+        *
+        * @param String $to Message Recipient SN
+        * @param String $message Message to Send
+        * 
+        * @access public
+        * @return void
+        */
+       function sendDim($to, $message)
+       {
+               //Find the connection
+               for($i = 0;$i<sizeof($this->myDirectConnections);$i++)
+               {
+                       if ($this->normalize($to) == $this->myDirectConnections[$i]->connectedTo && $this->myDirectConnections[$i]->type == CONN_TYPE_DC)
+                       {
+                               $dcon = $this->myDirectConnections[$i];
+                               break;
+                       }
+               }
+               if (!$dcon)
+               {
+                       $this->log("Could not find a direct connection to $to");
+                       return false;
+               }
+               $dcon->sendMessage($message, $this->normalize($this->myScreenName));
+               return true;
+       }
+       
+       /** 
+        * Closes an established Direct Connection
+        *
+        * @param DConnect $dcon Direct Connection Object to Close
+        * 
+        * @access public
+        * @return void
+        */
+       function closeDcon($dcon)
+       {
+               
+               $nary = array();
+               for($i = 0;$i<sizeof($this->myConnections);$i++)
+               {
+                       if ($dcon->sock == $this->myConnections[$i])
+                               unset($this->myConnections[$i]);
+               }
+               
+               $this->myConnections = array_values($this->myConnections);
+               unset($nary);
+               $nary2 = array();
+               
+               for($i = 0;$i<sizeof($this->myDirectConnections);$i++)
+               {
+                       if ($dcon == $this->myDirectConnections[$i])
+                               unset($this->myDirectConnections[$i]);
+               }
+               $this->myDirectConnections = array_values($this->myDirectConnections);
+               $dcon->close();
+               unset($dcon);
+       }
+       
+       //Added 4/29/04 by Jeremy:
+       //Various chat related methods
+       
+       /** 
+        * Accepts a Chat Room Invitation (Joins room)
+        *
+        * @param String $chatid ID of Chat Room
+        * 
+        * @access public
+        * @return void
+        */
+       function joinChat($chatid)
+       {
+               $this->sflapSend(SFLAP_TYPE_DATA,"toc_chat_accept " . $chatid,0,0);
+       }
+       
+       /** 
+        * Leaves a chat room
+        *
+        * @param String $chatid ID of Chat Room
+        * 
+        * @access public
+        * @return void
+        */
+       function leaveChat($chatid)
+       {
+               $this->sflapSend(SFLAP_TYPE_DATA,"toc_chat_leave " . $chatid,0,0);
+       }
+       
+       /** 
+        * Sends a message in a chat room
+        *
+        * @param String $chatid ID of Chat Room
+        * @param String $message Message to send
+        * 
+        * @access public
+        * @return void
+        */
+       function chatSay($chatid, $message)
+       {
+               $this->sflapSend(SFLAP_TYPE_DATA,"toc_chat_send " . $chatid . " \"" . $this->encodeData($message) . "\"",0,0);
+       }
+       
+       /** 
+        * Invites a user to a chat room
+        *
+        * @param String $chatid ID of Chat Room
+        * @param String $who Screenname of user
+        * @param String $message Note to include with invitiation
+        * 
+        * @access public
+        * @return void
+        */
+       function chatInvite($chatid, $who, $message)
+       {
+               $who = $this->normalize($who);
+               $this->sflapSend(SFLAP_TYPE_DATA,"toc_chat_invite " . $chatid . " \"" . $this->encodeData($message) . "\" " . $who,0,0);
+       }
+       
+       /** 
+        * Joins/Creates a new chat room
+        *
+        * @param String $name Name of the new chat room
+        * @param String $exchange Exchange of new chat room
+        * 
+        * @access public
+        * @return void
+        */
+       function joinNewChat($name, $exchange)
+       {
+               //Creates a new chat
+               $this->sflapSend(SFLAP_TYPE_DATA,"toc_chat_join " . $exchange . " \"" . $name . "\"",0,0);
+       }
+       
+       /** 
+        * Disconnect error handler, attempts to reconnect in 60 seconds
+        *
+        * @param String $message Error message (desc of where error encountered etc)
+        * 
+        * @access private
+        * @return void
+        */
+       function derror($message)
+       {
+               $this->log($message);
+               $this->log("Error");
+               fclose($this->myConnection);
+               if ((time() - $GLOBALS['errortime']) <  600){
+                       $this->log("Reconnecting in 60 Seconds");
+                       sleep(60);
+               }
+               $this->signon();
+               $GLOBALS['errortime'] = time();
+       }
+       
+       /** 
+        * Returns connection type of socket (main or rvous etc)
+        *
+        * Helper method for recieve()
+        *
+        * @param Resource $sock Socket to determine type for
+        * 
+        * @access private
+        * @return void
+        * @see receive
+        */
+       function connectionType($sock)
+       {
+               //Is it the main connection?
+               if ($sock == $this->myConnection)
+                  return CONN_TYPE_NORMAL;
+               else
+               {
+                       for($i = 0;$i<sizeof($this->myDirectConnections);$i++)
+                       {
+                               if ($sock == $this->myDirectConnections[$i]->sock)
+                                   return $this->myDirectConnections[$i]->type;
+                       }
+               }
+               return false;
+       }
+       
+       /** 
+        * Checks for new data and calls appropriate methods
+        *
+        * This method is usually called in an infinite loop to keep checking for new data
+        * 
+        * @access public
+        * @return void
+        * @see connectionType
+        */ 
+       function receive()
+       {
+               //This function will be used to get the incoming data
+               //and it will be used to call the event handlers
+               
+               //First, get an array of sockets that have data that is ready to be read
+               $ready = array();
+               $ready = $this->myConnections;
+               $numrdy = stream_select($ready, $w = NULL, $x = NULL,NULL);
+               
+               //Now that we've waited for something, go through the $ready
+               //array and read appropriately
+               
+               for($i = 0;$i<sizeof($ready);$i++)
+               {
+                       //Get the type
+                       $type = $this->connectionType($ready[$i]);
+                       if ($type == CONN_TYPE_NORMAL)
+                       {
+                               //Next step:Get the data sitting in the socket
+                               $message = $this->read_from_aim();
+                               if (strlen($message) <= 0)
+                               {
+                                       return;
+                               }
+                               
+                               //Third step: Get the command from the server
+                               @list($cmd, $rest) = explode(":", $message);
+                               
+                               //Fourth step, take the command, test the type, and pass it off
+                               //to the correct internal handler. The internal handler will
+                               //do what needs to be done on the class internals to allow
+                               //it to work, then proceed to pass it off to the user created handle
+                               //if there is one
+                               $this->log($cmd);
+                               switch($cmd)
+                               {
+                                       case 'SIGN_ON':
+                                               $this->onSignOn($message);
+                                               break;
+                                       case 'CONFIG2':
+                                               $this->onConfig($message);
+                                               break;
+                                       case 'ERROR':
+                                               $this->onError($message);
+                                               break;
+                                       case 'NICK':
+                                               $this->onNick($message);
+                                               break;
+                                       case 'IM_IN2':
+                                               $this->onImIn($message);
+                                               break;
+                                       case 'UPDATE_BUDDY2':
+                                               $this->onUpdateBuddy($message);
+                                               break;
+                                       case 'EVILED':
+                                               $this->onWarn($message);
+                                               break;
+                                       case 'CHAT_JOIN':
+                                               $this->onChatJoin($message);
+                                               break;
+                                       case 'CHAT_IN':
+                                               $this->onChatIn($message);
+                                               break;
+                                       case 'CHAT_UPDATE_BUDDY':
+                                               $this->onChatUpdate($message);
+                                               break;
+                                       case 'CHAT_INVITE':
+                                               $this->onChatInvite($message);
+                                               break;
+                                       case 'CHAT_LEFT':
+                                               $this->onChatLeft($message);
+                                               break;
+                                       case 'GOTO_URL':
+                                               $this->onGotoURL($message);
+                                               break;
+                                       case 'DIR_STATUS':
+                                               $this->onDirStatus($message);
+                                               break;
+                                       case 'ADMIN_NICK_STATUS':
+                                               $this->onAdminNick($message);
+                                               break;
+                                       case 'ADMIN_PASSWD_STATUS':
+                                               $this->onAdminPasswd($message);
+                                               break;
+                                       case 'PAUSE':
+                                               $this->onPause($message);
+                                               break;
+                                       case 'RVOUS_PROPOSE':
+                                               $this->onRvous($message);
+                                               break;
+                                       default:
+                                               $this->log("Fell through: $message");
+                                               $this->CatchAll($message);
+                                               break;
+                               }
+                       }
+                       else
+                       {
+                               for($j = 0;$j<sizeof($this->myDirectConnections);$j++)
+                               {
+                                       if ($this->myDirectConnections[$j]->sock == $ready[$i])
+                                       {
+                                               $dcon = $this->myDirectConnections[$j];
+                                               break;
+                                       }
+                               }
+                               //Now read from the dcon
+                               if ($dcon->type == CONN_TYPE_DC)
+                               {
+                                       if ($dcon->readDIM() == false)
+                                       {
+                                               $this->closeDcon($dcon);
+                                               continue;
+                                       }
+                                       
+                                       $message['message'] = $dcon->lastMessage;
+                                       if ($message['message'] == "too big")
+                                       {
+                                               $this->sendDim("Connection dropped because you sent a message larger that " . MAX_DCON_SIZE . " bytes.", $dcon->connectedTo);
+                                               $this->closeDcon($dcon);
+                                               continue;
+                                       }
+                                       $message['from'] = $dcon->connectedTo;
+                                       $this->onDimIn($message);
+                               }
+                       }
+               }
+        $this->conn->myLastReceived="";
+               //Now get out of this function because the handlers should take care
+               //of everything
+       }
+       
+       //The next block of code is all the event handlers needed by the class
+       //Some are left blank and only call the users handler because the class
+       //either does not support the command, or cannot do anything with it
+       // ---------------------------------------------------------------------
+
+       /** 
+        * Direct IM In Event Handler
+        *
+        * Called when Direct IM is received.
+        * Call's user handler (if available) for DimIn.
+        * 
+        * @access private
+        * @param String $data Raw message from server
+        * @return void
+        */
+       function onDimIn($data)
+       {
+               $this->callHandler("DimIn", $data);
+       }
+       
+       /** 
+        * Sign On Event Handler
+        *
+        * Called when Sign On event occurs.
+        * Call's user handler (if available) for SIGN_ON.
+        * 
+        * @access private
+        * @param String $data Raw message from server
+        * @return void
+        */
+       function onSignOn($data)
+       {
+               $this->callHandler("SignOn", $data);
+       }
+       
+       /** 
+        * Config Event Handler
+        *
+        * Called when Config data received.
+        * Call's user handler (if available) for Config.
+        * 
+        * Loads buddy list and other info
+        * 
+        * @access private
+        * @param String $data Raw message from server
+        * @return void
+        */
+       function onConfig($data)
+       {
+               $this->log("onConfig Message: " . $data);
+               
+               if (strpos($data,"CONFIG2:") === false)
+               {
+                       $this->log("get_buddy_list cannot be called at this time because I got $data");
+                       //return false;
+               }
+               $people = explode("\n",trim($data,"\n"));
+               //The first 3 elements of the array are who knows what, element 3 should be
+               //a letter followed by a person
+               
+               //AIM decided to add this wonderful new feature, the recent buddy thing, this kind of
+               //messes this funtion up, so we need to adapt it... unfortuneately, its not really
+               //clear how this works, so we are just going to add their name to the permit list.
+               
+               //Recent buddies I believe are in the format
+               //number:name:number.... I think the first number counts down from 25 how long its
+               //been... but I don't know the second number,,,,
+               
+               //TODO: Figure out the new recent buddies system
+               
+               //Note: adding that at the bottom is a quick hack and may have adverse consequences...
+               for($i = 1;$i<sizeof($people);$i++)
+               {
+                       @list($mode, $name) = explode(":", $people[$i]);
+                       switch($mode)
+                       {
+                               case 'p':
+                                       $this->myPermitList[] = $name;
+                                       break;
+                               case 'd':
+                                       $this->myBlockedList[] = $name;
+                                       break;
+                               case 'b':
+                                       $this->myBuddyList[] = $name;
+                                       break;
+                               case 'done':
+                                       break;
+                               default:
+                                       //This is assumed to be recent buddies...
+                                       $this->myPermitList[]=$name;
+                       }
+               }
+               
+               //We only get the config message once, so now we should send our pd mode
+               
+               $this->sflapSend(SFLAP_TYPE_DATA,"toc2_set_pdmode " . $this->myPdMode,0,0);
+               //Adds yourself to the permit list
+               //This is to fix an odd behavior if you have nobody on your list
+               //the server won't send the config command... so this takes care of it
+               $this->sflapSend(SFLAP_TYPE_DATA,"toc2_add_permit " . $this->normalize($this->myScreenName),0,0); 
+               
+               //Now we allow the user to send a list, update anything they want, etc
+               $this->callHandler("Config", $data);
+               //Now that we have taken care of what the user wants, send the init_done message
+               $this->sflapSend(SFLAP_TYPE_DATA,"toc_init_done",0,0);
+               //'VOICE_UID' 
+               //'FILE_GET_UID'
+               //'IMAGE_UID'
+               //'BUDDY_ICON_UID'
+               //'STOCKS_UID'
+               //'GAMES_UID'
+               $this->sflapSend(SFLAP_TYPE_DATA, "toc_set_caps " . IMAGE_UID . " " .  FILE_SEND_UID ." " . FILE_GET_UID . " " . BUDDY_ICON_UID . "",0,0);
+       }
+       
+
+       /** 
+        * Error Event Handler
+        *
+        * Called when an Error occurs.
+        * Call's user handler (if available) for Error.
+        * 
+        * @access private
+        * @param String $data Raw message from server
+        * @return void
+        */
+       function onError($data)
+       {
+           static $errarg = '';
+               static $ERRORS = array(\r
+            0=>'Success',\r
+            901 =>'$errarg not currently available',\r
+            902 =>'Warning of $errarg not currently available',\r
+            903 =>'A message has been dropped, you are exceeding\r
+                  the server speed limit',\r
+            911 =>'Error validating input',\r
+            912 =>'Invalid account',\r
+            913 =>'Error encountered while processing request',\r
+            914 =>'Service unavailable',\r
+            950 =>'Chat in $errarg is unavailable.',\r
+            960 =>'You are sending message too fast to $errarg',\r
+            961 =>'You missed an im from $errarg because it was too big.',\r
+            962 =>'You missed an im from $errarg because it was sent too fast.',\r
+            970 =>'Failure',\r
+            971 =>'Too many matches',\r
+            972 =>'Need more qualifiers',\r
+            973 =>'Dir service temporarily unavailable',\r
+            974 =>'Email lookup restricted',\r
+            975 =>'Keyword Ignored',\r
+            976 =>'No Keywords',\r
+            977 =>'Language not supported',\r
+            978 =>'Country not supported',\r
+            979 =>'Failure unknown $errarg',\r
+            980 =>'Incorrect nickname or password.',\r
+            981 =>'The service is temporarily unavailable.',\r
+            982 =>'Your warning level is currently too high to sign on.',\r
+            983 =>'You have been connecting and\r
+                          disconnecting too frequently.  Wait 10 minutes and try again.\r
+                      If you continue to try, you will need to wait even longer.',\r
+            989 =>'An unknown signon error has occurred $errarg'\r
+            );
+               $data_array = explode(":", $data);
+               for($i=0; $i<count($data_array); $i++)
+               {
+            switch($i)
+            {
+                case 0:
+                    $cmd = $data_array[$i];
+                    break;
+                case 1:
+                    $errornum = $data_array[$i];
+                    break;
+                case 2:
+                    $errargs = $data_array[$i];
+                    break;
+            }
+               }
+               eval("\$errorstring=\"\$ERRORS[" . $errornum . "]\";");
+               $string = "\$errorstring=\"\$ERRORS[$errornum]\";";
+               //This is important information! We need 
+               // a A different outputter for errors
+               // b Just to echo it
+               //I'm just going to do a straight echo here, becuse we assume that
+               //the user will NEED to see this error. An option to supress it will
+               //come later I think. Perhaps if we did an error reporting level, similar
+               //to PHP's, and we could probably even use PHP's error outputting system
+               //I think that may be an idea.... 
+               
+               $this->log($errorstring . "\n");
+               
+               $this->callHandler("Error", $data);
+       }
+       
+       /** 
+        * Nick Event Handler
+        *
+        * Called when formatted own ScreenName is receieved
+        * Call's user handler (if available) for Nick.
+        * 
+        * @access private
+        * @param String $data Raw message from server
+        * @return void
+        */
+       function onNick($data)
+       {
+               //This is our nick, so set a field called "myFormatSN" which will represent
+               //the actual name given by the server to us, NOT the normalized screen name
+               @list($cmd, $nick) = explode(":", $data);
+               $this->myFormatSN = $nick;
+               
+               $this->callHandler("Nick", $data);
+       }
+       
+       /** 
+        * IM In Event Handler
+        *
+        * Called when an Instant Message is received.
+        * Call's user handler (if available) for IMIn.
+        * 
+        * @access private
+        * @param String $data Raw message from server
+        * @return void
+        */
+       function onImIn($data)
+       {
+               //Perhaps we should add an internal log for debugging purposes??
+               //But now, this should probably be handled by the user purely
+               
+               $this->callHandler("IMIn", $data);
+       }
+       
+       /** 
+        * UpdateBuddy Event Handler
+        *
+        * Called when a Buddy Update is receieved.
+        * Call's user handler (if available) for UpdateBuddy.
+        * If info is about self, updates self info (Currently ownly warning).
+        *
+        * ToDo: Keep track of idle, warning etc on Buddy List
+        * 
+        * @access private
+        * @param String $data Raw message from server
+        * @return void
+        */
+       function onUpdateBuddy($data)
+       {
+               //Again, since our class currently does not deal with other people without
+               //outside help, then this is also probably best left to the user. Though
+               //we should probably allow this to replace the setMyInfo function above
+               //by handling the input if and only if it is us
+               //Check and see that this is the command expected
+               if (strpos($data,"UPDATE_BUDDY2:") == -1)
+               {
+                       $this->log("A different message than expected was received");
+                       return false;
+               }
+               
+               //@list($cmd, $info['sn'], $info['online'], $info['warnlevel'], $info['signon'], $info['idle'], $info['uc']) = explode(":", $command['incoming']);
+
+               //@list($cmd, $sn, $online, $warning, $starttime, $idletime, $uc) = explode(":", $data);
+               $info = $this->getMessageInfo($data);
+               if ($this->normalize($info['sn']) == $this->normalize($this->myScreenName))
+               {
+                       $warning = rtrim($info['warnlevel'],"%");
+                       $this->myWarnLevel = $warning;
+                       $this->log("My warning level is $this->myWarnLevel %");
+               }
+               
+               $this->callHandler("UpdateBuddy", $data);
+       }
+       
+       /** 
+        * Warning Event Handler
+        *
+        * Called when bot is warned.
+        * Call's user handler (if available) for Warn.
+        * Updates internal warning level
+        * 
+        * @access private
+        * @param String $data Raw message from server
+        * @return void
+        */
+       function onWarn($data)
+       {
+               /*
+               For reference:
+                       $command['incoming'] .= ":0";
+                       $it = explode(":", $command['incoming']);
+                       $info['warnlevel'] = $it[1];
+                       $info['from'] = $it[2];         
+               */
+               //SImply update our warning level
+               //@list($cmd, $newwarn, $user) = explode(":", $data);
+               
+               $info = $this->getMessageInfo($data);
+               
+               $this->setWarningLevel(trim($info['warnlevel'],"%"));
+               $this->log("My warning level is $this->myWarnLevel %");
+               
+               $this->callHandler("Warned", $data);
+       }
+       
+       /** 
+        * Chat Join Handler
+        *
+        * Called when bot joins a chat room.
+        * Call's user handler (if available) for ChatJoin.
+        * Adds chat room to internal chat room list.
+        * 
+        * @access private
+        * @param String $data Raw message from server
+        * @return void
+        */
+       function onChatJoin($data)
+       {
+               @list($cmd, $rmid, $rmname) = explode(":", $data);
+               $this->myChatRooms[$rmid] = 0;
+               
+               $this->callHandler("ChatJoin", $data);
+       }
+       
+       /** 
+        * Returns number of chat rooms bot is in
+        * 
+        * @access public
+        * @param String $data Raw message from server
+        * @return int
+        */
+       function getNumChats()
+       {
+               return count($this->myChatRooms);
+       }
+       
+       /** 
+        * Chat Update Handler
+        *
+        * Called when bot received chat room data (user update).
+        * Call's user handler (if available) for ChatUpdate.
+        * 
+        * @access private
+        * @param String $data Raw message from server
+        * @return void
+        */
+       function onChatUpdate($data)
+       {
+               $stuff = explode(":", $data);
+               $people = sizeof($stuff);
+               $people -= 2;
+               
+               $this->callHandler("ChatUpdate", $data);
+       }
+       
+       /** 
+        * Chat Message In Handler
+        *
+        * Called when chat room message is received.
+        * Call's user handler (if available) for ChatIn.
+        * 
+        * @access private
+        * @param String $data Raw message from server
+        * @return void
+        */
+       function onChatIn($data)
+       {
+               $this->callHandler("ChatIn", $data);
+       }
+       
+       
+       /** 
+        * Chat Invite Handler
+        *
+        * Called when bot is invited to a chat room.
+        * Call's user handler (if available) for ChatInvite.
+        * 
+        * @access private
+        * @param String $data Raw message from server
+        * @return void
+        */
+       function onChatInvite($data)
+       {
+               //@list($cmd, $name, $id, $from, $data) = explode(":", $data,6);
+               //$data = explode(":",$data,6);
+               //$nm = array();
+               //@list($nm['cmd'],$nm['name'],$nm['id'],$nm['from'],$nm['message']) = $data;
+               
+               
+               $this->callHandler("ChatInvite", $data);
+       }
+       
+       /** 
+        * Chat Left Handler
+        *
+        * Called when bot leaves a chat room
+        * Call's user handler (if available) for ChatLeft.
+        * 
+        * @access private
+        * @param String $data Raw message from server
+        * @return void
+        */
+       function onChatLeft($data)
+       {
+               $info = $this->getMessageInfo($data);
+               unset($this->myChatRooms[$info['chatid']]);
+               $this->callHandler("ChatLeft", $data);
+       }
+       
+       /** 
+        * Goto URL Handler
+        *
+        * Called on GotoURL.
+        * Call's user handler (if available) for GotoURL.
+        * No detailed info available for this / Unsupported.
+        * 
+        * @access private
+        * @param String $data Raw message from server
+        * @return void
+        */
+       function onGotoURL($data)
+       {
+               //This is of no use to the internal class
+               
+               $this->callHandler("GotoURL", $data);
+       }
+       
+       /** 
+        * Dir Status Handler
+        *
+        * Called on DirStatus.
+        * Call's user handler (if available) for DirStatus.
+        * No detailed info available for this / Unsupported.
+        * 
+        * @access private
+        * @param String $data Raw message from server
+        * @return void
+        */
+       function onDirStatus($data)
+       {
+               //This is not currently suported
+               
+               $this->callHandler("DirStatus", $data);
+       }
+       
+       /** 
+        * AdminNick Handler
+        *
+        * Called on AdminNick.
+        * Call's user handler (if available) for AdminNick.
+        * No detailed info available for this / Unsupported.
+        * 
+        * @access private
+        * @param String $data Raw message from server
+        * @return void
+        */
+       function onAdminNick($data)
+       {
+               //NOt particularly useful to us         
+               $this->callHandler("AdminNick", $data);
+       }
+       
+       /** 
+        * AdminPasswd Handler
+        *
+        * Called on AdminPasswd.
+        * Call's user handler (if available) for AdminPasswd.
+        * No detailed info available for this / Unsupported.
+        * 
+        * @access private
+        * @param String $data Raw message from server
+        * @return void
+        */
+       function onAdminPasswd($data)
+       {
+               //Also not particlualry useful to the internals
+               $this->callHandler("AdminPasswd", $data);
+       }
+       
+       /** 
+        * Pause Handler
+        *
+        * Called on Pause.
+        * Call's user handler (if available) for Pause.
+        * No detailed info available for this / Unsupported.
+        * 
+        * @access private
+        * @param String $data Raw message from server
+        * @return void
+        */
+       function onPause($data)
+       {
+               //This is pretty useless to us too...
+               
+               $this->callHandler("Pause", $data);
+       }
+       
+       /** 
+        * Direct Connection Handler
+        *
+        * Called on Direct Connection Request(Rvous).
+        * Call's user handler (if available) for Rvous.
+        * 
+        * @access private
+        * @param String $data Raw message from server
+        * @return void
+        */
+       function onRvous($data)
+       {
+               $this->callHandler("Rvous", $data);
+       }
+       
+       /** 
+        * CatchAll Handler
+        *
+        * Called for unrecognized commands.
+        * Logs unsupported messages to array.
+        * Call's user handler (if available) for CatchAll.
+        * 
+        * @access private
+        * @param String $data Raw message from server
+        * @return void
+        */
+       function CatchAll($data)
+       {
+               //Add to a log of unsupported messages.
+               
+               $this->unsupported[] = $data;
+               //$this->log($data);
+               //print_r($data);
+               
+               $this->callHandler("CatchAll", $data);
+       }
+       
+       /** 
+        * Calls User Handler
+        *
+        * Calls registered handler for a specific event.
+        * 
+        * @access private
+        * @param String $event Command (event) name (Rvous etc)
+        * @param String $data Raw message from server
+        * @see registerHandler
+        * @return void
+        */
+       function callHandler($event, $data)
+       {
+               
+               if (isset($this->myEventHandlers[$event]))
+               {
+                       //$function = $this->myEventHandlers[$event] . "(\$data);";
+                       //eval($function);
+                       call_user_func($this->myEventHandlers[$event], $data);
+               }
+               else
+               {
+                       $this->noHandler($data);
+               }
+       }
+       
+       /** 
+        * Registers a user handler
+        * 
+        * Handler List
+        * SignOn, Config, ERROR, NICK, IMIn, UpdateBuddy, Eviled, Warned, ChatJoin
+        * ChatIn, ChatUpdate, ChatInvite, ChatLeft, GotoURL, DirStatus, AdminNick
+        * AdminPasswd, Pause, Rvous, DimIn, CatchAll
+        *
+        * @access private
+        * @param String $event Event name
+        * @param String $handler User function to call
+        * @see callHandler
+        * @return boolean Returns true if successful
+        */
+       function registerHandler($event, $handler)
+       {
+               if (is_callable($handler))
+               {
+                       $this->myEventHandlers[$event] = $handler;
+                       return true;
+               }
+               else
+               {
+                       return false;
+               }
+       }
+
+    /** 
+     * No user handler method fall back.
+     *
+     * Does nothing with message.
+     *
+     * @access public
+     * @param String $message Raw server message
+     * @return void
+     */
+    function noHandler($message)
+    {
+           //This function intentionally left blank
+           //This is where the handlers will fall to for now. I plan on including a more
+           //efficent check to avoid the apparent stack jumps that this code will produce
+           //But for now, just fall into here, and be happy
+           return;
+    }
+
+    //GLOBAL FUNCTIONS
+
+    /** 
+     * Finds type, and returns as part of array ['type']
+     * Puts message in ['incoming']
+     *
+     * Helper method for getMessageInfo.
+     *
+     * @access public
+     * @param String $message Raw server message
+     * @see msg_parse
+     * @see getMessageInfo
+     * @return array
+     */
+    static function msg_type($message)
+    {
+           $command = array();
+           @list($cmd, $rest) = explode(":", $message);
+           switch($cmd)
+           {
+                   case 'IM_IN2':
+                           $type = AIM_TYPE_MSG;
+                   break;
+               
+                   case 'UPDATE_BUDDY2':
+                           $type = AIM_TYPE_UPDATEBUDDY;
+                   break;
+               
+                   case 'EVILED':
+                           $type = AIM_TYPE_WARN;
+                   break;
+               
+                   case 'SIGN_ON':
+                           $type = AIM_TYPE_SIGNON;
+                   break;
+               
+                   case 'NICK':
+                           $type = AIM_TYPE_NICK;
+                   break;
+               
+                   case 'ERROR':
+                           $type = AIM_TYPE_ERROR;
+                   break;
+               
+                   case 'CHAT_JOIN':
+                           $type = AIM_TYPE_CHATJ;
+                   break;
+               
+                   case 'CHAT_IN':
+                           $type = AIM_TYPE_CHATI;
+                   break;
+               
+                   case 'CHAT_UPDATE_BUDDY':
+                           $type = AIM_TYPE_CHATUPDBUD;
+                   break;
+               
+                   case 'CHAT_INVITE':
+                           $type = AIM_TYPE_CHATINV;
+                   break;
+               
+                   case 'CHAT_LEFT':
+                           $type = AIM_TYPE_CHATLE;
+                   break;
+               
+                   case 'GOTO_URL':
+                           $type = AIM_TYPE_URL;
+                   break;
+               
+                   case 'ADMIN_NICK_STATUS':
+                           $type = AIM_TYPE_NICKSTAT;
+                   break;
+               
+                   case 'ADMIN_PASSWD_STATUS':
+                           $type = AIM_TYPE_PASSSTAT;
+                   break;
+               
+                   case 'RVOUS_PROPOSE':
+                           $type = AIM_TYPE_RVOUSP;
+                   break;
+               
+                   default:
+                           $type = AIM_TYPE_NOT_IMPLEMENTED;
+                   break;
+           }
+           $command['type'] = $type;
+           $command['incoming'] = $message;
+           return $command;
+    }
+
+    /** 
+     * Parses message and splits into info array
+     *
+     * Helper method for getMessageInfo.
+     *
+     * @access public
+     * @param String $command Message and type (after msg_type)
+     * @see msg_type
+     * @see getMessageInfo
+     * @return array
+     */
+    static function msg_parse($command)
+    {
+           $info = array();
+           switch($command['type'])
+           {
+                   case AIM_TYPE_WARN:
+                           $command['incoming'] .= ":0";
+                           $it = explode(":", $command['incoming']);
+                           $info['warnlevel'] = $it[1];
+                           $info['from'] = $it[2];
+
+                   break;
+               
+                   case AIM_TYPE_MSG:
+                           $it = explode(":", $command['incoming'],5);
+                           $info['auto'] = $it[2];
+                           $info['from'] = $it[1];
+                           $info['message'] = $it[4];
+                   break;
+               
+                   case AIM_TYPE_UPDATEBUDDY:
+                           @list($cmd, $info['sn'], $info['online'], $info['warnlevel'], $info['signon'], $info['idle'], $info['uc']) = explode(":", $command['incoming']);
+                   break;
+               
+                   case AIM_TYPE_SIGNON:
+                           @list($cmd, $info['version']) = explode(":", $command['incoming']);         
+                   break;
+               
+                   case AIM_TYPE_NICK:
+                           @list($cmd, $info['nickname']) = explode(":", $command['incoming']);                
+                   break;
+                   case AIM_TYPE_ERROR:
+                           @list($cmd, $info['errorcode'], $info['args']) = explode(":", $command['incoming']);
+                   break;
+               
+                   case AIM_TYPE_CHATJ:
+                           @list($cmd, $info['chatid'], $info['chatname']) = explode(":", $command['incoming']);
+                   break;
+               
+                   case AIM_TYPE_CHATI:
+                           @list($cmd, $info['chatid'], $info['user'], $info['whisper'], $info['message']) = explode(":", $command['incoming'],5);
+                   break;
+               
+                   case AIM_TYPE_CHATUPDBUD:
+                           @list($cmd, $info['chatid'], $info['inside'], $info['userlist']) = explode(":", $command['incoming'],3);    
+                   break;
+               
+                   case AIM_TYPE_CHATINV:
+                           @list($cmd, $info['chatname'], $info['chatid'], $info['from'], $info['message']) = explode(":", $command['incoming'],5);
+                   break;
+               
+                   case AIM_TYPE_CHATLE:
+                           @list($cmd, $info['chatid']) = explode(":", $command['incoming']);          
+                   break;
+               
+                   case AIM_TYPE_URL:
+                           @list($cmd, $info['windowname'], $info['url']) = explode(":", $command['incoming'],3);
+                   break;
+               
+                   case AIM_TYPE_RVOUSP:
+                           @list($cmd,$info['user'],$info['uuid'],$info['cookie'],$info['seq'],$info['rip'],$info['pip'],$info['vip'],$info['port'],$info['tlvs']) = explode(":",$command['incoming'],10);
+                   break;
+               
+                   case AIM_TYPE_NICKSTAT:
+                   case AIM_TYPE_PASSSTAT:
+                           @list($cmd, $info['returncode'], $info['opt']) = explode(":", $command['incoming'],3);              
+                   break;
+               
+                   default:
+                   $info['command'] = $command['incoming'];
+           }
+           return $info;
+    }
+
+    /** 
+     * Returns a parsed message
+     *
+     * Calls msg_parse(msg_type( to first determine message type and then parse accordingly
+     *
+     * @access public
+     * @param String $command Raw server message
+     * @see msg_type
+     * @see msg_parse
+     * @return array
+     */
+    static function getMessageInfo($message)
+    {
+           return self::msg_parse(self::msg_type($message));
+    }
+
+    /** 
+     * Checks socket for end of file
+     *
+     * @access public
+     * @param Resource $socket Socket to check
+     * @return boolean true if end of file (socket) 
+     */
+    static function socketcheck($socket){
+           $info = stream_get_meta_data($socket);
+           return $info['eof'];
+           //return(feof($socket));
+    }
+}
+
+?>
diff --git a/plugins/Aim/extlib/phptoclib/dconnection.php b/plugins/Aim/extlib/phptoclib/dconnection.php
new file mode 100755 (executable)
index 0000000..c6be25f
--- /dev/null
@@ -0,0 +1,229 @@
+<?php
+
+//The following class was created June 30th 2004 by Jeremy(pickle)
+//This class is designed to handle a direct connection
+
+class Dconnect
+{
+       var $sock;
+       var $lastReceived;
+       var $lastMessage;
+       var $connected;
+       var $cookie;
+       var $type=2;
+       var $connectedTo;
+       
+       
+       function Dconnect($ip,$port)
+       {
+               if(!$this->connect($ip,$port))
+               {
+                       sEcho("Connection failed constructor");
+                       $this->connected=false;
+               }
+               else
+                       $this->connected=true;
+               
+               $this->lastMessage="";
+               $this->lastReceived="";
+       }
+       
+       function readDIM()
+       {
+               /*
+                       if(!$this->stuffToRead())
+                       {
+                               sEcho("Nothing to read");
+                               $this->lastMessage=$this->lastReceived="";
+                               return false;
+                       }
+               */
+               $head=fread($this->sock,6);
+               if(strlen($head)<=0)
+               {
+                       sEcho("The direct connection has been closed");
+                       return false;
+               }
+               $minihead=unpack("a4ver/nsize",$head);
+               if($minihead['size'] <=0)
+                 return;
+               $headerinfo=unpack("nchan/nsix/nzero/a6cookie/Npt1/Npt2/npt3/Nlen/Npt/npt0/ntype/Nzerom/a*sn",fread($this->sock,($minihead['size']-6)));
+               $allheader=array_merge($minihead,$headerinfo);
+               sEcho($allheader);
+               if($allheader['len']>0 && $allheader['len'] <= MAX_DIM_SIZE)
+               {
+                       $left=$allheader['len'];
+                       $stuff="";
+                       $nonin=0;
+                       while(strlen($stuff) < $allheader['len'] && $nonin<3)
+                       {
+                               $stuffg=fread($this->sock,$left);
+                               if(strlen($stuffg)<0)
+                               {
+                                       $nonin++;
+                                       continue;
+                               }
+                               $left=$left - strlen($stuffg);
+                               $stuff.=$stuffg;
+                       }
+                       $data=unpack("a*decoded",$stuff);
+               }
+               
+               else if($allheader['len'] > MAX_DIM_SIZE)
+               {
+                       $data['decoded']="too big";
+               }
+               
+               else
+                       $data['decoded']="";
+               $all=array_merge($allheader,$data);
+               
+               $this->lastReceived=$all;
+               $this->lastMessage=$all['decoded'];
+               
+               //$function=$this->DimInf . "(\$all);";
+               //eval($function);
+               
+               return $all;
+       }
+       
+       function sendMessage($message,$sn)
+       {
+               //Make the "mini header"
+               $minihead=pack("a4n","ODC2",76);
+               $header=pack("nnna6NNnNNnnNa*",1,6,0,$this->cookie,0,0,0,strlen($message),0,0,96,0,$sn);
+               $bighead=$minihead . $header;
+               while(strlen($bighead)<76)
+                       $bighead.=pack("c",0);
+               
+               $tosend=$bighead . pack("a*",$message);
+               $w=array($this->sock);
+               stream_select($r=NULL,$w,$e=NULL,NULL);
+               //Now send it all
+               fputs($this->sock,$tosend,strlen($tosend));
+       }
+       function stuffToRead()
+       {
+               //$info=stream_get_meta_data($this->sock);
+               //sEcho($info);
+               $s=array($this->sock);
+               $changed=stream_select($s,$fds=NULL,$m=NULL,0,20000);
+               return ($changed>0);
+       }
+       
+       function close()
+       {
+               $this->connected=false;
+               return fclose($this->sock);
+       }
+       
+       function connect($ip,$port)
+       {
+               $this->sock=fsockopen($ip,$port,$en,$es,3);
+               if(!$this->sock)
+               {  sEcho("Connection failed");
+                       $this->sock=null;
+                       return false;
+               }
+               return true;
+       }
+}
+
+
+class FileSendConnect
+{
+       var $sock;
+       var $lastReceived;
+       var $lastMessage;
+       var $connected;
+       var $cookie;
+       var $tpye=3;
+       
+       
+       function FileSendConnect($ip,$port)
+       {
+               if(!$this->connect($ip,$port))
+               {
+                       sEcho("Connection failed constructor");
+                       $this->connected=false;
+               }
+               else
+                       $this->connected=true;
+               
+               $this->lastMessage="";
+               $this->lastReceived="";
+       }
+       
+       function readDIM()
+       {
+               
+                       if(!$this->stuffToRead())
+                       {
+                               sEcho("Nothing to read");
+                               $this->lastMessage=$this->lastReceived="";
+                               return;
+                       }
+               
+               $minihead=unpack("a4ver/nsize",fread($this->sock,6));
+               if($minihead['size'] <=0)
+                 return;
+               $headerinfo=unpack("nchan/nsix/nzero/a6cookie/Npt1/Npt2/npt3/Nlen/Npt/npt0/ntype/Nzerom/a*sn",fread($this->sock,($minihead['size']-6)));
+               $allheader=array_merge($minihead,$headerinfo);
+               sEcho($allheader);
+               if($allheader['len']>0)
+                       $data=unpack("a*decoded",fread($this->sock,$allheader['len']));
+               else
+                       $data['decoded']="";
+               $all=array_merge($allheader,$data);
+               
+               $this->lastReceived=$all;
+               $this->lastMessage=$all['decoded'];
+               
+               //$function=$this->DimInf . "(\$all);";
+               //eval($function);
+               
+               return $all;
+       }
+       
+       function sendMessage($message,$sn)
+       {
+               //Make the "mini header"
+               $minihead=pack("a4n","ODC2",76);
+               $header=pack("nnna6NNnNNnnNa*",1,6,0,$this->cookie,0,0,0,strlen($message),0,0,96,0,$sn);
+               $bighead=$minihead . $header;
+               while(strlen($bighead)<76)
+                       $bighead.=pack("c",0);
+               
+               $tosend=$bighead . pack("a*",$message);
+               
+               //Now send it all
+               fwrite($this->sock,$tosend,strlen($tosend));
+       }
+       function stuffToRead()
+       {
+               //$info=stream_get_meta_data($this->sock);
+               //sEcho($info);
+               $s=array($this->sock);
+               $changed=stream_select($s,$fds=NULL,$m=NULL,1);
+               return ($changed>0);
+       }
+       
+       function close()
+       {
+               $this->connected=false;
+               fclose($this->sock);
+               unset($this->sock);
+               return true;
+       }
+       
+       function connect($ip,$port)
+       {
+               $this->sock=fsockopen($ip,$port,$en,$es,3);
+               if(!$this->sock)
+               {  sEcho("Connection failed to" . $ip . ":" . $port);
+                       $this->sock=null;
+                       return false;
+               }
+               return true;
+       }
+}
index e4fda5809962c6da82a9fe82579168e850b10b99..4c0edeaa1d5cca3c0b21676553da22da8d4ce1fb 100644 (file)
@@ -57,12 +57,14 @@ class ImapManager extends IoManager
     }
 
     /**
-     * Tell the i/o master we need one instance for each supporting site
-     * being handled in this process.
+     * Tell the i/o master we need one instance globally.
+     * Since this is a plugin manager, the plugin class itself will
+     * create one instance per site. This prevents the IoMaster from
+     * making more instances.
      */
     public static function multiSite()
     {
-        return IoManager::INSTANCE_PER_SITE;
+        return IoManager::GLOBAL_SINGLE_ONLY;
     }
 
     /**
diff --git a/plugins/Xmpp/Fake_XMPP.php b/plugins/Xmpp/Fake_XMPP.php
new file mode 100644 (file)
index 0000000..0f7cfd3
--- /dev/null
@@ -0,0 +1,114 @@
+<?php
+/**
+ * StatusNet, the distributed open-source microblogging tool
+ *
+ * Instead of sending XMPP messages, retrieve the raw XML that would be sent
+ *
+ * PHP version 5
+ *
+ * LICENCE: This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ * @category  Network
+ * @package   StatusNet
+ * @author    Brion Vibber <brion@status.net>
+ * @copyright 2010 StatusNet, Inc.
+ * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
+ * @link      http://status.net/
+ */
+
+if (!defined('STATUSNET') && !defined('LACONICA')) {
+    exit(1);
+}
+
+class Fake_XMPP extends XMPPHP_XMPP
+{
+    public $would_be_sent = null;
+
+       /**
+        * Constructor
+        *
+        * @param string  $host
+        * @param integer $port
+        * @param string  $user
+        * @param string  $password
+        * @param string  $resource
+        * @param string  $server
+        * @param boolean $printlog
+        * @param string  $loglevel
+        */
+       public function __construct($host, $port, $user, $password, $resource, $server = null, $printlog = false, $loglevel = null)
+       {
+        parent::__construct($host, $port, $user, $password, $resource, $server, $printlog, $loglevel);
+
+        // We use $host to connect, but $server to build JIDs if specified.
+        // This seems to fix an upstream bug where $host was used to build
+        // $this->basejid, never seen since it isn't actually used in the base
+        // classes.
+        if (!$server) {
+            $server = $this->host;
+        }
+        $this->basejid = $this->user . '@' . $server;
+
+        // Normally the fulljid is filled out by the server at resource binding
+        // time, but we need to do it since we're not talking to a real server.
+        $this->fulljid = "{$this->basejid}/{$this->resource}";
+    }
+
+    /**
+     * Send a formatted message to the outgoing queue for later forwarding
+     * to a real XMPP connection.
+     *
+     * @param string $msg
+     */
+    public function send($msg, $timeout=NULL)
+    {
+        $this->would_be_sent = $msg;
+    }
+
+    //@{
+    /**
+     * Stream i/o functions disabled; only do output
+     */
+    public function connect($timeout = 30, $persistent = false, $sendinit = true)
+    {
+        throw new Exception("Can't connect to server from fake XMPP.");
+    }
+
+    public function disconnect()
+    {
+        throw new Exception("Can't connect to server from fake XMPP.");
+    }
+
+    public function process()
+    {
+        throw new Exception("Can't read stream from fake XMPP.");
+    }
+
+    public function processUntil($event, $timeout=-1)
+    {
+        throw new Exception("Can't read stream from fake XMPP.");
+    }
+
+    public function read()
+    {
+        throw new Exception("Can't read stream from fake XMPP.");
+    }
+
+    public function readyToProcess()
+    {
+        throw new Exception("Can't read stream from fake XMPP.");
+    }
+    //@}
+}
+
diff --git a/plugins/Xmpp/README b/plugins/Xmpp/README
new file mode 100644 (file)
index 0000000..9bd71e9
--- /dev/null
@@ -0,0 +1,35 @@
+The XMPP plugin allows users to send and receive notices over the XMPP/Jabber/GTalk network.
+
+Installation
+============
+add "addPlugin('xmpp',
+    array('setting'=>'value', 'setting2'=>'value2', ...);"
+to the bottom of your config.php
+
+The daemon included with this plugin must be running. It will be started by
+the plugin along with their other daemons when you run scripts/startdaemons.sh.
+See the StatusNet README for more about queuing and daemons.
+
+Settings
+========
+user*: user part of the jid
+server*: server part of the jid
+resource: resource part of the jid
+port (5222): port on which to connect to the server
+encryption (true): use encryption on the connection
+host (same as server): host to connect to. Usually, you won't set this.
+debug (false): log extra debug info
+public: list of jid's that should get the public feed (firehose)
+
+* required
+default values are in (parenthesis)
+
+Example
+=======
+addPlugin('xmpp', array(
+    'user=>'update',
+    'server=>'identi.ca',
+    'password'=>'...',
+    'public'=>array('bob@aol.com', 'sue@google.com')
+));
+
diff --git a/plugins/Xmpp/Sharing_XMPP.php b/plugins/Xmpp/Sharing_XMPP.php
new file mode 100644 (file)
index 0000000..4b69125
--- /dev/null
@@ -0,0 +1,43 @@
+<?php
+/**
+ * StatusNet - the distributed open-source microblogging tool
+ * Copyright (C) 2009, StatusNet, Inc.
+ *
+ * Send and receive notices using the Jabber network
+ *
+ * PHP version 5
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ * @category  Jabber
+ * @package   StatusNet
+ * @author    Evan Prodromou <evan@status.net>
+ * @copyright 2009 StatusNet, Inc.
+ * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link      http://status.net/
+ */
+
+if (!defined('STATUSNET')) {
+    // This check helps protect against security problems;
+    // your code file can't be executed directly from the web.
+    exit(1);
+}
+
+class Sharing_XMPP extends XMPPHP_XMPP
+{
+    function getSocket()
+    {
+        return $this->socket;
+    }
+}
diff --git a/plugins/Xmpp/XmppPlugin.php b/plugins/Xmpp/XmppPlugin.php
new file mode 100644 (file)
index 0000000..9557f39
--- /dev/null
@@ -0,0 +1,252 @@
+<?php
+/**
+ * StatusNet - the distributed open-source microblogging tool
+ * Copyright (C) 2009, StatusNet, Inc.
+ *
+ * Send and receive notices using the XMPP network
+ *
+ * PHP version 5
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ * @category  IM
+ * @package   StatusNet
+ * @author    Evan Prodromou <evan@status.net>
+ * @copyright 2009 StatusNet, Inc.
+ * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link      http://status.net/
+ */
+
+if (!defined('STATUSNET')) {
+    // This check helps protect against security problems;
+    // your code file can't be executed directly from the web.
+    exit(1);
+}
+
+set_include_path(get_include_path() . PATH_SEPARATOR . INSTALLDIR . '/extlib/XMPPHP');
+
+/**
+ * Plugin for XMPP
+ *
+ * @category  Plugin
+ * @package   StatusNet
+ * @author    Evan Prodromou <evan@status.net>
+ * @copyright 2009 StatusNet, Inc.
+ * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link      http://status.net/
+ */
+
+class XmppPlugin extends ImPlugin
+{
+    public $server = null;
+    public $port = 5222;
+    public $user =  'update';
+    public $resource = null;
+    public $encryption = true;
+    public $password = null;
+    public $host = null;  // only set if != server
+    public $debug = false; // print extra debug info
+
+    public $transport = 'xmpp';
+
+    protected $fake_xmpp;
+
+    function getDisplayName(){
+        return _m('XMPP/Jabber/GTalk');
+    }
+
+    function normalize($screenname)
+    {
+        if (preg_match("/(?:([^\@]+)\@)?([^\/]+)(?:\/(.*))?$/", $screenname, $matches)) {
+            $node   = $matches[1];
+            $server = $matches[2];
+            return strtolower($node.'@'.$server);
+        } else {
+            return null;
+        }
+    }
+
+    function daemon_screenname()
+    {
+        $ret = $this->user . '@' . $this->server;
+        if($this->resource)
+        {
+            return $ret . '/' . $this->resource;
+        }else{
+            return $ret;
+        }
+    }
+
+    function validate($screenname)
+    {
+        // Cheap but effective
+        return Validate::email($screenname);
+    }
+
+    /**
+     * Load related modules when needed
+     *
+     * @param string $cls Name of the class to be loaded
+     *
+     * @return boolean hook value; true means continue processing, false means stop.
+     */
+
+    function onAutoload($cls)
+    {
+        $dir = dirname(__FILE__);
+
+        switch ($cls)
+        {
+        case 'XMPPHP_XMPP':
+            require_once 'XMPP.php';
+            return false;
+        case 'Sharing_XMPP':
+        case 'Fake_XMPP':
+            require_once $dir . '/'.$cls.'.php';
+            return false;
+        case 'XmppManager':
+            require_once $dir . '/'.strtolower($cls).'.php';
+            return false;
+        default:
+            return true;
+        }
+    }
+
+    function onStartImDaemonIoManagers(&$classes)
+    {
+        parent::onStartImDaemonIoManagers(&$classes);
+        $classes[] = new XmppManager($this); // handles pings/reconnects
+        return true;
+    }
+
+    function microiduri($screenname)
+    {
+        return 'xmpp:' . $screenname;    
+    }
+
+    function send_message($screenname, $body)
+    {
+        $this->fake_xmpp->message($screenname, $body, 'chat');
+        $this->enqueue_outgoing_raw($this->fake_xmpp->would_be_sent);
+        return true;
+    }
+
+    function send_notice($screenname, $notice)
+    {
+        $msg   = $this->format_notice($notice);
+        $entry = $this->format_entry($notice);
+        
+        $this->fake_xmpp->message($screenname, $msg, 'chat', null, $entry);
+        $this->enqueue_outgoing_raw($this->fake_xmpp->would_be_sent);
+        return true;
+    }
+
+    /**
+     * extra information for XMPP messages, as defined by Twitter
+     *
+     * @param Profile $profile Profile of the sending user
+     * @param Notice  $notice  Notice being sent
+     *
+     * @return string Extra information (Atom, HTML, addresses) in string format
+     */
+
+    function format_entry($notice)
+    {
+        $profile = $notice->getProfile();
+
+        $entry = $notice->asAtomEntry(true, true);
+
+        $xs = new XMLStringer();
+        $xs->elementStart('html', array('xmlns' => 'http://jabber.org/protocol/xhtml-im'));
+        $xs->elementStart('body', array('xmlns' => 'http://www.w3.org/1999/xhtml'));
+        $xs->element('a', array('href' => $profile->profileurl),
+                     $profile->nickname);
+        $xs->text(": ");
+        if (!empty($notice->rendered)) {
+            $xs->raw($notice->rendered);
+        } else {
+            $xs->raw(common_render_content($notice->content, $notice));
+        }
+        $xs->text(" ");
+        $xs->element('a', array(
+            'href'=>common_local_url('conversation',
+                array('id' => $notice->conversation)).'#notice-'.$notice->id
+             ),sprintf(_('[%s]'),$notice->id));
+        $xs->elementEnd('body');
+        $xs->elementEnd('html');
+
+        $html = $xs->getString();
+
+        return $html . ' ' . $entry;
+    }
+
+    function receive_raw_message($pl)
+    {
+        $from = $this->normalize($pl['from']);
+
+        if ($pl['type'] != 'chat') {
+            common_log(LOG_WARNING, "Ignoring message of type ".$pl['type']." from $from.");
+            return true;
+        }
+
+        if (mb_strlen($pl['body']) == 0) {
+            common_log(LOG_WARNING, "Ignoring message with empty body from $from.");
+            return true;
+        }
+
+        return $this->handle_incoming($from, $pl['body']);
+    }
+
+    function initialize(){
+        if(!isset($this->server)){
+            throw new Exception("must specify a server");
+        }
+        if(!isset($this->port)){
+            throw new Exception("must specify a port");
+        }
+        if(!isset($this->user)){
+            throw new Exception("must specify a user");
+        }
+        if(!isset($this->password)){
+            throw new Exception("must specify a password");
+        }
+
+        $this->fake_xmpp = new Fake_XMPP($this->host ?
+                                    $this->host :
+                                    $this->server,
+                                    $this->port,
+                                    $this->user,
+                                    $this->password,
+                                    $this->resource,
+                                    $this->server,
+                                    $this->debug ?
+                                    true : false,
+                                    $this->debug ?
+                                    XMPPHP_Log::LEVEL_VERBOSE :  null
+                                    );
+        return true;
+    }
+
+    function onPluginVersion(&$versions)
+    {
+        $versions[] = array('name' => 'XMPP',
+                            'version' => STATUSNET_VERSION,
+                            'author' => 'Craig Andrews, Evan Prodromou',
+                            'homepage' => 'http://status.net/wiki/Plugin:XMPP',
+                            'rawdescription' =>
+                            _m('The XMPP plugin allows users to send and receive notices over the XMPP/Jabber network.'));
+        return true;
+    }
+}
+
diff --git a/plugins/Xmpp/xmppmanager.php b/plugins/Xmpp/xmppmanager.php
new file mode 100644 (file)
index 0000000..87d8186
--- /dev/null
@@ -0,0 +1,279 @@
+<?php
+/*
+ * StatusNet - the distributed open-source microblogging tool
+ * Copyright (C) 2008, 2009, StatusNet, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
+
+/**
+ * XMPP background connection manager for XMPP-using queue handlers,
+ * allowing them to send outgoing messages on the right connection.
+ *
+ * Input is handled during socket select loop, keepalive pings during idle.
+ * Any incoming messages will be handled.
+ *
+ * In a multi-site queuedaemon.php run, one connection will be instantiated
+ * for each site being handled by the current process that has XMPP enabled.
+ */
+
+class XmppManager extends ImManager
+{
+    protected $lastping = null;
+    protected $pingid = null;
+
+    public $conn = null;
+    
+    const PING_INTERVAL = 120;
+    
+
+    /**
+     * Initialize connection to server.
+     * @return boolean true on success
+     */
+    public function start($master)
+    {
+        if(parent::start($master))
+        {
+            $this->connect();
+            return true;
+        }else{
+            return false;
+        }
+    }
+
+    function send_raw_message($data)
+    {
+        $this->connect();
+        if (!$this->conn || $this->conn->isDisconnected()) {
+            return false;
+        }
+        $this->conn->send($data);
+        return true;
+    }
+
+    /**
+     * Message pump is triggered on socket input, so we only need an idle()
+     * call often enough to trigger our outgoing pings.
+     */
+    function timeout()
+    {
+        return self::PING_INTERVAL;
+    }
+
+    /**
+     * Process XMPP events that have come in over the wire.
+     * @fixme may kill process on XMPP error
+     * @param resource $socket
+     */
+    public function handleInput($socket)
+    {
+        # Process the queue for as long as needed
+        try {
+            common_log(LOG_DEBUG, "Servicing the XMPP queue.");
+            $this->stats('xmpp_process');
+            $this->conn->processTime(0);
+        } catch (XMPPHP_Exception $e) {
+            common_log(LOG_ERR, "Got an XMPPHP_Exception: " . $e->getMessage());
+            die($e->getMessage());
+        }
+    }
+
+    /**
+     * Lists the IM connection socket to allow i/o master to wake
+     * when input comes in here as well as from the queue source.
+     *
+     * @return array of resources
+     */
+    public function getSockets()
+    {
+        $this->connect();
+        if($this->conn){
+            return array($this->conn->getSocket());
+        }else{
+            return array();
+        }
+    }
+
+    /**
+     * Idle processing for io manager's execution loop.
+     * Send keepalive pings to server.
+     *
+     * Side effect: kills process on exception from XMPP library.
+     *
+     * @fixme non-dying error handling
+     */
+    public function idle($timeout=0)
+    {
+        $now = time();
+        if (empty($this->lastping) || $now - $this->lastping > self::PING_INTERVAL) {
+            try {
+                $this->send_ping();
+            } catch (XMPPHP_Exception $e) {
+                common_log(LOG_ERR, "Got an XMPPHP_Exception: " . $e->getMessage());
+                die($e->getMessage());
+            }
+        }
+    }
+
+    function connect()
+    {
+        if (!$this->conn || $this->conn->isDisconnected()) {
+            $resource = 'queue' . posix_getpid();
+            $this->conn = new Sharing_XMPP($this->plugin->host ?
+                                    $this->plugin->host :
+                                    $this->plugin->server,
+                                    $this->plugin->port,
+                                    $this->plugin->user,
+                                    $this->plugin->password,
+                                    $this->plugin->resource,
+                                    $this->plugin->server,
+                                    $this->plugin->debug ?
+                                    true : false,
+                                    $this->plugin->debug ?
+                                    XMPPHP_Log::LEVEL_VERBOSE :  null
+                                    );
+
+            if (!$this->conn) {
+                return false;
+            }
+            $this->conn->addEventHandler('message', 'handle_xmpp_message', $this);
+            $this->conn->addEventHandler('reconnect', 'handle_xmpp_reconnect', $this);
+            $this->conn->setReconnectTimeout(600);
+
+            $this->conn->autoSubscribe();
+            $this->conn->useEncryption($this->plugin->encryption);
+
+            try {
+                $this->conn->connect(true); // true = persistent connection
+            } catch (XMPPHP_Exception $e) {
+                common_log(LOG_ERR, $e->getMessage());
+                return false;
+            }
+
+            $this->conn->processUntil('session_start');
+            $this->send_presence(_m('Send me a message to post a notice'), 'available', null, 'available', 100);
+        }
+        return $this->conn;
+    }
+
+    function send_ping()
+    {
+        $this->connect();
+        if (!$this->conn || $this->conn->isDisconnected()) {
+            return false;
+        }
+        $now = time();
+        if (!isset($this->pingid)) {
+            $this->pingid = 0;
+        } else {
+            $this->pingid++;
+        }
+
+        common_log(LOG_DEBUG, "Sending ping #{$this->pingid}");
+               $this->conn->send("<iq from='{" . $this->plugin->daemon_screenname() . "}' to='{$this->plugin->server}' id='ping_{$this->pingid}' type='get'><ping xmlns='urn:xmpp:ping'/></iq>");
+        $this->lastping = $now;
+        return true;
+    }
+
+    function handle_xmpp_message(&$pl)
+    {
+        $this->plugin->enqueue_incoming_raw($pl);
+        return true;
+    }
+
+    /**
+     * Callback for Jabber reconnect event
+     * @param $pl
+     */
+    function handle_xmpp_reconnect(&$pl)
+    {
+        common_log(LOG_NOTICE, 'XMPP reconnected');
+
+        $this->conn->processUntil('session_start');
+        $this->send_presence(_m('Send me a message to post a notice'), 'available', null, 'available', 100);
+    }
+
+    /**
+     * sends a presence stanza on the XMPP network
+     *
+     * @param string $status   current status, free-form string
+     * @param string $show     structured status value
+     * @param string $to       recipient of presence, null for general
+     * @param string $type     type of status message, related to $show
+     * @param int    $priority priority of the presence
+     *
+     * @return boolean success value
+     */
+
+    function send_presence($status, $show='available', $to=null,
+                                  $type = 'available', $priority=null)
+    {
+        $this->connect();
+        if (!$this->conn || $this->conn->isDisconnected()) {
+            return false;
+        }
+        $this->conn->presence($status, $show, $to, $type, $priority);
+        return true;
+    }
+
+    /**
+     * sends a "special" presence stanza on the XMPP network
+     *
+     * @param string $type   Type of presence
+     * @param string $to     JID to send presence to
+     * @param string $show   show value for presence
+     * @param string $status status value for presence
+     *
+     * @return boolean success flag
+     *
+     * @see send_presence()
+     */
+
+    function special_presence($type, $to=null, $show=null, $status=null)
+    {
+        // FIXME: why use this instead of send_presence()?
+        $this->connect();
+        if (!$this->conn || $this->conn->isDisconnected()) {
+            return false;
+        }
+
+        $to     = htmlspecialchars($to);
+        $status = htmlspecialchars($status);
+
+        $out = "<presence";
+        if ($to) {
+            $out .= " to='$to'";
+        }
+        if ($type) {
+            $out .= " type='$type'";
+        }
+        if ($show == 'available' and !$status) {
+            $out .= "/>";
+        } else {
+            $out .= ">";
+            if ($show && ($show != 'available')) {
+                $out .= "<show>$show</show>";
+            }
+            if ($status) {
+                $out .= "<status>$status</status>";
+            }
+            $out .= "</presence>";
+        }
+        $this->conn->send($out);
+        return true;
+    }
+}
index a332e06b58bc3d270226c08976677d7b405b5f19..80c21bce581c3c0dcb65cc60b52f0985e4ef329c 100755 (executable)
@@ -39,9 +39,7 @@ $daemons = array();
 
 $daemons[] = INSTALLDIR.'/scripts/queuedaemon.php';
 
-if(common_config('xmpp','enabled')) {
-    $daemons[] = INSTALLDIR.'/scripts/xmppdaemon.php';
-}
+$daemons[] = INSTALLDIR.'/scripts/imdaemon.php';
 
 if (Event::handle('GetValidDaemons', array(&$daemons))) {
     foreach ($daemons as $daemon) {
diff --git a/scripts/imdaemon.php b/scripts/imdaemon.php
new file mode 100755 (executable)
index 0000000..4a2c942
--- /dev/null
@@ -0,0 +1,101 @@
+#!/usr/bin/env php
+<?php
+/*
+ * StatusNet - the distributed open-source microblogging tool
+ * Copyright (C) 2008, 2009, StatusNet, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
+
+$shortoptions = 'fi::a';
+$longoptions = array('id::', 'foreground', 'all');
+
+$helptext = <<<END_OF_IM_HELP
+Daemon script for receiving new notices from IM users.
+
+    -i --id           Identity (default none)
+    -a --all          Handle XMPP for all local sites
+                      (requires Stomp queue handler, status_network setup)
+    -f --foreground   Stay in the foreground (default background)
+
+END_OF_IM_HELP;
+
+require_once INSTALLDIR.'/scripts/commandline.inc';
+
+class ImDaemon extends SpawningDaemon
+{
+    protected $allsites = false;
+
+    function __construct($id=null, $daemonize=true, $threads=1, $allsites=false)
+    {
+        if ($threads != 1) {
+            // This should never happen. :)
+            throw new Exception("IMDaemon can must run single-threaded");
+        }
+        parent::__construct($id, $daemonize, $threads);
+        $this->allsites = $allsites;
+    }
+
+    function runThread()
+    {
+        common_log(LOG_INFO, 'Waiting to listen to IM connections and queues');
+
+        $master = new ImMaster($this->get_id());
+        $master->init($this->allsites);
+        $master->service();
+
+        common_log(LOG_INFO, 'terminating normally');
+
+        return $master->respawn ? self::EXIT_RESTART : self::EXIT_SHUTDOWN;
+    }
+
+}
+
+class ImMaster extends IoMaster
+{
+    /**
+     * Initialize IoManagers for the currently configured site
+     * which are appropriate to this instance.
+     */
+    function initManagers()
+    {
+        $classes = array();
+        if (Event::handle('StartImDaemonIoManagers', array(&$classes))) {
+            $qm = QueueManager::get();
+            $qm->setActiveGroup('im');
+            $classes[] = $qm;
+        }
+        Event::handle('EndImDaemonIoManagers', array(&$classes));
+        foreach ($classes as $class) {
+            $this->instantiate($class);
+        }
+    }
+}
+
+if (have_option('i', 'id')) {
+    $id = get_option_value('i', 'id');
+} else if (count($args) > 0) {
+    $id = $args[0];
+} else {
+    $id = null;
+}
+
+$foreground = have_option('f', 'foreground');
+$all = have_option('a') || have_option('--all');
+
+$daemon = new ImDaemon($id, !$foreground, 1, $all);
+
+$daemon->runOnce();
index c790f1f349715f04c77c958887490ab239418951..bc1230e64505ec2f23668a099ae4fbb767485b95 100755 (executable)
@@ -23,8 +23,8 @@
 SDIR=`dirname $0`
 DIR=`php $SDIR/getpiddir.php`
 
-for f in jabberhandler ombhandler publichandler smshandler pinghandler \
-        xmppconfirmhandler xmppdaemon twitterhandler facebookhandler \
+for f in ombhandler smshandler pinghandler \
+        twitterhandler facebookhandler \
         twitterstatusfetcher synctwitterfriends pluginhandler rsscloudhandler; do
 
        FILES="$DIR/$f.*.pid"
diff --git a/scripts/xmppdaemon.php b/scripts/xmppdaemon.php
deleted file mode 100755 (executable)
index 9302f0c..0000000
+++ /dev/null
@@ -1,108 +0,0 @@
-#!/usr/bin/env php
-<?php
-/*
- * StatusNet - the distributed open-source microblogging tool
- * Copyright (C) 2008, 2009, StatusNet, Inc.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
-
-$shortoptions = 'fi::a';
-$longoptions = array('id::', 'foreground', 'all');
-
-$helptext = <<<END_OF_XMPP_HELP
-Daemon script for receiving new notices from Jabber users.
-
-    -i --id           Identity (default none)
-    -a --all          Handle XMPP for all local sites
-                      (requires Stomp queue handler, status_network setup)
-    -f --foreground   Stay in the foreground (default background)
-
-END_OF_XMPP_HELP;
-
-require_once INSTALLDIR.'/scripts/commandline.inc';
-
-require_once INSTALLDIR . '/lib/jabber.php';
-
-class XMPPDaemon extends SpawningDaemon
-{
-    protected $allsites = false;
-
-    function __construct($id=null, $daemonize=true, $threads=1, $allsites=false)
-    {
-        if ($threads != 1) {
-            // This should never happen. :)
-            throw new Exception("XMPPDaemon can must run single-threaded");
-        }
-        parent::__construct($id, $daemonize, $threads);
-        $this->allsites = $allsites;
-    }
-
-    function runThread()
-    {
-        common_log(LOG_INFO, 'Waiting to listen to XMPP and queues');
-
-        $master = new XmppMaster($this->get_id());
-        $master->init($this->allsites);
-        $master->service();
-
-        common_log(LOG_INFO, 'terminating normally');
-
-        return $master->respawn ? self::EXIT_RESTART : self::EXIT_SHUTDOWN;
-    }
-
-}
-
-class XmppMaster extends IoMaster
-{
-    /**
-     * Initialize IoManagers for the currently configured site
-     * which are appropriate to this instance.
-     */
-    function initManagers()
-    {
-        if (common_config('xmpp', 'enabled')) {
-            $qm = QueueManager::get();
-            $qm->setActiveGroup('xmpp');
-            $this->instantiate($qm);
-            $this->instantiate(XmppManager::get());
-        }
-    }
-}
-
-// Abort immediately if xmpp is not enabled, otherwise the daemon chews up
-// lots of CPU trying to connect to unconfigured servers
-// @fixme do this check after we've run through the site list so we
-// don't have to find an XMPP site to start up when using --all mode.
-if (common_config('xmpp','enabled')==false) {
-    print "Aborting daemon - xmpp is disabled\n";
-    exit();
-}
-
-if (have_option('i', 'id')) {
-    $id = get_option_value('i', 'id');
-} else if (count($args) > 0) {
-    $id = $args[0];
-} else {
-    $id = null;
-}
-
-$foreground = have_option('f', 'foreground');
-$all = have_option('a') || have_option('--all');
-
-$daemon = new XMPPDaemon($id, !$foreground, 1, $all);
-
-$daemon->runOnce();