Upload file to remote storage

I am looking to overwrite the existing upload functionality to save the file on a remote storage service. The remote storage has an HTTP interface that allow me to post file and return an addressable URL back. The reason for doing this is that the remote storage service has large amount of space and is automatically replicated for high-availability.

I have already figured out how to send files across. However, I am not sure which hook/function I should use to overwrite the existing behavior.

1 Answer
1

Two options:

  1. Hook into 'wp_handle_upload', a filter provided by the function wp_handle_upload() in wp-admin/includes/file.php:

    apply_filters( 
        'wp_handle_upload', 
        array( 'file' => $new_file, 'url' => $url, 'type' => $type ), 'upload' 
    )
    

    Replace the new file URI with your remote URI.

  2. The function wp_insert_attachment() in wp-includes/post.php offers two actions:

    do_action('edit_attachment', $post_ID);
    do_action('add_attachment', $post_ID);
    

    You can get the attachment data by $post_ID and change any value here.

Leave a Comment