Comprobar si un archivo ya está en la Biblioteca de medios

8

Estoy creando archivos personalizados en un complemento y agregándolos a la Biblioteca de Medios usando el código provisto en el Codex de Wordpress para wp_insert_attachment. Sin embargo, mi complemento ocasionalmente sobrescribe esos archivos. Necesito asegurarme de que los archivos no se vuelvan a agregar a la Biblioteca multimedia. Aquí está el código actual:

$wp_filetype = wp_check_filetype(basename($filename), null );
$wp_upload_dir = wp_upload_dir();
$attachment = array(
   'guid' => $wp_upload_dir['baseurl'] . '/' . _wp_relative_upload_path( $filename ), 
   'post_mime_type' => $wp_filetype['type'],
   'post_title' => preg_replace('/\.[^.]+$/', '', basename($filename)),
   'post_content' => '',
   'post_status' => 'inherit'
);
$attach_id = wp_insert_attachment( $attachment, $filename);
// you must first include the image.php file
// for the function wp_generate_attachment_metadata() to work
require_once(ABSPATH . 'wp-admin/includes/image.php');
$attach_data = wp_generate_attachment_metadata( $attach_id, $filename );
wp_update_attachment_metadata( $attach_id, $attach_data );

Solo necesito verificar si el archivo ya es parte de la Biblioteca de medios y actualizarlo si lo es. No tengo un post_id para trabajar, solo el enlace permanente y el guid.

Gracias por tu ayuda.

Dawson Goodell
fuente

Respuestas:

6
global $wpdb;
$image_src = wp_upload_dir()['baseurl'] . '/' . _wp_relative_upload_path( $filename );
$query = "SELECT COUNT(*) FROM {$wpdb->posts} WHERE guid='$image_src'";
$count = intval($wpdb->get_var($query));

Puede usar esto en la parte superior de su código. Luego verifique el valor de $count. Si es 0, puede continuar agregando el archivo adjunto

Mridul Aggarwal
fuente
2

Sé que esta es una vieja pregunta, pero no me gustó ninguna de estas respuestas, así que aquí está mi solución.

Esto verificará si el archivo existe. Si es así, actualizará el archivo adjunto existente; si no, creará un nuevo archivo adjunto.

// Get upload dir
$upload_dir    = wp_upload_dir();
$upload_folder = $upload_dir['path'];

// Set filename, incl path
$filename = "{$upload_folder}/myfile-{$id}.pdf";

// Check the type of file. We'll use this as the 'post_mime_type'.
$filetype = wp_check_filetype( basename( $filename ), null );

// Get file title
$title = preg_replace( '/\.[^.]+$/', '', basename( $filename ) );

// Prepare an array of post data for the attachment.
$attachment_data = array(
    'guid'           => $upload_dir['url'] . '/' . basename( $filename ),
    'post_mime_type' => $filetype['type'],
    'post_title'     => $title,
    'post_content'   => '',
    'post_status'    => 'inherit'
);

// Does the attachment already exist ?
if( post_exists( $title ) ){
  $attachment = get_page_by_title( $title, OBJECT, 'attachment');
  if( !empty( $attachment ) ){
    $attachment_data['ID'] = $attachment->ID;
  }
}

// If no parent id is set, reset to default(0)
if( empty( $parent_id ) ){
  $parent_id = 0;
}

// Insert the attachment.
$attach_id = wp_insert_attachment( $attachment_data, $filename, $parent_id );

// Generate the metadata for the attachment, and update the database record.
$attach_data = wp_generate_attachment_metadata( $attach_id, $filename );
wp_update_attachment_metadata( $attach_id, $attach_data );

En el ejemplo anterior, estoy usando un .pdf en mi $ filename pero puede reemplazarlo con cualquier nombre de archivo / tipo de archivo.

Lennart
fuente
1

Tengo este método (gracias Mridul):

function MediaFileAlreadyExists($filename){
    global $wpdb;
    $query = "SELECT COUNT(*) FROM {$wpdb->postmeta} WHERE meta_value LIKE '%/$filename'";
    return ($wpdb->get_var($query)  > 0) ;
}

// MediaFileAlreadyExists("my-image.png");
T.Todua
fuente
0

esta función toma como parámetro el nombre del archivo de medios y devuelve el meta_id si existe, de lo contrario, devuelve (falso).

function MediaFileAlreadyExists($filename){
    global $wpdb;
    $query = "SELECT meta_id FROM {$wpdb->postmeta} WHERE meta_value LIKE '%/$filename'";

    if ( $wpdb->get_var($query) ){
        return $wpdb->get_var($query);
    }

    return false;
}
martillado
fuente
0

Puede verificar si la imagen existe con post_exists($filename). Si existe una imagen, puede actualizarla y también puede crearla.

 //if image exist update else create it
        if (post_exists($filename)){
                $page = get_page_by_title($filename, OBJECT, 'attachment');
                $attach_id = $page->ID;

                $attach_data = wp_generate_attachment_metadata( $attach_id, $destination ); // Generate attachment data, filesize, height, width etc.

                wp_update_attachment_metadata( $attach_id, $attach_data ); // Add the above meta data

                add_post_meta($attach_id, '_wp_attachment_image_alt', $filealt); // Add the alt text 
        }
        else{

                $attach_id = wp_insert_attachment( $attachment, $destination, $post_id ); 

                $attach_data = wp_generate_attachment_metadata( $attach_id, $destination ); 

                wp_update_attachment_metadata( $attach_id, $attach_data ); 

                add_post_meta($attach_id, '_wp_attachment_image_alt', $filealt); 
            }
Altravista
fuente
1
¿Podría agregar una explicación en la respuesta sobre cómo funciona el código?
kero