Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tenup_experience_rest_api_allowlist filter for overriding allowed… #168

Merged
merged 1 commit into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 10up-experience.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: 10up Experience
* Plugin URI: https://github.com/10up/10up-experience
* Description: The 10up Experience plugin configures WordPress to better protect and inform clients, aligned to 10up’s best practices.
* Version: 1.12.0
* Version: 1.12.1
* Author: 10up
* Author URI: https://10up.com
* License: GPLv2 or later
Expand All @@ -19,7 +19,7 @@

use YahnisElsts\PluginUpdateChecker\v5\PucFactory;

define( 'TENUP_EXPERIENCE_VERSION', '1.12.0' );
define( 'TENUP_EXPERIENCE_VERSION', '1.12.1' );
define( 'TENUP_EXPERIENCE_DIR', __DIR__ );
define( 'TENUP_EXPERIENCE_FILE', __FILE__ );

Expand Down
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,16 @@

All notable changes to this project will be documented in this file, per [the Keep a Changelog standard](http://keepachangelog.com/).

## [1.12.1] - 2024-09-24

- Add filter for allowlisting specific API routes `tenup_experience_rest_api_allowlist`

## [1.12.0] - 2024-08-22

- Add UI for disabling comments

## [1.11.2] - 2024-06-15

- Remove production setting

## [1.11.1] - 2023-10-27
Expand Down Expand Up @@ -201,7 +210,7 @@ All notable changes to this project will be documented in this file, per [the Ke

- Initial release

[Unreleased]: https://github.com/10up/10up-experience/compare/master...develop
[unreleased]: https://github.com/10up/10up-experience/compare/master...develop
[1.7.3]: https://github.com/10up/10up-experience/compare/1.7.2...1.7.3
[1.7.2]: https://github.com/10up/10up-experience/compare/1.7.1...1.7.2
[1.7.1]: https://github.com/10up/10up-experience/compare/1.7...1.7.1
Expand Down
18 changes: 14 additions & 4 deletions includes/classes/API/API.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function restrict_rest_api( $result ) {

$restrict = get_option( 'tenup_restrict_rest_api', $this->option_default );

if ( 'all' === $restrict && ! $this->user_can_access_rest_api() ) {
if ( 'all' === $restrict && ! $this->can_access_rest_api() ) {
return new \WP_Error( 'rest_api_restricted', esc_html__( 'Authentication Required', 'tenup' ), array( 'status' => rest_authorization_required_code() ) );
}

Expand All @@ -71,7 +71,7 @@ public function restrict_user_endpoints( $endpoints ) {
return $endpoints;
}

if ( ! $this->user_can_access_rest_api() ) {
if ( ! $this->can_access_rest_api() ) {
$keys = preg_grep( '/\/wp\/v2\/users\b/', array_keys( $endpoints ) );

foreach ( $keys as $key ) {
Expand Down Expand Up @@ -143,8 +143,18 @@ public function restrict_rest_api_ui() {
* @param int $user_id User ID
* @return bool Whether the given user can access the REST API
*/
public function user_can_access_rest_api( $user_id = 0 ) {
return is_user_logged_in();
public function can_access_rest_api( $user_id = 0 ) {
global $wp;

$route = '';

if ( isset( $wp->query_vars['rest_route'] ) ) {
$route = $wp->query_vars['rest_route'];
}

$allowed_rest_routes_override = apply_filters( 'tenup_experience_rest_api_allowlist', [] );

return is_user_logged_in() || in_array( $route, $allowed_rest_routes_override, true );
}

/**
Expand Down
Loading