]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/conversationnoticestream.php
common_fake_local_fancy_url to remove index.php/ from a local URL
[quix0rs-gnu-social.git] / lib / conversationnoticestream.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * Notice stream for a conversation
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  NoticeStream
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('GNUSOCIAL')) { exit(1); }
32
33 /**
34  * Notice stream for a conversation
35  *
36  * @category  Stream
37  * @package   StatusNet
38  * @author    Evan Prodromou <evan@status.net>
39  * @copyright 2011 StatusNet, Inc.
40  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
41  * @link      http://status.net/
42  */
43 class ConversationNoticeStream extends ScopingNoticeStream
44 {
45     function __construct($id, $profile = -1)
46     {
47         if (is_int($profile) && $profile == -1) {
48             $profile = Profile::current();
49         }
50
51         parent::__construct(new RawConversationNoticeStream($id),
52                             $profile);
53     }
54 }
55
56 /**
57  * Notice stream for a conversation
58  *
59  * @category  Stream
60  * @package   StatusNet
61  * @author    Evan Prodromou <evan@status.net>
62  * @copyright 2011 StatusNet, Inc.
63  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
64  * @link      http://status.net/
65  */
66 class RawConversationNoticeStream extends NoticeStream
67 {
68     protected $id;
69
70     function __construct($id)
71     {
72         parent::__construct();
73         $this->id = $id;
74     }
75
76     function getNoticeIds($offset, $limit, $since_id=null, $max_id=null)
77     {
78         $notice = new Notice();
79         // SELECT
80         $notice->selectAdd();
81         $notice->selectAdd('id');
82
83         // WHERE
84         $notice->conversation = $this->id;
85         if (!empty($since_id)) {
86             $notice->whereAdd(sprintf('notice.id > %d', $since_id));
87         }
88         if (!empty($max_id)) {
89             $notice->whereAdd(sprintf('notice.id <= %d', $max_id));
90         }
91         if (!is_null($offset)) {
92             $notice->limit($offset, $limit);
93         }
94
95         self::filterVerbs($notice, $this->selectVerbs);
96
97         // ORDER BY
98         // currently imitates the previously used "_reverseChron" sorting
99         $notice->orderBy('notice.created DESC');
100         $notice->find();
101         return $notice->fetchAll('id');
102     }
103 }