-
-
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
2.x Add ImageHelper filters to customize paths #2725
Conversation
Added: - Filter "timber/image_helper/pre_analyze_url" to short-circuit the method's default URL analysis logic. - Filter "timber/image_helper/analyze_url" to mutate the analyzed URL components.
Added: - Filter "timber/image_helper/pre_theme_url_to_dir" to short-circuit the method's default path resolution logic. - Filter "timber/image_helper/theme_url_to_dir" to mutate the resolved path.
Moved original URL parsing from `analyze_url()` to new method `_analyze_url()`. Changed logic of filters; "timber/image_helper/pre_analyze_url" controls whether the original logic is called, to ensure the "timber/image_helper/analyze_url" filter is always applied.
Moved original URL conversion from `theme_url_to_dir()` to new method `_theme_url_to_dir()`. Changed logic of filters; "timber/image_helper/pre_theme_url_to_dir" controls whether the original logic is called, to ensure the "timber/image_helper/theme_url_to_dir" filter is always applied.
3ae1ffd
to
237930d
Compare
If any symbolic links in `TMPDIR` are not resolved, usage of `realpath()` risks paths being broken such as by `ImageHelper::analyze_url()` calling `URLHelper::remove_url_component()` to remove `WP_CONTENT_DIR`. Given a WordPress installation at: ```sh /var/folders/XX/XXXXXXXXXX/X/wordpress/ ``` And the following URL: ```sh http://example.org/wp-content/themes/timber-test-theme/assets/images/cardinals.jpg ``` The `ImageHelper::theme_url_to_dir()` method would return the following absolute path (which internally calls `realpath()`): ```sh /private/var/folders/XX/XXXXXXXXXX/X/wordpress/wp-content/themes/timber-test-theme/assets/images/cardinals.jpg ``` The `ImageHelper::analyze_url()` method would return the following components: ```php [ 'url' => 'http://example.org/wp-content/themes/timber-test-theme/assets/images/cardinals.jpg', 'absolute' => true, 'base' => 2, 'subdir' => '/private/themes/timber-test-theme/assets/images', 'filename' => 'cardinals', 'extension' => 'jpg', 'basename' => 'cardinals.jpg', ] ``` As illustrated by `subdir`, the absolute path is broken by `URLHelper::remove_url_component()` striping the symbolically linked path from the canonical path.
Changed: - Added `set_up()` and `tear_down()` from `TestExternalImage` to prepare test environment for content directory test. - Fixed tests of `testAnalyzeURLTheme()` based on `TestExternalImage`. These fixes will help with adding tests for `ImageHelper::theme_url_to_dir()`.
237930d
to
713a2b9
Compare
Changed: - Added `set_up()` and `tear_down()` to match `TestTimberImageHelperInternals` (from `TestExternalImage`) to prepare test environment for content directory test.
Adding filters is definitely the way to go. Because this isn’t a breaking change and we want to focus on getting 2.0 ready, I switched this to |
* 2.x: (95 commits) Update statements to Weak implicit Check expected values as suggested by @nlemoine fix: phpstan issues & use fully qualified imports Refactor file models: update phpdoc Refactor file models: remove file property Refactor file models Fix coding style issue Update method descriptions Update return types and documentation Fix is_external() to work with domains only Fix test Improve URLHelper is_local method Improve docblocks of URLHelper methods is_local and is_external Replace strstr in URLHelper is_external method Fix shortened return in URLHelper is_local method remove error_log and prefix functions add check to image create functions Run coding standard checks only with highest or stable dependencies Add CS fixes to ignored revs Fix some CS issues ...
@gchtr any update on this one now that 2.x is stable? :) Thanks! |
Hi @Moustachos , we have this in mind for a first minor release for Timber 2. Release date is TBD. |
Thanks @Levdbas 👍 |
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.
Thanks for taking this on, @mcaskill. And sorry for the longer wait.
I really appreciate that you took the time to carefully craft the DocBlocks for the filters with proper descriptions 🙌.
I just have on issue with the underscore prefixes in the private function names. Otherwise, this looks good to me and I think we can merge this for the next minor release.
Changed: - Renamed `_analyze_url` to `get_url_components`. - Renamed `_theme_url_to_dir` to `get_dir_from_theme_url`.
This looks good from my side 👍. @nlemoine Can you have a quick look and merge this, if it looks alright to you, too? |
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.
Still feels a bit odd to handle such things but doesn't hurt 👍
Related:
Issue
As reported in aforementioned issue and pull request, the
ImageHelper::theme_url_to_dir()
method is unable to resolve a URL/path in a non-standard theme directory structure.This is the case if your "stylesheet" directory is located in a subdirectory of your theme
my-theme/theme
as was initially proposed in Timber's v2 starter-theme and employed by various theme boilerplates.Solution
The solution, as proposed by @gchtr, is to add filters in
ImageHelper
to allow one to customize the logic of converting a URL to a path.I've added four filters:
ImageHelper::analyze_url()
timber/image_helper/pre_analyze_url
to short-circuit the method's default URL analysis logic.timber/image_helper/analyze_url
to mutate the default analyzed URL components.ImageHelper::theme_url_to_dir()
timber/image_helper/pre_theme_url_to_dir
to short-circuit the method's default path resolution logic.timber/image_helper/theme_url_to_dir
to mutate the default resolved path.I've added filters to
analyze_url()
since it's the one that callstheme_url_to_dir()
and also contains opinionated logic for analyzing the URL.Maybe the short-circuit filters could still call their non-pre filters, this would involve wrapping the default logic in a "did pre-filter return null".
Here's how its being used in a client project:
Impact
Adding an extra hooks could affect performance but it should be minor.
Usage Changes
The current logic of those methods does not change, filters are added to allow one to handle them early or mutate the default resulting values.
Considerations
See discussions from #2458
Testing
install-wp-tests.sh
to ensureTMPDIR
is canonical.TestTimberImageHelperInternals::testAnalyzeURLTheme()
.ImageHelper::analyze_url()
.ImageHelper::theme_url_to_dir()
.