]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Removed Inbox from core (unused since 4b2a66ed29091209c05d74755e42f96265c846ce)
authorMikael Nordfeldth <mmn@hethane.se>
Thu, 6 Mar 2014 03:36:00 +0000 (04:36 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Thu, 6 Mar 2014 03:46:29 +0000 (04:46 +0100)
Added the following FIXME:
How should a Twitter user get their Inbox filled with foreign tweets?

Every imported Twitter user has a profile in the Profile table, so we
could setup a Subscription entry for each of those, meaning they get
collected in the InboxNoticeStream... But this would mean a lot of
unnecessary entries and listings that generally just point to the
locked down Twitter service.

Let's figure out a good relation so we can connect any profile to any
imported foreign notice, so it shows up in the "all" feed.

classes/Inbox.php [deleted file]
classes/Notice.php
classes/User.php
db/core.php
lib/distribqueuehandler.php
lib/inboxnoticestream.php
lib/inboxtagcloudsection.php
plugins/TwitterBridge/lib/tweetinqueuehandler.php
plugins/TwitterBridge/scripts/streamtest.php
scripts/upgrade.php

diff --git a/classes/Inbox.php b/classes/Inbox.php
deleted file mode 100644 (file)
index 429d2ae..0000000
+++ /dev/null
@@ -1,128 +0,0 @@
-<?php
-/**
- * StatusNet, the distributed open-source microblogging tool
- *
- * Data class for user location 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    Evan Prodromou <evan@status.net>
- * @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/
- */
-
-class Inbox extends Managed_DataObject {
-    const BOXCAR = 128;
-    const MAX_NOTICES = 1024;
-
-    ###START_AUTOCODE
-    /* the code below is auto generated do not remove the above tag */
-
-    public $__table = 'inbox';                           // table name
-    public $user_id;                         // int(4)  primary_key not_null
-    public $notice_ids;                      // blob
-
-    /* the code above is auto generated do not remove the tag below */
-    ###END_AUTOCODE
-
-    public static function schemaDef()
-    {
-        return array(
-            'fields' => array(
-                'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user receiving the notice'),
-                'notice_ids' => array('type' => 'blob', 'description' => 'packed list of notice ids'),
-            ),
-            'primary key' => array('user_id'),
-            'foreign keys' => array(
-                'inbox_user_id_fkey' => array('user', array('user_id' => 'id')),
-            ),
-        );
-    }
-
-    /**
-     * Append the given notice to the given user's inbox.
-     * Caching updates are managed for the inbox itself.
-     *
-     * If the notice is already in this inbox, the second
-     * add will be silently dropped.
-     *
-     * @param int @user_id
-     * @param int $notice_id
-     * @return boolean success
-     */
-    static function insertNotice(Notice $notice, $user_id)
-    {
-        // Going straight to the DB rather than trusting our caching
-        // during an update. Note: not using DB_DataObject::staticGet,
-        // which is unsafe to use directly (in-process caching causes
-        // memory leaks, which accumulate in queue processes).
-        $inbox = new Inbox();
-        $inbox->get('user_id', $user_id);
-
-        if (empty($inbox)) {
-            return false;
-        }
-
-        $ids = $inbox->unpack();
-        if (in_array(intval($notice->id), $ids)) {
-            // Already in there, we probably re-ran some inbox adds
-            // due to an error. Skip the dupe silently.
-            return true;
-        }
-
-        $result = $inbox->query(sprintf('UPDATE inbox '.
-                                        'SET notice_ids = concat(cast(0x%08x as binary(4)), '.
-                                        'SUBSTR(notice_ids, 1, %d)) '.
-                                        'WHERE user_id = %d',
-                                        $notice->id,
-                                        4 * (self::MAX_NOTICES - 1),
-                                        $user_id));
-
-        if ($result !== false) {
-            self::blow('inbox:user_id:%d', $user_id);
-        }
-
-        return $result;
-    }
-
-    static function bulkInsert(Notice $notice, array $user_ids)
-    {
-        foreach ($user_ids as $user_id)
-        {
-            self::insertNotice($notice, $user_id);
-        }
-    }
-
-    /**
-     * Saves a list of integer notice_ids into a packed blob in this object.
-     * @param array $ids list of integer notice_ids
-     */
-    function pack(array $ids)
-    {
-        $this->notice_ids = call_user_func_array('pack', array_merge(array('N*'), $ids));
-    }
-
-    /**
-     * @return array of integer notice_ids
-     */
-    function unpack()
-    {
-        return unpack('N*', $this->notice_ids);
-    }
-}
index f0a7a85bff3ab64e85baee4b1e07c968413ca60f..3fea53108160829b9ab1c23bdf4e25093b80b3f7 100644 (file)
@@ -1064,33 +1064,6 @@ class Notice extends Managed_DataObject
         return $ni;
     }
 
-    /**
-     * Adds this notice to the inboxes of each local user who should receive
-     * it, based on author subscriptions, group memberships, and @-replies.
-     *
-     * Warning: running a second time currently will make items appear
-     * multiple times in users' inboxes.
-     *
-     * @fixme make more robust against errors
-     * @fixme break up massive deliveries to smaller background tasks
-     *
-     * @param array $groups optional list of Group objects;
-     *              if left empty, will be loaded from group_inbox records
-     * @param array $recipient optional list of reply profile ids
-     *              if left empty, will be loaded from reply records
-     */
-    function addToInboxes(array $groups=null, array $recipients=null)
-    {
-        $ni = $this->whoGets($groups, $recipients);
-
-        $ids = array_keys($ni);
-
-        // Bulk insert
-        Inbox::bulkInsert($this, $ids);
-
-        return;
-    }
-
     function getSubscribedUsers()
     {
         $user = new User();
index 540965209d9b4a1b9863cbce6cfd6a08b6c16ac7..2929e1d3325ea9f98cb03f4c7c0178a42f303cf6 100644 (file)
@@ -325,20 +325,6 @@ class User extends Managed_DataObject
                 return false;
             }
 
-            // Everyone gets an inbox
-
-            $inbox = new Inbox();
-
-            $inbox->user_id = $user->id;
-            $inbox->notice_ids = '';
-
-            $result = $inbox->insert();
-
-            if (!$result) {
-                common_log_db_error($inbox, 'INSERT', __FILE__);
-                return false;
-            }
-
             // Everyone is subscribed to themself
 
             $subscription = new Subscription();
index b820b3971ea6271068b60a1055e4036955eed5d2..5a420cc2b3f71a3e9869458fb19b115752a22511 100644 (file)
@@ -80,7 +80,6 @@ $classes = array('Schema_version',
                  'Location_namespace',
                  'Login_token',
                  'User_location_prefs',
-                 'Inbox',
                  'User_im_prefs',
                  'Conversation',
                  'Local_group',
index a7519c1d50729465000f6155f61d31f20e2bbe5f..4a671fe802d9f81c2911d4500f575e8024088bb0 100644 (file)
@@ -58,19 +58,11 @@ class DistribQueueHandler
      * If this function indicates failure, a warning will be logged
      * and the item is placed back in the queue to be re-run.
      *
-     * @fixme addToInboxes is known to fail sometimes with large recipient sets
-     *
      * @param Notice $notice
      * @return boolean true on success, false on failure
      */
     function handle($notice)
     {
-        try {
-            $notice->addToInboxes();
-        } catch (Exception $e) {
-            $this->logit($notice, $e);
-        }
-
         try {
             $notice->sendReplyNotifications();
         } catch (Exception $e) {
index 0eb791d70a45823a140629e235b20b75d4ccf26f..a8633314d55a2834ab2ea425d7157bec14aca672 100644 (file)
@@ -57,8 +57,7 @@ class InboxNoticeStream extends ScopingNoticeStream
         if ($scoped === null) {
             $scoped = Profile::current();
         }
-        // Note: we don't use CachingNoticeStream since RawInboxNoticeStream
-        // uses Inbox::getKV(), which is cached.
+        // FIXME: we don't use CachingNoticeStream - but maybe we should?
         parent::__construct(new RawInboxNoticeStream($target), $scoped);
     }
 }
index 05c688fc14eca432cf88bbdb5ad998dd5ebcd6f5..d19f76366d6f09d072f8f04218d83d0c4f465d54 100644 (file)
@@ -42,6 +42,8 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
  */
 class InboxTagCloudSection extends TagCloudSection
 {
+    const MAX_NOTICES = 1024;   // legacy value for "Inbox" table size when that existed
+
     protected $target = null;
 
     function __construct($out=null, Profile $target)
@@ -60,52 +62,42 @@ class InboxTagCloudSection extends TagCloudSection
     {
         $profile = Profile::current();
 
-        $keypart = sprintf('Inbox:notice_tag:%d:%d', $this->target,
-                $profile instanceof Profile ? $profile->id : 0);
+        $stream = new InboxNoticeStream($this->target, $profile);
 
-        $tag = Memcached_DataObject::cacheGet($keypart);
+        $ids = $stream->getNoticeIds(0, self::MAX_NOTICES, null, null);
 
-        if ($tag === false) {
+        if (empty($ids)) {
+            $tag = array();
+        } else {
+            $weightexpr = common_sql_weight('notice_tag.created', common_config('tag', 'dropoff'));
+            // @fixme should we use the cutoff too? Doesn't help with indexing per-user.
 
-            $stream = new InboxNoticeStream($this->target, $profile);
+            $qry = 'SELECT notice_tag.tag, '.
+                $weightexpr . ' as weight ' .
+                'FROM notice_tag JOIN notice ' .
+                'ON notice_tag.notice_id = notice.id ' .
+                'WHERE notice.id in (' . implode(',', $ids) . ')'.
+                'GROUP BY notice_tag.tag ' .
+                'ORDER BY weight DESC ';
 
-            $ids = $stream->getNoticeIds(0, Inbox::MAX_NOTICES, null, null);
+            $limit = TAGS_PER_SECTION;
+            $offset = 0;
 
-            if (empty($ids)) {
-                $tag = array();
+            if (common_config('db','type') == 'pgsql') {
+                $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
             } else {
-                $weightexpr = common_sql_weight('notice_tag.created', common_config('tag', 'dropoff'));
-                // @fixme should we use the cutoff too? Doesn't help with indexing per-user.
-
-                $qry = 'SELECT notice_tag.tag, '.
-                    $weightexpr . ' as weight ' .
-                    'FROM notice_tag JOIN notice ' .
-                    'ON notice_tag.notice_id = notice.id ' .
-                    'WHERE notice.id in (' . implode(',', $ids) . ')'.
-                    'GROUP BY notice_tag.tag ' .
-                    'ORDER BY weight DESC ';
-
-                $limit = TAGS_PER_SECTION;
-                $offset = 0;
-
-                if (common_config('db','type') == 'pgsql') {
-                    $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
-                } else {
-                    $qry .= ' LIMIT ' . $offset . ', ' . $limit;
-                }
+                $qry .= ' LIMIT ' . $offset . ', ' . $limit;
+            }
 
-                $t = new Notice_tag();
+            $t = new Notice_tag();
 
-                $t->query($qry);
+            $t->query($qry);
 
-                $tag = array();
+            $tag = array();
 
-                while ($t->fetch()) {
-                    $tag[] = clone($t);
-                }
+            while ($t->fetch()) {
+                $tag[] = clone($t);
             }
-
-            Memcached_DataObject::cacheSet($keypart, $tag, 3600);
         }
 
         return new ArrayWrapper($tag);
index cc4d2f47d4be2838a57e0bd65884312d33128f99..3aa9e5817d15ef5626c03d1a1d2ae39223153df3 100644 (file)
@@ -55,9 +55,8 @@ class TweetInQueueHandler extends QueueHandler
             if ($flink instanceof Foreign_link) {
                 common_log(LOG_DEBUG, "TweetInQueueHandler - Got flink so add notice ".
                            $notice->id." to inbox ".$flink->user_id);
-                // @fixme this should go through more regular channels?
-                Inbox::insertNotice($notice, $flink->user_id);
-            }else {
+                // FIXME: How should a Twitter user get their Inbox filled with foreign tweets?
+            } else {
                common_log(LOG_DEBUG, "TweetInQueueHandler - No flink found for foreign user ".$receiver);
             }
         }
index c42fa38f10d07f6bddd07cacf6b5e4a65b2582da..4e8340bb3f7c9a27473a22d3ccf4a67458446653 100644 (file)
@@ -170,11 +170,7 @@ $stream->hookEvent('status', function($data, $context) {
         $importer = new TwitterImport();
         printf("\timporting...");
         $notice = $importer->importStatus($data);
-        if ($notice instanceof Notice) {
-            global $myuser;
-            Inbox::insertNotice($notice, $myuser->id);
-            printf(" %s\n", $notice->id);
-        } else {
+        if (!$notice instanceof Notice) {
             printf(" FAIL\n");
         }
     }
index a6c7ec40ff4b3015d26557a13a9d6243b83d8294..9ae95e2562cf9e047fd54f51bca77e4b778b72f3 100644 (file)
@@ -42,7 +42,6 @@ function main()
         fixupNoticeRendered();
         fixupNoticeConversation();
         initConversation();
-        initInbox();
         fixupGroupURI();
 
         initGroupProfileId();
@@ -198,50 +197,6 @@ function initConversation()
     printfnq("DONE.\n");
 }
 
-function initInbox()
-{
-    printfnq("Ensuring all users have an inbox...");
-
-    $user = new User();
-    $user->whereAdd('not exists (select user_id from inbox where user_id = user.id)');
-    $user->orderBy('id');
-
-    if ($user->find()) {
-
-        while ($user->fetch()) {
-
-            try {
-                $notice = new Notice();
-
-                $notice->selectAdd();
-                $notice->selectAdd('id');
-                $notice->joinAdd(array('profile_id', 'subscription:subscribed'));
-                $notice->whereAdd('subscription.subscriber = ' . $user->id);
-                $notice->whereAdd('notice.created >= subscription.created');
-
-                $ids = array();
-
-                if ($notice->find()) {
-                    while ($notice->fetch()) {
-                        $ids[] = $notice->id;
-                    }
-                }
-
-                $notice = null;
-
-                $inbox = new Inbox();
-                $inbox->user_id = $user->id;
-                $inbox->pack($ids);
-                $inbox->insert();
-            } catch (Exception $e) {
-                printv("Error initializing inbox: " . $e->getMessage());
-            }
-        }
-    }
-
-    printfnq("DONE.\n");
-}
-
 function initGroupProfileId()
 {
     printfnq("Ensuring all User_group entries have a Profile and profile_id...");