- Issue created by @Balu Ertl
This is a follow-up of ACMS-4080 MR!71, in which Asset::getLocalThumbnailUri()
(source) has introduced an implementation flaw: currently it uses two different utilities (\Drupal\Core\File\FileSystem
and \Drupal\file\FileRepository
) for the same purpose of handling locally stored images. Apparently, in most cases, it works, but at least one situation has already been found when do not.
After the reinstallation of the module, during the creation of a new media item (usually by inserting via the Media Library modal window), if the {webroot}/sites/default/files/acquia_dam_thumbnails
directory already contains a thumbnail image in its {asset_id}/
subfolder with the {version_id}.png
filename (for example, as a residue of an earlier installation), then the getLocalThumbnailUri()
fails when trying to clear up the space before creation (around lines 555-560):
scanDirectory()
of FileSystem reports that there are files, which is true.{webroot}/sites/default/files/acquia_dam_thumbnails/{asset_id}/{version_id}.png
file with a given DAM asset existing in Widen.Rework the file-handling logic to rely entirely on the FileRepository utility, which represents a higher abstraction layer rather than directly instructing disk operations with FileSystem.
More feedback would be appreciated before hitting the lines of code to change anything.
Active
1.1
Code