wppaste
WordPress

wp_is_authorize_application_password_request_valid( array $request, WP_User $user ): true|WP_Error

Since
5.6.0, 6.2.0, 6.3.2
Source
wp-admin/includes/user.php:659
Checks if the Authorize Application Password request is valid.

Compatibility

WordPress
since 6.3.2
PHP
7.4–8.6-dev
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0), and compiles on PHP 7.4 through 8.6-dev.

Parameters

$requestarray
The array of request data. All arguments are optional and may be empty.
  • $app_namestring

    The suggested name of the application.
  • $app_idstring

    A UUID provided by the application to uniquely identify it.
  • $success_urlstring

    The URL the user will be redirected to after approving the application.
  • $reject_urlstring

    The URL the user will be redirected to after rejecting the application.
$userWP_User
The user authorizing the application.

Return value

true|WP_Error
True if the request is valid, a WP_Error object contains errors if not.

Performance profile

How much work a call to wp_is_authorize_application_password_request_valid() does, and what it touches: the algorithmic scaling, the Zend instruction count per call across PHP versions, the hooks it hands control to, and the core code that calls it. Measured from the compiled opcodes, not a stopwatch, so every number is identical on any machine running the same PHP version, and every function in core is ranked by cost.

Cost class
Trivial

Touches nothing outside its own arguments.

Scaling
Constant

No loop in the body: the same number of instructions runs whatever you pass in.

Instructions
21–70

Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 71.

Plugin surface
1 hook

Third-party callbacks on 'wp_authorize_application_password_request_errors' run inside this call, and their cost is not bounded by anything here.

Called by
0

Nothing in core calls this; the cost is only what you spend yourself.

What it touches

  • hookthird-party callbacksdo_action()called directly

Further down the call graph this can also reach query, option, cache, serialize and transient. Those are the worst case, several calls deep and usually down an error path, not what a normal call pays.

What one call costs · 21 distinct outcomes

One number would be a lie: the work depends on which branch runs. These are every distinct cost wp_is_authorize_application_password_request_valid() can have, taken from its control-flow graph on PHP 8.5.

WhenInstructionsCalls it makes
!isset($request) && empty($request)21do_action(), ->has_errors()
!isset($request) && !empty($request) && wp_is_uuid()27wp_is_uuid(), do_action(), ->has_errors()
!is_wp_error() && empty($request)31wp_is_authorize_application_redirect_url_valid(), is_wp_error(), do_action(), ->has_errors()
!isset($request) && !empty($request) && !wp_is_uuid()34wp_is_uuid(), __(), ->add(), do_action(), ->has_errors()
!is_wp_error() && !empty($request) && wp_is_uuid()37wp_is_authorize_application_redirect_url_valid(), is_wp_error(), wp_is_uuid(), do_action(), ->has_errors()
is_wp_error() && empty($request)39wp_is_authorize_application_redirect_url_valid(), is_wp_error(), ->get_error_code(), ->get_error_message(), ->add(), do_action(), ->has_errors()
isset($request) && !is_wp_error() && empty($request)41wp_is_authorize_application_redirect_url_valid(), is_wp_error(), wp_is_authorize_application_redirect_url_valid(), is_wp_error(), do_action(), ->has_errors()
!is_wp_error() && !empty($request) && !wp_is_uuid()44wp_is_authorize_application_redirect_url_valid(), is_wp_error(), wp_is_uuid(), __(), ->add(), do_action(), ->has_errors()
is_wp_error() && !empty($request) && wp_is_uuid()45wp_is_authorize_application_redirect_url_valid(), is_wp_error(), ->get_error_code(), ->get_error_message(), ->add(), wp_is_uuid(), do_action(), ->has_errors()
isset($request) && !is_wp_error() && !empty($request) && wp_is_uuid()47wp_is_authorize_application_redirect_url_valid(), is_wp_error(), wp_is_authorize_application_redirect_url_valid(), is_wp_error(), wp_is_uuid(), do_action(), ->has_errors()
isset($request) && empty($request)49wp_is_authorize_application_redirect_url_valid(), is_wp_error(), wp_is_authorize_application_redirect_url_valid(), is_wp_error(), ->get_error_code(), ->get_error_message(), ->add(), do_action(), ->has_errors()
isset($request) && empty($request)49wp_is_authorize_application_redirect_url_valid(), is_wp_error(), ->get_error_code(), ->get_error_message(), ->add(), wp_is_authorize_application_redirect_url_valid(), is_wp_error(), do_action(), ->has_errors()
9 further outcomes, up to 70 instructions
is_wp_error() && !empty($request) && !wp_is_uuid()52wp_is_authorize_application_redirect_url_valid(), is_wp_error(), ->get_error_code(), ->get_error_message(), ->add(), wp_is_uuid(), __(), ->add(), do_action(), ->has_errors()
isset($request) && !is_wp_error() && !empty($request) && !wp_is_uuid()54wp_is_authorize_application_redirect_url_valid(), is_wp_error(), wp_is_authorize_application_redirect_url_valid(), is_wp_error(), wp_is_uuid(), __(), ->add(), do_action(), ->has_errors()
isset($request) && !empty($request) && wp_is_uuid()55wp_is_authorize_application_redirect_url_valid(), is_wp_error(), wp_is_authorize_application_redirect_url_valid(), is_wp_error(), ->get_error_code(), ->get_error_message(), ->add(), wp_is_uuid(), do_action(), ->has_errors()
isset($request) && !empty($request) && wp_is_uuid()55wp_is_authorize_application_redirect_url_valid(), is_wp_error(), ->get_error_code(), ->get_error_message(), ->add(), wp_is_authorize_application_redirect_url_valid(), is_wp_error(), wp_is_uuid(), do_action(), ->has_errors()
isset($request) && is_wp_error() && empty($request)57wp_is_authorize_application_redirect_url_valid(), is_wp_error(), ->get_error_code(), ->get_error_message(), ->add(), wp_is_authorize_application_redirect_url_valid(), is_wp_error(), ->get_error_code(), ->get_error_message(), ->add(), do_action(), ->has_errors()
isset($request) && !empty($request) && !wp_is_uuid()62wp_is_authorize_application_redirect_url_valid(), is_wp_error(), wp_is_authorize_application_redirect_url_valid(), is_wp_error(), ->get_error_code(), ->get_error_message(), ->add(), wp_is_uuid(), __(), ->add(), do_action(), ->has_errors()
isset($request) && !empty($request) && !wp_is_uuid()62wp_is_authorize_application_redirect_url_valid(), is_wp_error(), ->get_error_code(), ->get_error_message(), ->add(), wp_is_authorize_application_redirect_url_valid(), is_wp_error(), wp_is_uuid(), __(), ->add(), do_action(), ->has_errors()
isset($request) && is_wp_error() && !empty($request) && wp_is_uuid()63wp_is_authorize_application_redirect_url_valid(), is_wp_error(), ->get_error_code(), ->get_error_message(), ->add(), wp_is_authorize_application_redirect_url_valid(), is_wp_error(), ->get_error_code(), ->get_error_message(), ->add(), wp_is_uuid(), do_action(), ->has_errors()
isset($request) && is_wp_error() && !empty($request) && !wp_is_uuid()70wp_is_authorize_application_redirect_url_valid(), is_wp_error(), ->get_error_code(), ->get_error_message(), ->add(), wp_is_authorize_application_redirect_url_valid(), is_wp_error(), ->get_error_code(), ->get_error_message(), ->add(), wp_is_uuid(), __(), ->add(), do_action(), ->has_errors()

Across PHP versions

Compiles the same on PHP 7.4, 8.1, 8.2, 8.3, 8.4, 8.5 and 8.6-dev: 71 instructions, 21–70 executed per call, 7 branches. The work does not change between versions.

An instruction is not a fixed amount of time, so a matching count is not necessarily the same speed; what it rules out is a difference in the work itself.

Hooks and filters fired · 1

One hook fires while wp_is_authorize_application_password_request_valid() runs, in this order:

  1. do_action( wp_authorize_application_password_request_errors )actionline 698 (+39 into the body)

    Fires before application password errors are returned.

Uses · 6

Source code

function wp_is_authorize_application_password_request_valid( $request, $user ) {	$error = new WP_Error(); 	if ( isset( $request['success_url'] ) ) {		$validated_success_url = wp_is_authorize_application_redirect_url_valid( $request['success_url'] );		if ( is_wp_error( $validated_success_url ) ) {			$error->add(				$validated_success_url->get_error_code(),				$validated_success_url->get_error_message()			);		}	} 	if ( isset( $request['reject_url'] ) ) {		$validated_reject_url = wp_is_authorize_application_redirect_url_valid( $request['reject_url'] );		if ( is_wp_error( $validated_reject_url ) ) {			$error->add(				$validated_reject_url->get_error_code(),				$validated_reject_url->get_error_message()			);		}	} 	if ( ! empty( $request['app_id'] ) && ! wp_is_uuid( $request['app_id'] ) ) {		$error->add(			'invalid_app_id',			__( 'The application ID must be a UUID.' )		);	} 	/**	 * Fires before application password errors are returned.	 *	 * @since 5.6.0	 *	 * @param WP_Error $error   The error object.	 * @param array    $request The array of request data.	 * @param WP_User  $user    The user authorizing the application.	 */	do_action( 'wp_authorize_application_password_request_errors', $error, $request, $user ); 	if ( $error->has_errors() ) {		return $error;	} 	return true;}

Changelog

Introduced in 5.6.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

6.3.2
Validates the success and reject URLs to prevent javascript pseudo protocol from being executed.from the docblock
6.2.0
Allow insecure HTTP connections for the local environment.from the docblock
5.6.0
Introduced.from the docblock

About this page

Parsed data
Generated from the wordpress-develop 7.0.4 tag, from src/wp-admin/includes/user.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.