MediaWiki  1.29.2
SpecialCiteThisPage.php
Go to the documentation of this file.
1 <?php
2 
4 
8  private $citationParser;
9 
13  protected $title = false;
14 
15  public function __construct() {
16  parent::__construct( 'CiteThisPage' );
17  }
18 
22  public function execute( $par ) {
23  $this->setHeaders();
25  if ( $this->title instanceof Title ) {
26  $id = $this->getRequest()->getInt( 'id' );
27  $this->showCitations( $this->title, $id );
28  }
29  }
30 
31  protected function alterForm( HTMLForm $form ) {
32  $form->setMethod( 'get' );
33  }
34 
35  protected function getFormFields() {
36  if ( isset( $this->par ) ) {
37  $default = $this->par;
38  } else {
39  $default = '';
40  }
41  return [
42  'page' => [
43  'name' => 'page',
44  'type' => 'title',
45  'default' => $default,
46  'label-message' => 'citethispage-change-target'
47  ]
48  ];
49  }
50 
51  public function onSubmit( array $data ) {
52  // GET forms are "submitted" on every view, so check
53  // that some data was put in for page, as empty string
54  // will pass validation
55  if ( strlen( $data['page'] ) ) {
56  $this->title = Title::newFromText( $data['page'] );
57  }
58  }
59 
68  public function prefixSearchSubpages( $search, $limit, $offset ) {
69  $title = Title::newFromText( $search );
70  if ( !$title || !$title->canExist() ) {
71  // No prefix suggestion in special and media namespace
72  return [];
73  }
74  // Autocomplete subpage the same as a normal search
75  $prefixSearcher = new StringPrefixSearch;
76  $result = $prefixSearcher->search( $search, $limit, [], $offset );
77  return $result;
78  }
79 
80  protected function getGroupName() {
81  return 'pagetools';
82  }
83 
84  private function showCitations( Title $title, $revId ) {
85  if ( !$revId ) {
87  }
88 
89  $out = $this->getOutput();
90 
91  $revision = Revision::newFromTitle( $title, $revId );
92  if ( !$revision ) {
93  $out->wrapWikiMsg( '<div class="errorbox">$1</div>',
94  [ 'citethispage-badrevision', $title->getPrefixedText(), $revId ] );
95  return;
96  }
97 
98  $parserOptions = $this->getParserOptions();
99  // Set the overall timestamp to the revision's timestamp
100  $parserOptions->setTimestamp( $revision->getTimestamp() );
101 
102  $parser = $this->getParser();
103  // Register our <citation> tag which just parses using a different
104  // context
105  $parser->setHook( 'citation', [ $this, 'citationTag' ] );
106  // Also hold on to a separate Parser instance for <citation> tag parsing
107  // since we can't parse in a parse using the same Parser
108  $this->citationParser = $this->getParser();
109 
110  $ret = $parser->parse(
111  $this->getContentText(),
112  $title,
113  $parserOptions,
114  /* $linestart = */ false,
115  /* $clearstate = */ true,
116  $revId
117  );
118 
119  $this->getOutput()->addModuleStyles( 'ext.citeThisPage' );
120  $this->getOutput()->addParserOutputContent( $ret );
121 
122  }
123 
127  private function getParser() {
128  $parserConf = $this->getConfig()->get( 'ParserConf' );
129  return new $parserConf['class']( $parserConf );
130  }
131 
137  private function getContentText() {
138  $msg = $this->msg( 'citethispage-content' )->inContentLanguage()->plain();
139  if ( $msg == '' ) {
140  # With MediaWiki 1.20 the plain text files were deleted
141  # and the text moved into SpecialCite.i18n.php
142  # This code is kept for b/c in case an installation has its own file "citethispage-content-xx"
143  # for a previously not supported language.
145  $dir = __DIR__ . DIRECTORY_SEPARATOR;
147  if ( file_exists( "${dir}citethispage-content-$code" ) ) {
148  $msg = file_get_contents( "${dir}citethispage-content-$code" );
149  } elseif ( file_exists( "${dir}citethispage-content" ) ){
150  $msg = file_get_contents( "${dir}citethispage-content" );
151  }
152  }
153 
154  return $msg;
155  }
156 
162  private function getParserOptions() {
163  $parserOptions = ParserOptions::newFromUser( $this->getUser() );
164  $parserOptions->setDateFormat( 'default' );
165  $parserOptions->setEditSection( false );
166 
167  // Having tidy on causes whitespace and <pre> tags to
168  // be generated around the output of the CiteThisPageOutput
169  // class TODO FIXME.
170  $parserOptions->setTidy( false );
171 
172  return $parserOptions;
173  }
174 
187  public function citationTag( $text, $params, Parser $parser ) {
188  $ret = $this->citationParser->parse(
189  $text,
190  $this->getPageTitle(),
191  $this->getParserOptions(),
192  /* $linestart = */ false
193  );
194 
195  return $ret->getText();
196 
197  }
198 
199  protected function getDisplayFormat() {
200  return 'ooui';
201  }
202 
203  public function requiresUnblock() {
204  return false;
205  }
206 
207  public function requiresWrite() {
208  return false;
209  }
210 }
SpecialPage\getPageTitle
getPageTitle( $subpage=false)
Get a self-referential title object.
Definition: SpecialPage.php:628
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:265
SpecialCiteThisPage\getParser
getParser()
Definition: SpecialCiteThisPage.php:127
SpecialPage\getOutput
getOutput()
Get the OutputPage being used for this instance.
Definition: SpecialPage.php:675
SpecialCiteThisPage\showCitations
showCitations(Title $title, $revId)
Definition: SpecialCiteThisPage.php:84
SpecialCiteThisPage\getContentText
getContentText()
Get the content to parse.
Definition: SpecialCiteThisPage.php:137
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1954
SpecialCiteThisPage\citationTag
citationTag( $text, $params, Parser $parser)
Implements the <citation> tag.
Definition: SpecialCiteThisPage.php:187
$wgContLanguageCode
$wgContLanguageCode
Definition: Setup.php:414
Title\getPrefixedText
getPrefixedText()
Get the prefixed title with spaces.
Definition: Title.php:1451
SpecialCiteThisPage\onSubmit
onSubmit(array $data)
Process the form on POST submission.
Definition: SpecialCiteThisPage.php:51
$params
$params
Definition: styleTest.css.php:40
FormSpecialPage
Special page which uses an HTMLForm to handle processing.
Definition: FormSpecialPage.php:31
SpecialCiteThisPage\requiresWrite
requiresWrite()
Whether this action requires the wiki not to be locked.
Definition: SpecialCiteThisPage.php:207
HTMLForm\setMethod
setMethod( $method='post')
Set the method used to submit the form.
Definition: HTMLForm.php:1587
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
Revision\newFromTitle
static newFromTitle(LinkTarget $linkTarget, $id=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given link target.
Definition: Revision.php:134
SpecialPage\getConfig
getConfig()
Shortcut to get main config object.
Definition: SpecialPage.php:714
PrefixSearch\search
search( $search, $limit, $namespaces=[], $offset=0)
Do a prefix search of titles and return a list of matching page names.
Definition: PrefixSearch.php:55
$limit
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object to manipulate or replace but no entry for that model exists in $wgContentHandlers please use GetContentModels hook to make them known to core if desired whether it is OK to use $contentModel on $title Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok inclusive $limit
Definition: hooks.txt:1049
SpecialCiteThisPage
Definition: SpecialCiteThisPage.php:3
SpecialCiteThisPage\getDisplayFormat
getDisplayFormat()
Get display format for the form.
Definition: SpecialCiteThisPage.php:199
$parser
do that in ParserLimitReportFormat instead $parser
Definition: hooks.txt:2536
SpecialPage\setHeaders
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
Definition: SpecialPage.php:484
SpecialPage\getUser
getUser()
Shortcut to get the User executing this instance.
Definition: SpecialPage.php:685
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
SpecialCiteThisPage\requiresUnblock
requiresUnblock()
Whether this action cannot be executed by a blocked user.
Definition: SpecialCiteThisPage.php:203
Title\canExist
canExist()
Is this in a namespace that allows actual pages?
Definition: Title.php:1036
SpecialCiteThisPage\getFormFields
getFormFields()
Get an HTMLForm descriptor array.
Definition: SpecialCiteThisPage.php:35
$dir
$dir
Definition: Autoload.php:8
execute
$batch execute()
SpecialCiteThisPage\$title
Title bool $title
Definition: SpecialCiteThisPage.php:13
SpecialPage\msg
msg()
Wrapper around wfMessage that sets the current context.
Definition: SpecialPage.php:746
FormSpecialPage\$par
string $par
The sub-page of the special page.
Definition: FormSpecialPage.php:36
Title\getLatestRevID
getLatestRevID( $flags=0)
What is the page_latest field for this page?
Definition: Title.php:3309
title
title
Definition: parserTests.txt:211
SpecialPage\getRequest
getRequest()
Get the WebRequest being used for this instance.
Definition: SpecialPage.php:665
$ret
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition: hooks.txt:1956
SpecialCiteThisPage\__construct
__construct()
Definition: SpecialCiteThisPage.php:15
SpecialCiteThisPage\getParserOptions
getParserOptions()
Get the common ParserOptions for both parses.
Definition: SpecialCiteThisPage.php:162
Title
Represents a title within MediaWiki.
Definition: Title.php:39
SpecialCiteThisPage\$citationParser
Parser $citationParser
Definition: SpecialCiteThisPage.php:8
$code
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
Definition: hooks.txt:783
SpecialCiteThisPage\execute
execute( $par)
Definition: SpecialCiteThisPage.php:22
$revId
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context $revId
Definition: hooks.txt:1049
SpecialCiteThisPage\getGroupName
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
Definition: SpecialCiteThisPage.php:80
StringPrefixSearch
Performs prefix search, returning strings.
Definition: PrefixSearch.php:395
SpecialCiteThisPage\prefixSearchSubpages
prefixSearchSubpages( $search, $limit, $offset)
Return an array of subpages beginning with $search that this special page will accept.
Definition: SpecialCiteThisPage.php:68
SpecialCiteThisPage\alterForm
alterForm(HTMLForm $form)
Play with the HTMLForm if you need to more substantially.
Definition: SpecialCiteThisPage.php:31
array
the array() calling protocol came about after MediaWiki 1.4rc1.
ParserOptions\newFromUser
static newFromUser( $user)
Get a ParserOptions object from a given user.
Definition: ParserOptions.php:705
$wgContLang
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the content language as $wgContLang
Definition: design.txt:56
HTMLForm
Object handling generic submission, CSRF protection, layout and other logic for UI forms.
Definition: HTMLForm.php:128
$out
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition: hooks.txt:783