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
20 * @author Kunal Mehta <legoktm@member.fsf.org>
22 namespace MediaWiki\Linker
;
30 use MediaWiki\MediaWikiServices
;
37 * Class that generates HTML <a> links for pages.
39 * @see https://www.mediawiki.org/wiki/Manual:LinkRenderer
45 * Whether to force the pretty article path
49 private $forceArticlePath = false;
52 * A PROTO_* constant or false
54 * @var string|bool|int
56 private $expandUrls = false;
61 private $stubThreshold = 0;
66 private $titleFormatter;
74 * Whether to run the legacy Linker hooks
78 private $runLegacyBeginHook = true;
81 * @param TitleFormatter $titleFormatter
82 * @param LinkCache $linkCache
84 public function __construct( TitleFormatter
$titleFormatter, LinkCache
$linkCache ) {
85 $this->titleFormatter
= $titleFormatter;
86 $this->linkCache
= $linkCache;
92 public function setForceArticlePath( $force ) {
93 $this->forceArticlePath
= $force;
99 public function getForceArticlePath() {
100 return $this->forceArticlePath
;
104 * @param string|bool|int $expand A PROTO_* constant or false
106 public function setExpandURLs( $expand ) {
107 $this->expandUrls
= $expand;
111 * @return string|bool|int a PROTO_* constant or false
113 public function getExpandURLs() {
114 return $this->expandUrls
;
118 * @param int $threshold
120 public function setStubThreshold( $threshold ) {
121 $this->stubThreshold
= $threshold;
127 public function getStubThreshold() {
128 return $this->stubThreshold
;
134 public function setRunLegacyBeginHook( $run ) {
135 $this->runLegacyBeginHook
= $run;
139 * @param LinkTarget $target
140 * @param string|HtmlArmor|null $text
141 * @param array $extraAttribs
142 * @param array $query
145 public function makeLink(
146 LinkTarget
$target, $text = null, array $extraAttribs = [], array $query = []
148 $title = Title
::newFromLinkTarget( $target );
149 if ( $title->isKnown() ) {
150 return $this->makeKnownLink( $target, $text, $extraAttribs, $query );
152 return $this->makeBrokenLink( $target, $text, $extraAttribs, $query );
157 * Get the options in the legacy format
159 * @param bool $isKnown Whether the link is known or broken
162 private function getLegacyOptions( $isKnown ) {
163 $options = [ 'stubThreshold' => $this->stubThreshold
];
164 if ( $this->forceArticlePath
) {
165 $options[] = 'forcearticlepath';
167 if ( $this->expandUrls
=== PROTO_HTTP
) {
169 } elseif ( $this->expandUrls
=== PROTO_HTTPS
) {
170 $options[] = 'https';
173 $options[] = $isKnown ?
'known' : 'broken';
178 private function runBeginHook( LinkTarget
$target, &$text, &$extraAttribs, &$query, $isKnown ) {
180 if ( !Hooks
::run( 'HtmlPageLinkRendererBegin',
181 [ $this, $target, &$text, &$extraAttribs, &$query, &$ret ] )
186 // Now run the legacy hook
187 return $this->runLegacyBeginHook( $target, $text, $extraAttribs, $query, $isKnown );
190 private function runLegacyBeginHook( LinkTarget
$target, &$text, &$extraAttribs, &$query,
193 if ( !$this->runLegacyBeginHook ||
!Hooks
::isRegistered( 'LinkBegin' ) ) {
194 // Disabled, or nothing registered
198 $realOptions = $options = $this->getLegacyOptions( $isKnown );
200 $dummy = new DummyLinker();
201 $title = Title
::newFromLinkTarget( $target );
202 if ( $text !== null ) {
203 $realHtml = $html = HtmlArmor
::getHtml( $text );
205 $realHtml = $html = null;
207 if ( !Hooks
::run( 'LinkBegin',
208 [ $dummy, $title, &$html, &$extraAttribs, &$query, &$options, &$ret ] )
213 if ( $html !== null && $html !== $realHtml ) {
214 // &$html was modified, so re-armor it as $text
215 $text = new HtmlArmor( $html );
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 );
230 return $newRenderer->makeLink( $title, $text, $extraAttribs, $query );
238 * If you have already looked up the proper CSS classes using LinkRenderer::getLinkClasses()
239 * or some other method, use this to avoid looking it up again.
241 * @param LinkTarget $target
242 * @param string|HtmlArmor|null $text
243 * @param string $classes CSS classes to add
244 * @param array $extraAttribs
245 * @param array $query
248 public function makePreloadedLink(
249 LinkTarget
$target, $text = null, $classes, array $extraAttribs = [], array $query = []
252 $ret = $this->runBeginHook( $target, $text, $extraAttribs, $query, true );
253 if ( $ret !== null ) {
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;
266 ] +
$this->mergeAttribs( $attribs, $extraAttribs );
268 if ( $text === null ) {
269 $text = $this->getLinkText( $target );
272 return $this->buildAElement( $target, $text, $attribs, true );
276 * @param LinkTarget $target
277 * @param string|HtmlArmor|null $text
278 * @param array $extraAttribs
279 * @param array $query
282 public function makeKnownLink(
283 LinkTarget
$target, $text = null, array $extraAttribs = [], array $query = []
286 if ( $target->isExternal() ) {
287 $classes[] = 'extiw';
289 $colour = $this->getLinkClasses( $target );
290 if ( $colour !== '' ) {
291 $classes[] = $colour;
294 return $this->makePreloadedLink(
297 $classes ?
implode( ' ', $classes ) : '',
304 * @param LinkTarget $target
305 * @param string|HtmlArmor|null $text
306 * @param array $extraAttribs
307 * @param array $query
310 public function makeBrokenLink(
311 LinkTarget
$target, $text = null, array $extraAttribs = [], array $query = []
314 $ret = $this->runBeginHook( $target, $text, $extraAttribs, $query, false );
315 if ( $ret !== null ) {
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( '' );
324 $target = $this->normalizeTarget( $target );
326 if ( !isset( $query['action'] ) && $target->getNamespace() !== NS_SPECIAL
) {
327 $query['action'] = 'edit';
328 $query['redlink'] = '1';
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()
343 ] +
$this->mergeAttribs( $attribs, $extraAttribs );
345 if ( $text === null ) {
346 $text = $this->getLinkText( $target );
349 return $this->buildAElement( $target, $text, $attribs, false );
353 * Builds the final <a> element
355 * @param LinkTarget $target
356 * @param string|HtmlArmor $text
357 * @param array $attribs
358 * @param bool $isKnown
359 * @return null|string
361 private function buildAElement( LinkTarget
$target, $text, array $attribs, $isKnown ) {
363 if ( !Hooks
::run( 'HtmlPageLinkRendererEnd',
364 [ $this, $target, $isKnown, &$text, &$attribs, &$ret ] )
369 $html = HtmlArmor
::getHtml( $text );
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 ] )
383 return Html
::rawElement( 'a', $attribs, $html );
387 * @param LinkTarget $target
388 * @return string non-escaped text
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();
398 return $prefixedText;
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
) {
410 $url = $title->getLinkURL( $query, false, $this->expandUrls
);
412 if ( $this->forceArticlePath
&& $realQuery ) {
413 $url = wfAppendQuery( $url, $realQuery );
420 * Normalizes the provided target
422 * @todo move the code from Linker actually here
423 * @param LinkTarget $target
426 private function normalizeTarget( LinkTarget
$target ) {
427 return Linker
::normaliseSpecialPage( $target );
431 * Merges two sets of attributes
433 * @param array $defaults
434 * @param array $attribs
438 private function mergeAttribs( $defaults, $attribs ) {
442 # Merge the custom attribs with the default ones, and iterate
443 # over that, deleting all "false" attributes.
445 $merged = Sanitizer
::mergeAttributes( $defaults, $attribs );
446 foreach ( $merged as $key => $val ) {
447 # A false value suppresses the attribute
448 if ( $val !== false ) {
456 * Return the CSS classes of a known link
458 * @param LinkTarget $target
459 * @return string CSS class
461 public function getLinkClasses( LinkTarget
$target ) {
462 // Make sure the target is in the cache
463 $id = $this->linkCache
->addLinkObj( $target );
469 if ( $this->linkCache
->getGoodLinkFieldObj( $target, 'redirect' ) ) {
471 return 'mw-redirect';
472 } elseif ( $this->stubThreshold
> 0 && MWNamespace
::isContent( $target->getNamespace() )
473 && $this->linkCache
->getGoodLinkFieldObj( $target, 'length' ) < $this->stubThreshold