Merge "Support multi-content diffs on Special:Undelete"
[lhc/web/wiklou.git] / includes / block / Restriction / PageRestriction.php
1 <?php
2 /**
3 * A Block restriction object of type 'Page'.
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 namespace MediaWiki\Block\Restriction;
24
25 class PageRestriction extends AbstractRestriction {
26
27 const TYPE = 'page';
28 const TYPE_ID = 1;
29
30 /**
31 * @var \Title
32 */
33 protected $title;
34
35 /**
36 * {@inheritdoc}
37 */
38 public function matches( \Title $title ) {
39 return $title->equals( $this->getTitle() );
40 }
41
42 /**
43 * {@inheritdoc}
44 */
45 public function getType() {
46 return self::TYPE;
47 }
48
49 /**
50 * {@inheritdoc}
51 */
52 public function getTypeId() {
53 return self::TYPE_ID;
54 }
55
56 /**
57 * Set the title.
58 *
59 * @param \Title $title
60 * @return self
61 */
62 public function setTitle( \Title $title ) {
63 $this->title = $title;
64
65 return $this;
66 }
67
68 /**
69 * Get Title.
70 *
71 * @return \Title|null
72 */
73 public function getTitle() {
74 if ( !$this->title ) {
75 $this->title = \Title::newFromID( $this->value );
76 }
77
78 return $this->title;
79 }
80
81 /**
82 * {@inheritdoc}
83 */
84 public static function newFromRow( \stdClass $row ) {
85 $restriction = parent::newFromRow( $row );
86
87 // If the page_namespace and the page_title were provided, add the title to
88 // the restriction.
89 if ( isset( $row->page_namespace ) && isset( $row->page_title ) ) {
90 // Clone the row so it is not mutated.
91 $row = clone $row;
92 $row->page_id = $row->ir_value;
93 $title = \Title::newFromRow( $row );
94 $restriction->setTitle( $title );
95 }
96
97 return $restriction;
98 }
99 }