mediawiki-extensions-InputBox/includes/InputBoxHooks.php

120 lines
3 KiB
PHP
Raw Normal View History

2008-10-27 20:33:18 +00:00
<?php
/**
* Hooks for InputBox extension
*
* @file
* @ingroup Extensions
*/
namespace MediaWiki\Extension\InputBox;
use Article;
use MediaWiki;
use MediaWiki\Hook\MediaWikiPerformActionHook;
use MediaWiki\Hook\ParserFirstCallInitHook;
use MediaWiki\SpecialPage\Hook\SpecialPageBeforeExecuteHook;
use MediaWiki\Title\Title;
use OutputPage;
use Parser;
use SpecialPage;
use User;
use WebRequest;
/**
* InputBox hooks
*/
class InputBoxHooks implements
ParserFirstCallInitHook,
SpecialPageBeforeExecuteHook,
MediaWikiPerformActionHook
{
/**
* Initialization
* @param Parser $parser
*/
public function onParserFirstCallInit( $parser ) {
2008-10-27 20:33:18 +00:00
// Register the hook with the parser
$parser->setHook( 'inputbox', [ $this, 'render' ] );
2008-10-27 20:33:18 +00:00
}
/**
* Prepend prefix to wpNewTitle if necessary
* @param SpecialPage $special
* @param string $subPage
*/
public function onSpecialPageBeforeExecute( $special, $subPage ) {
$request = $special->getRequest();
$prefix = $request->getText( 'prefix', '' );
$title = $request->getText( 'wpNewTitle', '' );
$search = $request->getText( 'search', '' );
$searchfilter = $request->getText( 'searchfilter', '' );
if ( $special->getName() === 'Movepage' && $prefix !== '' && $title !== '' ) {
$request->setVal( 'wpNewTitle', $prefix . $title );
$request->unsetVal( 'prefix' );
}
if ( $special->getName() === 'Search' && $searchfilter !== '' ) {
$request->setVal( 'search', $search . ' ' . $searchfilter );
}
}
/**
* Render the input box
* @param string $input
* @param array $args
* @param Parser $parser
* @return string
*/
public function render( $input, $args, Parser $parser ) {
2008-10-27 20:33:18 +00:00
// Create InputBox
$inputBox = new InputBox( $parser );
2008-10-27 20:33:18 +00:00
// Configure InputBox
$inputBox->extractOptions( $parser->replaceVariables( $input ) );
2008-10-27 20:33:18 +00:00
// Return output
return $inputBox->render();
}
/**
* <inputbox type=create...> sends requests with action=edit, and
* possibly a &prefix=Foo. So we pick that up here, munge prefix
* and title together, and redirect back out to the real page
* @param OutputPage $output
* @param Article $article
* @param Title $title
* @param User $user
* @param WebRequest $request
* @param MediaWiki $wiki
* @return bool
*/
public function onMediaWikiPerformAction(
$output,
$article,
$title,
$user,
$request,
$wiki
) {
// In order to check for 'action=edit' in URL parameters, even if another extension overrides
// the action, we must not use getActionName() here. (T337436)
if ( $request->getRawVal( 'action' ) !== 'edit' && $request->getRawVal( 'veaction' ) !== 'edit' ) {
// not our problem
return true;
}
$prefix = $request->getText( 'prefix', '' );
if ( $prefix === '' ) {
// Fine
return true;
}
$title = $prefix . $request->getText( 'title', '' );
$params = $request->getValues();
2010-03-18 20:04:20 +00:00
unset( $params['prefix'] );
$params['title'] = $title;
$output->redirect( wfAppendQuery( $output->getConfig()->get( 'Script' ), $params ), '301' );
return false;
}
}