]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/conversationnoticestream.php
change default timeout setting for HTTPClient
[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 $scoped=null)
46     {
47         parent::__construct(new RawConversationNoticeStream($id),
48                             $scoped);
49     }
50 }
51
52 /**
53  * Notice stream for a conversation
54  *
55  * @category  Stream
56  * @package   StatusNet
57  * @author    Evan Prodromou <evan@status.net>
58  * @copyright 2011 StatusNet, Inc.
59  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
60  * @link      http://status.net/
61  */
62 class RawConversationNoticeStream extends NoticeStream
63 {
64     protected $id;
65
66     function __construct($id)
67     {
68         parent::__construct();
69         $this->id = $id;
70     }
71
72     function getNoticeIds($offset, $limit, $since_id=null, $max_id=null)
73     {
74         $notice = new Notice();
75         // SELECT
76         $notice->selectAdd();
77         $notice->selectAdd('id');
78
79         // WHERE
80         $notice->conversation = $this->id;
81         if (!empty($since_id)) {
82             $notice->whereAdd(sprintf('notice.id > %d', $since_id));
83         }
84         if (!empty($max_id)) {
85             $notice->whereAdd(sprintf('notice.id <= %d', $max_id));
86         }
87         if (!is_null($offset)) {
88             $notice->limit($offset, $limit);
89         }
90
91         self::filterVerbs($notice, $this->selectVerbs);
92
93         // ORDER BY
94         // currently imitates the previously used "_reverseChron" sorting
95         $notice->orderBy('notice.created DESC');
96         $notice->find();
97         return $notice->fetchAll('id');
98     }
99 }