namespace Yoast\WP\SEO\Commands;
use Yoast\WP\SEO\Actions\Indexing\Indexable_General_Indexation_Action;
use Yoast\WP\SEO\Actions\Indexing\Indexable_Indexing_Complete_Action;
use Yoast\WP\SEO\Actions\Indexing\Indexable_Post_Indexation_Action;
use Yoast\WP\SEO\Actions\Indexing\Indexable_Post_Type_Archive_Indexation_Action;
use Yoast\WP\SEO\Actions\Indexing\Indexable_Term_Indexation_Action;
use Yoast\WP\SEO\Actions\Indexing\Indexation_Action_Interface;
use Yoast\WP\SEO\Actions\Indexing\Indexing_Prepare_Action;
use Yoast\WP\SEO\Actions\Indexing\Post_Link_Indexing_Action;
use Yoast\WP\SEO\Actions\Indexing\Term_Link_Indexing_Action;
* Command to generate indexables for all posts and terms.
class Index_Command implements Command_Interface {
* The post indexation action.
* @var Indexable_Post_Indexation_Action
private $post_indexation_action;
* The term indexation action.
* @var Indexable_Term_Indexation_Action
private $term_indexation_action;
* The post type archive indexation action.
* @var Indexable_Post_Type_Archive_Indexation_Action
private $post_type_archive_indexation_action;
* The general indexation action.
* @var Indexable_General_Indexation_Action
private $general_indexation_action;
* The term link indexing action.
* @var Term_Link_Indexing_Action
private $term_link_indexing_action;
* The post link indexing action.
* @var Post_Link_Indexing_Action
private $post_link_indexing_action;
* The complete indexation action.
* @var Indexable_Indexing_Complete_Action
private $complete_indexation_action;
* The indexing prepare action.
* @var Indexing_Prepare_Action
private $prepare_indexing_action;
* Generate_Indexables_Command constructor.
* @param Indexable_Post_Indexation_Action $post_indexation_action The post indexation
* @param Indexable_Term_Indexation_Action $term_indexation_action The term indexation
* @param Indexable_Post_Type_Archive_Indexation_Action $post_type_archive_indexation_action The post type archive
* @param Indexable_General_Indexation_Action $general_indexation_action The general indexation
* @param Indexable_Indexing_Complete_Action $complete_indexation_action The complete indexation
* @param Indexing_Prepare_Action $prepare_indexing_action The prepare indexing
* @param Post_Link_Indexing_Action $post_link_indexing_action The post link indexation
* @param Term_Link_Indexing_Action $term_link_indexing_action The term link indexation
public function __construct(
Indexable_Post_Indexation_Action $post_indexation_action,
Indexable_Term_Indexation_Action $term_indexation_action,
Indexable_Post_Type_Archive_Indexation_Action $post_type_archive_indexation_action,
Indexable_General_Indexation_Action $general_indexation_action,
Indexable_Indexing_Complete_Action $complete_indexation_action,
Indexing_Prepare_Action $prepare_indexing_action,
Post_Link_Indexing_Action $post_link_indexing_action,
Term_Link_Indexing_Action $term_link_indexing_action
$this->post_indexation_action = $post_indexation_action;
$this->term_indexation_action = $term_indexation_action;
$this->post_type_archive_indexation_action = $post_type_archive_indexation_action;
$this->general_indexation_action = $general_indexation_action;
$this->complete_indexation_action = $complete_indexation_action;
$this->prepare_indexing_action = $prepare_indexing_action;
$this->post_link_indexing_action = $post_link_indexing_action;
$this->term_link_indexing_action = $term_link_indexing_action;
public static function get_namespace() {
return Main::WP_CLI_NAMESPACE;
* Indexes all your content to ensure the best performance.
* : Performs the indexation on all sites within the network.
* : Removes all existing indexables and then reindexes them.
* : Skips the confirmations (for automated systems).
* @param array|null $args The arguments.
* @param array|null $assoc_args The associative arguments.
public function index( $args = null, $assoc_args = null ) {
if ( ! isset( $assoc_args['network'] ) ) {
$this->run_indexation_actions( $assoc_args );
$blog_ids = \get_sites( $criteria );
foreach ( $blog_ids as $blog_id ) {
\switch_to_blog( $blog_id );
\do_action( '_yoast_run_migrations' );
$this->run_indexation_actions( $assoc_args );
* Runs all indexation actions.
* @param array $assoc_args The associative arguments.
protected function run_indexation_actions( $assoc_args ) {
// See if we need to clear all indexables before repopulating.
if ( isset( $assoc_args['reindex'] ) ) {
// Argument --skip-confirmation to prevent confirmation (for automated systems).
if ( ! isset( $assoc_args['skip-confirmation'] ) ) {
WP_CLI::confirm( 'This will clear all previously indexed objects. Are you certain you wish to proceed?' );
// Delete the transients to make sure re-indexing runs every time.
\delete_transient( Indexable_Post_Indexation_Action::UNINDEXED_COUNT_TRANSIENT );
\delete_transient( Indexable_Post_Type_Archive_Indexation_Action::UNINDEXED_COUNT_TRANSIENT );
\delete_transient( Indexable_Term_Indexation_Action::UNINDEXED_COUNT_TRANSIENT );
'posts' => $this->post_indexation_action,
'terms' => $this->term_indexation_action,
'post type archives' => $this->post_type_archive_indexation_action,
'general objects' => $this->general_indexation_action,
'post links' => $this->post_link_indexing_action,
'term links' => $this->term_link_indexing_action,
$this->prepare_indexing_action->prepare();
foreach ( $indexation_actions as $name => $indexation_action ) {
$this->run_indexation_action( $name, $indexation_action );
$this->complete_indexation_action->complete();
* Runs an indexation action.
* @param string $name The name of the object to be indexed.
* @param Indexation_Action_Interface $indexation_action The indexation action.
protected function run_indexation_action( $name, Indexation_Action_Interface $indexation_action ) {
$total = $indexation_action->get_total_unindexed();
$limit = $indexation_action->get_limit();
$progress = Utils\make_progress_bar( 'Indexing ' . $name, $total );
$indexables = $indexation_action->index();
$count = \count( $indexables );
$progress->tick( $count );
} while ( $count >= $limit );
* Clears the database related to the indexables.
protected function clear() {
// For the PreparedSQLPlaceholders issue, see: https://github.com/WordPress/WordPress-Coding-Standards/issues/1903.
// For the DirectDBQuery issue, see: https://github.com/WordPress/WordPress-Coding-Standards/issues/1947.
// phpcs:disable WordPress.DB -- Table names should not be quoted and truncate queries can not be cached.
Model::get_table_name( 'Indexable' )
Model::get_table_name( 'Indexable_Hierarchy' )