Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Indexable visibility columns #17757

Open
wants to merge 58 commits into
base: trunk
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
b3fd2cd
Ensure array return type
diedexx Nov 12, 2021
87c11c3
Allow for deprecating columns
diedexx Nov 12, 2021
2eef6e2
Add method for creating a noindex query for indexables
diedexx Nov 15, 2021
b5bc8db
Rename is_public to is_publicly_viewable and number_of_public_posts t…
diedexx Nov 15, 2021
6c015ba
Use PHP 5.6 syntax
diedexx Nov 16, 2021
3d96968
Add migrations
diedexx Nov 16, 2021
acdf97a
Deprecate is_public instead of immediately replacing it
diedexx Nov 16, 2021
e18c9ac
Keep the method name the same and deprecate
diedexx Nov 16, 2021
58d6a71
Access properties that were renamed earlier
diedexx Nov 16, 2021
b7cfa04
Make the homepage get a number_of_publicly_viewable_posts and is_publ…
diedexx Nov 16, 2021
c2d121e
Use new column name
diedexx Nov 16, 2021
38b552d
Add deprecation tags
diedexx Nov 16, 2021
2fdce2f
Fix cs
diedexx Nov 16, 2021
3a18f72
Mark enabled date archives as publicly viewable
diedexx Nov 26, 2021
5e89640
Delegate logic to central helper
diedexx Nov 26, 2021
0a38f49
Make global namespace usage explicit
diedexx Nov 26, 2021
81e7421
Flip argument order
diedexx Nov 26, 2021
1564f53
Allow for considering empty archives as indexed
diedexx Nov 26, 2021
ecae28e
Update deperatation based on the expected release version
diedexx Nov 26, 2021
ea0a46e
Prevent new integrators from accessing is_public
diedexx Nov 26, 2021
6ccacd5
Update tests
diedexx Nov 26, 2021
ccf7f9b
Remove resolved todo comment
diedexx Nov 26, 2021
af7b219
Rebuild date archive indexable when disabling date archives
diedexx Nov 26, 2021
510f9de
Fix cs
diedexx Nov 26, 2021
ed46abb
Prevent deprecation warnings when (re)indexing
diedexx Nov 26, 2021
ff247f9
Include password protected posts in aggegrate queries
diedexx Nov 30, 2021
ca85a07
Keep the most recent last modified date.
diedexx Nov 30, 2021
faf1180
Merge branch 'trunk' of https://github.com/Yoast/wordpress-seo into F…
diedexx Nov 30, 2021
f6a8adf
Adhere to naming conventions
diedexx Dec 2, 2021
274df53
Don't hardcode the deprecation version number
diedexx Dec 2, 2021
d51829e
Update deprecation versions and descriptions
diedexx Dec 2, 2021
5c1193a
Rename migration
diedexx Dec 2, 2021
661e9a3
Merge branch 'trunk' of https://github.com/Yoast/wordpress-seo into F…
diedexx Dec 3, 2021
82f8a78
Fix cs
diedexx Dec 3, 2021
66d6e4d
Update tests
diedexx Dec 3, 2021
cf56df4
Fill WP 5.7 function
diedexx Dec 3, 2021
68aba31
Mock calls to newly introduced functions
diedexx Dec 3, 2021
3329a1b
Polyfill WP 5.7 function
diedexx Dec 3, 2021
e906ace
Lower error threshold
diedexx Dec 3, 2021
29739ee
Remove unused function that never made it into trunk
diedexx Dec 3, 2021
66c9433
Remove test double funtion that was removed in its parent
diedexx Dec 6, 2021
9eb9263
Make global namespace explicit
diedexx Dec 7, 2021
0c9ac1a
Ensure that post_types is an array
diedexx Dec 7, 2021
2059186
Automatically update date-archive indexables
diedexx Dec 7, 2021
b95492e
Use the type of the originally requested property in case of replaced…
diedexx Dec 10, 2021
101edcf
Merge branch 'trunk' of https://github.com/Yoast/wordpress-seo into F…
diedexx Dec 10, 2021
5d095a5
Fix CS warnings and errors
diedexx Dec 10, 2021
d8f754f
Fix tests
diedexx Dec 10, 2021
f613dfc
Clarify that the comment is about a function
diedexx Dec 17, 2021
3e7e755
Add instructions to remove related code
diedexx Dec 17, 2021
c24488e
Reduce risk of using the same builder version twice.
diedexx Dec 17, 2021
4ed8b38
Update post relation indexables when a post is set to private
diedexx Dec 17, 2021
275c423
Fix cs
diedexx Dec 18, 2021
08c1f5f
Fix precedence issues in query
diedexx Dec 19, 2021
e1c5055
Merge branch 'trunk' of https://github.com/Yoast/wordpress-seo into F…
diedexx Dec 20, 2021
6cf15bf
Increase threhshold
diedexx Dec 20, 2021
bad2929
Exclude password protected posts from the publicly_viewable_count
diedexx Dec 21, 2021
148d47c
Merge branch 'trunk' of github.com:Yoast/wordpress-seo into FIX-22-nu…
Dec 30, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Rename is_public to is_publicly_viewable and number_of_public_posts t…
…o number_of_publicly_viewable_posts
  • Loading branch information
diedexx committed Nov 15, 2021
commit b5bc8db940f20761bb791f780597f0ecb16d02b0
10 changes: 5 additions & 5 deletions src/builders/indexable-author-builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ public function build( $user_id, Indexable $indexable ) {
}

public function set_aggregate_values( Indexable $indexable ) {
$aggregates = $this->get_public_post_archive_aggregates( $indexable->object_id );
$indexable->object_published_at = $aggregates->first_published_at;
$indexable->object_last_modified = max($indexable->object_last_modified, $aggregates->most_recent_last_modified);
$indexable->number_of_public_posts = $aggregates->number_of_public_posts;
$aggregates = $this->get_public_post_archive_aggregates( $indexable->object_id );
$indexable->object_published_at = $aggregates->first_published_at;
$indexable->object_last_modified = max( $indexable->object_last_modified, $aggregates->most_recent_last_modified );
$indexable->number_of_publicly_viewable_posts = $aggregates->number_of_public_posts;
Comment on lines +112 to +114
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This block is repeated 4 times throughout the builders.

Maybe create a separate function to avoid Code Duplication?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I did consider it, but decided to not change more than I had to. I want to better abstract this when we revise the builders entirely. Do you think that's ok?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeap, for sure it's ok 👍 :)


return $indexable;
}
Expand Down Expand Up @@ -181,7 +181,7 @@ protected function find_alternative_image( Indexable $indexable ) {
*/
protected function get_public_post_archive_aggregates( $author_id ) {
$post_statuses = $this->post_helper->get_public_post_statuses();
$post_types = $this->author_archive->get_author_archive_post_types();
$post_types = $this->author_archive->get_author_archive_post_types();
// TODO DIEDE: Protected pages krijgen _geen_ noindex. en staan gewoon in het author archive. moeten die meegeteld worden?
// Private werkt wel zoals verwacht.

Expand Down
11 changes: 6 additions & 5 deletions src/builders/indexable-home-page-builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ public function build( $indexable ) {
$indexable->description = \get_bloginfo( 'description' );
}

$indexable->is_robots_noindex = \get_option( 'blog_public' ) === '0';
$indexable->is_robots_noindex = \get_option( 'blog_public' ) === '0';
$indexable->is_publicly_viewable = true;

$indexable->open_graph_title = $this->options->get( 'open_graph_frontpage_title' );
$indexable->open_graph_image = $this->options->get( 'open_graph_frontpage_image' );
Expand All @@ -122,10 +123,10 @@ public function build( $indexable ) {
}

public function set_aggregate_values( Indexable $indexable ) {
$aggregates = $this->get_public_post_archive_aggregates();
$indexable->object_published_at = $aggregates->first_published_at;
$indexable->object_last_modified = $aggregates->most_recent_last_modified;
$indexable->number_of_public_posts = $aggregates->number_of_public_posts;
$aggregates = $this->get_public_post_archive_aggregates();
$indexable->object_published_at = $aggregates->first_published_at;
$indexable->object_last_modified = $aggregates->most_recent_last_modified;
$indexable->number_of_publicly_viewable_posts = $aggregates->number_of_public_posts;

return $indexable;
}
Expand Down
31 changes: 2 additions & 29 deletions src/builders/indexable-post-builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,8 @@ public function build( $post_id, $indexable ) {
$indexable->object_last_modified = $post->post_modified_gmt;
$indexable->object_published_at = $post->post_date_gmt;

$indexable->number_of_public_posts = 0;
$indexable->number_of_publicly_viewable_posts = 0;
$indexable->is_publicly_viewable = \is_post_publicly_viewable( $post );

$indexable->version = $this->version;

Expand All @@ -177,34 +178,6 @@ protected function get_permalink( $post_type, $post_id ) {
return \wp_get_attachment_url( $post_id );
}

/**
* Determines the value of is_public.
*
* @param Indexable $indexable The indexable.
*
* @return bool|null Whether the post type is public. Null if no override is set.
*/
protected function is_accessible_post( $indexable ) {
return is_post_type_viewable($indexable->object_sub_type) && is_post_status_viewable($indexable->post_status);
}

/**
* Determines the value of is_public for attachments.
*
* @param Indexable $indexable The indexable.
*
* @return bool|null False when it has no parent. Null when it has a parent.
*/
protected function is_public_attachment( $indexable ) {
// If the attachment has no parent, it should not be public.
if ( empty( $indexable->post_parent ) ) {
return false;
}

// If the attachment has a parent, the is_public should be NULL.
return null;
}

/**
* Converts the meta robots noindex value to the indexable value.
*
Expand Down
13 changes: 9 additions & 4 deletions src/builders/indexable-post-type-archive-builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,11 @@ public function build( $post_type, Indexable $indexable ) {
$indexable->is_robots_noindex = (bool) $this->options->get( 'noindex-ptarchive-' . $post_type );
$indexable->blog_id = \get_current_blog_id();

$post_type_object = get_post_type_object( $post_type );
if ( $post_type_object !== null ) {
$indexable->is_publicly_viewable = $post_type_object->has_archive && $post_type_object->rewrite !== false;
}

$indexable = $this->set_aggregate_values( $indexable );

$indexable->version = $this->version;
Expand All @@ -91,10 +96,10 @@ public function build( $post_type, Indexable $indexable ) {
}

public function set_aggregate_values( Indexable $indexable ) {
$aggregates = $this->get_public_post_archive_aggregates( $indexable->object_sub_type );
$indexable->object_published_at = $aggregates->published_at;
$indexable->object_last_modified = $aggregates->last_modified;
$indexable->number_of_public_posts = $aggregates->number_of_public_posts;
$aggregates = $this->get_public_post_archive_aggregates( $indexable->object_sub_type );
$indexable->object_published_at = $aggregates->published_at;
$indexable->object_last_modified = $aggregates->last_modified;
$indexable->number_of_publicly_viewable_posts = $aggregates->number_of_public_posts;

return $indexable;
}
Expand Down
13 changes: 7 additions & 6 deletions src/builders/indexable-system-page-builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,13 @@ public function __construct(
* @return Indexable The extended indexable.
*/
public function build( $object_sub_type, Indexable $indexable ) {
$indexable->object_type = 'system-page';
$indexable->object_sub_type = $object_sub_type;
$indexable->title = $this->options->get( static::OPTION_MAPPING[ $object_sub_type ]['title'] );
$indexable->is_robots_noindex = true;
$indexable->number_of_public_posts = 0;
$indexable->blog_id = \get_current_blog_id();
$indexable->object_type = 'system-page';
$indexable->object_sub_type = $object_sub_type;
$indexable->title = $this->options->get( static::OPTION_MAPPING[ $object_sub_type ]['title'] );
$indexable->is_robots_noindex = true;
$indexable->number_of_publicly_viewable_posts = 0;
$indexable->is_publicly_viewable = true;
$indexable->blog_id = \get_current_blog_id();

if ( \array_key_exists( 'breadcrumb_title', static::OPTION_MAPPING[ $object_sub_type ] ) ) {
$indexable->breadcrumb_title = $this->options->get( static::OPTION_MAPPING[ $object_sub_type ]['breadcrumb_title'] );
Expand Down
19 changes: 10 additions & 9 deletions src/builders/indexable-term-builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,12 @@ public function build( $term_id, $indexable ) {

$term_meta = $this->taxonomy_helper->get_term_meta( $term );

$indexable->object_id = $term_id;
$indexable->object_type = 'term';
$indexable->object_sub_type = $term->taxonomy;
$indexable->permalink = $term_link;
$indexable->blog_id = \get_current_blog_id();
$indexable->object_id = $term_id;
$indexable->object_type = 'term';
$indexable->object_sub_type = $term->taxonomy;
$indexable->permalink = $term_link;
$indexable->blog_id = \get_current_blog_id();
$indexable->is_publicly_viewable = is_taxonomy_viewable( $term->taxonomy );

$indexable->primary_focus_keyword_score = $this->get_keyword_score(
$this->get_meta_value( 'wpseo_focuskw', $term_meta ),
Expand Down Expand Up @@ -138,10 +139,10 @@ public function build( $term_id, $indexable ) {
}

public function set_aggregate_values( Indexable $indexable ) {
$aggregates = $this->get_public_post_archive_aggregates( $indexable->object_id, $indexable->object_sub_type );
$indexable->object_published_at = $aggregates->first_published_at;
$indexable->object_last_modified = $aggregates->most_recent_last_modified;
$indexable->number_of_public_posts = $aggregates->number_of_public_posts;
$aggregates = $this->get_public_post_archive_aggregates( $indexable->object_id, $indexable->object_sub_type );
$indexable->object_published_at = $aggregates->first_published_at;
$indexable->object_last_modified = $aggregates->most_recent_last_modified;
$indexable->number_of_publicly_viewable_posts = $aggregates->number_of_public_posts;

return $indexable;
}
Expand Down
11 changes: 7 additions & 4 deletions src/models/indexable.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@
*
* @property bool $is_protected
* @property string $post_status
* @property int $number_of_public_posts
*
* @property int $number_of_publicly_viewable_posts
* @property bool $is_publicly_viewable
*
* @property int $blog_id
*
Expand Down Expand Up @@ -108,6 +110,7 @@ class Indexable extends Model {
'is_robots_noimageindex',
'is_robots_nosnippet',
'is_cornerstone',
'is_publicly_viewable',
'is_protected',
'calculated_no_index',
];
Expand All @@ -131,12 +134,12 @@ class Indexable extends Model {
'blog_id',
'estimated_reading_time_minutes',
'version',
'number_of_public_posts',
'number_of_publicly_viewable_posts',
];

protected $deprecated_columns = [
'has_public_posts' => 'number_of_public_posts',
'is_public',
'has_public_posts' => 'number_of_publicly_viewable_posts',
'is_public' => 'is_publicly_viewable',
];

/**
Expand Down