]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/filteringnoticestream.php
*** Privacy Leak fixed: ***
[quix0rs-gnu-social.git] / lib / filteringnoticestream.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * A notice stream that filters its upstream content
7  * 
8  * PHP version 5
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU Affero General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Affero General Public License for more details.
19  *
20  * You should have received a copy of the GNU Affero General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  *
23  * @category  Stream
24  * @package   StatusNet
25  * @author    Evan Prodromou <evan@status.net>
26  * @copyright 2011 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET')) {
32     // This check helps protect against security problems;
33     // your code file can't be executed directly from the web.
34     exit(1);
35 }
36
37 /**
38  * A class for presenting a filtered notice stream based on an upstream stream
39  *
40  * @category  Stream
41  * @package   StatusNet
42  * @author    Evan Prodromou <evan@status.net>
43  * @copyright 2011 StatusNet, Inc.
44  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
45  * @link      http://status.net/
46  */
47
48 abstract class FilteringNoticeStream extends NoticeStream
49 {
50     protected $upstream;
51
52     function __construct(NoticeStream $upstream)
53     {
54         $this->upstream = $upstream;
55     }
56
57     /**
58      * @return boolean  true if we allow it, false if we deny it
59      */
60     abstract protected function filter(Notice $notice);
61
62     function getNoticeIds($offset, $limit, $since_id, $max_id)
63     {
64         // "offset" is virtual; we have to get a lot
65         $total = $offset + $limit;
66
67         $filtered = array();
68
69         $startAt = 0;
70         $askFor  = $total;
71
72         // Keep going till we have $total notices in $notices array,
73         // or we get nothing from upstream.
74
75         $results = null;
76         $round = 0;
77
78         do {
79             $raw = $this->upstream->getNotices($startAt, $askFor, $since_id, $max_id);
80
81             $results = $raw->N;
82             if ($results == 0) {
83                 break;
84             }
85
86             $notices = $raw->fetchAll();
87             $this->prefill($notices);
88             foreach ($notices as $notice) {
89                 if ($this->filter($notice)) {
90                     $filtered[] = $notice->id;
91                     if (count($filtered) >= $total) {
92                         break;
93                     }
94                 }
95             }
96
97             // XXX: make these smarter; factor hit rate into $askFor
98             $startAt += $askFor;
99             $hits = count($filtered);
100             $lastAsk = $askFor;
101
102             if ($hits === 0) {
103                 $askFor = max(min(2 * $askFor, NOTICES_PER_PAGE * 50), NOTICES_PER_PAGE);
104             } else {
105                 $askFor = max(min(intval(ceil(($total - $hits)*$startAt/$hits)), NOTICES_PER_PAGE * 50), NOTICES_PER_PAGE);
106             }
107
108             $round++;
109         } while (count($filtered) < $total && $results >= $lastAsk);
110
111         return array_slice(array_values($filtered), $offset, $limit);
112     }
113
114     function prefill($notices)
115     {
116         return;
117     }
118 }