]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/shortcodes.php
WordPress 4.4
[autoinstalls/wordpress.git] / wp-includes / shortcodes.php
index 86976a21ce34ced40d4cfa4e14617bf74693625d..22f33c32efe3f201304802b5186bdcc19def7b4e 100644 (file)
@@ -88,6 +88,20 @@ $shortcode_tags = array();
  */
 function add_shortcode($tag, $func) {
        global $shortcode_tags;
+
+       if ( '' == trim( $tag ) ) {
+               $message = __( 'Invalid shortcode name: Empty name given.' );
+               _doing_it_wrong( __FUNCTION__, $message, '4.4.0' );
+               return;
+       }
+
+       if ( 0 !== preg_match( '@[<>&/\[\]\x00-\x20]@', $tag ) ) {
+               /* translators: %s: shortcode name */
+               $message = sprintf( __( 'Invalid shortcode name: %s. Do not use spaces or reserved characters: & / < > [ ]' ), $tag );
+               _doing_it_wrong( __FUNCTION__, $message, '4.4.0' );
+               return;
+       }
+
        $shortcode_tags[ $tag ] = $func;
 }
 
@@ -155,7 +169,7 @@ function has_shortcode( $content, $tag ) {
        }
 
        if ( shortcode_exists( $tag ) ) {
-               preg_match_all( '/' . get_shortcode_regex() . '/s', $content, $matches, PREG_SET_ORDER );
+               preg_match_all( '/' . get_shortcode_regex() . '/', $content, $matches, PREG_SET_ORDER );
                if ( empty( $matches ) )
                        return false;
 
@@ -195,19 +209,18 @@ function do_shortcode( $content, $ignore_html = false ) {
        if (empty($shortcode_tags) || !is_array($shortcode_tags))
                return $content;
 
-       $tagnames = array_keys($shortcode_tags);
-       $tagregexp = join( '|', array_map('preg_quote', $tagnames) );
-       $pattern = "/\\[($tagregexp)/s";
+       // Find all registered tag names in $content.
+       preg_match_all( '@\[([^<>&/\[\]\x00-\x20]++)@', $content, $matches );
+       $tagnames = array_intersect( array_keys( $shortcode_tags ), $matches[1] );
 
-       if ( 1 !== preg_match( $pattern, $content ) ) {
-               // Avoids parsing HTML when there are no shortcodes or embeds anyway.
+       if ( empty( $tagnames ) ) {
                return $content;
        }
 
-       $content = do_shortcodes_in_html_tags( $content, $ignore_html );
+       $content = do_shortcodes_in_html_tags( $content, $ignore_html, $tagnames );
 
-       $pattern = get_shortcode_regex();
-       $content = preg_replace_callback( "/$pattern/s", 'do_shortcode_tag', $content );
+       $pattern = get_shortcode_regex( $tagnames );
+       $content = preg_replace_callback( "/$pattern/", 'do_shortcode_tag', $content );
 
        // Always restore square braces so we don't break things like <!--[if IE ]>
        $content = unescape_invalid_shortcodes( $content );
@@ -234,11 +247,15 @@ function do_shortcode( $content, $ignore_html = false ) {
  *
  * @global array $shortcode_tags
  *
+ * @param array $tagnames List of shortcodes to find. Optional. Defaults to all registered shortcodes.
  * @return string The shortcode search regular expression
  */
-function get_shortcode_regex() {
+function get_shortcode_regex( $tagnames = null ) {
        global $shortcode_tags;
-       $tagnames = array_keys($shortcode_tags);
+
+       if ( empty( $tagnames ) ) {
+               $tagnames = array_keys( $shortcode_tags );
+       }
        $tagregexp = join( '|', array_map('preg_quote', $tagnames) );
 
        // WARNING! Do not change this regex without changing do_shortcode_tag() and strip_shortcode_tag()
@@ -298,6 +315,7 @@ function do_shortcode_tag( $m ) {
        $attr = shortcode_parse_atts( $m[3] );
 
        if ( ! is_callable( $shortcode_tags[ $tag ] ) ) {
+               /* translators: %s: shortcode tag */
                $message = sprintf( __( 'Attempting to parse a shortcode without a valid callback: %s' ), $tag );
                _doing_it_wrong( __FUNCTION__, $message, '4.3.0' );
                return $m[0];
@@ -324,15 +342,16 @@ function do_shortcode_tag( $m ) {
  *
  * @param string $content Content to search for shortcodes
  * @param bool $ignore_html When true, all square braces inside elements will be encoded.
+ * @param array $tagnames List of shortcodes to find.
  * @return string Content with shortcodes filtered out.
  */
-function do_shortcodes_in_html_tags( $content, $ignore_html ) {
+function do_shortcodes_in_html_tags( $content, $ignore_html, $tagnames ) {
        // Normalize entities in unfiltered HTML before adding placeholders.
        $trans = array( '&#91;' => '&#091;', '&#93;' => '&#093;' );
        $content = strtr( $content, $trans );
        $trans = array( '[' => '&#91;', ']' => '&#93;' );
 
-       $pattern = get_shortcode_regex();
+       $pattern = get_shortcode_regex( $tagnames );
        $textarr = wp_html_split( $content );
 
        foreach ( $textarr as &$element ) {
@@ -361,7 +380,7 @@ function do_shortcodes_in_html_tags( $content, $ignore_html ) {
                if ( false === $attributes ) {
                        // Some plugins are doing things like [name] <[email]>.
                        if ( 1 === preg_match( '%^<\s*\[\[?[^\[\]]+\]%', $element ) ) {
-                               $element = preg_replace_callback( "/$pattern/s", 'do_shortcode_tag', $element );
+                               $element = preg_replace_callback( "/$pattern/", 'do_shortcode_tag', $element );
                        }
 
                        // Looks like we found some crazy unfiltered HTML.  Skipping it for sanity.
@@ -390,12 +409,12 @@ function do_shortcodes_in_html_tags( $content, $ignore_html ) {
                                // In this specific situation we assume KSES did not run because the input
                                // was written by an administrator, so we should avoid changing the output
                                // and we do not need to run KSES here.
-                               $attr = preg_replace_callback( "/$pattern/s", 'do_shortcode_tag', $attr );
+                               $attr = preg_replace_callback( "/$pattern/", 'do_shortcode_tag', $attr );
                        } else {
                                // $attr like 'name = "[shortcode]"' or "name = '[shortcode]'"
                                // We do not know if $content was unfiltered. Assume KSES ran before shortcodes.
                                $count = 0;
-                               $new_attr = preg_replace_callback( "/$pattern/s", 'do_shortcode_tag', $attr, -1, $count );
+                               $new_attr = preg_replace_callback( "/$pattern/", 'do_shortcode_tag', $attr, -1, $count );
                                if ( $count > 0 ) {
                                        // Sanitize the shortcode output using KSES.
                                        $new_attr = wp_kses_one_attr( $new_attr, $elname );
@@ -433,6 +452,17 @@ function unescape_invalid_shortcodes( $content ) {
         return $content;
 }
 
+/**
+ * Retrieve the shortcode attributes regex.
+ *
+ * @since 4.4.0
+ *
+ * @return string The shortcode attribute regular expression
+ */
+function get_shortcode_atts_regex() {
+       return '/([\w-]+)\s*=\s*"([^"]*)"(?:\s|$)|([\w-]+)\s*=\s*\'([^\']*)\'(?:\s|$)|([\w-]+)\s*=\s*([^\s\'"]+)(?:\s|$)|"([^"]*)"(?:\s|$)|(\S+)(?:\s|$)/';
+}
+
 /**
  * Retrieve all attributes from the shortcodes tag.
  *
@@ -443,11 +473,14 @@ function unescape_invalid_shortcodes( $content ) {
  * @since 2.5.0
  *
  * @param string $text
- * @return array List of attributes and their value.
+ * @return array|string List of attribute values.
+ *                      Returns empty array if trim( $text ) == '""'.
+ *                      Returns empty string if trim( $text ) == ''.
+ *                      All other matches are checked for not empty().
  */
 function shortcode_parse_atts($text) {
        $atts = array();
-       $pattern = '/([\w-]+)\s*=\s*"([^"]*)"(?:\s|$)|([\w-]+)\s*=\s*\'([^\']*)\'(?:\s|$)|([\w-]+)\s*=\s*([^\s\'"]+)(?:\s|$)|"([^"]*)"(?:\s|$)|(\S+)(?:\s|$)/';
+       $pattern = get_shortcode_atts_regex();
        $text = preg_replace("/[\x{00a0}\x{200b}]+/u", " ", $text);
        if ( preg_match_all($pattern, $text, $match, PREG_SET_ORDER) ) {
                foreach ($match as $m) {
@@ -497,7 +530,7 @@ function shortcode_parse_atts($text) {
 function shortcode_atts( $pairs, $atts, $shortcode = '' ) {
        $atts = (array)$atts;
        $out = array();
-       foreach($pairs as $name => $default) {
+       foreach ($pairs as $name => $default) {
                if ( array_key_exists($name, $atts) )
                        $out[$name] = $atts[$name];
                else
@@ -510,13 +543,16 @@ function shortcode_atts( $pairs, $atts, $shortcode = '' ) {
         * The third parameter, $shortcode, is the name of the shortcode.
         *
         * @since 3.6.0
+        * @since 4.4.0 Added the `$shortcode` parameter.
         *
-        * @param array $out   The output array of shortcode attributes.
-        * @param array $pairs The supported attributes and their defaults.
-        * @param array $atts  The user defined shortcode attributes.
+        * @param array  $out       The output array of shortcode attributes.
+        * @param array  $pairs     The supported attributes and their defaults.
+        * @param array  $atts      The user defined shortcode attributes.
+        * @param string $shortcode The shortcode name.
         */
-       if ( $shortcode )
-               $out = apply_filters( "shortcode_atts_{$shortcode}", $out, $pairs, $atts );
+       if ( $shortcode ) {
+               $out = apply_filters( "shortcode_atts_{$shortcode}", $out, $pairs, $atts, $shortcode );
+       }
 
        return $out;
 }
@@ -541,10 +577,18 @@ function strip_shortcodes( $content ) {
        if (empty($shortcode_tags) || !is_array($shortcode_tags))
                return $content;
 
-       $content = do_shortcodes_in_html_tags( $content, true );
+       // Find all registered tag names in $content.
+       preg_match_all( '@\[([^<>&/\[\]\x00-\x20]++)@', $content, $matches );
+       $tagnames = array_intersect( array_keys( $shortcode_tags ), $matches[1] );
+
+       if ( empty( $tagnames ) ) {
+               return $content;
+       }
+
+       $content = do_shortcodes_in_html_tags( $content, true, $tagnames );
 
-       $pattern = get_shortcode_regex();
-       $content = preg_replace_callback( "/$pattern/s", 'strip_shortcode_tag', $content );
+       $pattern = get_shortcode_regex( $tagnames );
+       $content = preg_replace_callback( "/$pattern/", 'strip_shortcode_tag', $content );
 
        // Always restore square braces so we don't break things like <!--[if IE ]>
        $content = unescape_invalid_shortcodes( $content );