3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
21 use MediaWiki\Category\CategoryViewer
;
22 use MediaWiki\Title\Title
;
23 use Wikimedia\LightweightObjectStore\ExpirationAwareness
;
26 * Special handling for category description pages.
28 * This displays category members: subcategories, pages, and files categorised here.
30 * @method WikiCategoryPage getPage() Set by overwritten newPage() in this class
32 class CategoryPage
extends Article
{
33 /** @var string Subclasses can change this to override the viewer class. */
34 protected $mCategoryViewerClass = CategoryViewer
::class;
38 * @return WikiCategoryPage
40 protected function newPage( Title
$title ) {
41 // Overload mPage with a category-specific page
42 return new WikiCategoryPage( $title );
45 public function view() {
46 $request = $this->getContext()->getRequest();
47 $diff = $request->getVal( 'diff' );
49 if ( $diff !== null && $this->isDiffOnlyView() ) {
54 if ( !$this->getHookRunner()->onCategoryPageView( $this ) ) {
58 $title = $this->getTitle();
59 if ( $title->inNamespace( NS_CATEGORY
) ) {
60 $this->openShowCategory();
65 if ( $title->inNamespace( NS_CATEGORY
) ) {
66 $this->closeShowCategory();
69 # Use adaptive TTLs for CDN so delayed/failed purges are noticed less often
70 $outputPage = $this->getContext()->getOutput();
71 $outputPage->adaptCdnTTL(
72 $this->getPage()->getTouched(),
73 ExpirationAwareness
::TTL_MINUTE
77 public function openShowCategory() {
81 public function closeShowCategory() {
82 // Use these as defaults for back compat --catrope
83 $request = $this->getContext()->getRequest();
84 $oldFrom = $request->getVal( 'from' );
85 $oldUntil = $request->getVal( 'until' );
87 $reqArray = $request->getQueryValues();
90 foreach ( [ 'page', 'subcat', 'file' ] as $type ) {
91 $from[$type] = $request->getVal( "{$type}from", $oldFrom );
92 $until[$type] = $request->getVal( "{$type}until", $oldUntil );
94 // Do not want old-style from/until propagating in nav links.
95 if ( !isset( $reqArray["{$type}from"] ) && isset( $reqArray["from"] ) ) {
96 $reqArray["{$type}from"] = $reqArray["from"];
98 if ( !isset( $reqArray["{$type}to"] ) && isset( $reqArray["to"] ) ) {
99 $reqArray["{$type}to"] = $reqArray["to"];
103 unset( $reqArray["from"] );
104 unset( $reqArray["to"] );
106 $viewer = new $this->mCategoryViewerClass(
113 $out = $this->getContext()->getOutput();
114 $out->addHTML( $viewer->getHTML() );
115 $this->addHelpLink( 'Help:Categories' );