Naming of project/namespace is not up to convention

Created on 7 May 2024, about 2 months ago
Updated 7 June 2024, 20 days ago

Problem/Motivation

According to coding standards and composer package naming conventions for Drupal
https://www.drupal.org/docs/develop/coding-standards/composer-package-na... โ†’

- the package name, directory name and namespace should be the same, eg Drupal\cookie_consent_notice_by_cookieyes

In case of cookie_consent_notice_by_cookieyes because of the namespace name is different to package name:

composer require drupal/cookie_consent_notice_by_cookieyes
drush en -y cookieyes_scripts

this creates issues down the track with testing scripts, drupalpod, etc since they rely on FOLDER name, not .info.yml name

Proposed resolution

rename namespace to cookie_consent_notice_by_cookieyes

๐Ÿ“Œ Task
Status

Closed: duplicate

Version

2.0

Component

Code

Created by

๐Ÿ‡ฆ๐Ÿ‡บAustralia jannakha Brisbane!

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

Comments & Activities

  • Issue created by @jannakha
  • Status changed to Needs review about 2 months ago
  • Open on Drupal.org โ†’
    Core: 10.2.1 + Environment: PHP 8.2 & MySQL 8
    last update about 2 months ago
    Waiting for branch to pass
  • Hello, I have updated the namespace and module naming convention. I have created a patch for it as i am not able to push the code . There is access rights issue.
    Please review the patch.
    Thank you!

  • Status changed to Needs work about 2 months ago
  • ๐Ÿ‡ฆ๐Ÿ‡บAustralia jannakha Brisbane!

    Firstly, if you're still creating patches - please follow patch naming convention:
    [issue-number]-[comment-number]-[issue-description].patch
    it helps to identify which patch belongs to which issue, and the if it's a latest patch on the issue

    Secondly, use git workflow. There's an issue with default branch โ†’ but it's easily resolved on your issue branch.

    Thirdly, patch doesn't apply.

    Moving to Needs work.

  • Status changed to Needs review about 2 months ago
  • ๐Ÿ‡ฆ๐Ÿ‡บAustralia VladimirAus Brisbane, Australia
  • ๐Ÿ‡ฆ๐Ÿ‡บAustralia VladimirAus Brisbane, Australia

    VladimirAus โ†’ changed the visibility of the branch 3445609-naming-of-projectnamespace to hidden.

  • ๐Ÿ‡ฆ๐Ÿ‡บAustralia VladimirAus Brisbane, Australia

    Please the update MR.

  • ๐Ÿ‡ฎ๐Ÿ‡นItaly apaderno Brescia, ๐Ÿ‡ฎ๐Ÿ‡น
  • ๐Ÿ‡ฎ๐Ÿ‡นItaly apaderno Brescia, ๐Ÿ‡ฎ๐Ÿ‡น

    The namespace used by the module is correct for the module machine name. Usually, one of the modules in a project has the same machine name used from the project containing it, but that is not mandatory. (That is also the case of Drupal core, for which the project machine name is drupal, but none of its modules uses that machine name.)

  • Status changed to Needs work about 2 months ago
  • ๐Ÿ‡ฎ๐Ÿ‡นItaly apaderno Brescia, ๐Ÿ‡ฎ๐Ÿ‡น
    -name: Cookie Consent Notice by CookieYes
    -description: This plugin allows you to add the CookieYes script on overall site from the front-end. No need to open files and add them there.
    -package: Cookie Consent Notice by CookieYes
    -type: module
    -core_version_requirement: ^8 || ^9 || ^10
    -configure: cookieyes_scripts.admin.body
    -
    -# Information added by Drupal.org packaging script on 2023-02-05
    -version: '2.0.2'
    -project: 'cookie_consent_notice_by_cookieyes'
    -datestamp: 1675631189
    

    The cookieyes_scripts.info.yml file in the repository does not contain those lines.

    name: Cookie Consent Notice by CookieYes
    description: This plugin allows you to add the CookieYes script on overall site from the front-end. No need to open files and add them there.
    package: Cookie Consent Notice by CookieYes
    type: module
    core_version_requirement: ^8 || ^9 || ^10
    configure: cookieyes_scripts.admin.body
    

    The patch needs to be created from the repositories, not from the download archive drupal.org makes available.

  • ๐Ÿ‡ฆ๐Ÿ‡บAustralia VladimirAus Brisbane, Australia

    Namespace for drupal is cookieyes_scripts, however namespace for the composer is cookie_consent_notice_by_cookieyes.

    If someone would create cookieyes_scripts module on drupal.org, it would clash with this module hence the comment about namespace.

  • ๐Ÿ‡ฎ๐Ÿ‡นItaly apaderno Brescia, ๐Ÿ‡ฎ๐Ÿ‡น

    If somebody would create a module whose machine name is actions_permissions, there would be a conflict with the Actions Permissions module which is part of the Views Bulk Operations (VBO) โ†’ project, which is installed with Composer via composer require 'drupal/views_bulk_operations:^4.2'.

    For every project with more than a module, the namespace used for Composer is different from the module machine name for at least a module. Given that a project machine name is not required to be equal to the module machine name, that holds true also for projects containing a single module.

  • ๐Ÿ‡ฎ๐Ÿ‡นItaly apaderno Brescia, ๐Ÿ‡ฎ๐Ÿ‡น

    What Composer package naming conventions โ†’ , linked in the issue summary, says is that the Composer namespace for a project is built prepending drupal/ to the project machine name. It does not say what machine name a module must use and it cannot be used as prove that the module machine name for the module contained in this project is wrong.

  • ๐Ÿ‡ฆ๐Ÿ‡บAustralia VladimirAus Brisbane, Australia

    So, what's going to happen when someone would create cookieyes_scripts module and then it will clash with this module?

  • ๐Ÿ‡ฎ๐Ÿ‡นItaly apaderno Brescia, ๐Ÿ‡ฎ๐Ÿ‡น

    It will happen the same thing that happens if somebody creates a project whose machine name is actions_permissions containing a module with that same machine name.

  • ๐Ÿ‡ฎ๐Ÿ‡นItaly apaderno Brescia, ๐Ÿ‡ฎ๐Ÿ‡น

    I tried to create a test site on simplytest.me with this module and another one. The error message I got is the following one.

    Unable to install modules cookie_consent_notice_by_cookieyes due to missing
    modules cookie_consent_notice_by_cookieyes

    While having a module with the same machine name used for the project is not mandatory, the current module machine name does not allow to create a test site on simplytest.me that uses this module.

    I would like to fix this, but in a different branch, the same that is compatible with Drupal 11.

  • Status changed to Postponed about 1 month ago
  • ๐Ÿ‡ฎ๐Ÿ‡นItaly apaderno Brescia, ๐Ÿ‡ฎ๐Ÿ‡น
  • Status changed to Active 21 days ago
  • ๐Ÿ‡ฎ๐Ÿ‡นItaly apaderno Brescia, ๐Ÿ‡ฎ๐Ÿ‡น
  • ๐Ÿ‡ฎ๐Ÿ‡นItaly apaderno Brescia, ๐Ÿ‡ฎ๐Ÿ‡น

    (Creating a merge request for the 3.0.x branch is not possible in this issue, since it was created before the branch.)

  • Status changed to Closed: duplicate 20 days ago
  • ๐Ÿ‡ฎ๐Ÿ‡นItaly apaderno Brescia, ๐Ÿ‡ฎ๐Ÿ‡น
Production build 0.69.0 2024