Importing new files fails when "Autocreate entity" option is turned on.

Created on 16 May 2018, almost 7 years ago
Updated 27 November 2024, 4 months ago

Problem/Motivation

When you try to import files and you have the option "Autocreate entity" turned on for it, the import fails with the following message:

Missing bundle for entity type file

For the file target, files are already get created automatically, so the option has no use for it. It does disrupt the import process instead, because the file target is implemented a bit differently from other entity reference targets.

Steps to reproduce

  1. Install modules Node, File, Feeds.
  2. Create a content type with a file field.
  3. Create a feed type that imports nodes for this content type.
  4. On the mapping page, map to the file field, click the wheel icon in the "Configure" column for this target, and enable the "Autocreate entity" option.
  5. Add a feed and import an item that has a url to a file.

After import, something like the following messages appear:

Feed has been created.
Missing bundle for entity type file
Feed: Failed importing 1 Article.

Proposed resolution

Make sure that the option "Autocreate entity" is not available for the file target. I propose to do that as follows:

  1. Add a method called hasAutocreateSupport() to EntityReference.php to check if autocreate is possible, for now let that method return TRUE.
  2. Override the method in File.php and return FALSE there.
  3. Adjust EntityReference.php so that the the autocreate option is only defined/checked when that method returns TRUE: update findEntities(), defaultConfiguration(), buildConfigurationForm() and getSummary(). Call hasAutocreateSupport() from there.

Remaining tasks

  • Implement the proposed solution.
  • If unit tests fail after implementing the solution, check if the tests either need to be updated or that a new bug is introduced.
  • Update tests if needed.

User interface changes

The option "Autocreate entity" is no longer visible in the user interface for the file target.

Introduced terminology

API changes

The EntityReference class gets a new method which child classes could override.

Data model changes

The option "autocreate" in existing saved feed types for the file target will be ignored.

Original report by irinaz

I created CSV Upload import feed for content type Article (http://dev-feeds8.pantheonsite.io/admin/structure/feeds/manage/article_i...)

Images for article are downloaded from url and need to be Autocreated. When I run import, new images are created as temporary files and I get the following warning, and import of those articles is skipped.

field_image.0.target_id: This entity (file: 17) cannot be referenced.
field_image.0: You do not have access to the referenced entity (file: 17).

In case when I reference images by filename and these files are already in the system, I do not have this problem and images are correctly attached to articles.

There was a module https://www.drupal.org/project/view_unpublished β†’ that allows to reference unpublished node, but I cannot find anything similar for temporary images.

Thanks in advance for looking into this issue.

πŸ› Bug report
Status

Active

Version

3.0

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States irinaz

Live updates comments and jobs are added and updated live.
  • Novice

    It would make a good project for someone who is new to the Drupal contribution process. It's preferred over Newbie.

Sign in to follow issues

Merge Requests

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024