Make WordPress Core

Opened 4 years ago

Closed 4 years ago

Last modified 4 years ago

#50413 closed defect (bug) (fixed)

Update code and comments to remove "blacklist" and "whitelist"

Reported by: strangerstudios's profile strangerstudios Owned by: desrosj's profile desrosj
Milestone: 5.5 Priority: normal
Severity: normal Version:
Component: General Keywords: has-patch commit has-dev-note
Focuses: Cc:

Description (last modified by SergeyBiryukov)

Specifically, we want to change any use of "blacklist" to "blocklist" and any use of "whitelist" to "safelist".

In some cases a different word may be more appropriate or the language can be changed to avoid the issue.

I spent some time finding all of the cases of blacklist and whitelist in the core WP code and took notes on what actions could be taken.

Sometimes we can just change the words with no downside (that I could see). Sometimes the word use is based on a dependency in an included library. Sometimes the use is in a default theme. Sometimes we need to do more work to deprecate old function and filter names.

Here are my all my notes. I still need to do more research on uses of whitelist in particular.

I think we should break things down into smaller chunks. The "easy" cases can be separated out. And some of the cases are related around a common WP feature.

  • START NOTES -

Older trac ticket that updated the language on the front end: #48900

Here are the instances where the term blacklist shows up in the code.

https://github.com/WordPress/wordpress-develop/search?q=blacklist&unscoped_q=blacklist

A) The password-strengh-meter.js file uses blacklist
https://github.com/WordPress/WordPress/blob/2a0489ec49c449894471a599c1811aaf0fcbbb22/wp-admin/js/password-strength-meter.js

The blocklist functionality is only in our WP code. The zxcvbn library doesn't have a blocklist.

  1. Change the method and variable names in this file.
  1. This other WP core file uses the old method name: https://github.com/WordPress/WordPress/blob/001ffe81fbec4438a9f594f330e18103d21fbcd7/wp-admin/js/user-profile.js#L223
  1. We need to check if other plugins are using the specific userInputBlacklist method. At least one use here: https://github.com/strangerstudios/paid-memberships-pro/blob/272b47cf1cf041a45734678dfbf15b3ca699a241/js/pmpro-login.js#L15
  1. We potentially need to keep a version of the old method that is deprecated.
  1. Change the use in this unit test: https://github.com/WordPress/wordpress-develop/blob/98584d6e1191ad7ed62f79c13c343dade456d95d/tests/qunit/wp-admin/js/password-strength-meter.js

---

B) The sodium_compat library uses the term in its code. https://github.com/WordPress/WordPress/blob/d4ef90b236ce340591bd284b2ecaa085e4f42ffd/wp-includes/sodium_compat/src/Core/Ed25519.php#L380

  1. We should ask the maintainers of that library to consider changing their code to use the more inclusive terms. I believe this is the repo https://github.com/paragonie/sodium_compat. I didn't find any existing issues or PRs that address this. We could create an issue and/or PR for them.

---

C) The twentynineteen npm package.json has a config options for rtlccssConfig called blacklist. The blacklist value is set to {}. Based on this doc (https://rtlcss.com/learn/usage-guide/options/index.html) the default is {} and unlikely to change IMO. There is another option "useCalc" that isn't set in our package.json.

  1. We can remove this line https://github.com/WordPress/WordPress/blob/9e9be350e2b64d5c680219608b346e606f2223dc/wp-content/themes/twentynineteen/package.json#L23 and nothing should break.

---

D) The twentytwenty npm package.json has the same line as above.

  1. We can remove this line https://github.com/WordPress/WordPress/blob/9e9be350e2b64d5c680219608b346e606f2223dc/wp-content/themes/twentytwenty/package.json#L36 and nothing should break.

---

E) There is a function called wp_blacklist_check() which checks if a comment contains blocklisted characters or words. https://github.com/WordPress/wordpress-develop/blob/3bdf8b7b020be9b3b2308a4fdf6a27d5dde15dc4/src/wp-includes/comment.php#L1277

  1. There's also a hook named wp_blacklist_check. https://github.com/WordPress/wordpress-develop/blob/3bdf8b7b020be9b3b2308a4fdf6a27d5dde15dc4/src/wp-includes/comment.php#L1290

We'd have to change the name, change the docs, and keep a deprecated version of the hook for some time.

  1. We should check if other plugins are calling the function directly and assuming so, create a deprecated version of the whole function.

https://wpdirectory.net/search/01EADC773CDTAXVXRYYGB37NBT

In comment.php, we would also then have to replace the use of blacklist in the comment here: https://github.com/WordPress/wordpress-develop/blob/3bdf8b7b020be9b3b2308a4fdf6a27d5dde15dc4/src/wp-includes/comment.php#L17

and when it's used here: https://github.com/WordPress/wordpress-develop/blob/3bdf8b7b020be9b3b2308a4fdf6a27d5dde15dc4/src/wp-includes/comment.php#L818

  1. There is one unit test that uses the old function name. https://github.com/WordPress/wordpress-develop/blob/6b366c6620fdd5960cedcdf80955966a715efa82/tests/phpunit/tests/comment/wpBlacklistCheck.php#L18

After we make all other changes, we should be able to rewrite this test to use the new terms.

  1. Using blacklist_keys in the HTML attributes (name, id) of the Comment Blocklist field on the Discussion Options page.

https://github.com/WordPress/wordpress-develop/blob/8b9823f53621a63d0a47626920f6930f35db160c/src/wp-admin/options-discussion.php#L209

Change all blacklist_keys to blocklist_keys.

  1. When we change the name of the textarea, we will also have to change the name of the parameter we look for in the server code. That would be here https://github.com/WordPress/wordpress-develop/blob/50ece6d31c33b056b91fc1f204c618c76368925b/src/wp-admin/options.php#L106, and it seems we can just change the name there.
  1. This option is also set up as a default here https://github.com/WordPress/wordpress-develop/blob/8b9823f53621a63d0a47626920f6930f35db160c/src/wp-admin/includes/schema.php#L450. Change the name there.
  1. The formatting rules for this option are here https://github.com/WordPress/wordpress-develop/blob/b58973554da40b4965458d993a4703ec81e7ad28/src/wp-includes/formatting.php#L4881. Change the name there.
  1. On existing sites, the option is stored in the DB as blacklist_keys.

We would want to run a SQL query like this on update.

UPDATE $wpdb->options SET option_name = 'blocklist_keys' WHERE option_name = 'blacklist_keys';

Were other plugins accessing the option from the DB directly?

---

F) Comment in theme.php https://github.com/WordPress/wordpress-develop/blob/3bdf8b7b020be9b3b2308a4fdf6a27d5dde15dc4/src/wp-includes/theme.php#L2828

We can change Blacklist to Blocklist or reward the comment in general to avoid it.

---

G) This unit test for attachments uses the terms blacklist and whitelist in its tests of the mime type filter for uploads.

https://github.com/WordPress/wordpress-develop/blob/cfc3b57488458801c64c750cb500c98c1ef635ad/tests/phpunit/tests/post/attachments.php#L496

We can change those terms without breaking anything. The mime type filter itself (https://developer.wordpress.org/reference/hooks/upload_mimes/) doesn't use block/black/white/safe language anyway. So we can probably rename things to make the test even clearer.

---

H) This unit test for includes/schema.php has the word blacklist in a comment.

https://github.com/WordPress/wordpress-develop/blob/e72fff9ceffb41d22c48febfc5f97c0cd46f5884/tests/phpunit/tests/admin/includesSchema.php#L162

We can change that to blocklist or someone who understands what is being tested can probably rewrite the comment to be more clear.

---

I) The twentyfourteen theme has the word blacklist in a comment.

https://github.com/WordPress/wordpress-develop/blob/8b9823f53621a63d0a47626920f6930f35db160c/src/wp-content/themes/twentyfourteen/inc/featured-content.php#L236

We could say "We need to respect post ids already being excluded." or "We need to respect post ids already in the array."

---

J) The wp-admin/options.php file has a variable $whitelist_options that is used to make sure only specific options get updated on the options pages.

https://github.com/WordPress/wordpress-develop/blob/50ece6d31c33b056b91fc1f204c618c76368925b/src/wp-admin/options.php

  1. Can change all uses of that variable within this file to $safelist_options.
  1. There is a filter whitelist_options as well here https://github.com/WordPress/wordpress-develop/blob/50ece6d31c33b056b91fc1f204c618c76368925b/src/wp-admin/options.php#L209

We can change that to safelist_options. We would need to add a deprecated filter for the old use.

We would need to update the documentation.

  1. Update the error message here https://github.com/WordPress/wordpress-develop/blob/50ece6d31c33b056b91fc1f204c618c76368925b/src/wp-admin/options.php#L224

---

Here are some instances where whitelist shows up in the code. Many of these are related to the above instances of blacklist, many are not. I haven't code through all of these yet.

https://github.com/WordPress/wordpress-develop/search?q=whitelist&unscoped_q=whitelist

K) In wp-admin/includes/plugin.php there are a couple of related functions that have the word whitelist in them. add_option_whitelist() and remove_option_whitelist().

https://github.com/WordPress/wordpress-develop/blob/3bdf8b7b020be9b3b2308a4fdf6a27d5dde15dc4/src/wp-admin/includes/plugin.php#L2139

Also option_update_filter() is a callback for the whitelist_options filter and calls those functions.

There are 2 global variables $whitelist_options and $new_whitelist_options.

The $new_whitelist_options global seems to only be used by the register_setting() function https://github.com/WordPress/wordpress-develop/blob/8b9823f53621a63d0a47626920f6930f35db160c/src/wp-includes/option.php#L2117

But it's also showing up in 108 or so plugin: https://wpdirectory.net/search/01EB1MCARJHZ77593CWHEXWH3C

We could potentially update option_update_filter() function and remove the need for the $new_whitelist_options global by just using the $wp_registered_settings one and building a one time array in the right format for the add_option_whitelist function. The "group" is in the args for the options in $wp_registered_settings. We would create arrays out of those groups.

Attachments (7)

50413.diff (1.0 KB) - added by Hareesh Pillai 4 years ago.
Comment updates
50413.2.diff (1.3 KB) - added by desrosj 4 years ago.
50413.3.diff (3.5 KB) - added by desrosj 4 years ago.
50413.4.diff (1.3 KB) - added by desrosj 4 years ago.
approach-1.diff (2.4 KB) - added by desrosj 4 years ago.
approach-2.diff (11.2 KB) - added by desrosj 4 years ago.
50413.5.diff (2.6 KB) - added by SergeyBiryukov 4 years ago.

Download all attachments as: .zip

Change History (60)

#1 @desrosj
4 years ago

  • Milestone changed from Awaiting Review to 5.5
  • Version trunk deleted

Thanks for all of this research! It was fun to tag along. Adding to 5.5, and going to explore further.

#2 @SergeyBiryukov
4 years ago

  • Description modified (diff)

#3 @desrosj
4 years ago

I've opened a PR upstream for the sodium_compat library: https://github.com/paragonie/sodium_compat/pull/121.

#4 @jorbin
4 years ago

Upstream PR for sodium compat has been merged

#5 @desrosj
4 years ago

  • Owner set to desrosj
  • Status changed from new to assigned

#6 @desrosj
4 years ago

Upstream PR for the Requests library: https://github.com/rmccue/Requests/pull/387

This ticket was mentioned in PR #341 on WordPress/wordpress-develop by desrosj.


4 years ago
#7

  • Keywords has-patch has-unit-tests added

A working PR to replace the terms "whitelist" and "blacklist" in the WordPress codebase.

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

Todo

  • [ ] Automatically change blacklist_keys to blocklist_keys when calling get_option( 'blacklist_keys' ), just in case plugins are accessing that value directly.
  • [ ] Finish replacing occurrences of "whitelist".
  • [ ] Decide how to handle the $new_whitelist_options global variable ([some plugins](https://wpdirectory.net/search/01EB1MCARJHZ77593CWHEXWH3C) access it directly).
  • [ ] Probably a few more steps.

#8 @desrosj
4 years ago

  • Keywords has-unit-tests removed

I have a working branch attached. All instances of blacklist have been replaced, and about 1/3 of the instances of whitelist. I noted some questions/todos I had as I went in the PR description.

desrosj commented on PR #341:


4 years ago
#9

I am going to open a new ticket for $new_whitelist_options. I am also not going to automatically switch option keys. My plan is to post a dev note after this gets committed, and I will work on submitting PRs to plugins using the old options directly/work with the plugin team to send emails to plugin authors.

#10 @desrosj
4 years ago

The PR is ready for review! I also branched off #50434 to tackle the $new_whitelist_options global variable separately.

Ayesh commented on PR #341:


4 years ago
#11

As a person of color and someone who speaks English as a secondary language, this is looking great, in both technical and semantic ends. Thank you!

In some cases, the use of wording, for example allowed list of words makes it much more clear than just using the word whitelist.

Decide how to handle the $new_whitelist_options global variable (some plugins access it directly).

I suppose the least disruptive approach would to $new_whitelist_options = &$new_allowed_options, and submit tickets in relevant plugins to update the variable.

Another way would be to convert $new_allowed_options to an ArrayAccess implementation, and emit a deprecation notice every time an array key is accessed.

desrosj commented on PR #341:


4 years ago
#12

I suppose the least disruptive approach would to $new_whitelist_options = &$new_allowed_options, and submit tickets in relevant plugins to update the variable.

Another way would be to convert $new_allowed_options to an ArrayAccess implementation, and emit a deprecation notice every time an array key is accessed.

@Ayesh Those are good options to explore. I have opened a different ticket to explore that as I think that needs to receive more testing. Do you mind sharing those ideas on that new ticket? [Core-#50434](https://core.trac.wordpress.org/ticket/50434)

#13 @desrosj
4 years ago

  • Resolution set to fixed
  • Status changed from assigned to closed

In 48121:

General: Remove “whitelist” and “blacklist” in favor of more clear and inclusive language.

“The WordPress open source community cares about diversity. We strive to maintain a welcoming environment where everyone can feel included.”

With this commit, all occurrences of “whitelist” and “blacklist” (with the single exception of the $new_whitelist_options global variable) are removed. A new ticket has been opened to explore renaming the $new_whitelist_options variable (#50434).

Changing to more specific names or rewording sentences containing these terms not only makes the code more inclusive, but also helps provide clarity. These terms are often ambiguous. What is being blocked or allowed is not always immediately clear. This can make it more difficult for non-native English speakers to read through the codebase.

Words matter. If one contributor feels more welcome because these terms are removed, this was worth the effort.

Props strangerstudios, jorbin, desrosj, joemcgill, timothyblynjacobs, ocean90, ayeshrajans, davidbaumwald, earnjam.
See #48900, #50434.
Fixes #50413.

#15 @desrosj
4 years ago

In 48122:

General: Reference the correct database version for 5.5.0 upgrades.

Follow up to [48121].

See #50413.

#16 @desrosj
4 years ago

  • Keywords needs-dev-note added
  • Summary changed from Enhancement: Update code and comments to use more inclusive language. to Update code and comments to remove "blacklist" and "whitelist"

Marking for a dev note. There also will need to be some follow up communication to plugin developers.

@Hareesh Pillai
4 years ago

Comment updates

#17 @Hareesh Pillai
4 years ago

50413.diff updates the comments to refer to the right function name, and a minor grammatical fix.

@desrosj
4 years ago

#18 @desrosj
4 years ago

In 48124:

Docs: Small inline documentation corrections following [48121].

Also, remove the version argument from the wp.deprecated() call in password-strength-meter.js. This argument is for specifying the version a feature will be removed, not when the feature was removed.

Props hareesh-pillai.
Fixes #50413.

#19 follow-up: @desrosj
4 years ago

Thanks @hareesh-pillai! Good catches.

I also noticed that the wp.deprecated package indicates that the provided version will remove the function, not as when it was deprecated. That will also need to be fixed, and is in 50413.2.diff.

I opened a ticket upstream requesting that the ability to specify a deprecated version is added, but the version argument should be removed for now.

#20 in reply to: ↑ 19 ; follow-ups: @ocean90
4 years ago

Replying to desrosj:

I also noticed that the wp.deprecated package indicates that the provided version will remove the function, not as when it was deprecated. That will also need to be fixed, and is in 50413.2.diff.

Instead of using wp.deprecated I think a simple window.console.log would be sufficient here. This will avoid three more dependencies.

add_option_allowed_list() and remove_option_allowed_list() sound a bit odd now. Thoughts on using add_allowed_options() and remove_allowed_options() instead?

#21 in reply to: ↑ 20 @SergeyBiryukov
4 years ago

Replying to ocean90:

add_option_allowed_list() and remove_option_allowed_list() sound a bit odd now. Thoughts on using add_allowed_options() and remove_allowed_options() instead?

(add|remove)_allowed_options() seems better to me too, would be consistent with the $allowed_options global.

#22 @SergeyBiryukov
4 years ago

  • Resolution fixed deleted
  • Status changed from closed to reopened

@desrosj
4 years ago

#23 in reply to: ↑ 20 @desrosj
4 years ago

Replying to ocean90:

I also noticed that the wp.deprecated package indicates that the provided version will remove the function, not as when it was deprecated. That will also need to be fixed, and is in 50413.2.diff.

Instead of using wp.deprecated I think a simple window.console.log would be sufficient here. This will avoid three more dependencies.

add_option_allowed_list() and remove_option_allowed_list() sound a bit odd now. Thoughts on using add_allowed_options() and remove_allowed_options() instead?

Agreed! 50413.3.diff makes these adjustments.

This ticket was mentioned in Slack in #core by desrosj. View the logs.


4 years ago

#25 @desrosj
4 years ago

  • Resolution set to fixed
  • Status changed from reopened to closed

In 48142:

General: Rename (add|remove)_option_allowed_list() to (add|remove)_allowed_option().

The new names make the purpose more clear. It also adds consistency with the $allowed_options global variable.

Also in this change, the wp-deprecated dependency has been removed from the password strength meter in favor of a window.console.log() call to avoid adding 3 dependencies for one deprecated notice.

Props SergeyBiryukov, ocean90, desrosj
Fixes #50413.

#26 follow-up: @kebbet
4 years ago

Just noted the whitelist-term in the documentation. I think it should be updated aswell. Should a ticked be created on the meta trac for this?
https://developer.wordpress.org/reference/functions/check_upload_mimes/

#27 in reply to: ↑ 26 ; follow-up: @SergeyBiryukov
4 years ago

Replying to kebbet:

Just noted the whitelist-term in the documentation. I think it should be updated aswell. Should a ticked be created on the meta trac for this?

No need for a ticket, it will be automatically updated after WordPress 5.5 is released.

#28 in reply to: ↑ 27 @kebbet
4 years ago

Replying to SergeyBiryukov:

No need for a ticket, it will be automatically updated after WordPress 5.5 is released.

Great! Thanks for clearifying!

#29 @desrosj
4 years ago

Your comment reminded me that I needed to update the Spelling Best Practices page in the handbook. That is now updated and contains suggestions for alternative language: https://make.wordpress.org/core/handbook/best-practices/spelling/

@desrosj
4 years ago

#30 @desrosj
4 years ago

  • Resolution fixed deleted
  • Status changed from closed to reopened

The upgrade routine here requires a small adjustment.

If the DB version in the conditional check that invokes upgrade_550() changes before 5.5 is released, the two options adjusted as a result of this ticket will have their values overwritten if the upgrade routine had previously run (those running beta or nightlies).

50413.4.diff should address that.

#31 @desrosj
4 years ago

  • Resolution set to fixed
  • Status changed from reopened to closed

In 48400:

Upgrade/Install: Prevent some 5.5.0 upgrade routines from running twice.

This will prevent the options renamed for 5.5.0 from being converted twice. If a new update routine is added before 5.5 is released, the option values would be erased for anyone running trunk or nightlies without this change.

Props azaozz, desrosj, SergeyBiryukov, whyisjake.
Fixes #50413.

#32 @SergeyBiryukov
4 years ago

In 48405:

Upgrade/Install: Prevent the upgrade routine for updating the comment_type field in the comments table from running twice.

Follow-up to [47597], [48400].

See #50413, #49236.

This ticket was mentioned in Slack in #polyglots by felipeelia. View the logs.


4 years ago

#34 @desrosj
4 years ago

In 48477:

General: Rename the $new_whitelist_options global variable.

This change renames $new_whitelist_options to $new_allowed_options. This makes the variable’s purpose more clear, and promotes using more inclusive language.

For backwards compatibility, the new variable is passed by reference to the old one.

Follow up to [48121].

Props ayeshrajans, desrosj, jorbin, SergeyBiryukov.
See #50413.
Fixes #50434.

#35 @johnjamesjacoby
4 years ago

I believe I may have discovered a problem: plugins that call get_option( 'blacklist_keys' ).

Both bbPress and BuddyPress use this option for preventing the same undesirable words for Comments from appearing in Forums, Profiles, Activity, and other such places.

  • Previous to WordPress 5.5, it would return results
  • Currently, it returns false, and also results in an extra database query as a cache miss

This ultimately means that plugins using the old key are led to believe there are no blocked words, causing them to unintentionally allow the undesirable words through.

Added to this, the Options API does not have a clever way to announce to plugins that an option key is deprecated (like _deprecated_option() or something). To support the new key, plugins using blacklist_keys need to do a hard version check, using is_wp_version_compatible() or equivalent.

I think it may be appropriate for WordPress to anticipate this situation internally.

It would be possible using pre_option_ and pre_update_option_ hooks to redirect get_option() calls and update_option() calls to ensure anyone using the old blacklist_keys key would be interacting with the blocklist equivalent under the hood.

Thoughts?

Last edited 4 years ago by johnjamesjacoby (previous) (diff)

#36 @desrosj
4 years ago

  • Resolution fixed deleted
  • Status changed from closed to reopened

Thanks @johnjamesjacoby for finding this! I do agree this is a good safety mechanism to add. I had thought about it, but did not end up including that in the changes above.

For the current release, we could handle the specific options changed here. In 5.6, maybe we could explore adding a more robust _deprecated_option() and maintain a list of option keys that are changed going forwards.

I can probably get a first patch set up tomorrow, but feel free to create one if you are able to sooner!

This ticket was mentioned in Slack in #buddypress by jjj. View the logs.


4 years ago

@desrosj
4 years ago

@desrosj
4 years ago

#38 follow-up: @desrosj
4 years ago

  • Keywords dev-feedback added

approach-1.diff is a first pass at seamlessly switching the option key to the new one when calling (get|update|add)_option(). I account for both 'blacklist_keys' and comment_whitelist, which were both changed to accomplish the goal of this ticket.

Some notes on this approach specific to blacklist_keys:

  • If someone is running WordPress 5.5, we can safely assume that the value of blacklist_keys has been moved to the new key during the upgrade routine. Any future option API calls can be automatically switched to the new key and issues would only arise if plugins are directly updating the keys in the database (which is not proper usage, they should be using the API).
  • I added the code directly in the options API functions to avoid having to introduce a new function (needed if using the pre_option_blacklist_keys hook). The reasons being it's late in the release cycle, and the future intention is to replace this patch with a more solid _deprecated_option() alternative, so adding a function now would just mean another deprecated function in a future release. An anonymous function could work, but would not allow the code to be unhooked if desired.
  • I did not add this workaround in the delete_option() function. If someone is trying to delete the old key, it's OK to let it fail. Deleting this key is not really a good idea anyway. Core options will be re-added with any future update through populate_options() and this option is re-added any time a user saves the Options -> Discussion page.
  • The patch uses _doing_it_wrong(), which is meant for using functions incorrectly. I used %s option to change the message returned by the function a bit to fit this scenario better.
  • Any custom code accessing the blacklist_keys option in the cache directly using wp_get_cache( 'blacklist_keys', 'options' ) will not receive the correct values.

The other negative to this approach that I can think of is that any filter or action hooks related to the old key will not run. I did some research, and the number of plugins using these hooks seems small enough for this specific option that we could probably afford to not account for them.

I also have a developer note mostly drafted that will be going out to illuminate the changes made in this ticket with the hopes that any plugins or custom code in either of these two edge cases will be adjusted.

Here are the searches I performed on the directory (many searches return repeat plugins):

Hooks throughout option API

Get option related

Update option related

  • pre_update_option_blacklist_keys filter (1 plugin - 100 installs)
  • update_option_blacklist_keys action (plugin - 100 installs)

Add option related

There are some general hooks like pre_update_option, update_option, add_option, etc. that searches of the directory cannot reliably determine if the hooked code is modifying this key. But it seems that this key is not widely modified through actions and filters.

I repeated this process for the other key changed in this ticket, comment_whitelist, and the same appears to be true. The implications of this comment key being renamed is not as bad. blacklist_keys not being seamless could result in some comments with undesired content or from undesired IPs.

I'll also note that I have not done any performance testing for this approach, though it does not seem that any large changes to performance are introduced by this approach.

I'm also attaching a first pass at adding a _deprecated_option() based approach. It is not yet handling database queries (which key should be checked retrieved/updated/deleted when calling a deprecated option? The new one? The old one?), but it does ensure that both the new and old actions and filters run.

I think that this should receive wider feedback, though. So I am not a big fan of using this approach for 5.5. I do think that we should get something similar in for 5.6, replacing the temporary fix approach-1.diff provides.

@johnjamesjacoby let me know if you think this will work!

@SergeyBiryukov I would also love your feedback on this as the Core Tech Lead of 5.5

Edit: fixed the install count for two of the filters. 0 plugins can't have 20k installs.

Last edited 4 years ago by desrosj (previous) (diff)

#39 @desrosj
4 years ago

Re-reading this, I'd also add that using wp_get_cache( 'blacklist_keys', 'options' ) to access the cached option value is probably incorrect usage as well. get_option() and the options API should be used to properly access a cached option value.

That makes the only negative of this approach that the hooks will not run for deprecated options.

#40 @johnjamesjacoby
4 years ago

@desrosj Huge thanks for patching this so quickly.

approach-2.diff is awesome. It is exactly what WordPress needs for these rare occurrences where option keys are deprecated. It seems worthwhile to consider this for the 5.5 release, pending approval from relevant stakeholders. It is complete, and elegant.

Re: direct database queries and direct cache access, I think it's OK not to catch those cases. Specifically, it would make the 550 upgrade routine difficult, requiring some kind of core bypass to allow it to do its direct query.

approach-1.diff works for me. It is enough to circumvent the problem as I've identified it. It is not ideal, but it is enough.

🙏

#41 in reply to: ↑ 38 @SergeyBiryukov
4 years ago

Replying to desrosj:

approach-1.diff is a first pass at seamlessly switching the option key to the new one when calling (get|update|add)_option(). I account for both blacklist_keys and comment_whitelist, which were both changed to accomplish the goal of this ticket.

I agree that would be the preferred approach for 5.5.

I noticed that register_setting() and unregister_setting() use _deprecated_argument() for a similar purpose, so 50413.5.diff does the same for consistency, and also tweaks the message a bit to mention the calling function, as well as both old and new option keys.

#42 @desrosj
4 years ago

  • Keywords commit added; dev-feedback removed

@johnjamesjacoby Thanks for spotting!

@SergeyBiryukov 50413.5.diff looks good to me. I'll give it till end of day and then I'll commit that so there is time before RC to make adjustments should anything come up.

I'll also open up a follow-up ticket exploring a more long-term solution as suggested in approach-2.diff.

#43 @desrosj
4 years ago

In 48566:

General: Rename remove_option_allowed_list() to remove_allowed_options().

This was missed in [48142] which renamed add_option_allowed_list() to add_allowed_options() for better readability. The two functions should have consistent names.

See #50413.

#44 @desrosj
4 years ago

I also forgot to mention what I was planning to propose for plugins and themes.

if ( false === get_option( 'blocklist_keys' ) ) {
    // Assume this is WP < 5.5. Option does not exist.
} else {
    // Assume this is WP >= 5.5
}

When upgrading to 5.5, the option key will be added to the database automatically and any values in the old key will be moved over. Provided the default option for this key is not filtered (which should be extremely rare based on the research above), get_option() will explicitly return false when the option does not exist. So the above check could be used to determine which key they need to retrieve.

@SergeyBiryukov @johnjamesjacoby do you have any suggested adjustments for this approach?

Last edited 4 years ago by desrosj (previous) (diff)

#45 @jorbin
4 years ago

Thinking about this, I don't think blocklist is the right term for us to use as blocks have a meaning in core and there could be ambiguity between a list of blocks and a blocklist. I would suggest we switch this to denylist or dissalowlist to remove that ambiguity.

This ticket was mentioned in PR #426 on WordPress/wordpress-develop by desrosj.


4 years ago
#46

  • Keywords has-unit-tests added

Replaces blocklist with disallowed_list where appropriate. Also includes the backwards compatibility changes discussed on the ticket.

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

#47 follow-up: @desrosj
4 years ago

  • Keywords has-unit-tests removed

https://github.com/WordPress/wordpress-develop/pull/426 incorporates @jorbin's suggestion above and includes the changes in 50413.5.diff.

I think it's better to rename once and get it right than to release when there are some better alternatives.

I defer to @SergeyBiryukov's decision as Core Tech Lead though since it's later in the release.

#48 in reply to: ↑ 47 @SergeyBiryukov
4 years ago

Replying to desrosj:

https://github.com/WordPress/wordpress-develop/pull/426 incorporates @jorbin's suggestion above and includes the changes in 50413.5.diff.

Just noting that "blocklist" is indeed used in other contexts in core, e.g. in js/_enqueues/wp/editor/base.js. While the context should be enough to avoid confusion, I think switching to "disallowed" is clearer and would be preferable.

Some notes on the PR:

  • I think wp-includes/Requests/SSL.php should be excluded from the changes.
  • Do we also want to rename the "Comment Blocklist" UI option, previously renamed in [46820]?
  • While we're at it, instead of renaming wp_blocklist_check() to wp_disallowed_list_check(), which seems too generic, would something like wp_check_comment_disallowed_list() be a better name? That would also be consistent with wp_check_comment_flood() and wp_check_comment_data_max_lengths().

Looks good to me otherwise.

#49 @desrosj
4 years ago

Thanks! Made the adjustments mentioned. All sound good to me.

#50 @jorbin
4 years ago

  • Resolution set to fixed
  • Status changed from reopened to closed

In 48575:

General: Update code for readability and inclusion

There are two pieces in here:

1) The update to change blacklist to blocklist is moved to disallowed_list. "Block" has a meaning in our code, and there could be ambiguity between this code and code related to blocks.

2) This improves backwards compatibility for code that was accessing the now deprecated code.

Previously: [48477], [48405], [48400], [48121], [48122], [48124], [48142], [48566]

Props: desrosj, SergeyBiryukov, johnjamesjacoby
Fixes: #50413

#51 @desrosj
4 years ago

In 48582:

General: Ensure the database upgrades from [48575] are run.

This corrects the database version to match the commit number the upgrade changes were made.

See #50413.

desrosj commented on PR #426:


4 years ago
#52

This was merged into core in https://core.trac.wordpress.org/changeset/48575.

#53 @justinahinon
4 years ago

  • Keywords has-dev-note added; needs-dev-note removed
Note: See TracTickets for help on using tickets.