Skip to content

Add a file existence check in class-wp-theme-json-resolver to avoid… - #10898

Open
pbearne wants to merge 6 commits into
WordPress:trunkfrom
pbearne:64620-read_json_file
Open

Add a file existence check in class-wp-theme-json-resolver to avoid…#10898
pbearne wants to merge 6 commits into
WordPress:trunkfrom
pbearne:64620-read_json_file

Conversation

@pbearne

@pbearne pbearne commented Feb 10, 2026

Copy link
Copy Markdown

… potential errors.

Trac ticket: https://core.trac.wordpress.org/ticket/64620

@github-actions

github-actions Bot commented Feb 10, 2026

Copy link
Copy Markdown

The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the props-bot label.

Unlinked Accounts

The following contributors have not linked their GitHub and WordPress.org accounts: @pbearne@git.wordpress.org.

Contributors, please read how to link your accounts to ensure your work is properly credited in WordPress releases.

Core Committers: Use this line as a base for the props when committing in SVN:

Props pbearne, westonruter, mukesh27, mindctrl, wildworks.

To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook.

@github-actions

Copy link
Copy Markdown

Test using WordPress Playground

The changes in this pull request can previewed and tested using a WordPress Playground instance.

WordPress Playground is an experimental project that creates a full WordPress instance entirely within the browser.

Some things to be aware of

  • The Plugin and Theme Directories cannot be accessed within Playground.
  • All changes will be lost when closing a tab with a Playground instance.
  • All changes will be lost when refreshing the page.
  • A fresh instance is created each time the link below is clicked.
  • Every time this pull request is updated, a new ZIP file containing all changes is created. If changes are not reflected in the Playground instance,
    it's possible that the most recent build failed, or has not completed. Check the list of workflow runs to be sure.

For more details about these limitations and more, check out the Limitations page in the WordPress Playground documentation.

Test this pull request with WordPress Playground.

Comment thread src/wp-includes/class-wp-theme-json-resolver.php Outdated
Co-authored-by: Weston Ruter <westonruter@gmail.com>
Comment thread src/wp-includes/class-wp-theme-json-resolver.php Outdated
used is_readable not file_exists

@westonruter westonruter left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@pbearne It's still not clear how to reproduce this issue. I wonder if wrapping the code in an is_readable() will just make it harder to debug. Should there be an else statement to say the expected file is missing? Again, having a way to reproduce this would be helpful, and thus could be added as a test.

@pbearne

pbearne commented Jul 17, 2026

Copy link
Copy Markdown
Author

@westonruter what would you like in the else
an error
an empty array is already returned as default

Copilot AI review requested due to automatic review settings July 22, 2026 15:25

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR adjusts WP_Theme_JSON_Resolver::read_json_file() to avoid calling wp_json_file_decode() when the passed path is not readable, preventing avoidable errors/warnings when theme.json (or similar JSON files) are missing or inaccessible.

Changes:

  • Add a readability check before decoding JSON files in WP_Theme_JSON_Resolver::read_json_file().
  • Preserve existing caching behavior for successfully decoded theme.json-shaped arrays.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

if ( is_array( $decoded_file ) ) {
static::$theme_json_file_cache[ $file_path ] = $decoded_file;
return static::$theme_json_file_cache[ $file_path ];
if ( is_readable( $file_path ) ) {
Copilot AI review requested due to automatic review settings July 22, 2026 16:08

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.

Comments suppressed due to low confidence (1)

src/wp-includes/class-wp-theme-json-resolver.php:114

  • is_readable() is true for directories, which would still allow wp_json_file_decode() to run. That function calls json_decode( file_get_contents( $filename ) ...); if file_get_contents() returns false (e.g., path is a directory), PHP 8+ can throw a TypeError because json_decode() requires a string. Consider requiring a regular file as well as readability before decoding.
			if ( is_readable( $file_path ) ) {
				$decoded_file = wp_json_file_decode( $file_path, array( 'associative' => true ) );
				if ( is_array( $decoded_file ) ) {
					static::$theme_json_file_cache[ $file_path ] = $decoded_file;
					return static::$theme_json_file_cache[ $file_path ];
				}

* @package WordPress
* @subpackage Theme
*
* @group theme
Comment on lines +86 to +94
// Test unreadable file.
if ( function_exists( 'posix_getpwuid' ) && 'root' !== posix_getpwuid( posix_geteuid() )['name'] ) {
$unreadable_file = DIR_TESTDATA . '/unreadable.json';
touch( $unreadable_file );
chmod( $unreadable_file, 0000 );
$result = @$read_json_file->invoke( null, $unreadable_file );
$this->assertSame( array(), $result );
unlink( $unreadable_file );
}
@t-hamano

Copy link
Copy Markdown
Contributor

@pbearne Can you address the feedback from Copilot? Both seem like reasonable points to me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants