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:640
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_namestringThe suggested name of the application.$app_idstringA UUID provided by the application to uniquely identify it.$success_urlstringThe URL the user will be redirected to after approving the application.$reject_urlstringThe 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
- Scaling
- Constant
- Instructions
- 21–70
- Plugin surface
- 1 hook
- Called by
- 0
Touches nothing outside its own arguments.
No loop in the body: the same number of instructions runs whatever you pass in.
Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 71.
Third-party callbacks on 'wp_authorize_application_password_request_errors' run inside this call, and their cost is not bounded by anything here.
Nothing in core calls this; the cost is only what you spend yourself.
What it touches
- hookthird-party callbacks
do_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.
| When | Instructions | Calls it makes |
|---|---|---|
!isset($request) && empty($request) | 21 | do_action(), ->has_errors() |
!isset($request) && !empty($request) && wp_is_uuid() | 27 | wp_is_uuid(), do_action(), ->has_errors() |
!is_wp_error() && empty($request) | 31 | wp_is_authorize_application_redirect_url_valid(), is_wp_error(), do_action(), ->has_errors() |
!isset($request) && !empty($request) && !wp_is_uuid() | 34 | wp_is_uuid(), __(), ->add(), do_action(), ->has_errors() |
!is_wp_error() && !empty($request) && wp_is_uuid() | 37 | wp_is_authorize_application_redirect_url_valid(), is_wp_error(), wp_is_uuid(), do_action(), ->has_errors() |
is_wp_error() && empty($request) | 39 | wp_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) | 41 | wp_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() | 44 | wp_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() | 45 | 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() | 47 | wp_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) | 49 | wp_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) | 49 | wp_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() | 52 | 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) && !is_wp_error() && !empty($request) && !wp_is_uuid() | 54 | wp_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() | 55 | wp_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() | 55 | wp_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) | 57 | wp_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() | 62 | wp_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() | 62 | wp_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() | 63 | wp_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() | 70 | wp_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:
- do_action( wp_authorize_application_password_request_errors )actionline 679 (+39 into the body)
Fires before application password errors are returned.
Uses · 6
- wp_is_authorize_application_redirect_url_valid()Validates the redirect URL protocol scheme.
- is_wp_error()Checks whether the given variable is a WordPress Error.
- wp_is_uuid()Validates that a UUID is valid.
- __()Retrieves the translation of $text.
- do_action()Calls the callback functions that have been added to an action hook.
- WP_Error::__construct()Initializes the error.
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.
Signature, return type and hooks compared across 5 parsed releases.
javascript pseudo protocol from being executed.from the docblockAbout this page
- Parsed data
- Generated from the wordpress-develop 7.1.0 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.