LinkitFormatter attempts to use non-existing methods of the GeneratedUrl class

Created on 12 March 2025, 25 days ago

Problem/motivation

When creating/using substitution plugins, the LinkitFormatter field formatter, when viewing elements, expects that such plugins would return an object of class GeneratedUrl (see line 170, return type).

Then in some places it would attempt to access non-existing setOption and getOption methods of the received generated URL object (see these line), e.g:

...
if (!empty($parsed_url['query'])) {
  $parsed_query = [];
  parse_str($parsed_url['query'], $parsed_query);
  if (!empty($parsed_query)) {
    $url->setOption('query', $parsed_query);
  }
}
if (!empty($parsed_url['fragment'])) {
  $url->setOption('fragment', $parsed_url['fragment']);
}
$attributes = (array) $url->getOption('attributes');
...

This obviously makes the site crash with "The website encountered an unexpected error. Try again later."

Steps to reproduce

This must be the case for all plugins returning GeneratedURL object, but in my case I observed this on a custom substitution plugin.

Proposed resolution

Don't perform any options manipulations on a GeneratedURL object.

πŸ› Bug report
Status

Active

Version

7.0

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States euk

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

Comments & Activities

Production build 0.71.5 2024