2008-01-25 14:21:11 -05:00
|
|
|
<?php
|
2008-08-11 16:26:31 -04:00
|
|
|
/**
|
|
|
|
* Accepts file uploads from swfupload or other asynchronous upload methods.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
2009-04-20 14:18:39 -04:00
|
|
|
|
|
|
|
define('WP_ADMIN', true);
|
2008-01-25 14:21:11 -05:00
|
|
|
|
|
|
|
if ( defined('ABSPATH') )
|
2008-05-21 01:59:27 -04:00
|
|
|
require_once(ABSPATH . 'wp-load.php');
|
2008-01-25 14:21:11 -05:00
|
|
|
else
|
2008-05-21 01:59:27 -04:00
|
|
|
require_once('../wp-load.php');
|
2008-01-25 14:21:11 -05:00
|
|
|
|
|
|
|
// Flash often fails to send cookies with the POST or upload, so we need to pass it in GET or POST instead
|
2008-06-24 18:19:27 -04:00
|
|
|
if ( is_ssl() && empty($_COOKIE[SECURE_AUTH_COOKIE]) && !empty($_REQUEST['auth_cookie']) )
|
|
|
|
$_COOKIE[SECURE_AUTH_COOKIE] = $_REQUEST['auth_cookie'];
|
|
|
|
elseif ( empty($_COOKIE[AUTH_COOKIE]) && !empty($_REQUEST['auth_cookie']) )
|
2008-01-25 14:21:11 -05:00
|
|
|
$_COOKIE[AUTH_COOKIE] = $_REQUEST['auth_cookie'];
|
2009-09-08 11:22:42 -04:00
|
|
|
if ( empty($_COOKIE[LOGGED_IN_COOKIE]) && !empty($_REQUEST['logged_in_cookie']) )
|
|
|
|
$_COOKIE[LOGGED_IN_COOKIE] = $_REQUEST['logged_in_cookie'];
|
2008-01-25 14:21:11 -05:00
|
|
|
unset($current_user);
|
2010-04-18 02:14:45 -04:00
|
|
|
require_once('./admin.php');
|
2008-01-25 14:21:11 -05:00
|
|
|
|
2011-12-10 19:03:24 -05:00
|
|
|
header('Content-Type: text/html; charset=' . get_option('blog_charset'));
|
2008-02-13 18:16:11 -05:00
|
|
|
|
|
|
|
if ( !current_user_can('upload_files') )
|
|
|
|
wp_die(__('You do not have permission to upload files.'));
|
|
|
|
|
2008-08-09 01:36:14 -04:00
|
|
|
// just fetch the detail form for that attachment
|
2008-11-14 18:01:16 -05:00
|
|
|
if ( isset($_REQUEST['attachment_id']) && ($id = intval($_REQUEST['attachment_id'])) && $_REQUEST['fetch'] ) {
|
2011-02-05 13:22:53 -05:00
|
|
|
$post = get_post( $id );
|
|
|
|
if ( 'attachment' != $post->post_type )
|
|
|
|
wp_die( __( 'Unknown post type.' ) );
|
|
|
|
$post_type_object = get_post_type_object( 'attachment' );
|
|
|
|
if ( ! current_user_can( $post_type_object->cap->edit_post, $id ) )
|
|
|
|
wp_die( __( 'You are not allowed to edit this item.' ) );
|
|
|
|
|
2008-09-27 04:17:55 -04:00
|
|
|
if ( 2 == $_REQUEST['fetch'] ) {
|
|
|
|
add_filter('attachment_fields_to_edit', 'media_single_attachment_fields_to_edit', 10, 2);
|
2009-05-20 21:42:40 -04:00
|
|
|
echo get_media_item($id, array( 'send' => false, 'delete' => true ));
|
2008-09-27 04:17:55 -04:00
|
|
|
} else {
|
2009-03-04 03:22:25 -05:00
|
|
|
add_filter('attachment_fields_to_edit', 'media_post_single_attachment_fields_to_edit', 10, 2);
|
2008-09-27 04:17:55 -04:00
|
|
|
echo get_media_item($id);
|
|
|
|
}
|
2008-04-14 19:09:14 -04:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2008-05-30 16:43:36 -04:00
|
|
|
check_admin_referer('media-form');
|
|
|
|
|
2008-01-25 14:21:11 -05:00
|
|
|
$id = media_handle_upload('async-upload', $_REQUEST['post_id']);
|
2010-05-23 06:59:52 -04:00
|
|
|
if ( is_wp_error($id) ) {
|
|
|
|
echo '<div class="error-div">
|
|
|
|
<a class="dismiss" href="#" onclick="jQuery(this).parents(\'div.media-item\').slideUp(200, function(){jQuery(this).remove();});">' . __('Dismiss') . '</a>
|
|
|
|
<strong>' . sprintf(__('“%s” has failed to upload due to an error'), esc_html($_FILES['async-upload']['name']) ) . '</strong><br />' .
|
|
|
|
esc_html($id->get_error_message()) . '</div>';
|
2008-01-25 14:21:11 -05:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2008-04-14 19:09:14 -04:00
|
|
|
if ( $_REQUEST['short'] ) {
|
|
|
|
// short form response - attachment ID only
|
|
|
|
echo $id;
|
2010-05-23 06:59:52 -04:00
|
|
|
} else {
|
2008-04-14 19:09:14 -04:00
|
|
|
// long form response - big chunk o html
|
|
|
|
$type = $_REQUEST['type'];
|
|
|
|
echo apply_filters("async_upload_{$type}", $id);
|
|
|
|
}
|