Error on the add encryption profile form when Web Profiler module is installed

Created on 6 January 2018, over 7 years ago
Updated 14 September 2024, 7 months ago

Hello,

I am testing the encrypt stack, and on the form admin/config/system/encryption/profiles/add, I obtain the following error even if the form still works:

The website encountered an unexpected error. Please try again later.
Error: Call to a member function getConfiguration() on null in Drupal\Core\Config\Entity\ConfigEntityBase->__sleep() (line 359 of core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php).
Drupal\Core\Config\Entity\ConfigEntityBase->__sleep()
serialize(Array) (Line: 49)
Symfony\Component\HttpKernel\DataCollector\DataCollector->serialize()
serialize(Array) (Line: 101)
Drupal\webprofiler\Profiler\DatabaseProfilerStorage->write(Object) (Line: 120)
Symfony\Component\HttpKernel\Profiler\Profiler->saveProfile(Object) (Line: 120)
Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelTerminate(Object, 'kernel.terminate', Object) (Line: 76)
Drupal\webprofiler\EventDispatcher\TraceableEventDispatcher->dispatch('kernel.terminate', Object) (Line: 88)
Symfony\Component\HttpKernel\HttpKernel->terminate(Object, Object) (Line: 32)
Stack\StackedHttpKernel->terminate(Object, Object) (Line: 635)
Drupal\Core\DrupalKernel->terminate(Object, Object) (Line: 22)

I don't have the error on the edit form.

πŸ› Bug report
Status

Needs review

Version

3.0

Component

User interface

Created by

πŸ‡«πŸ‡·France Grimreaper France πŸ‡«πŸ‡·

Live updates comments and jobs are added and updated live.
  • Needs tests

    The change is currently missing an automated test that fails when run with the original code, and succeeds when the bug has been fixed.

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.

  • πŸ‡―πŸ‡΅Japan ptmkenny

    This change seems reasonable, especially because it guarantees we will get an array, but when I tested with webprofiler 10.1.8 and encrypt 3.1.1 on core 10.2.6, I was unable to reproduce the original error.

  • πŸ‡―πŸ‡΅Japan ptmkenny

    Merged in the latest changes so that we can run the GitLab CI tests on this.

  • Pipeline finished with Success
    9 months ago
    Total: 174s
    #217758
  • πŸ‡¬πŸ‡§United Kingdom oily Greater London

    andrew.farquharson β†’ made their first commit to this issue’s fork.

  • Pipeline finished with Success
    8 months ago
    Total: 364s
    #263465
  • πŸ‡¬πŸ‡§United Kingdom oily Greater London

    @davisben @ptmkenny @rlhawk

    #13 'When creating a new profile, there is no encryption method selected yet, so encryption_method_configuration will be null' A new e.g. functional test that creates a new profile with 'encryption_method_configuration' set to null that currently fails but that the merge(s) make pass could be created if necessary..

  • πŸ‡¬πŸ‡§United Kingdom oily Greater London
  • πŸ‡¬πŸ‡§United Kingdom oily Greater London

    If the empty array allowed in the latest MR results in an empty 'encryption method' form select element then this would seem to be a problem as far as adding a new encryption profile entity via the form since the element is required: it cannot be left empty?

    Maybe an exception should be thrown stating that the user may need to disable eg the webprofiler module before adding any new EP's.

    Then a failing test can be created to test for the exception if an empty array is returned. The MR will make the test pass.

  • πŸ‡¬πŸ‡§United Kingdom oily Greater London

    @davisben I will try to recreate and test your MR. But it would be useful if you could please confirm whether your MR enables you to submit the form to add a new encryption profile? If the fix does not allow the form to 'do its job' then I think an exception should be thrown. But that would mean that the exception would be returned. The empty array would not be returned. It is unclear whether the MR just suppresses the error message in the screenshot or if it makes everything work as normal?

  • πŸ‡―πŸ‡΅Japan ptmkenny

    I reverted the coding standards changes to the MR. Coding standards are being addressed at πŸ“Œ Fix phpcs and make passing phpcs mandatory in GitLab CI Needs review and are out of scope for this issue.

  • Pipeline finished with Success
    7 months ago
    Total: 199s
    #281240
  • πŸ‡¬πŸ‡§United Kingdom oily Greater London

    I recreated the issue using DDEV quickstart for Drupal 9. Drupal 9.5.11, webprofiler 9.0.2 and devel 5.1.2.

    After doing a clean Drupal install using ddev, I installed encrypt then visited the encryption profile add form. The form loaded fine. Then I installed webprofiler and navigated back to the add form. The error covered the whole screen, the form did not load at all.

    I applied the fix in MR 2. The form loads once again with no errors.

    I was then able to complete the steps Outlined in this guide by creating the a key and encryption profile and testing the profile out to encrypt and decrypt some text.

    Therefore it seems that the MR 2 is a satisfactory fix for the issue in the case of Drupal 9.5.11.

  • πŸ‡¬πŸ‡§United Kingdom oily Greater London

    Regarding #13 I do not think this is the root cause of the error message. Because if it were the issue would appear even without the webprofiler module enabled. But this issue immediately appears when the webprofiler module is installed/ enabled.

    Note that the Real AES module and other similar modules install plugins which are ready-configured encryption methods. Those then appear in the select list in the add encryption profile form. Without at least one such plugin the form could never be saved as the encryption method field is required. At least one key needs to have been created to populate the keys field, also.

  • πŸ‡¬πŸ‡§United Kingdom oily Greater London

    I have been comparing with my Drupal 9 setup above a Drupal 10.3 setup with Encrypt version 8.x-3.x-dev. As reported at #14 (using Drupal 10.1) the issue cannot be reproduced on Drupal 10.3.

    The issue arises in accordance with the version of Webprofiler module. I am using Webprofiler:9.0.2 with my Drupal 9 setup and Webprofiler:10.1.10 with my Drupal 10 setup.

    9.0.2 installs a 'webprofiler' table in the database. 10.1.10 does not. 9.0.2 utilises the ConfigEntityBase::__sleep() method. 10.1.10 does not. You can comment out the ConfigEntityBase::__sleep() method and the encryption profile add form will load error free with 10.1.10.

    It seems that 10.1.10 makes minimal use of serialization and does not need to utilise the ConfigEntityBase::__sleep() method and it does not need to store data in the database.

  • πŸ‡¬πŸ‡§United Kingdom oily Greater London
  • πŸ‡¬πŸ‡§United Kingdom oily Greater London
Production build 0.71.5 2024