]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/async-upload.php
WordPress 3.5.1
[autoinstalls/wordpress.git] / wp-admin / async-upload.php
1 <?php
2 /**
3  * Accepts file uploads from swfupload or other asynchronous upload methods.
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8
9 define('WP_ADMIN', true);
10
11 if ( defined('ABSPATH') )
12         require_once(ABSPATH . 'wp-load.php');
13 else
14         require_once('../wp-load.php');
15
16 if ( ! ( isset( $_REQUEST['action'] ) && 'upload-attachment' == $_REQUEST['action'] ) ) {
17         // Flash often fails to send cookies with the POST or upload, so we need to pass it in GET or POST instead
18         if ( is_ssl() && empty($_COOKIE[SECURE_AUTH_COOKIE]) && !empty($_REQUEST['auth_cookie']) )
19                 $_COOKIE[SECURE_AUTH_COOKIE] = $_REQUEST['auth_cookie'];
20         elseif ( empty($_COOKIE[AUTH_COOKIE]) && !empty($_REQUEST['auth_cookie']) )
21                 $_COOKIE[AUTH_COOKIE] = $_REQUEST['auth_cookie'];
22         if ( empty($_COOKIE[LOGGED_IN_COOKIE]) && !empty($_REQUEST['logged_in_cookie']) )
23                 $_COOKIE[LOGGED_IN_COOKIE] = $_REQUEST['logged_in_cookie'];
24         unset($current_user);
25 }
26
27 require_once('./admin.php');
28
29 if ( !current_user_can('upload_files') )
30         wp_die(__('You do not have permission to upload files.'));
31
32 header('Content-Type: text/html; charset=' . get_option('blog_charset'));
33
34 if ( isset( $_REQUEST['action'] ) && 'upload-attachment' === $_REQUEST['action'] ) {
35         define( 'DOING_AJAX', true );
36         include ABSPATH . 'wp-admin/includes/ajax-actions.php';
37
38         send_nosniff_header();
39         nocache_headers();
40
41         wp_ajax_upload_attachment();
42         die( '0' );
43 }
44
45 // just fetch the detail form for that attachment
46 if ( isset($_REQUEST['attachment_id']) && ($id = intval($_REQUEST['attachment_id'])) && $_REQUEST['fetch'] ) {
47         $post = get_post( $id );
48         if ( 'attachment' != $post->post_type )
49                 wp_die( __( 'Unknown post type.' ) );
50         $post_type_object = get_post_type_object( 'attachment' );
51         if ( ! current_user_can( $post_type_object->cap->edit_post, $id ) )
52                 wp_die( __( 'You are not allowed to edit this item.' ) );
53
54         switch ( $_REQUEST['fetch'] ) {
55                 case 3 :
56                         if ( $thumb_url = wp_get_attachment_image_src( $id, 'thumbnail', true ) )
57                                 echo '<img class="pinkynail" src="' . esc_url( $thumb_url[0] ) . '" alt="" />';
58                         echo '<a class="edit-attachment" href="' . esc_url( get_edit_post_link( $id ) ) . '" target="_blank">' . _x( 'Edit', 'media item' ) . '</a>';
59                         $title = $post->post_title ? $post->post_title : wp_basename( $post->guid ); // title shouldn't ever be empty, but use filename just in cas.e
60                         echo '<div class="filename new"><span class="title">' . esc_html( wp_html_excerpt( $title, 60 ) ) . '</span></div>';
61                         break;
62                 case 2 :
63                         add_filter('attachment_fields_to_edit', 'media_single_attachment_fields_to_edit', 10, 2);
64                         echo get_media_item($id, array( 'send' => false, 'delete' => true ));
65                         break;
66                 default:
67                         add_filter('attachment_fields_to_edit', 'media_post_single_attachment_fields_to_edit', 10, 2);
68                         echo get_media_item($id);
69                         break;
70         }
71         exit;
72 }
73
74 check_admin_referer('media-form');
75
76 $post_id = 0;
77 if ( isset( $_REQUEST['post_id'] ) ) {
78         $post_id = absint( $_REQUEST['post_id'] );
79         if ( ! get_post( $post_id ) || ! current_user_can( 'edit_post', $post_id ) )
80                 $post_id = 0;
81 }
82
83 $id = media_handle_upload( 'async-upload', $post_id );
84 if ( is_wp_error($id) ) {
85         echo '<div class="error-div">
86         <a class="dismiss" href="#" onclick="jQuery(this).parents(\'div.media-item\').slideUp(200, function(){jQuery(this).remove();});">' . __('Dismiss') . '</a>
87         <strong>' . sprintf(__('&#8220;%s&#8221; has failed to upload due to an error'), esc_html($_FILES['async-upload']['name']) ) . '</strong><br />' .
88         esc_html($id->get_error_message()) . '</div>';
89         exit;
90 }
91
92 if ( $_REQUEST['short'] ) {
93         // short form response - attachment ID only
94         echo $id;
95 } else {
96         // long form response - big chunk o html
97         $type = $_REQUEST['type'];
98         echo apply_filters("async_upload_{$type}", $id);
99 }