Allow anonymous and root users to be excluded from export

Created on 25 February 2025, about 1 month ago

Problem/Motivation

We've recently begun to use this module to manage development and testing fixtures, since it handles entity references significantly better than default_content.module. This works exceedingly well.

We're developing a fairly complex install profile, and so we regularly re-install our local development site, and then re-import our fixtures. Because we've just re-installed the site, we have new root and anonymous users. As a result the import reports an error due to duplicate usernames and emails. This is relatively innocuous, since the import otherwise succeeds.

Proposed resolution

It would be nice to be able to exclude UID0 and UID1 from export, to avoid this scenario. Alternatively, special-casing these users on import, to update the existing users (ie. overwriting their UUIDs) might also work; if we're concerned that content might depend on these users, for example.

Feature request
Status

Active

Version

4.0

Component

Export

Created by

🇨🇦Canada ergonlogic Montréal, Québec 🇨🇦

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @ergonlogic
  • 🇨🇦Canada ergonlogic Montréal, Québec 🇨🇦

    While I still think UID0 and UID1 are legitimate to special-case, I wonder if there might be a more generic solution. For example, I could currently use --entity-types to specify all of the entity types except for users. However, that'd be error-prone. If I could negate that option (eg. --exclude-entity-types) then I could export the users I care about separately, then easily ignore user entities altogether the rest of the time.

  • 🇨🇦Canada ergonlogic Montréal, Québec 🇨🇦

    FYI, I'm using a little work-around for now:

    echo Exporting fixture content.
    drush content-sync:export --yes --skiplist
    echo Deleting exported 'root' user.
    rm `grep "value: root@example.com" fixtures/ -rl`
    echo Deleting exported 'anonymous' user.
    rm `grep "is_anonymous: true" fixtures/ -rl`
    
Production build 0.71.5 2024