Token replacement replaces non-token substring like [0]

Created on 31 August 2023, over 1 year ago
Updated 12 September 2023, over 1 year ago

I'm trying to replicate Rabbit Hole module to redirect taxonomy term page when viewed to the search page prefiltered with according term.
I've used the Redirect unpublished example from the ECA library as a starting point.
All is good except one detail ;-) Facets.

The problem I'm facing is building the redirection url using ECA: as I'm using Search API and Facets, the expected url is kind of /search?f[0]=tags:[term:id]
While [term:tid] token is replaced with expected value, the [0] substring is replaced with nothing and prevents the search page from filtering the results.
I've tried playing with Tamper to bypass the [0] rewriting without success.

How should I proceed?

Maybe a test should be added before asking for token replacement to check if the substring is an existing token.
Maybe it's an issue for the Token module itself.

πŸ’¬ Support request
Status

Closed: works as designed

Version

2.0

Component

Documentation

Created by

πŸ‡«πŸ‡·France PhilY πŸ‡ͺπŸ‡ΊπŸ‡«πŸ‡· Paris, France

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

Comments & Activities

  • Issue created by @PhilY
  • πŸ‡«πŸ‡·France PhilY πŸ‡ͺπŸ‡ΊπŸ‡«πŸ‡· Paris, France
  • πŸ‡«πŸ‡·France PhilY πŸ‡ͺπŸ‡ΊπŸ‡«πŸ‡· Paris, France
  • πŸ‡©πŸ‡ͺGermany jurgenhaas Gottmadingen

    The token replace function has an option clear = TRUE and within ECA we call the replace function with that clear option being set most of the time. So, a token that's not found is being removed from the string. What you're describing is happening on purpose.

    A workaround may be to replace the [0] substring with some placeholder, e.g. ###ph###, and then, after the token replacement, do a search and replace to switch that back to [0].

  • πŸ‡«πŸ‡·France PhilY πŸ‡ͺπŸ‡ΊπŸ‡«πŸ‡· Paris, France

    Thanks, I've tried but the search and replace result shoud be stored in a temporary custom token to be used as url for the redirect action.
    In that last action, I shoud use 'replace tokens' to be able to use my custom token and then [0] (token in token) is still removed from the string...

  • πŸ‡©πŸ‡ͺGermany jurgenhaas Gottmadingen

    It sounds like you can turn the order around: first replace all your custom tokens and finally s&r the placeholder. As a result, you get a custom token that contains the fully resolved URL.

  • Status changed to Closed: works as designed over 1 year ago
  • πŸ‡«πŸ‡·France PhilY πŸ‡ͺπŸ‡ΊπŸ‡«πŸ‡· Paris, France

    Couldn't find a way to avoid [0] to be replaced as a token at one step or another so I ended encoding the url so /search?f[0]=tags:[term:id] is written in ECA as /search?f%5B0%5D=tags%3A[term:id] and it worked.
    Thanks @jurgenhaas anyway for your kind support for an non-related ECA issue.

Production build 0.71.5 2024