Skip to content

Route File and UploadedFile moves through WP_Filesystem instead of raw PHP calls - #13

Open
ashraful1971 wants to merge 2 commits into
themeum:mainfrom
ashraful1971:chore/filesystem
Open

Route File and UploadedFile moves through WP_Filesystem instead of raw PHP calls#13
ashraful1971 wants to merge 2 commits into
themeum:mainfrom
ashraful1971:chore/filesystem

Conversation

@ashraful1971

Copy link
Copy Markdown
Contributor

rename(), chmod(), mkdir(), is_writable(), and move_uploaded_file() are flagged or forbidden by WordPress.org's Plugin Check. File::move()/get_target_file() and UploadedFile::move() now go through wp_mkdir_p()/wp_is_writable() and a lazily-resolved Filesystem (WP_Filesystem) instance instead, matching the pattern Cache/Stores/FileStore.php already uses. Upload-source verification via is_uploaded_file() is unchanged. Adds unit test coverage for both move() paths using a disk-backed Filesystem test double bound into the container.

Verified against the real WordPress.org Plugin Check (plugin_review_phpcs) and a live HTTP upload through actual WP_Filesystem in the Docker playground.

…w PHP calls

rename(), chmod(), mkdir(), is_writable(), and move_uploaded_file() are flagged
or forbidden by WordPress.org's Plugin Check. File::move()/get_target_file()
and UploadedFile::move() now go through wp_mkdir_p()/wp_is_writable() and a
lazily-resolved Filesystem (WP_Filesystem) instance instead, matching the
pattern Cache/Stores/FileStore.php already uses. Upload-source verification
via is_uploaded_file() is unchanged. Adds unit test coverage for both move()
paths using a disk-backed Filesystem test double bound into the container.

Verified against the real WordPress.org Plugin Check (plugin_review_phpcs)
and a live HTTP upload through actual WP_Filesystem in the Docker playground.
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.

1 participant