DynamicPageList3/classes/db/CreateTemplateUpdateMaintenance.php

80 lines
1.9 KiB
PHP
Raw Normal View History

2020-11-22 20:01:28 +00:00
<?php
/**
* DynamicPageList3
* CreateTemplateUpdateMaintenance
*
2021-01-23 20:32:43 +00:00
* @license GPL-2.0-or-later
* @package DynamicPageList3
2020-11-22 20:01:28 +00:00
*
**/
namespace DPL\DB;
use LoggedUpdateMaintenance;
use Title;
use WikiPage;
use ContentHandler;
2021-01-22 21:25:34 +00:00
$IP = getenv( 'MW_INSTALL_PATH' );
if ( $IP === false ) {
$IP = __DIR__ . '/../../../..';
}
2021-01-23 20:27:50 +00:00
2021-01-22 21:25:34 +00:00
require_once "$IP/maintenance/Maintenance.php";
2020-11-22 20:01:28 +00:00
/*
* Creates the DPL template when updating.
*/
class CreateTemplateUpdateMaintenance extends LoggedUpdateMaintenance {
2021-01-23 20:27:50 +00:00
public function __construct() {
parent::__construct();
$this->addDescription( 'Handle inserting DPL\'s necessary template for content inclusion.' );
}
2020-11-22 20:01:28 +00:00
/**
2021-01-23 20:27:50 +00:00
* Get the unique update key for this logged update.
2020-11-22 20:01:28 +00:00
*
2021-01-23 20:32:43 +00:00
* @return string
2021-01-23 20:27:50 +00:00
*/
protected function getUpdateKey() {
return 'dynamic-page-list-create-template';
}
/**
* Message to show that the update was done already and was just skipped
*
* @return string
*/
protected function updateSkippedMessage() {
return 'Template already created.';
}
/**
* Handle inserting DPL's necessary template for content inclusion.
*
* @access protected
* @return bool|void
2020-11-22 20:01:28 +00:00
*/
protected function doDBUpdates() {
2021-01-23 20:27:50 +00:00
// Make sure page "Template:Extension DPL" exists
2020-11-22 20:01:28 +00:00
$title = Title::newFromText('Template:Extension DPL');
2021-01-23 20:27:50 +00:00
if ( !$title->exists() ) {
$page = WikiPage::factory( $title );
$pageContent = ContentHandler::makeContent( "<noinclude>This page was automatically created. It serves as an anchor page for all '''[[Special:WhatLinksHere/Template:Extension_DPL|invocations]]''' of [https://www.mediawiki.org/wiki/Special:MyLanguage/Extension:DynamicPageList3 Extension:DynamicPageList3].</noinclude>", $title );
2020-11-22 20:01:28 +00:00
$page->doEditContent(
$pageContent,
$title,
EDIT_NEW | EDIT_FORCE_BOT
);
2021-01-23 20:27:50 +00:00
return true;
}
2020-11-22 20:01:28 +00:00
}
}
2021-01-22 21:25:34 +00:00
$maintClass = CreateTemplateUpdateMaintenance::class;
require_once RUN_MAINTENANCE_IF_MAIN;