Can't save clone with Pathauto

Created on 17 January 2022, about 3 years ago
Updated 11 December 2024, 4 months ago

Problem/Motivation

i can't save a cloned page with automatic url alias
MSG: The alias /xyz is already used in this language

Steps to reproduce

- create a page with Auto-Path (Configure URL alias pattern.)
- clone and save the page

🐛 Bug report
Status

Active

Version

1.0

Component

Code

Created by

🇩🇪Germany heavystonehead

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

Comments & Activities

Not all content is available!

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

  • 🇫🇷France duaelfr Montpellier, France

    I also have this issue on one of my projects.
    After xdebugging this, I figured out that the issue happens in \Drupal\path\Plugin\Field\FieldWidget\PathWidget::validateFormElement() where Drupal checks that the given alias doesn't already exists for another source but the same language.

    During the usual process, either the alias is empty (new node) or the alias matches the source (node edit).
    In our case, the alias is set to the cloned one by \Drupal\quick_node_clone\Entity\QuickNodeCloneEntityFormBuilder::getForm() but the source is empty so it doesn't match.

    I can see two ways of solving this:

    1. we unset the path alias before creating the new node or before building the form
    2. this is not working because it needs a saved entity

    Ideally, we should unset the path alias only if the pathauto checkbox is checked but we don't know that before building the form unless we look into the Request which seem really dirty.

    FIY the following hook implementation fixes the issues but it's not really clean either:

    /**
     * Implements hook_cloned_node_alter().
     */
    function MY_MODULE_cloned_node_alter(NodeInterface &$node) {
      $node->path->alias = NULL;
    }
    

    Does someone here with a big brain have an idea to fix this issue?

Production build 0.71.5 2024