Editor module does not honor file.settings.make_unused_managed_files_temporary

Created on 27 December 2024, 3 months ago

Problem/Motivation

The editor module is setting itself a file as permanent when registering a usage and setting it also as temporary when no usages are detected. I believe that's not its responsibility, as the file.usage service is (at FileUsageBase). Besides that, the new configuration file.settings.make_unused_managed_files_temporary added in #2801777: Give users the option to prevent drupal from automatically marking unused files as temporary โ†’ is not being honored for editor embedded files.

function _editor_record_file_usage(array $uuids, EntityInterface $entity) {
  foreach ($uuids as $uuid) {
    if ($file = \Drupal::service('entity.repository')->loadEntityByUuid('file', $uuid)) {
      /** @var \Drupal\file\FileInterface $file */
      if ($file->isTemporary()) {
        $file->setPermanent();
        $file->save();
      }
      \Drupal::service('file.usage')->add($file, 'editor', $entity->getEntityTypeId(), $entity->id());
    }
  }
}

Steps to reproduce

NA

Proposed resolution

Remove the code block:

/** @var \Drupal\file\FileInterface $file */
if ($file->isTemporary()) {
  $file->setPermanent();
  $file->save();
}

And let file.usage service taking care of it.

Remaining tasks

  • [ ] - Decide whether removing the code or not.
  • [ ] - Fix & MR.

User interface changes

Editor embedded files are not longer marked as temporary if file.settings.make_unused_managed_files_temporary is set.

Introduced terminology

None

API changes

None

Data model changes

None

Release notes snippet

None

๐Ÿ› Bug report
Status

Active

Version

11.0 ๐Ÿ”ฅ

Component

editor.module

Created by

๐Ÿ‡ช๐Ÿ‡ธSpain vidorado Logroรฑo (La Rioja)

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

Merge Requests

Comments & Activities

  • Issue created by @vidorado
  • ๐Ÿ‡ช๐Ÿ‡ธSpain vidorado Logroรฑo (La Rioja)
  • Merge request !10700created the mr โ†’ (Open) created by Unnamed author
  • Pipeline finished with Failed
    3 months ago
    Total: 426s
    #379662
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States smustgrave

    Should probably get a test showing this problem.

  • ๐Ÿ‡ช๐Ÿ‡ธSpain vidorado Logroรฑo (La Rioja)

    @smustgrave I'm not pretty sure about what you mean by getting a test. A Kernel test to prove this would be rather complex, as we would have to mock the EntityRepository and make it return a spy-mock of a File for some uuid.

    Besides that, we couldn't directly spy calls to setPermanent() as the setPermanent() method is really not called twice, thanks to a guard that calls first to isPermanent(), but the intention to set the file as permanent is there.

    class FileUsageBase {
      ...
      public function add(FileInterface $file, $module, $type, $id, $count = 1) {
        // Make sure that a used file is permanent.
        if (!$file->isPermanent()) {
          $file->setPermanent();
          $file->save();
        }
      ...
    }
    

    I've done an "empirical" test and taken a screenshot so the issue can be checked:

    As you can see in the last three items in the call stack:

    1. First _editor_record_file_usage() is called.
    2. Then DatabaseFileUsageBackend::add() is called
    3. Finally FileUsageBase::add() is called, where the intention is performed the second time. At this point, isPermanent() already returns TRUE, since it was set by _editor_record_file_usage()

    .

    Is this enough to check the issue?

  • ๐Ÿ‡ง๐Ÿ‡ชBelgium BramDriesen Belgium ๐Ÿ‡ง๐Ÿ‡ช

    NW is more appropriate.

  • ๐Ÿ‡ง๐Ÿ‡ชBelgium BramDriesen Belgium ๐Ÿ‡ง๐Ÿ‡ช

    Maybe we can just add a test (if it's not existing yet) that when we create a file using the Editor module, it ends up being permanent on the end. Not specifically checking if setPermanent is called twice, but just the end result.

    Also sorry for the commit and not applying the code suggestion, totally missed that.

  • ๐Ÿ‡ง๐Ÿ‡ชBelgium BramDriesen Belgium ๐Ÿ‡ง๐Ÿ‡ช

    Ok, I actually think this is already being tested.

    https://git.drupalcode.org/issue/drupal-3496195/-/blob/3496195-editor-mo...

  • Pipeline finished with Success
    3 months ago
    Total: 858s
    #383639
  • ๐Ÿ‡ช๐Ÿ‡ธSpain vidorado Logroรฑo (La Rioja)

    That makes sense to me, @bramdriesen. The risk I noticed here lies with the file.usage service and the module editor potentially interfering with each other when setting a file to permanent. It feels like a case of duplicated code.

    Ultimately, as for the tests, you're right that the final outcome and the critical functionality are what matter most (and youโ€™ve confirmed those are already being tested).

    So, I suppose that if we remove the code and the test EditorFileUsageTest::testFileSaveOperations() doesnโ€™t break, then it should be fine, right? :)

  • ๐Ÿ‡ง๐Ÿ‡ชBelgium BramDriesen Belgium ๐Ÿ‡ง๐Ÿ‡ช

    Correct ๐Ÿ™‚ a core maintainer can probably verify best if the current test is sufficient. But to me it looks to be the case. Latest test run is 100% green as wel after a random test failure.

    So I think we can actually set this as RTBC.

  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand quietone

    I read the IS, comments and the MR. When removing code, even if it looks wrong, we should check the original issue to see if there is a reason this was done. I have not done that for this issue. The if block being removed was added in #1932652: Add image uploading to WYSIWYGs through editor.module โ†’ .

    If this change is accepted there is a comment that would need to be changed. I left a comment in the MR.

    Updated the IS to mention that this is relying on existing tests.

  • ๐Ÿ‡ช๐Ÿ‡ธSpain vidorado Logroรฑo (La Rioja)

    The subject code in #1932652 was developed on August 2013 (although it was commited later). In that moment, the code setting the file as permanent in FileUsageBase::add() already existed. So I don't really know why this was done twice...

    @quietone, additionally I don't see your comment in the MR 10700 about a comment that has to be changed.

  • Status changed to Needs work 23 days ago
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States smustgrave

    So what are the steps to reproduce this bug?

    Also as test coverage goes if this is a bug then the current test isn't catching it right.

  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand quietone

    I forgot to save my comment and when I reread it I am not sure what I was referring to, so I have deleted it.

Production build 0.71.5 2024