-
-
Notifications
You must be signed in to change notification settings - Fork 517
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor file models #2753
Refactor file models #2753
Conversation
- Remove Filesize class - Refactor ExternalImage, Attachment, Image to add types and getting metadata in a more lazy way - Add `format_bytes` filter to format raw file size into a human readable file size - Fix/add tests - Fix city-museum.jpg by removing exif data which was causing issues in tests
Note that I held myself back from removing more stuff 🙂 Things to consider:
I could go further but I'd like your views on this first :) |
I’ll look at this more closely soon, but I want to say that I totally agree with the changes. There are some details that we need to consider and I think I have some insight into some of your raised issues. This is definitely the direction we should take here. And we still can, because the |
That's good news! 😁 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have only a couple of small comments of the nitpicking type ;)
In general, this feels like the right way to go for me.
- I like that we can remove the differentiation between
size()
andsize_raw()
and only handle bytes, while leaving the formatting to developers. - It’s nice that you could add so many more types.
- Nice thing about accessing the metadata for attachments.
To me, the only thing missing are the relevant notes in the Upgrade Guide. Do you want me to take care of these, or do you want to add them yourself?
…-models # Conflicts: # src/Attachment.php # src/ExternalImage.php # src/FileSize.php # src/URLHelper.php
I removed the There are still things I'm not fully ok with:
This is something we can probably fix later. |
Issue
First intended to only remove the
Filesize
class and refactor thesize()
/size_raw()
methods for many reasons:Attachment
is a model, it's not in its scope to return/format a raw file size into a human readable one. You might want to format a size in other places, this is filters role.
), which is fine on the Twig side but what if I need the text only version of it? Although Timber is mostly about Twig, models can also be used PHP side and in various contexts (JSON, etc.). TheAttachment
model should only by responsible for returning a raw file size you can manage yourself afterwards.filesize
key which is set and stored on attachment first upload. TheAttachment::size()
method now try first to get that value before getting to filesystem which will lead to potentially better performances.While working on the above issue, I noticed that
Attachment
was setting every possible properties when building the object (get_info()
), getting values from database that might not be needed already and maybe won't at all.I decided to refactor this class to only grab metadata values when they are called which might lead into more efficient code.
Solution
format_bytes
filter to format raw file size into a human readable file sizeImpact
Usage Changes
If you want to format a file size, you will now have to use
{{ image.size|format_bytes(2) }}
to display a human readable file size.Considerations
Since metadata also contains image dimensions, ImageDimensions should also be refactored to grab those values from stored metadata rather than reading them from the filesystem.
Testing
Yes!