]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/filteringnoticestream.php
Merge branch 'master' into 1.0.x
[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($upstream)
53     {
54         $this->upstream = $upstream;
55     }
56
57     abstract function filter($notice);
58
59     function getNotices($offset, $limit, $sinceId=null, $maxId=null)
60     {
61         // "offset" is virtual; we have to get a lot
62         $total = $offset + $limit;
63
64         $filtered = array();
65
66         $startAt = 0;
67         $askFor  = $total;
68
69         // Keep going till we have $total notices in $notices array,
70         // or we get nothing from upstream.
71
72         $results = null;
73
74         do {
75
76             $raw = $this->upstream->getNotices($startAt, $askFor, $sinceId, $maxId);
77
78             $results = $raw->N;
79
80             if ($results == 0) {
81                 break;
82             }
83
84             while ($raw->fetch()) {
85                 if ($this->filter($raw)) {
86                     $filtered[] = clone($raw);
87                     if (count($filtered) >= $total) {
88                         break;
89                     }
90                 }
91             }
92
93             // XXX: make these smarter; factor hit rate into $askFor
94
95             $startAt += $askFor;
96             $askFor   = max($total - count($filtered), NOTICES_PER_PAGE);
97
98         } while (count($filtered) < $total && $results !== 0);
99
100         return new ArrayWrapper(array_slice($filtered, $offset, $limit));
101     }
102
103     function getNoticeIds($offset, $limit, $sinceId, $maxId)
104     {
105         $notices = $this->getNotices($offset, $limit, $sinceId, $maxId);
106
107         $ids = array();
108
109         while ($notices->fetch()) {
110             $ids[] = $notices->id;
111         }
112
113         return $ids;
114     }
115 }