wppaste
WordPress

_wp_connectors_pass_default_keys_to_ai_client()

Since
7.0.0
Source
wp-includes/connectors.php:854
Passes stored connector API keys to the WP AI client.

Compatibility

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

Present in 2 of the 5 tracked releases, added in 7.0.0, and compiles on PHP 7.4 through 8.6-dev.

Performance profile

How much work a call to _wp_connectors_pass_default_keys_to_ai_client() 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
Heavy

Reads stored settings via get_option(), cached per request but not free on a cold cache.

Scaling
Scales with input

The body loops, so the work grows with how much data it finds.

Instructions
8–9

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

Plugin surface
None

Nothing here hands control to plugin code.

Called by
0

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

What it touches

  • optionoption read or writeget_option()called directly
  • hookthird-party callbacksapply_filters()one call below _wp_connectors_pass_default_keys_to_ai_client()
  • cacheobject cachewp_cache_get()one call below _wp_connectors_pass_default_keys_to_ai_client()
  • serializeserialisationmaybe_unserialize()one call below _wp_connectors_pass_default_keys_to_ai_client()

Further down the call graph this can also reach query 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 · 1 distinct outcome

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

WhenInstructionsCalls it makes
always8–9::AiClient(), wp_get_connectors()

Across PHP versions

Compiles the same on PHP 7.4, 8.1, 8.2, 8.3, 8.4, 8.5 and 8.6-dev: 69 instructions, 8–9 executed per call, 12 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.

Uses · 6

  • wp_get_connectors()Retrieves all registered connectors.
  • _wp_connectors_get_api_key_source()Determines the source of an API key for a given connector.
  • get_option()Retrieves an option value based on an option name.
  • wp_trigger_error()Generates a user-level error/warning/notice/deprecation message.
  • \WordPress\AiClient\AiClient::defaultRegistry()
  • \WordPress\AiClient\Providers\Http\DTO\ApiKeyRequestAuthentication::__construct()

Source code

function _wp_connectors_pass_default_keys_to_ai_client(): void {	try {		$ai_registry = AiClient::defaultRegistry();		foreach ( wp_get_connectors() as $connector_id => $connector_data ) {			if ( 'ai_provider' !== $connector_data['type'] ) {				continue;			} 			$auth = $connector_data['authentication'];			if ( 'api_key' !== $auth['method'] || empty( $auth['setting_name'] ) ) {				continue;			} 			if ( ! $ai_registry->hasProvider( $connector_id ) ) {				continue;			} 			// Skip if the key is already provided via env var or constant.			$key_source = _wp_connectors_get_api_key_source( $auth['setting_name'], $auth['env_var_name'] ?? '', $auth['constant_name'] ?? '' );			if ( 'env' === $key_source || 'constant' === $key_source ) {				continue;			} 			$api_key = get_option( $auth['setting_name'], '' );			if ( ! is_string( $api_key ) || '' === $api_key ) {				continue;			} 			$ai_registry->setProviderRequestAuthentication(				$connector_id,				new ApiKeyRequestAuthentication( $api_key )			);		}	} catch ( Exception $e ) {		wp_trigger_error( __FUNCTION__, $e->getMessage() );	}}

Changelog

Introduced in 7.0.0. Unchanged from 7.0.4 through 7.1.0.

  1. 7.0.4
  2. 7.1.0

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

About this page

Parsed data
Generated from the wordpress-develop 7.1.0 tag, from src/wp-includes/connectors.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.