Add exclude regexp to exclude certain URL's from being automatically converted to linky enities.

Created on 15 September 2023, over 1 year ago
Updated 13 March 2024, about 1 year ago

Problem/Motivation

We are including tokens into href's (once converted it will be a valid URL). Because of the "Correct invalid HTML" filter, the token will br stripped, and this is called sometimes when editing the content and breaks the token. We have then converted the token into a proper URL, it now passes through the filter without breaking the token. However they are now being converted by linky.

Steps to reproduce

If we convert a token to something like "/?tok=[node:url]" linky will convert this into a entity.

Proposed resolution

Add a config entry which will be a regular expression to give full flexibility. We can add this to \Drupal\linkyreplacer\LinkyEntityUtility::getLinkyByHref() to do something similar to the check if the link is a linkly link.

Feature request
Status

Needs review

Version

2.0

Component

Code

Created by

🇦🇺Australia gordon Melbourne

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

Comments & Activities

  • Issue created by @gordon
  • 🇦🇺Australia gordon Melbourne
  • 🇦🇺Australia gordon Melbourne

    This was a pretty small change with a new config entry.

  • Status changed to Needs work over 1 year ago
  • 🇨🇦Canada jibran Toronto, Canada
    1. +++ b/config/install/linkyreplacer.settings.yml
      @@ -2,3 +2,4 @@ internal_patterns: ""
      +exclude_patter: ''
      

      We need a post update hook to update the existing config.

    2. +++ b/src/LinkyEntityUtility.php
      @@ -167,6 +167,14 @@ class LinkyEntityUtility implements LinkyEntityUtilityInterface {
      +    if ($exclude = $this->configFactory->get('linkyreplacer.settings')->get('exclude_pattern')) {
      

      We need some kind of validation for valid regex.

    3. +++ b/src/LinkyEntityUtility.php
      @@ -167,6 +167,14 @@ class LinkyEntityUtility implements LinkyEntityUtilityInterface {
      +      if (preg_match($exclude, $href)) {
      

      We need tests for this.

  • 🇦🇺Australia gordon Melbourne
  • Status changed to Needs review about 1 year ago
  • 🇦🇺Australia gordon Melbourne

    1. I have fixed up the typo and added in an update to update to set the default value.
    2. I have looked into this and to test the regular expression is to use preg_match(). If the expression is invalid it will return false, as opposed to not matching which will return 0.
    3. I have added in a test to check the if the exclusion will work.

Production build 0.71.5 2024