121 lines
3.1 KiB
PHP
121 lines
3.1 KiB
PHP
<?php
|
|
namespace AIOSEO\Plugin\Addon\IndexNow\Options;
|
|
|
|
// Exit if accessed directly.
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
use AIOSEO\Plugin\Common\Traits;
|
|
|
|
/**
|
|
* Handles all options.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
class Options {
|
|
use Traits\Options;
|
|
|
|
/**
|
|
* All the default options.
|
|
*
|
|
* @since 1.0.0
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $defaults = [
|
|
// phpcs:disable WordPress.Arrays.ArrayDeclarationSpacing
|
|
'indexNow' => [
|
|
'apiKey' => [ 'type' => 'string' ]
|
|
]
|
|
// phpcs:disable WordPress.Arrays.ArrayDeclarationSpacing
|
|
];
|
|
|
|
/**
|
|
* Class constructor.
|
|
*
|
|
* @since 1.0.0
|
|
*
|
|
* @param string $optionsName The options name.
|
|
*/
|
|
public function __construct( $optionsName = 'aioseo_index_now_options' ) {
|
|
$this->optionsName = $optionsName;
|
|
|
|
$this->init();
|
|
|
|
add_action( 'shutdown', [ $this, 'save' ] );
|
|
}
|
|
|
|
/**
|
|
* Initializes the options.
|
|
*
|
|
* @since 1.0.0
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function init() {
|
|
$options = $this->getIndexNowDbOptions();
|
|
aioseo()->core->optionsCache->setOptions( $this->optionsName, apply_filters( 'aioseo_get_index_now_options', $options ) );
|
|
}
|
|
|
|
/**
|
|
* Returns the DB options.
|
|
*
|
|
* @since 1.0.0
|
|
*
|
|
* @return array The options.
|
|
*/
|
|
public function getIndexNowDbOptions() {
|
|
$dbOptions = $this->getDbOptions( $this->optionsName );
|
|
if ( empty( $dbOptions['indexNow']['apiKey'] ) ) {
|
|
$dbOptions['indexNow']['apiKey'] = aioseoIndexNow()->helpers->generateApiKey();
|
|
update_option( $this->optionsName, wp_json_encode( $dbOptions ) );
|
|
}
|
|
|
|
$this->defaultsMerged = array_replace_recursive( $this->defaults, $this->defaultsMerged );
|
|
|
|
return array_replace_recursive(
|
|
$this->defaultsMerged,
|
|
$this->addValueToValuesArray( $this->defaultsMerged, $dbOptions )
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Sanitizes, then saves the options to the database.
|
|
*
|
|
* @since 1.0.0
|
|
*
|
|
* @param array $newOptions The new options to sanitize, then save.
|
|
* @return void
|
|
*/
|
|
public function sanitizeAndSave( $newOptions ) {
|
|
$this->init();
|
|
|
|
if ( ! is_array( $newOptions ) ) {
|
|
return;
|
|
}
|
|
|
|
// First, recursively replace the new options into the cached state.
|
|
// It's important we use the helper method since we want to replace populated arrays with empty ones if needed (when a setting was cleared out).
|
|
$cachedOptions = aioseo()->core->optionsCache->getOptions( $this->optionsName );
|
|
$dbOptions = aioseo()->helpers->arrayReplaceRecursive(
|
|
$cachedOptions,
|
|
$this->addValueToValuesArray( $cachedOptions, $newOptions, [], true )
|
|
);
|
|
|
|
// Now, we must also intersect both arrays to delete any individual keys that were unset.
|
|
// We must do this because, while arrayReplaceRecursive will update the values for keys or empty them out,
|
|
// it will keys that aren't present in the replacement array unaffected in the target array.
|
|
$dbOptions = aioseo()->helpers->arrayIntersectRecursive(
|
|
$dbOptions,
|
|
$this->addValueToValuesArray( $cachedOptions, $newOptions, [], true ),
|
|
'value'
|
|
);
|
|
|
|
// Update the cache state.
|
|
aioseo()->core->optionsCache->setOptions( $this->optionsName, $dbOptions );
|
|
|
|
// Finally, save the new values to the DB.
|
|
$this->save( true );
|
|
}
|
|
} |