<?php
/**
* Accepts file uploads from swfupload.
*
*/
define('WP_ADMIN', true);
// look up for the path
require_once( dirname( dirname(__FILE__) ) . '/flag-config.php');
// Flash often fails to send cookies with the POST or upload, so we need to pass it in GET or POST instead
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']) )
$_COOKIE[AUTH_COOKIE] = $_REQUEST['auth_cookie'];
if ( empty($_COOKIE[LOGGED_IN_COOKIE]) && !empty($_REQUEST['logged_in_cookie']) )
$_COOKIE[LOGGED_IN_COOKIE] = $_REQUEST['logged_in_cookie'];
// don't ask me why, sometimes needed, taken from wp core
unset($current_user);
// admin.php require a proper login cookie
require_once(ABSPATH . '/wp-admin/admin.php');
header('Content-Type: text/plain; charset=' . get_option('blog_charset'));
//check for correct capability
if ( !is_user_logged_in() )
die('Login failure. -1');
//check for correct capability
if ( !current_user_can('FlAG Upload images') )
die('You do not have permission to upload files. -2');
//check for correct nonce
check_admin_referer('flag_swfupload');
//check for flag
if ( !defined('FLAG_ABSPATH') )
die('FlAGallery not available. -3');
include_once (FLAG_ABSPATH. 'admin/functions.php');
// get the gallery
$galleryID = (int) $_POST['galleryselect'];
echo flagAdmin::swfupload_image($galleryID);
?>