3 * Special handling for category description pages.
4 * Modelled after ImagePage.php.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
25 * Special handling for category description pages, showing pages,
26 * subcategories and file that belong to the category
28 class CategoryPage
extends Article
{
29 # Subclasses can change this to override the viewer class.
30 protected $mCategoryViewerClass = 'CategoryViewer';
33 * @var WikiCategoryPage
39 * @return WikiCategoryPage
41 protected function newPage( Title
$title ) {
42 // Overload mPage with a category-specific page
43 return new WikiCategoryPage( $title );
47 $request = $this->getContext()->getRequest();
48 $diff = $request->getVal( 'diff' );
49 $diffOnly = $request->getBool( 'diffonly',
50 $this->getContext()->getUser()->getOption( 'diffonly' ) );
52 if ( $diff !== null && $diffOnly ) {
57 // Avoid PHP 7.1 warning of passing $this by reference
58 $categoryPage = $this;
60 if ( !Hooks
::run( 'CategoryPageView', [ &$categoryPage ] ) ) {
64 $title = $this->getTitle();
65 if ( $title->inNamespace( NS_CATEGORY
) ) {
66 $this->openShowCategory();
71 if ( $title->inNamespace( NS_CATEGORY
) ) {
72 $this->closeShowCategory();
75 # Use adaptive TTLs for CDN so delayed/failed purges are noticed less often
76 $outputPage = $this->getContext()->getOutput();
77 $outputPage->adaptCdnTTL( $this->mPage
->getTouched(), IExpiringStore
::TTL_MINUTE
);
80 function openShowCategory() {
84 function closeShowCategory() {
85 // Use these as defaults for back compat --catrope
86 $request = $this->getContext()->getRequest();
87 $oldFrom = $request->getVal( 'from' );
88 $oldUntil = $request->getVal( 'until' );
90 $reqArray = $request->getValues();
93 foreach ( [ 'page', 'subcat', 'file' ] as $type ) {
94 $from[$type] = $request->getVal( "{$type}from", $oldFrom );
95 $until[$type] = $request->getVal( "{$type}until", $oldUntil );
97 // Do not want old-style from/until propagating in nav links.
98 if ( !isset( $reqArray["{$type}from"] ) && isset( $reqArray["from"] ) ) {
99 $reqArray["{$type}from"] = $reqArray["from"];
101 if ( !isset( $reqArray["{$type}to"] ) && isset( $reqArray["to"] ) ) {
102 $reqArray["{$type}to"] = $reqArray["to"];
106 unset( $reqArray["from"] );
107 unset( $reqArray["to"] );
109 $viewer = new $this->mCategoryViewerClass(
110 $this->getContext()->getTitle(),
116 $out = $this->getContext()->getOutput();
117 $out->addHTML( $viewer->getHTML() );
118 $this->addHelpLink( 'Help:Categories' );