MediaWiki REL1_28
LinkRenderer.php
Go to the documentation of this file.
1<?php
23
26use Html;
35
43
49 private $forceArticlePath = false;
50
56 private $expandUrls = false;
57
61 private $stubThreshold = 0;
62
67
71 private $linkCache;
72
78 private $runLegacyBeginHook = true;
79
85 $this->titleFormatter = $titleFormatter;
86 $this->linkCache = $linkCache;
87 }
88
92 public function setForceArticlePath( $force ) {
93 $this->forceArticlePath = $force;
94 }
95
99 public function getForceArticlePath() {
101 }
102
106 public function setExpandURLs( $expand ) {
107 $this->expandUrls = $expand;
108 }
109
113 public function getExpandURLs() {
114 return $this->expandUrls;
115 }
116
120 public function setStubThreshold( $threshold ) {
121 $this->stubThreshold = $threshold;
122 }
123
127 public function getStubThreshold() {
129 }
130
134 public function setRunLegacyBeginHook( $run ) {
135 $this->runLegacyBeginHook = $run;
136 }
137
145 public function makeLink(
146 LinkTarget $target, $text = null, array $extraAttribs = [], array $query = []
147 ) {
148 $title = Title::newFromLinkTarget( $target );
149 if ( $title->isKnown() ) {
150 return $this->makeKnownLink( $target, $text, $extraAttribs, $query );
151 } else {
152 return $this->makeBrokenLink( $target, $text, $extraAttribs, $query );
153 }
154 }
155
162 private function getLegacyOptions( $isKnown ) {
163 $options = [ 'stubThreshold' => $this->stubThreshold ];
164 if ( $this->forceArticlePath ) {
165 $options[] = 'forcearticlepath';
166 }
167 if ( $this->expandUrls === PROTO_HTTP ) {
168 $options[] = 'http';
169 } elseif ( $this->expandUrls === PROTO_HTTPS ) {
170 $options[] = 'https';
171 }
172
173 $options[] = $isKnown ? 'known' : 'broken';
174
175 return $options;
176 }
177
178 private function runBeginHook( LinkTarget $target, &$text, &$extraAttribs, &$query, $isKnown ) {
179 $ret = null;
180 if ( !Hooks::run( 'HtmlPageLinkRendererBegin',
181 [ $this, $target, &$text, &$extraAttribs, &$query, &$ret ] )
182 ) {
183 return $ret;
184 }
185
186 // Now run the legacy hook
187 return $this->runLegacyBeginHook( $target, $text, $extraAttribs, $query, $isKnown );
188 }
189
190 private function runLegacyBeginHook( LinkTarget $target, &$text, &$extraAttribs, &$query,
191 $isKnown
192 ) {
193 if ( !$this->runLegacyBeginHook || !Hooks::isRegistered( 'LinkBegin' ) ) {
194 // Disabled, or nothing registered
195 return null;
196 }
197
198 $realOptions = $options = $this->getLegacyOptions( $isKnown );
199 $ret = null;
200 $dummy = new DummyLinker();
201 $title = Title::newFromLinkTarget( $target );
202 if ( $text !== null ) {
203 $realHtml = $html = HtmlArmor::getHtml( $text );
204 } else {
205 $realHtml = $html = null;
206 }
207 if ( !Hooks::run( 'LinkBegin',
208 [ $dummy, $title, &$html, &$extraAttribs, &$query, &$options, &$ret ] )
209 ) {
210 return $ret;
211 }
212
213 if ( $html !== null && $html !== $realHtml ) {
214 // &$html was modified, so re-armor it as $text
215 $text = new HtmlArmor( $html );
216 }
217
218 // Check if they changed any of the options, hopefully not!
219 if ( $options !== $realOptions ) {
220 $factory = MediaWikiServices::getInstance()->getLinkRendererFactory();
221 // They did, so create a separate instance and have that take over the rest
222 $newRenderer = $factory->createFromLegacyOptions( $options );
223 // Don't recurse the hook...
224 $newRenderer->setRunLegacyBeginHook( false );
225 if ( in_array( 'known', $options, true ) ) {
226 return $newRenderer->makeKnownLink( $title, $text, $extraAttribs, $query );
227 } elseif ( in_array( 'broken', $options, true ) ) {
228 return $newRenderer->makeBrokenLink( $title, $text, $extraAttribs, $query );
229 } else {
230 return $newRenderer->makeLink( $title, $text, $extraAttribs, $query );
231 }
232 }
233
234 return null;
235 }
236
248 public function makePreloadedLink(
249 LinkTarget $target, $text = null, $classes, array $extraAttribs = [], array $query = []
250 ) {
251 // Run begin hook
252 $ret = $this->runBeginHook( $target, $text, $extraAttribs, $query, true );
253 if ( $ret !== null ) {
254 return $ret;
255 }
256 $target = $this->normalizeTarget( $target );
257 $url = $this->getLinkURL( $target, $query );
258 $attribs = [ 'class' => $classes ];
259 $prefixedText = $this->titleFormatter->getPrefixedText( $target );
260 if ( $prefixedText !== '' ) {
261 $attribs['title'] = $prefixedText;
262 }
263
264 $attribs = [
265 'href' => $url,
266 ] + $this->mergeAttribs( $attribs, $extraAttribs );
267
268 if ( $text === null ) {
269 $text = $this->getLinkText( $target );
270 }
271
272 return $this->buildAElement( $target, $text, $attribs, true );
273 }
274
282 public function makeKnownLink(
283 LinkTarget $target, $text = null, array $extraAttribs = [], array $query = []
284 ) {
285 $classes = [];
286 if ( $target->isExternal() ) {
287 $classes[] = 'extiw';
288 }
289 $colour = $this->getLinkClasses( $target );
290 if ( $colour !== '' ) {
291 $classes[] = $colour;
292 }
293
294 return $this->makePreloadedLink(
295 $target,
296 $text,
297 $classes ? implode( ' ', $classes ) : '',
298 $extraAttribs,
299 $query
300 );
301 }
302
310 public function makeBrokenLink(
311 LinkTarget $target, $text = null, array $extraAttribs = [], array $query = []
312 ) {
313 // Run legacy hook
314 $ret = $this->runBeginHook( $target, $text, $extraAttribs, $query, false );
315 if ( $ret !== null ) {
316 return $ret;
317 }
318
319 # We don't want to include fragments for broken links, because they
320 # generally make no sense.
321 if ( $target->hasFragment() ) {
322 $target = $target->createFragmentTarget( '' );
323 }
324 $target = $this->normalizeTarget( $target );
325
326 if ( !isset( $query['action'] ) && $target->getNamespace() !== NS_SPECIAL ) {
327 $query['action'] = 'edit';
328 $query['redlink'] = '1';
329 }
330
331 $url = $this->getLinkURL( $target, $query );
332 $attribs = [ 'class' => 'new' ];
333 $prefixedText = $this->titleFormatter->getPrefixedText( $target );
334 if ( $prefixedText !== '' ) {
335 // This ends up in parser cache!
336 $attribs['title'] = wfMessage( 'red-link-title', $prefixedText )
337 ->inContentLanguage()
338 ->text();
339 }
340
341 $attribs = [
342 'href' => $url,
343 ] + $this->mergeAttribs( $attribs, $extraAttribs );
344
345 if ( $text === null ) {
346 $text = $this->getLinkText( $target );
347 }
348
349 return $this->buildAElement( $target, $text, $attribs, false );
350 }
351
361 private function buildAElement( LinkTarget $target, $text, array $attribs, $isKnown ) {
362 $ret = null;
363 if ( !Hooks::run( 'HtmlPageLinkRendererEnd',
364 [ $this, $target, $isKnown, &$text, &$attribs, &$ret ] )
365 ) {
366 return $ret;
367 }
368
369 $html = HtmlArmor::getHtml( $text );
370
371 // Run legacy hook
372 if ( Hooks::isRegistered( 'LinkEnd' ) ) {
373 $dummy = new DummyLinker();
374 $title = Title::newFromLinkTarget( $target );
375 $options = $this->getLegacyOptions( $isKnown );
376 if ( !Hooks::run( 'LinkEnd',
377 [ $dummy, $title, $options, &$html, &$attribs, &$ret ] )
378 ) {
379 return $ret;
380 }
381 }
382
383 return Html::rawElement( 'a', $attribs, $html );
384 }
385
390 private function getLinkText( LinkTarget $target ) {
391 $prefixedText = $this->titleFormatter->getPrefixedText( $target );
392 // If the target is just a fragment, with no title, we return the fragment
393 // text. Otherwise, we return the title text itself.
394 if ( $prefixedText === '' && $target->hasFragment() ) {
395 return $target->getFragment();
396 }
397
398 return $prefixedText;
399 }
400
401 private function getLinkURL( LinkTarget $target, array $query = [] ) {
402 // TODO: Use a LinkTargetResolver service instead of Title
403 $title = Title::newFromLinkTarget( $target );
404 if ( $this->forceArticlePath ) {
405 $realQuery = $query;
406 $query = [];
407 } else {
408 $realQuery = [];
409 }
410 $url = $title->getLinkURL( $query, false, $this->expandUrls );
411
412 if ( $this->forceArticlePath && $realQuery ) {
413 $url = wfAppendQuery( $url, $realQuery );
414 }
415
416 return $url;
417 }
418
426 private function normalizeTarget( LinkTarget $target ) {
427 return Linker::normaliseSpecialPage( $target );
428 }
429
438 private function mergeAttribs( $defaults, $attribs ) {
439 if ( !$attribs ) {
440 return $defaults;
441 }
442 # Merge the custom attribs with the default ones, and iterate
443 # over that, deleting all "false" attributes.
444 $ret = [];
445 $merged = Sanitizer::mergeAttributes( $defaults, $attribs );
446 foreach ( $merged as $key => $val ) {
447 # A false value suppresses the attribute
448 if ( $val !== false ) {
449 $ret[$key] = $val;
450 }
451 }
452 return $ret;
453 }
454
461 public function getLinkClasses( LinkTarget $target ) {
462 // Make sure the target is in the cache
463 $id = $this->linkCache->addLinkObj( $target );
464 if ( $id == 0 ) {
465 // Doesn't exist
466 return '';
467 }
468
469 if ( $this->linkCache->getGoodLinkFieldObj( $target, 'redirect' ) ) {
470 # Page is a redirect
471 return 'mw-redirect';
472 } elseif ( $this->stubThreshold > 0 && MWNamespace::isContent( $target->getNamespace() )
473 && $this->linkCache->getGoodLinkFieldObj( $target, 'length' ) < $this->stubThreshold
474 ) {
475 # Page is a stub
476 return 'stub';
477 }
478
479 return '';
480 }
481}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
wfAppendQuery( $url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
Hooks class.
Definition Hooks.php:34
Marks HTML that shouldn't be escaped.
Definition HtmlArmor.php:28
static getHtml( $input)
Provide a string or HtmlArmor object and get safe HTML back.
Definition HtmlArmor.php:49
This class is a collection of static functions that serve two purposes:
Definition Html.php:48
static rawElement( $element, $attribs=[], $contents='')
Returns an HTML element in a string.
Definition Html.php:209
Cache for article titles (prefixed DB keys) and ids linked from one source.
Definition LinkCache.php:31
Some internal bits split of from Skin.php.
Definition Linker.php:34
static normaliseSpecialPage(LinkTarget $target)
Definition Linker.php:321
This is a utility class with only static functions for dealing with namespaces that encodes all the "...
static isContent( $index)
Does this namespace contain content, for the purposes of calculating statistics, etc?
Class that generates HTML links for pages.
bool $forceArticlePath
Whether to force the pretty article path.
getLegacyOptions( $isKnown)
Get the options in the legacy format.
getLinkURL(LinkTarget $target, array $query=[])
runLegacyBeginHook(LinkTarget $target, &$text, &$extraAttribs, &$query, $isKnown)
buildAElement(LinkTarget $target, $text, array $attribs, $isKnown)
Builds the final element.
runBeginHook(LinkTarget $target, &$text, &$extraAttribs, &$query, $isKnown)
makeBrokenLink(LinkTarget $target, $text=null, array $extraAttribs=[], array $query=[])
getLinkClasses(LinkTarget $target)
Return the CSS classes of a known link.
mergeAttribs( $defaults, $attribs)
Merges two sets of attributes.
getLinkText(LinkTarget $target)
makePreloadedLink(LinkTarget $target, $text=null, $classes, array $extraAttribs=[], array $query=[])
If you have already looked up the proper CSS classes using LinkRenderer::getLinkClasses() or some oth...
makeKnownLink(LinkTarget $target, $text=null, array $extraAttribs=[], array $query=[])
makeLink(LinkTarget $target, $text=null, array $extraAttribs=[], array $query=[])
__construct(TitleFormatter $titleFormatter, LinkCache $linkCache)
normalizeTarget(LinkTarget $target)
Normalizes the provided target.
string bool int $expandUrls
A PROTO_* constant or false.
bool $runLegacyBeginHook
Whether to run the legacy Linker hooks.
MediaWikiServices is the service locator for the application scope of MediaWiki.
static getInstance()
Returns the global default instance of the top level service locator.
HTML sanitizer for MediaWiki.
Definition Sanitizer.php:31
static mergeAttributes( $a, $b)
Merge two sets of HTML attributes.
Represents a title within MediaWiki.
Definition Title.php:36
static newFromLinkTarget(LinkTarget $linkTarget)
Create a new Title from a LinkTarget.
Definition Title.php:236
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
const PROTO_HTTPS
Definition Defines.php:224
const NS_SPECIAL
Definition Defines.php:45
const PROTO_HTTP
Definition Defines.php:223
the array() calling protocol came about after MediaWiki 1.4rc1.
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:986
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist 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 $options
Definition hooks.txt:1096
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt;div ...>$1&lt;/div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
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:1949
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 just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
Definition hooks.txt:1957
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 just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing & $attribs
Definition hooks.txt:1958
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition hooks.txt:1595
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:37
hasFragment()
Whether the link target has a fragment.
getFragment()
Get the link fragment (i.e.
getNamespace()
Get the namespace index.
isExternal()
Whether this LinkTarget has an interwiki component.
createFragmentTarget( $fragment)
Creates a new LinkTarget for a different fragment of the same page.
A title formatter service for MediaWiki.
if(! $dbr->tableExists( 'profiling')) $expand