Make WordPress Core

Ticket #23673: 23673.5.diff

File 23673.5.diff, 8.5 KB (added by wonderboymusic, 12 years ago)
  • wp-admin/edit-form-advanced.php

    diff --git wp-admin/edit-form-advanced.php wp-admin/edit-form-advanced.php
    index b96190f..ec28283 100644
    if ( post_type_supports( $post_type, 'post-formats' ) ) { 
    141141if ( post_type_supports($post_type, 'page-attributes') )
    142142        add_meta_box('pageparentdiv', 'page' == $post_type ? __('Page Attributes') : __('Attributes'), 'page_attributes_meta_box', null, 'side', 'core');
    143143
    144 if ( current_theme_supports( 'post-thumbnails', $post_type ) && post_type_supports( $post_type, 'thumbnail' ) )
    145                 add_meta_box('postimagediv', __('Featured Image'), 'post_thumbnail_meta_box', null, 'side', 'low');
     144$audio_post_support = $video_post_support = false;
     145$theme_support = current_theme_supports( 'post-thumbnails', $post_type ) && post_type_supports( $post_type, 'thumbnail' );
     146if ( 'attachment' === $post_type && ! empty( $post->post_mime_type ) ) {
     147        $audio_post_support = 0 === strpos( $post->post_mime_type, 'audio/' ) && current_theme_supports( 'post-thumbnails', 'attachment:audio' ) && post_type_supports( 'attachment:audio', 'thumbnail' );
     148        $video_post_support = 0 === strpos( $post->post_mime_type, 'video/' ) && current_theme_supports( 'post-thumbnails', 'attachment:video' ) && post_type_supports( 'attachment:video', 'thumbnail' );
     149}
     150
     151if ( $theme_support || $audio_post_support || $video_post_support )
     152        add_meta_box('postimagediv', __('Featured Image'), 'post_thumbnail_meta_box', null, 'side', 'low');
    146153
    147154if ( post_type_supports($post_type, 'excerpt') )
    148155        add_meta_box('postexcerpt', __('Excerpt'), 'post_excerpt_meta_box', null, 'normal', 'core');
  • wp-admin/includes/image.php

    diff --git wp-admin/includes/image.php wp-admin/includes/image.php
    index a842287..ecc13e1 100644
    function wp_generate_attachment_metadata( $attachment_id, $file ) { 
    7373        $attachment = get_post( $attachment_id );
    7474
    7575        $metadata = array();
     76        $support = false;
    7677        if ( preg_match('!^image/!', get_post_mime_type( $attachment )) && file_is_displayable_image($file) ) {
    7778                $imagesize = getimagesize( $file );
    7879                $metadata['width'] = $imagesize[0];
    function wp_generate_attachment_metadata( $attachment_id, $file ) { 
    116117                if ( $image_meta )
    117118                        $metadata['image_meta'] = $image_meta;
    118119
     120        } elseif ( preg_match( '#^video/#', get_post_mime_type( $attachment ) ) ) {
     121                $metadata = wp_read_video_metadata( $file );
     122                $support = current_theme_supports( 'post-thumbnails', 'attachment:video' ) && post_type_supports( 'attachment:video', 'thumbnail' );
     123        } elseif ( preg_match( '#^audio/#', get_post_mime_type( $attachment ) ) ) {
     124                $metadata = wp_read_audio_metadata( $file );
     125                $support = current_theme_supports( 'post-thumbnails', 'attachment:audio' ) && post_type_supports( 'attachment:audio', 'thumbnail' );
    119126        }
    120127
     128        if ( $support && ! empty( $metadata['image']['data'] ) ) {
     129                $ext = '.jpg';
     130                switch ( $metadata['image']['mime'] ) {
     131                case 'image/gif':
     132                        $ext = '.gif';
     133                        break;
     134                case 'image/png':
     135                        $ext = '.png';
     136                        break;
     137                }
     138                $basename = str_replace( '.', '-', basename( $file ) ) . '-image' . $ext;
     139                $uploaded = wp_upload_bits( $basename, '', $metadata['image']['data'] );
     140                if ( false === $uploaded['error'] ) {
     141                        $attachment = array(
     142                                'post_mime_type' => $metadata['image']['mime'],
     143                                'post_type' => 'attachment',
     144                                'post_content' => '',
     145                        );
     146                        $sub_attachment_id = wp_insert_attachment( $attachment, $uploaded['file'] );
     147                        $attach_data = wp_generate_attachment_metadata( $sub_attachment_id, $uploaded['file'] );
     148                        wp_update_attachment_metadata( $sub_attachment_id, $attach_data );
     149                        update_post_meta( $attachment_id, '_thumbnail_id', $sub_attachment_id );
     150                }
     151        }
     152        // remove the blob of binary data from the array
     153        unset( $metadata['image']['data'] );
     154
    121155        return apply_filters( 'wp_generate_attachment_metadata', $metadata, $attachment_id );
    122156}
    123157
  • wp-admin/includes/media.php

    diff --git wp-admin/includes/media.php wp-admin/includes/media.php
    index c58b2d7..8fe1b7e 100644
    add_filter( 'media_upload_gallery', 'media_upload_gallery' ); 
    23972397add_filter( 'media_upload_library', 'media_upload_library' );
    23982398
    23992399add_action( 'attachment_submitbox_misc_actions', 'attachment_submitbox_metadata' );
     2400
     2401/**
     2402 * Parse ID3v2, ID3v1, and getID3 comments to extract usable data
     2403 *
     2404 * @since 3.6.0
     2405 *
     2406 * @param array $metadata An existing array with data
     2407 * @param array $data Data supplied by ID3 tags
     2408 */
     2409function wp_add_id3_tag_data( &$metadata, $data ) {
     2410        foreach ( array( 'id3v2', 'id3v1' ) as $version ) {
     2411                if ( ! empty( $data[$version]['comments'] ) ) {
     2412                        foreach ( $data[$version]['comments'] as $key => $list ) {
     2413                                if ( ! empty( $list ) ) {
     2414                                        $metadata[$key] = reset( $list );
     2415                                        // fix bug in byte stream analysis
     2416                                        if ( 'terms_of_use' === $key && 0 === strpos( $metadata[$key], 'yright notice.' ) )
     2417                                                $metadata[$key] = 'Cop' . $metadata[$key];
     2418                                }
     2419                        }
     2420                        break;
     2421                }
     2422        }
     2423
     2424        if ( ! empty( $data['id3v2']['APIC'] ) ) {
     2425                $image = reset( $data['id3v2']['APIC']);
     2426                if ( ! empty( $image['data'] ) ) {
     2427                        $metadata['image'] = array(
     2428                                'data' => $image['data'],
     2429                                'mime' => $image['image_mime'],
     2430                                'width' => $image['image_width'],
     2431                                'height' => $image['image_height']
     2432                        );
     2433                }
     2434        } elseif ( ! empty( $data['comments']['picture'] ) ) {
     2435                $image = reset( $data['comments']['picture'] );
     2436                if ( ! empty( $image['data'] ) ) {
     2437                        $metadata['image'] = array(
     2438                                'data' => $image['data'],
     2439                                'mime' => $image['image_mime']
     2440                        );
     2441                }
     2442        }
     2443}
     2444
     2445/**
     2446 * Retrieve metadata from a video file's ID3 tags
     2447 *
     2448 * @since 3.6.0
     2449 *
     2450 * @param string $file Path to file.
     2451 * @return array|boolean Returns array of metadata, if found.
     2452 */
     2453function wp_read_video_metadata( $file ) {
     2454        if ( ! file_exists( $file ) )
     2455                return false;
     2456
     2457        $metadata = array();
     2458
     2459        if ( ! class_exists( 'getID3' ) )
     2460                require( ABSPATH . WPINC . '/ID3/class-getid3.php' );
     2461        $id3 = new getID3();
     2462        $data = $id3->analyze( $file );
     2463
     2464        if ( isset( $data['video']['lossless'] ) )
     2465                $metadata['lossless'] = $data['video']['lossless'];
     2466        if ( ! empty( $data['video']['bitrate'] ) )
     2467                $metadata['bitrate'] = (int) $data['video']['bitrate'];
     2468        if ( ! empty( $data['video']['bitrate_mode'] ) )
     2469                $metadata['bitrate_mode'] = $data['video']['bitrate_mode'];
     2470        if ( ! empty( $data['filesize'] ) )
     2471                $metadata['filesize'] = (int) $data['filesize'];
     2472        if ( ! empty( $data['mime_type'] ) )
     2473                $metadata['mime_type'] = $data['mime_type'];
     2474        if ( ! empty( $data['playtime_seconds'] ) )
     2475                $metadata['length'] = (int) ceil( $data['playtime_seconds'] );
     2476        if ( ! empty( $data['playtime_string'] ) )
     2477                $metadata['length_formatted'] = $data['playtime_string'];
     2478        if ( ! empty( $data['video']['resolution_x'] ) )
     2479                $metadata['width'] = (int) $data['video']['resolution_x'];
     2480        if ( ! empty( $data['video']['resolution_y'] ) )
     2481                $metadata['height'] = (int) $data['video']['resolution_y'];
     2482        if ( ! empty( $data['fileformat'] ) )
     2483                $metadata['fileformat'] = $data['fileformat'];
     2484        if ( ! empty( $data['video']['dataformat'] ) )
     2485                $metadata['dataformat'] = $data['video']['dataformat'];
     2486        if ( ! empty( $data['video']['encoder'] ) )
     2487                $metadata['encoder'] = $data['video']['encoder'];
     2488        if ( ! empty( $data['video']['codec'] ) )
     2489                $metadata['codec'] = $data['video']['codec'];
     2490
     2491        unset( $data['audio']['streams'] );
     2492        $metadata['audio'] = $data['audio'];
     2493
     2494        wp_add_id3_tag_data( $metadata, $data );
     2495
     2496        return $metadata;
     2497}
     2498
     2499/**
     2500 * Retrieve metadata from a audio file's ID3 tags
     2501 *
     2502 * @since 3.6.0
     2503 *
     2504 * @param string $file Path to file.
     2505 * @return array|boolean Returns array of metadata, if found.
     2506 */
     2507function wp_read_audio_metadata( $file ) {
     2508        if ( ! file_exists( $file ) )
     2509                return false;
     2510        $metadata = array();
     2511
     2512        if ( ! class_exists( 'getID3' ) )
     2513                require( ABSPATH . WPINC . '/ID3/class-getid3.php' );
     2514        $id3 = new getID3();
     2515        $data = $id3->analyze( $file );
     2516
     2517        if ( ! empty( $data['audio'] ) ) {
     2518                unset( $data['audio']['streams'] );
     2519                $metadata = $data['audio'];
     2520        }
     2521
     2522        if ( ! empty( $data['fileformat'] ) )
     2523                $metadata['fileformat'] = $data['fileformat'];
     2524        if ( ! empty( $data['filesize'] ) )
     2525                $metadata['filesize'] = (int) $data['filesize'];
     2526        if ( ! empty( $data['mime_type'] ) )
     2527                $metadata['mime_type'] = $data['mime_type'];
     2528        if ( ! empty( $data['playtime_seconds'] ) )
     2529                $metadata['length'] = (int) ceil( $data['playtime_seconds'] );
     2530        if ( ! empty( $data['playtime_string'] ) )
     2531                $metadata['length_formatted'] = $data['playtime_string'];
     2532
     2533        wp_add_id3_tag_data( $metadata, $data );
     2534
     2535        return $metadata;
     2536}