Make json schema validation an optional feature

Created on 21 November 2022, over 2 years ago
Updated 10 October 2023, over 1 year ago

Problem/Motivation

As discussed in #3322234: Missing dependency "justinrainbow/json-schema" on Drupal 8 , we currently require "justinrainbow/json-schema" as a required dependency for our json settings schema validation because this library is only present in drupal/core-dev, but not drupal/core. As this mostly adds unnecessary overhead, we should make requiring this library optional, because it usually is not needed.

Steps to reproduce

Proposed resolution

Update!
This got even easier with PHP 8.1! 🎉
https://www.geeksforgeeks.org/how-to-validate-json-in-php/

So we can remove that dependency and replace the code with the following, until we have PHP 8.3 as dependency.

    // @todo Remove this if, once we require PHP >=8.3
    if (function_exists('json_validate')) {
      return json_validate($json);
    }
    else {
      trigger_error('JSON was not validated, as the current PHP version < 8.3 doesn\'t support json_validate(). Assuming the JSON is correct.');
      return TRUE;
    }

Remaining tasks

User interface changes

API changes

Data model changes

📌 Task
Status

Postponed

Version

2.0

Component

Code

Created by

🇩🇪Germany Grevil

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

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024