]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Conversation.php
3bad400174f116d01e345d718f6ffba231c4ddd5
[quix0rs-gnu-social.git] / classes / Conversation.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Data class for Conversations
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Data
23  * @package   StatusNet
24  * @author    Zach Copley <zach@status.net>
25  * @author    Mikael Nordfeldth <mmn@hethane.se>
26  * @copyright 2010 StatusNet Inc.
27  * @copyright 2009-2014 Free Software Foundation, Inc http://www.fsf.org
28  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
29  * @link      http://status.net/
30  */
31
32 if (!defined('GNUSOCIAL')) { exit(1); }
33
34 class Conversation extends Managed_DataObject
35 {
36     public $__table = 'conversation';        // table name
37     public $id;                              // int(4)  primary_key not_null
38     public $uri;                             // varchar(191)  unique_key   not 255 because utf8mb4 takes more space
39     public $created;                         // datetime   not_null
40     public $modified;                        // timestamp   not_null default_CURRENT_TIMESTAMP
41
42     public static function schemaDef()
43     {
44         return array(
45             'fields' => array(
46                 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'Unique identifier, (again) unrelated to notice id since 2016-01-06'),
47                 'uri' => array('type' => 'varchar', 'not null'=>true, 'length' => 191, 'description' => 'URI of the conversation'),
48                 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
49                 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
50             ),
51             'primary key' => array('id'),
52             'unique keys' => array(
53                 'conversation_uri_key' => array('uri'),
54             ),
55         );
56     }
57
58     /**
59      * Factory method for creating a new conversation.
60      *
61      * Use this for locally initiated conversations. Remote notices should
62      * preferrably supply their own conversation URIs in the OStatus feed.
63      *
64      * @return Conversation the new conversation DO
65      */
66     static function create($uri=null, $created=null)
67     {
68         // Be aware that the Notice does not have an id yet since it's not inserted!
69         $conv = new Conversation();
70         $conv->created = $created ?: common_sql_now();
71         $conv->uri = $uri ?: sprintf('%s%s=%s:%s=%s',
72                              TagURI::mint(),
73                              'objectType', 'thread',
74                              'nonce', common_random_hexstr(8));
75         // This insert throws exceptions on failure
76         $conv->insert();
77
78         return $conv;
79     }
80
81     static function noticeCount($id)
82     {
83         $keypart = sprintf('conversation:notice_count:%d', $id);
84
85         $cnt = self::cacheGet($keypart);
86
87         if ($cnt !== false) {
88             return $cnt;
89         }
90
91         $notice               = new Notice();
92         $notice->conversation = $id;
93         $notice->whereAddIn('verb', array(ActivityVerb::POST, ActivityUtils::resolveUri(ActivityVerb::POST, true)), $notice->columnType('verb'));
94         $cnt                  = $notice->count();
95
96         self::cacheSet($keypart, $cnt);
97
98         return $cnt;
99     }
100
101     static public function getUrlFromNotice(Notice $notice, $anchor=true)
102     {
103         $conv = Conversation::getByID($notice->conversation);
104         return $conv->getUrl($anchor ? $notice->getID() : null);
105     }
106
107     public function getUri()
108     {
109         return $this->uri;
110     }
111
112     public function getUrl($noticeId=null)
113     {
114         // FIXME: the URL router should take notice-id as an argument...
115         return common_local_url('conversation', array('id' => $this->getID())) .
116                 ($noticeId===null ? '' : "#notice-{$noticeId}");
117     }
118
119     // FIXME: ...will 500 ever be too low? Taken from ConversationAction::MAX_NOTICES
120     public function getNotices(Profile $scoped=null, $offset=0, $limit=500)
121     {
122         $stream = new ConversationNoticeStream($this->getID(), $scoped);
123         $notices = $stream->getNotices($offset, $limit);
124         return $notices;
125     }
126
127     public function insert()
128     {
129         $result = parent::insert();
130         if ($result === false) {
131             common_log_db_error($this, 'INSERT', __FILE__);
132             throw new ServerException(_('Failed to insert Conversation into database'));
133         }
134         return $result;
135     }
136 }