Handling front-end file uploads, considering safety and ease of use

I’m looking to adapt an existing forum-like plugin which has no facility for attaching media.

The plugin works as a Custom Post Type, so it would be as “simple” as attaching an image to a post.

I am only concerned about attaching images rather than any file type, but the plugin does use wp_editor and as such the solution should in some way integrate with that. I’m not overly fussed about creating a tinyMCE button, as long as the solution is capable of inserting a thumbnail of the image into the tinyMCE textarea.

Please note, I am referring to the front-end of my website rather than the admin area.

In an absolutely ideal situation, I would like this scenario to occur:

  • User clicks “Ask a question”
  • Use enters their post details
  • User clicks a button on the tinyMCE interface which, similar to StackExchange, asks the user to upload a file.
  • System then inserts the correctly-sized thumbnail into the tinyMCE textarea, having crunched the file into this thumbnail size
  • Clicking this image should offer the same functionality as an image attachment in a Post
  • User can then click again to insert a new image
  • User can also delete the image from the tinyMCE textarea as needed

However, I am happy for the tinyMCE button to be peripheral – if a “file upload” box is significantly easier, that’s fine.

I came across this link but I’m always apprehensive about reading WordPress articles on t’interwebs as I’m never too sure of how secure they are, nor am I a php security expert by any stretch of the imagination.

Thanks in advance,

2 s
2

I think the easiest way, since you’re already using the wp_editor function is going to be to just include the media buttons in the WP_Editor instance – this way you’ll have the native functions, including the “Insert into post” button, built in for free.

How you do this obviously depends on the plugin you’re trying to work with. However, this should get you started. Include code like this in a page template to display the editor, and you’ll get an editor on your page. Including this in a form and processing the results is another step not detailed here.

// Define the global variable $post_id - this is used by the media uploader
// to attach uploads to a specific post (so that the uploader can see uploads
// attached to this post and not others)
global $post_id;
$post_id = $post->ID; // should be the ID of the new post created

// Now filter the list of tabs available in the media editor.
// Remove everything but the "From Computer" option.

add_filter( 'media_upload_tabs', 'wpse42068_remove_additional_tabs' );

function wpse42068_remove_additional_tabs( $_default_tabs ) {
    return array( 'type' => __('From Computer') );
}

// Now just include the WP_Editor. See
// http://codex.wordpress.org/Function_Reference/wp_editor
// for settings available
wp_editor( '', 'posteditor', array( 'media_buttons' => true ) );

Defining the post ID is probably the critical part, and how you do this is will depend on the logic of your functionality. I would suggest:

  • Creating an auto-draft on first visiting this page, and saving the post ID returned in the global $post_id variable.
  • Then saving the created post with that same ID when the form is submitted.

Leave a Comment