-
-
Notifications
You must be signed in to change notification settings - Fork 828
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
(dev/core#4433) - Implement Civi::url() with prefixes and OOP enhancements #26861
Conversation
Thank you for contributing to CiviCRM! ❤️ We will need to test and review the PR. 👷 Introduction for new contributors
Quick links for reviewers |
|
||
// (p)lain text encoding | ||
case 'p': | ||
$this->htmlEscape = FALSE; |
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.
Ooh, an undocumented flag that overrules htmlize
! Yet another blow to its fragile ego... perhaps leading it to the brink of a well-deserved existential crisis.
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.
@totten this flag is still undocumented. Should it be removed?
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.
The "undocumented" note had confused me, but I see now: it's documented on Civi::url(...$flags...)
but not Url::useFlags($flags)
. That's easy to cleanup.
I should take a stab at the Smarty side before deciding whether to remove that flag. My suspicion is that it'll make it easier to tune Smarty. (Quick estimate: in core, there are ~530 places where Smarty wants HTML and ~130 places where it wants plain text.)
…tent rule for escaping inputs.
@colemanw So I've done a bunch of updates
So overall, from my POV, it has all the functionality I've expected. There are a couple possible areas of further consideration:
Those are all kind of debatable. Anyway, I'm not inclined to self-block any more... so I've removed "Draft/WIP" flag. |
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.
(Sorry, still not clear how the review process works here)
str_starts_with()
is PHP 8.0+ so we'll need a shim to continue support for PHP 7.x.
Civi/Core/Url.php
Outdated
case 'service': | ||
$result = $userSystem->url($this->getPath(), $this->getQuery(), $preferFormat === 'absolute', $this->composeFragment(), TRUE, FALSE, FALSE); | ||
break; | ||
|
||
case 'backend': | ||
$result = $userSystem->url($this->getPath(), $this->getQuery(), $preferFormat === 'absolute', $this->composeFragment(), FALSE, TRUE, FALSE); | ||
break; |
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.
Am i right in thinking that routing to $userSystem->url()
here provides an opportunity (sometime in the future) to replace it with something less problematic?
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.
@christianwach I do like the idea of $userSystem
having some more influence/visibility on the $scheme. For example, I don't think it's great for frontend://
and service://
to be conjoined like that. I'll add on some ideas for that...
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.
@christianwach So does 59af62f seem better/worse/same? It delegates to $userSystem->getRouteUrl()
instead of $userSystem->url()
. The main differences are:
UF::getRouteUrl()
receives the name (frontend
,backend
,service
) instead of multiple bools. It can potentially receive other/custom schemes if the UF has other environments.UF::getRouteUrl()
doesn't have to deal with the fragment or absolute/relative flag. (These seem amenable to generic handling.)
Another thing the UF might influence is the interpretation of current://
(ie detectScheme()
). With the current PR, the UF-integration could set civicrm_url_defaults
before invoking the page.
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.
@totten Thanks for starting to address this issue. I like the direction of travel - it's certainly a more readable way of collecting the various pieces of the URL together. Looks promising. Coming from a WordPress-integration perspective, my focus is less on how the pieces are collected and more on how those URLs are subsequently built for use in the various CMS contexts, i.e.
For now, it looks as though I can still work on the logic in |
Thanks for that last comment @christianwach. Those are some interesting contexts. Thinking about
|
I think we've sat on this one long enough and it has good test coverage. Let's start using it! |
Overview
This is a concrete demonstration of some ideas from https://lab.civicrm.org/dev/core/-/issues/4433.
Before
This function exists:
And that does... something. Have fun figuring it out...
After
(Docblock has more examples...)
Technical Details
In this rendition:
frontend://
).//foo.txt
means "getfoo.txt
with current scheme)frontend://ROUTE
andbackend://ROUTE
. Some of the asset/resource management supportsassetBuilder://NAME
andext://EXT/FILE
.