Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add filters to make_clickable callback functions #8203

Draft
wants to merge 3 commits into
base: trunk
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/wp-includes/default-filters.php
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,11 @@
add_filter( $filter, 'shortcode_unautop' );
}

// Clickable content filters
add_filter( 'make_clickable', 'make_url_clickable', 2 );
add_filter( 'make_clickable', 'make_ftp_clickable', 4 );
add_filter( 'make_clickable', 'make_email_clickable', 6 );

// Format for RSS.
add_filter( 'term_name_rss', 'convert_chars' );

Expand Down
89 changes: 64 additions & 25 deletions src/wp-includes/formatting.php
Original file line number Diff line number Diff line change
Expand Up @@ -3106,31 +3106,7 @@ function make_clickable( $text ) {
}
} else {
$ret = " $piece "; // Pad with whitespace to simplify the regexes.

$url_clickable = '~
([\\s(<.,;:!?]) # 1: Leading whitespace, or punctuation.
( # 2: URL.
[\\w]{1,20}+:// # Scheme and hier-part prefix.
(?=\S{1,2000}\s) # Limit to URLs less than about 2000 characters long.
[\\w\\x80-\\xff#%\\~/@\\[\\]*(+=&$-]*+ # Non-punctuation URL character.
(?: # Unroll the Loop: Only allow punctuation URL character if followed by a non-punctuation URL character.
[\'.,;:!?)] # Punctuation URL character.
[\\w\\x80-\\xff#%\\~/@\\[\\]*(+=&$-]++ # Non-punctuation URL character.
)*
)
(\)?) # 3: Trailing closing parenthesis (for parenthesis balancing post processing).
(\\.\\w{2,6})? # 4: Allowing file extensions (e.g., .jpg, .png).
~xS';
/*
* The regex is a non-anchored pattern and does not have a single fixed starting character.
* Tell PCRE to spend more time optimizing since, when used on a page load, it will probably be used several times.
*/

$ret = preg_replace_callback( $url_clickable, '_make_url_clickable_cb', $ret );

$ret = preg_replace_callback( '#([\s>])((www|ftp)\.[\w\\x80-\\xff\#$%&~/.\-;:=,?@\[\]+]+)#is', '_make_web_ftp_clickable_cb', $ret );
$ret = preg_replace_callback( '#([\s>])([.0-9a-z_+-]+)@(([0-9a-z-]+\.)+[0-9a-z]{2,})#i', '_make_email_clickable_cb', $ret );

$ret = apply_filters( 'make_clickable', $ret );
$ret = substr( $ret, 1, -1 ); // Remove our whitespace padding.
$r .= $ret;
}
Expand All @@ -3140,6 +3116,69 @@ function make_clickable( $text ) {
return preg_replace( '#(<a([ \r\n\t]+[^>]+?>|>))<a [^>]+?>([^>]+?)</a></a>#i', '$1$3</a>', $r );
}

/**
* Converts URLs in text into clickable links.
*
* @since 6.8.0
* @access private
*
* @param string $text The text to be processed.
* @return string Text with converted URLs.
*/
function make_url_clickable( $text ) {
$url_clickable = '~
([\\s(<.,;:!?]) # 1: Leading whitespace, or punctuation
( # 2: URL
[\\w]{1,20}+:// # Scheme and hier-part prefix
(?=\S{1,2000}\s) # Limit to URLs less than about 2000 characters long
[\\w\\x80-\\xff#%\\~/@\\[\\]*(+=&$-]*+ # Non-punctuation URL character
(?: # Unroll the Loop: Only allow puctuation URL character if followed by a non-punctuation URL character
[\'.,;:!?)] # Punctuation URL character
[\\w\\x80-\\xff#%\\~/@\\[\\]*(+=&$-]++ # Non-punctuation URL character
)*
)
(\)?) # 3: Trailing closing parenthesis (for parethesis balancing post processing)
~xS';

// The regex is a non-anchored pattern and does not have a single fixed starting character.
// Tell PCRE to spend more time optimizing since, when used on a page load, it will probably be used several times.
return preg_replace_callback( $url_clickable, '_make_url_clickable_cb', $text );
}

/**
* Converts FTP and www addresses in text into clickable links.
*
* @since 6.8.0
* @access private
*
* @param string $text The text to be processed.
* @return string Text with converted FTP and www addresses.
*/
function make_ftp_clickable( $text ) {
return preg_replace_callback(
'#([\s>])((www|ftp)\.[\w\\x80-\\xff\#$%&~/.\-;:=,?@\[\]+]+)#is',
'_make_web_ftp_clickable_cb',
$text
);
}

/**
* Converts email addresses in text into clickable links.
*
* @since 6.8.0
* @access private
*
* @param string $text The text to be processed.
* @return string Text with converted email addresses.
*/
function make_email_clickable( $text ) {
return preg_replace_callback(
'#([\s>])([.0-9a-z_+-]+)@(([0-9a-z-]+\.)+[0-9a-z]{2,})#i',
'_make_email_clickable_cb',
$text
);
}

/**
* Breaks a string into chunks by splitting at whitespace characters.
*
Expand Down
72 changes: 72 additions & 0 deletions tests/phpunit/tests/formatting/makeClickableFilters.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
<?php

/**
* @group formatting
*
* @covers ::make_clickable
* @covers ::make_url_clickable
* @covers ::make_ftp_clickable
* @covers ::make_email_clickable
*/
class Tests_Formatting_MakeClickableFilters extends WP_UnitTestCase {
public function set_up() {
parent::set_up();
remove_all_filters( 'make_clickable' );
add_filter( 'make_clickable', 'make_url_clickable', 2 );
add_filter( 'make_clickable', 'make_ftp_clickable', 4 );
add_filter( 'make_clickable', 'make_email_clickable', 6 );
}

public function tear_down() {
parent::tear_down();
remove_all_filters( 'make_clickable' );
}

/**
* @ticket 32787
*/
public function test_remove_url_filter() {
remove_filter( 'make_clickable', 'make_url_clickable', 2 );

$text = 'Visit http://wordpress.org and [email protected]';
$expected = 'Visit http://wordpress.org and <a href="mailto:[email protected]">[email protected]</a>';

$this->assertSame( $expected, make_clickable( $text ) );
}

/**
* @ticket 32787
*/
public function test_remove_email_filter() {
remove_filter( 'make_clickable', 'make_email_clickable', 6 );

$text = 'Visit http://wordpress.org and [email protected]';
$expected = 'Visit <a href="http://wordpress.org" rel="nofollow">http://wordpress.org</a> and [email protected]';

$this->assertSame( $expected, make_clickable( $text ) );
}

/**
* @ticket 32787
*/
public function test_remove_ftp_filter() {
remove_filter( 'make_clickable', 'make_ftp_clickable', 4 );

$text = 'Visit ftp.wordpress.org and http://wordpress.org';
$expected = 'Visit ftp.wordpress.org and <a href="http://wordpress.org" rel="nofollow">http://wordpress.org</a>';

$this->assertSame( $expected, make_clickable( $text ) );
}

/**
* @ticket 32787
*/
public function test_remove_all_filters() {
remove_all_filters( 'make_clickable' );

$text = 'Visit http://wordpress.org, ftp.wordpress.org and [email protected]';
$expected = 'Visit http://wordpress.org, ftp.wordpress.org and [email protected]';

$this->assertSame( $expected, make_clickable( $text ) );
}
}
Loading