web-dev-qa-db-ja.com

カスタム添付ファイルアップロード用に別のアップロードフォルダを使用する

それで、私は2つの別々のアップロードフォルダを使う方法を見つけようとしています。それは一般的なメディアアップロードのためのデフォルトのwp-content/uploadsと1つの特定のタイプの添付のためのwp-content/customと言います。

PDFファイルには、2つのカスタムユーザロールからしかアクセスできない、やや機密性の高いデータが保持されるため、組織とデータセキュリティの両方を区別しておくことが重要です。

それがお粗末だから私はあなたが私が働いてしまったコードを見せるのが少し恥ずかしいです、しかしここでそれは行きます:

    function custom_post_type_metabox_save_function($post_id) {

    global $post;

    // Verify auto-save, nonces, permissions and so on then:

    update_post_meta($post_id, "meta_key1", $_POST["value1"]);
    update_post_meta($post_id, "meta_key2", $_POST["value2"]);

// this is where it gets uply. I change the 'upload_path' to my desired one for this post type
    update_option('upload_path','wp-content/custom-upload-dir');

// then upload the file to it
wp_upload_bits($_FILES["pdfexame"]["name"], null, file_get_contents($_FILES["pdfexame"]["tmp_name"]));

// and then change it back to default... :$
    update_option('upload_path','');

}
add_action('save_post','custom_post_type_metabox_save_function');

私はむしろ2つのアップロードファイルをこのポストフォーマット用に1つと残りのためにもう1つだけ持つようにしたいと思います。それをきれいにする方法はありますか?

9
moraleida

私は完全にwpアップロードシステムを迂回することによってそれを解決することになったので、これは今それがどのように見えるかです:

/*
 * Define new upload paths
 */

$uploadfolder =  WP_CONTENT_DIR . '/exames'; // Determine the server path to upload files
$uploadurl = content_url() . '/exames/'; // Determine the absolute url to upload files
define(RM_UPLOADDIR, $uploadfolder);
define(RM_UPLOADURL, $uploadurl);

    function custom_post_type_metabox_save_function($post_id) {

        global $post;

        // Verify auto-save, nonces, permissions and so on then:

        update_post_meta($post_id, "meta_key1", $_POST["value1"]);
        update_post_meta($post_id, "meta_key2", $_POST["value2"]);
        update_post_meta($post_id, "meta_key3", $_POST["value3"]);

    $destination =  RM_UPLOADDIR; // Determine the path to upload files
    $filename = $_FILES["file"]["name"]; // Get the uploaded file name

    // This separates the extension from the rest of the file name
    $filename = strtolower($filename) ; 
    $exts = split("[/\\.]", $filename) ; 
    $n = count($exts)-1; 
    $exts = $exts[$n];

    $newname = time() . Rand(); // Create a new name
    $filepath = $destination . '/' . $newname.'.'.$exts; // Get the complete file path
    $filename = $newname.'.'.$exts; // Get the new name with the extension

    // Now, if the upload was successful we save a post meta with the filename, if not, save nothing
    if (move_uploaded_file($_FILES["pdfexame"]["tmp_name"], $filepath)) {
            update_post_meta($post_id, "rm_martins_exame_url", $filename); 
        }

  }
    add_action('save_post','custom_post_type_metabox_save_function');

それは私が前に持っていたものよりもずっと醜くはないが、これがupload_dirフィルタを使って行われることができればそれでもはるかに良いだろう。

4
moraleida