]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blob - includes/CommentStoreComment.php
MediaWiki 1.30.2
[autoinstalls/mediawiki.git] / includes / CommentStoreComment.php
1 <?php
2 /**
3  * Value object for CommentStore
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  * http://www.gnu.org/copyleft/gpl.html
19  *
20  * @file
21  */
22
23 use Wikimedia\Rdbms\IDatabase;
24
25 /**
26  * CommentStoreComment represents a comment stored by CommentStore. The fields
27  * should be considered read-only.
28  * @since 1.30
29  */
30 class CommentStoreComment {
31
32         /** @var int|null Comment ID, if any */
33         public $id;
34
35         /** @var string Text version of the comment */
36         public $text;
37
38         /** @var Message Message version of the comment. Might be a RawMessage */
39         public $message;
40
41         /** @var array|null Structured data of the comment */
42         public $data;
43
44         /**
45          * @private For use by CommentStore only. Use self::newUnsavedComment() instead.
46          * @param int|null $id
47          * @param string $text
48          * @param Message|null $message
49          * @param array|null $data
50          */
51         public function __construct( $id, $text, Message $message = null, array $data = null ) {
52                 $this->id = $id;
53                 $this->text = $text;
54                 $this->message = $message ?: new RawMessage( '$1', [ $text ] );
55                 $this->data = $data;
56         }
57
58         /**
59          * Create a new, unsaved CommentStoreComment
60          *
61          * @param string|Message|CommentStoreComment $comment Comment text or Message object.
62          *  A CommentStoreComment is also accepted here, in which case it is returned unchanged.
63          * @param array|null $data Structured data to store. Keys beginning with '_' are reserved.
64          *  Ignored if $comment is a CommentStoreComment.
65          * @return CommentStoreComment
66          */
67         public static function newUnsavedComment( $comment, array $data = null ) {
68                 global $wgContLang;
69
70                 if ( $comment instanceof CommentStoreComment ) {
71                         return $comment;
72                 }
73
74                 if ( $data !== null ) {
75                         foreach ( $data as $k => $v ) {
76                                 if ( substr( $k, 0, 1 ) === '_' ) {
77                                         throw new InvalidArgumentException( 'Keys in $data beginning with "_" are reserved' );
78                                 }
79                         }
80                 }
81
82                 if ( $comment instanceof Message ) {
83                         $message = clone $comment;
84                         $text = $message->inLanguage( $wgContLang ) // Avoid $wgForceUIMsgAsContentMsg
85                                 ->setInterfaceMessageFlag( true )
86                                 ->text();
87                         return new CommentStoreComment( null, $text, $message, $data );
88                 } else {
89                         return new CommentStoreComment( null, $comment, null, $data );
90                 }
91         }
92 }