ApiQueryBase: Fix addWhereFld for PHP 7.2
[lhc/web/wiklou.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 /**
24 * CommentStoreComment represents a comment stored by CommentStore. The fields
25 * should be considered read-only.
26 * @since 1.30
27 */
28 class CommentStoreComment {
29
30 /** @var int|null Comment ID, if any */
31 public $id;
32
33 /** @var string Text version of the comment */
34 public $text;
35
36 /** @var Message Message version of the comment. Might be a RawMessage */
37 public $message;
38
39 /** @var array|null Structured data of the comment */
40 public $data;
41
42 /**
43 * @private For use by CommentStore only. Use self::newUnsavedComment() instead.
44 * @param int|null $id
45 * @param string $text
46 * @param Message|null $message
47 * @param array|null $data
48 */
49 public function __construct( $id, $text, Message $message = null, array $data = null ) {
50 $this->id = $id;
51 $this->text = $text;
52 $this->message = $message ?: new RawMessage( '$1', [ $text ] );
53 $this->data = $data;
54 }
55
56 /**
57 * Create a new, unsaved CommentStoreComment
58 *
59 * @param string|Message|CommentStoreComment $comment Comment text or Message object.
60 * A CommentStoreComment is also accepted here, in which case it is returned unchanged.
61 * @param array|null $data Structured data to store. Keys beginning with '_' are reserved.
62 * Ignored if $comment is a CommentStoreComment.
63 * @return CommentStoreComment
64 */
65 public static function newUnsavedComment( $comment, array $data = null ) {
66 global $wgContLang;
67
68 if ( $comment instanceof CommentStoreComment ) {
69 return $comment;
70 }
71
72 if ( $data !== null ) {
73 foreach ( $data as $k => $v ) {
74 if ( substr( $k, 0, 1 ) === '_' ) {
75 throw new InvalidArgumentException( 'Keys in $data beginning with "_" are reserved' );
76 }
77 }
78 }
79
80 if ( $comment instanceof Message ) {
81 $message = clone $comment;
82 $text = $message->inLanguage( $wgContLang ) // Avoid $wgForceUIMsgAsContentMsg
83 ->setInterfaceMessageFlag( true )
84 ->text();
85 return new CommentStoreComment( null, $text, $message, $data );
86 } else {
87 return new CommentStoreComment( null, $comment, null, $data );
88 }
89 }
90 }