Make WordPress Core

Ticket #31139: 31139.patch

File 31139.patch, 9.3 KB (added by iseulde, 9 years ago)
  • src/wp-admin/includes/ajax-actions.php

     
    27142714        }
    27152715
    27162716        $shortcode = wp_unslash( $_POST['shortcode'] );
    2717 
    2718         preg_match( '/' . get_shortcode_regex() . '/s', $shortcode, $matches );
    2719         $atts = shortcode_parse_atts( $matches[3] );
    2720         if ( ! empty( $matches[5] ) ) {
    2721                 $url = $matches[5];
    2722         } elseif ( ! empty( $atts['src'] ) ) {
    2723                 $url = $atts['src'];
    2724         }
     2717        $url = str_replace( '[embed]', '', str_replace( '[/embed]', '', $shortcode ) );
    27252718
    27262719        $parsed = false;
    27272720        setup_postdata( $post );
    27282721
    27292722        $wp_embed->return_false_on_fail = true;
    27302723
    2731         if ( is_ssl() && 0 === strpos( $url, 'http://' ) ) {
     2724        if ( is_ssl() && preg_match( '%^\\[embed[^\\]]*\\]http://%i', $shortcode ) ) {
    27322725                // Admin is ssl and the user pasted non-ssl URL.
    27332726                // Check if the provider supports ssl embeds and use that for the preview.
    27342727                $ssl_shortcode = preg_replace( '%^(\\[embed[^\\]]*\\])http://%i', '$1https://', $shortcode );
     
    27812774        }
    27822775
    27832776        wp_send_json_success( array(
    2784                 'body' => $parsed,
    2785                 'attr' => $wp_embed->last_attr
     2777                'body' => $parsed
    27862778        ) );
    27872779}
    27882780
  • src/wp-includes/class-wp-embed.php

     
    1111        public $post_ID;
    1212        public $usecache = true;
    1313        public $linkifunknown = true;
    14         public $last_attr = array();
    15         public $last_url = '';
    1614
    1715        /**
    1816         * When an URL cannot be embedded, return false instead of returning a link
     
    136134                        $url = $attr['src'];
    137135                }
    138136
    139                 $this->last_url = $url;
    140137
    141                 if ( empty( $url ) ) {
    142                         $this->last_attr = $attr;
     138                if ( empty( $url ) )
    143139                        return '';
    144                 }
    145140
    146141                $rawattr = $attr;
    147142                $attr = wp_parse_args( $attr, wp_embed_defaults( $url ) );
    148143
    149                 $this->last_attr = $attr;
    150 
    151144                // kses converts & into & and we need to undo this
    152145                // See https://core.trac.wordpress.org/ticket/11311
    153146                $url = str_replace( '&', '&', $url );
  • src/wp-includes/css/media-views.css

     
    19811981        clear: both;
    19821982}
    19831983
    1984 .embed-link-settings .setting {
    1985         display: none;
    1986 }
    1987 
    1988 .embed-link-dimensions:after {
    1989         content: '';
    1990         display: block;
    1991         clear: both;
    1992 }
    1993 
    1994 .embed-link-dimensions .width,
    1995 .embed-link-dimensions .height {
    1996         float: left;
    1997         width: 125px;
    1998         clear: none;
    1999         margin-right: 10px;
    2000 }
    2001 
    2002 .embed-link-dimensions input {
    2003         width: auto;
    2004         max-width: 110px;
    2005 }
    2006 
    20071984.image-details .embed-media-settings .setting {
    20081985        float: none;
    20091986        width: auto;
     
    20502027.media-embed .setting span {
    20512028        display: block;
    20522029        width: 200px;
    2053         max-width: 100%;
    20542030        font-size: 13px;
    20552031        line-height: 24px;
    20562032        color: #666;
  • src/wp-includes/js/mce-view.js

     
    818818                edit: function( text, update ) {
    819819                        var media = wp.media.embed,
    820820                                frame = media.edit( text, this.url ),
    821                                 self = this,
    822                                 events = 'change:url change:width change:height';
     821                                self = this;
    823822
    824823                        this.pausePlayers();
    825824
    826                         frame.state( 'embed' ).props.on( events, function( model, url ) {
     825                        frame.state( 'embed' ).props.on( 'change:url', function( model, url ) {
    827826                                if ( url && model.get( 'url' ) ) {
    828827                                        frame.state( 'embed' ).metadata = model.toJSON();
    829828                                }
     
    832831                        frame.state( 'embed' ).on( 'select', function() {
    833832                                var data = frame.state( 'embed' ).metadata;
    834833
    835                                 if ( self.url && ! data.width ) {
     834                                if ( self.url ) {
    836835                                        update( data.url );
    837836                                } else {
    838837                                        update( media.shortcode( data ).string() );
  • src/wp-includes/js/media/views/embed/link.js

     
    1919        initialize: function() {
    2020                this.spinner = $('<span class="spinner" />');
    2121                this.$el.append( this.spinner[0] );
    22                 this.listenTo( this.model, 'change:url change:width change:height', this.updateoEmbed );
     22                this.listenTo( this.model, 'change:url', this.updateoEmbed );
    2323        },
    2424
    2525        updateoEmbed: _.debounce( function() {
     
    3838        }, 600 ),
    3939
    4040        fetch: function() {
    41                 var embed;
    42 
    4341                // check if they haven't typed in 500 ms
    4442                if ( $('#embed-url-field').val() !== this.model.get('url') ) {
    4543                        return;
    4644                }
    4745
    48                 embed = new wp.shortcode({
    49                         tag: 'embed',
    50                         attrs: _.pick( this.model.attributes, [ 'width', 'height', 'src' ] ),
    51                         content: this.model.get('url')
    52                 });
    53 
    5446                wp.ajax.send( 'parse-embed', {
    5547                        data : {
    5648                                post_ID: wp.media.view.settings.post.id,
    57                                 shortcode: embed.string()
     49                                shortcode: '[embed]' + this.model.get('url') + '[/embed]'
    5850                        }
    5951                } )
    6052                        .done( _.bind( this.renderoEmbed, this ) )
     
    6254        },
    6355
    6456        renderFail: function () {
    65                 this.$( '.setting' ).hide().filter( '.link-text' ).show();
     57                this.$( '.link-text' ).show();
    6658        },
    6759
    6860        renderoEmbed: function( response ) {
    69                 var html = ( response && response.body ) || '',
    70                         attr = {},
    71                         opts = { silent: true };
    72 
    73                 this.$( '.setting' ).hide()
    74                         .filter( '.link-text' )[ html ? 'hide' : 'show' ]();
    75 
    76                 if ( response && response.attr ) {
    77                         attr = response.attr;
    78 
    79                         _.each( [ 'width', 'height' ], function ( key ) {
    80                                 var $el = this.$( '.setting.' + key ),
    81                                         value = attr[ key ];
    82 
    83                                 if ( value ) {
    84                                         this.model.set( key, value, opts );
    85                                         $el.show().find( 'input' ).val( value );
    86                                 } else {
    87                                         this.model.unset( key, opts );
    88                                         $el.hide().find( 'input' ).val( '' );
    89                                 }
    90                         }, this );
     61                var html = ( response && response.body ) || '';
     62
     63                if ( html ) {
     64                        this.$('.embed-container').show().find('.embed-preview').html( html );
    9165                } else {
    92                         this.model.unset( 'height', opts );
    93                         this.model.unset( 'width', opts );
     66                        this.renderFail()
    9467                }
    95 
    96                 this.$('.embed-container').show().find('.embed-preview').html( html );
    9768        }
    9869});
    9970
  • src/wp-includes/js/media-views.js

     
    45354535        initialize: function() {
    45364536                this.spinner = $('<span class="spinner" />');
    45374537                this.$el.append( this.spinner[0] );
    4538                 this.listenTo( this.model, 'change:url change:width change:height', this.updateoEmbed );
     4538                this.listenTo( this.model, 'change:url', this.updateoEmbed );
    45394539        },
    45404540
    45414541        updateoEmbed: _.debounce( function() {
     
    45544554        }, 600 ),
    45554555
    45564556        fetch: function() {
    4557                 var embed;
    4558 
    45594557                // check if they haven't typed in 500 ms
    45604558                if ( $('#embed-url-field').val() !== this.model.get('url') ) {
    45614559                        return;
    45624560                }
    45634561
    4564                 embed = new wp.shortcode({
    4565                         tag: 'embed',
    4566                         attrs: _.pick( this.model.attributes, [ 'width', 'height', 'src' ] ),
    4567                         content: this.model.get('url')
    4568                 });
    4569 
    45704562                wp.ajax.send( 'parse-embed', {
    45714563                        data : {
    45724564                                post_ID: wp.media.view.settings.post.id,
    4573                                 shortcode: embed.string()
     4565                                shortcode: '[embed]' + this.model.get('url') + '[/embed]'
    45744566                        }
    45754567                } )
    45764568                        .done( _.bind( this.renderoEmbed, this ) )
     
    45784570        },
    45794571
    45804572        renderFail: function () {
    4581                 this.$( '.setting' ).hide().filter( '.link-text' ).show();
     4573                this.$( '.link-text' ).show();
    45824574        },
    45834575
    45844576        renderoEmbed: function( response ) {
    4585                 var html = ( response && response.body ) || '',
    4586                         attr = {},
    4587                         opts = { silent: true };
    4588 
    4589                 this.$( '.setting' ).hide()
    4590                         .filter( '.link-text' )[ html ? 'hide' : 'show' ]();
    4591 
    4592                 if ( response && response.attr ) {
    4593                         attr = response.attr;
    4594 
    4595                         _.each( [ 'width', 'height' ], function ( key ) {
    4596                                 var $el = this.$( '.setting.' + key ),
    4597                                         value = attr[ key ];
    4598 
    4599                                 if ( value ) {
    4600                                         this.model.set( key, value, opts );
    4601                                         $el.show().find( 'input' ).val( value );
    4602                                 } else {
    4603                                         this.model.unset( key, opts );
    4604                                         $el.hide().find( 'input' ).val( '' );
    4605                                 }
    4606                         }, this );
     4577                var html = ( response && response.body ) || '';
     4578
     4579                if ( html ) {
     4580                        this.$('.embed-container').show().find('.embed-preview').html( html );
    46074581                } else {
    4608                         this.model.unset( 'height', opts );
    4609                         this.model.unset( 'width', opts );
     4582                        this.renderFail()
    46104583                }
    4611 
    4612                 this.$('.embed-container').show().find('.embed-preview').html( html );
    46134584        }
    46144585});
    46154586
  • src/wp-includes/media-template.php

     
    819819                <div class="embed-container" style="display: none;">
    820820                        <div class="embed-preview"></div>
    821821                </div>
    822                 <div class="embed-link-dimensions">
    823                         <label class="setting width">
    824                                 <span><?php _e( 'Maximum Width' ); ?></span>
    825                                 <input type="text" class="alignment" data-setting="width" />
    826                         </label>
    827                         <label class="setting height">
    828                                 <span><?php _e( 'Maximum Height' ); ?></span>
    829                                 <input type="text" class="alignment" data-setting="height" />
    830                         </label>
    831                 </div>
    832822        </script>
    833823
    834824        <script type="text/html" id="tmpl-embed-image-settings">