]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/filenoticestream.php
Merge remote-tracking branch 'mainline/1.0.x' into people_tags_rebase
[quix0rs-gnu-social.git] / lib / filenoticestream.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * Stream of notices that reference an URL
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 class FileNoticeStream extends ScopingNoticeStream
38 {
39     function __construct($file)
40     {
41         parent::__construct(new CachingNoticeStream(new RawFileNoticeStream($file),
42                                                     'file:notice-ids:'.$this->url));
43     }
44 }
45
46 /**
47  * Raw stream for a file
48  *
49  * @category  Stream
50  * @package   StatusNet
51  * @author    Evan Prodromou <evan@status.net>
52  * @copyright 2011 StatusNet, Inc.
53  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
54  * @link      http://status.net/
55  */
56
57 class RawFileNoticeStream extends NoticeStream
58 {
59     protected $file = null;
60
61     function __construct($file)
62     {
63         $this->file = $file;
64     }
65
66     /**
67      * Stream of notices linking to this URL
68      *
69      * @param integer $offset   Offset to show; default is 0
70      * @param integer $limit    Limit of notices to show
71      * @param integer $since_id Since this notice
72      * @param integer $max_id   Before this notice
73      *
74      * @return array ids of notices that link to this file
75      */
76     function getNoticeIds($offset, $limit, $since_id, $max_id)
77     {
78         $f2p = new File_to_post();
79
80         $f2p->selectAdd();
81         $f2p->selectAdd('post_id');
82
83         $f2p->file_id = $this->file->id;
84
85         Notice::addWhereSinceId($f2p, $since_id, 'post_id', 'modified');
86         Notice::addWhereMaxId($f2p, $max_id, 'post_id', 'modified');
87
88         $f2p->orderBy('modified DESC, post_id DESC');
89
90         if (!is_null($offset)) {
91             $f2p->limit($offset, $limit);
92         }
93
94         $ids = array();
95
96         if ($f2p->find()) {
97             while ($f2p->fetch()) {
98                 $ids[] = $f2p->post_id;
99             }
100         }
101
102         return $ids;
103     }
104 }