You are here

public function FeedsEnclosure::getFile in Feeds 8.2

Get a Drupal file object of the enclosed resource, download if necessary.

Parameters

$destination: The path or uri specifying the target directory in which the file is expected. Don't use trailing slashes unless it's a streamwrapper scheme.

Return value

A Drupal temporary file object of the enclosed resource.

Throws

Exception If file object could not be created.

File

lib/Drupal/feeds/FeedsEnclosure.php, line 84

Class

FeedsEnclosure
Enclosure element, can be part of the result array.

Namespace

Drupal\feeds

Code

public function getFile($destination) {
  if ($this
    ->getValue()) {

    // Prepare destination directory.
    file_prepare_directory($destination, FILE_MODIFY_PERMISSIONS | FILE_CREATE_DIRECTORY);

    // Copy or save file depending on whether it is remote or local.
    if (drupal_realpath($this
      ->getValue())) {
      $file = entity_create('file', array(
        'uid' => 0,
        'uri' => $this
          ->getValue(),
        'filemime' => $this->mime_type,
        'filename' => basename($this
          ->getValue()),
      ));
      if (dirname($file->uri) != $destination) {
        $file = file_copy($file, $destination);
      }
      else {

        // If file is not to be copied, check whether file already exists,
        // as file_save() won't do that for us (compare file_copy() and
        // file_save())
        $existing_files = file_load_multiple(array(), array(
          'uri' => $file->uri,
        ));
        if (count($existing_files)) {
          $existing = reset($existing_files);
          $file->fid = $existing->fid;
          $file->filename = $existing->filename;
        }
        $file
          ->save();
      }
    }
    else {
      $filename = basename($this
        ->getLocalValue());
      if (module_exists('transliteration')) {
        require_once drupal_get_path('module', 'transliteration') . '/transliteration.inc';
        $filename = transliteration_clean_filename($filename);
      }
      if (file_uri_target($destination)) {
        $destination = trim($destination, '/') . '/';
      }
      try {
        $file = file_save_data($this
          ->getContent(), $destination . $filename);
      } catch (Exception $e) {
        watchdog_exception('Feeds', $e, nl2br(check_plain($e)));
      }
    }

    // We couldn't make sense of this enclosure, throw an exception.
    if (!$file) {
      throw new Exception(t('Invalid enclosure %enclosure', array(
        '%enclosure' => $this
          ->getValue(),
      )));
    }
  }
  return $file;
}