Post.php
23.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
<?php
namespace AIOSEO\Plugin\Common\Models;
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* The Post DB Model.
*
* @since 4.0.0
*/
class Post extends Model {
/**
* The name of the table in the database, without the prefix.
*
* @since 4.0.0
*
* @var string
*/
protected $table = 'aioseo_posts';
/**
* Fields that should be json encoded on save and decoded on get.
*
* @since 4.0.0
*
* @var array
*/
protected $jsonFields = [
// 'keywords',
// 'keyphrases',
// 'page_analysis',
'schema',
// 'schema_type_options',
'images',
'videos',
'open_ai',
'options'
];
/**
* Fields that should be hidden when serialized.
*
* @since 4.0.0
*
* @var array
*/
protected $hidden = [ 'id' ];
/**
* Fields that should be boolean values.
*
* @since 4.0.13
*
* @var array
*/
protected $booleanFields = [
'twitter_use_og',
'pillar_content',
'robots_default',
'robots_noindex',
'robots_noarchive',
'robots_nosnippet',
'robots_nofollow',
'robots_noimageindex',
'robots_noodp',
'robots_notranslate',
'limit_modified_date',
];
/**
* Returns a Post with a given ID.
*
* @since 4.0.0
*
* @param int $postId The post ID.
* @return Post The Post object.
*/
public static function getPost( $postId ) {
// This is needed to prevent an error when upgrading from 4.1.8 to 4.1.9.
// WordPress deletes the attachment .zip file for the new plugin version after installing it, which triggers the "delete_post" hook.
// In-between the 4.1.8 to 4.1.9 update, the new Core class does not exist yet, causing the PHP error.
// TODO: Delete this in a future release.
$post = new self();
if ( ! property_exists( aioseo(), 'core' ) ) {
return $post;
}
$post = aioseo()->core->db->start( 'aioseo_posts' )
->where( 'post_id', $postId )
->run()
->model( 'AIOSEO\\Plugin\\Common\\Models\\Post' );
if ( ! $post->exists() ) {
$post->post_id = $postId;
$post = self::setDynamicDefaults( $post, $postId );
} else {
$post = self::migrateRemovedQaSchema( $post );
$post = self::runDynamicMigrations( $post );
}
// Set options object.
$post = self::setOptionsDefaults( $post );
return apply_filters( 'aioseo_get_post', $post );
}
/**
* Sets the dynamic defaults on the post object if it doesn't exist in the DB yet.
*
* @since 4.1.4
*
* @param Post $post The Post object.
* @param int $postId The post ID.
* @return Post The modified Post object.
*/
private static function setDynamicDefaults( $post, $postId ) {
if ( 'page' === get_post_type( $postId ) ) { // This check cannot be deleted and is required to prevent errors after WordPress cleans up the attachment it creates when a plugin is updated.
$isWooCommerceCheckoutPage = aioseo()->helpers->isWooCommerceCheckoutPage( $postId );
if (
$isWooCommerceCheckoutPage ||
aioseo()->helpers->isWooCommerceCartPage( $postId ) ||
aioseo()->helpers->isWooCommerceAccountPage( $postId )
) {
$post->robots_default = false;
$post->robots_noindex = true;
}
}
if ( aioseo()->helpers->isStaticHomePage( $postId ) ) {
$post->og_object_type = 'website';
}
$post->twitter_use_og = aioseo()->options->social->twitter->general->useOgData;
if ( property_exists( $post, 'schema' ) && null === $post->schema ) {
$post->schema = self::getDefaultSchemaOptions();
}
return $post;
}
/**
* Migrates removed QAPage schema on-the-fly when the post is loaded.
*
* @since 4.1.8
*
* @param Post $aioseoPost The post object.
* @return Post The modified post object.
*/
private static function migrateRemovedQaSchema( $aioseoPost ) {
if ( ! $aioseoPost->schema_type || 'webpage' !== strtolower( $aioseoPost->schema_type ) ) {
return $aioseoPost;
}
$schemaTypeOptions = json_decode( $aioseoPost->schema_type_options );
if ( 'qapage' !== strtolower( $schemaTypeOptions->webPage->webPageType ) ) {
return $aioseoPost;
}
$schemaTypeOptions->webPage->webPageType = 'WebPage';
$aioseoPost->schema_type_options = wp_json_encode( $schemaTypeOptions );
$aioseoPost->save();
return $aioseoPost;
}
/**
* Runs dynamic migrations whenever the post object is loaded.
*
* @since 4.1.7
*
* @param Post $post The Post object.
* @return Post The modified Post object.
*/
private static function runDynamicMigrations( $post ) {
$post = self::migrateImageTypes( $post );
$post = self::runDynamicSchemaMigration( $post );
return $post;
}
/**
* Migrates the post's schema data when it is loaded.
*
* @since 4.2.5
*
* @param Post $post The Post object.
* @return Post The modified Post object.
*/
private static function runDynamicSchemaMigration( $post ) {
if ( ! property_exists( $post, 'schema' ) ) {
return $post;
}
if ( null === $post->schema ) {
$post = aioseo()->updates->migratePostSchemaHelper( $post );
}
if ( ! property_exists( $post->schema, 'default' ) ) {
$post->schema = self::getDefaultSchemaOptions( $post->schema );
}
return $post;
}
/**
* Migrates the post's image types when it is loaded.
*
* @since 4.2.5
*
* @param Post $post The Post object.
* @return Post The modified Post object.
*/
private static function migrateImageTypes( $post ) {
$pageBuilder = aioseo()->helpers->getPostPageBuilderName( $post->post_id );
if ( ! $pageBuilder ) {
return $post;
}
$deprecatedImageSources = 'seedprod' === strtolower( $pageBuilder )
? [ 'auto', 'custom', 'featured' ]
: [ 'auto' ];
if ( ! empty( $post->og_image_type ) && in_array( $post->og_image_type, $deprecatedImageSources, true ) ) {
$post->og_image_type = 'default';
}
if ( ! empty( $post->twitter_image_type ) && in_array( $post->twitter_image_type, $deprecatedImageSources, true ) ) {
$post->twitter_image_type = 'default';
}
return $post;
}
/**
* Saves the Post object.
*
* @since 4.0.3
*
* @param int $postId The Post ID.
* @param array $data The post data to save.
* @return bool|void|string Whether the post data was saved or a DB error message.
*/
public static function savePost( $postId, $data ) {
if ( empty( $data ) ) {
return false;
}
$thePost = self::getPost( $postId );
// Before setting the data, we check if the title/description are the same as the defaults and clear them if so.
$data = self::checkForDefaultFormat( $postId, $thePost, $data );
$thePost = apply_filters( 'aioseo_save_post', $thePost );
$thePost = self::sanitizeAndSetDefaults( $postId, $thePost, $data );
// Update traditional post meta so that it can be used by multilingual plugins.
self::updatePostMeta( $postId, $data );
$thePost->save();
$thePost->reset();
$lastError = aioseo()->core->db->lastError();
if ( ! empty( $lastError ) ) {
return $lastError;
}
}
/**
* Checks if the title/description is the same as their default format in Search Appearance and nulls it if this is the case.
* Doing this ensures that updates to the default title/description format also propogate to the post.
*
* @since 4.1.5
*
* @param int $postId The post ID.
* @param Post $thePost The Post object.
* @param array $data The data.
* @return array The data.
*/
private static function checkForDefaultFormat( $postId, $thePost, $data ) {
$data['title'] = trim( $data['title'] );
$data['description'] = trim( $data['description'] );
$post = aioseo()->helpers->getPost( $postId );
$defaultTitleFormat = trim( aioseo()->meta->title->getPostTypeTitle( $post->post_type ) );
$defaultDescriptionFormat = trim( aioseo()->meta->description->getPostTypeDescription( $post->post_type ) );
if ( ! empty( $data['title'] ) && $data['title'] === $defaultTitleFormat ) {
$data['title'] = null;
}
if ( ! empty( $data['description'] ) && $data['description'] === $defaultDescriptionFormat ) {
$data['description'] = null;
}
return $data;
}
/**
* Sanitize the keyphrases posted data.
*
* @since 4.2.8
*
* @param array $data An array containing the keyphrases field data.
* @return array The sanitized data.
*/
private static function sanitizeKeyphrases( $data ) {
if (
! empty( $data['focus']['analysis'] ) &&
is_array( $data['focus']['analysis'] )
) {
foreach ( $data['focus']['analysis'] as &$analysis ) {
// Remove unnecessary 'title' and 'description'.
unset( $analysis['title'] );
unset( $analysis['description'] );
}
}
if (
! empty( $data['additional'] ) &&
is_array( $data['additional'] )
) {
foreach ( $data['additional'] as &$additional ) {
if (
! empty( $additional['analysis'] ) &&
is_array( $additional['analysis'] )
) {
foreach ( $additional['analysis'] as &$additionalAnalysis ) {
// Remove unnecessary 'title' and 'description'.
unset( $additionalAnalysis['title'] );
unset( $additionalAnalysis['description'] );
}
}
}
}
return $data;
}
/**
* Sanitize the page_analysis posted data.
*
* @since 4.2.7
*
* @param array $data An array containing the page_analysis field data.
* @return array The sanitized data.
*/
private static function sanitizePageAnalysis( $data ) {
if (
empty( $data['analysis'] ) ||
! is_array( $data['analysis'] )
) {
return $data;
}
foreach ( $data['analysis'] as &$analysis ) {
foreach ( $analysis as $key => $result ) {
// Remove unnecessary 'title' and 'description'.
foreach ( [ 'title', 'description' ] as $keyToRemove ) {
if ( isset( $analysis[ $key ][ $keyToRemove ] ) ) {
unset( $analysis[ $key ][ $keyToRemove ] );
}
}
}
}
return $data;
}
/**
* Sanitizes the post data and sets it (or the default value) to the Post object.
*
* @since 4.1.5
*
* @param int $postId The post ID.
* @param Post $thePost The Post object.
* @param array $data The data.
* @return Post The Post object with data set.
*/
private static function sanitizeAndSetDefaults( $postId, $thePost, $data ) {
// General
$thePost->post_id = $postId;
$thePost->title = ! empty( $data['title'] ) ? sanitize_text_field( $data['title'] ) : null;
$thePost->description = ! empty( $data['description'] ) ? sanitize_text_field( $data['description'] ) : null;
$thePost->canonical_url = ! empty( $data['canonicalUrl'] ) ? esc_url_raw( $data['canonicalUrl'] ) : null;
$thePost->keywords = ! empty( $data['keywords'] ) ? sanitize_text_field( $data['keywords'] ) : null;
$thePost->pillar_content = isset( $data['pillar_content'] ) ? rest_sanitize_boolean( $data['pillar_content'] ) : 0;
// TruSEO
$thePost->keyphrases = ! empty( $data['keyphrases'] ) ? wp_json_encode( self::sanitizeKeyphrases( $data['keyphrases'] ) ) : null;
$thePost->page_analysis = ! empty( $data['page_analysis'] ) ? wp_json_encode( self::sanitizePageAnalysis( $data['page_analysis'] ) ) : null;
$thePost->seo_score = ! empty( $data['seo_score'] ) ? sanitize_text_field( $data['seo_score'] ) : 0;
// Sitemap
$thePost->priority = ! empty( $data['priority'] ) ? sanitize_text_field( $data['priority'] ) : null;
$thePost->frequency = ! empty( $data['frequency'] ) ? sanitize_text_field( $data['frequency'] ) : null;
// Robots Meta
$thePost->robots_default = isset( $data['default'] ) ? rest_sanitize_boolean( $data['default'] ) : 1;
$thePost->robots_noindex = isset( $data['noindex'] ) ? rest_sanitize_boolean( $data['noindex'] ) : 0;
$thePost->robots_nofollow = isset( $data['nofollow'] ) ? rest_sanitize_boolean( $data['nofollow'] ) : 0;
$thePost->robots_noarchive = isset( $data['noarchive'] ) ? rest_sanitize_boolean( $data['noarchive'] ) : 0;
$thePost->robots_notranslate = isset( $data['notranslate'] ) ? rest_sanitize_boolean( $data['notranslate'] ) : 0;
$thePost->robots_noimageindex = isset( $data['noimageindex'] ) ? rest_sanitize_boolean( $data['noimageindex'] ) : 0;
$thePost->robots_nosnippet = isset( $data['nosnippet'] ) ? rest_sanitize_boolean( $data['nosnippet'] ) : 0;
$thePost->robots_noodp = isset( $data['noodp'] ) ? rest_sanitize_boolean( $data['noodp'] ) : 0;
$thePost->robots_max_snippet = ! empty( $data['maxSnippet'] ) ? (int) sanitize_text_field( $data['maxSnippet'] ) : -1;
$thePost->robots_max_videopreview = ! empty( $data['maxVideoPreview'] ) ? (int) sanitize_text_field( $data['maxVideoPreview'] ) : -1;
$thePost->robots_max_imagepreview = ! empty( $data['maxImagePreview'] ) ? sanitize_text_field( $data['maxImagePreview'] ) : 'large';
// Open Graph Meta
$thePost->og_title = ! empty( $data['og_title'] ) ? sanitize_text_field( $data['og_title'] ) : null;
$thePost->og_description = ! empty( $data['og_description'] ) ? sanitize_text_field( $data['og_description'] ) : null;
$thePost->og_object_type = ! empty( $data['og_object_type'] ) ? sanitize_text_field( $data['og_object_type'] ) : 'default';
$thePost->og_image_type = ! empty( $data['og_image_type'] ) ? sanitize_text_field( $data['og_image_type'] ) : 'default';
$thePost->og_image_url = null; // We'll reset this below.
$thePost->og_image_width = null; // We'll reset this below.
$thePost->og_image_height = null; // We'll reset this below.
$thePost->og_image_custom_url = ! empty( $data['og_image_custom_url'] ) ? esc_url_raw( $data['og_image_custom_url'] ) : null;
$thePost->og_image_custom_fields = ! empty( $data['og_image_custom_fields'] ) ? sanitize_text_field( $data['og_image_custom_fields'] ) : null;
$thePost->og_video = ! empty( $data['og_video'] ) ? sanitize_text_field( $data['og_video'] ) : '';
$thePost->og_article_section = ! empty( $data['og_article_section'] ) ? sanitize_text_field( $data['og_article_section'] ) : null;
$thePost->og_article_tags = ! empty( $data['og_article_tags'] ) ? sanitize_text_field( $data['og_article_tags'] ) : null;
// Twitter Meta
$thePost->twitter_title = ! empty( $data['twitter_title'] ) ? sanitize_text_field( $data['twitter_title'] ) : null;
$thePost->twitter_description = ! empty( $data['twitter_description'] ) ? sanitize_text_field( $data['twitter_description'] ) : null;
$thePost->twitter_use_og = isset( $data['twitter_use_og'] ) ? rest_sanitize_boolean( $data['twitter_use_og'] ) : 0;
$thePost->twitter_card = ! empty( $data['twitter_card'] ) ? sanitize_text_field( $data['twitter_card'] ) : 'default';
$thePost->twitter_image_type = ! empty( $data['twitter_image_type'] ) ? sanitize_text_field( $data['twitter_image_type'] ) : 'default';
$thePost->twitter_image_url = null; // We'll reset this below.
$thePost->twitter_image_custom_url = ! empty( $data['twitter_image_custom_url'] ) ? esc_url_raw( $data['twitter_image_custom_url'] ) : null;
$thePost->twitter_image_custom_fields = ! empty( $data['twitter_image_custom_fields'] ) ? sanitize_text_field( $data['twitter_image_custom_fields'] ) : null;
// Schema
$thePost->schema = ! empty( $data['schema'] )
? wp_json_encode( self::getDefaultSchemaOptions( $data['schema'] ) )
: wp_json_encode( self::getDefaultSchemaOptions() );
$thePost->local_seo = ! empty( $data['local_seo'] ) ? wp_json_encode( $data['local_seo'] ) : null;
$thePost->limit_modified_date = isset( $data['limit_modified_date'] ) ? rest_sanitize_boolean( $data['limit_modified_date'] ) : 0;
$thePost->open_ai = ! empty( $data['open_ai'] )
? wp_json_encode( self::getDefaultOpenAiOptions( $data['open_ai'] ) )
: wp_json_encode( self::getDefaultOpenAiOptions() );
$thePost->updated = gmdate( 'Y-m-d H:i:s' );
// Before we determine the OG/Twitter image, we need to set the meta data cache manually because the changes haven't been saved yet.
aioseo()->meta->metaData->bustPostCache( $thePost->post_id, $thePost );
// Set the OG/Twitter image data.
$thePost = self::setOgTwitterImageData( $thePost );
if ( ! $thePost->exists() ) {
$thePost->created = gmdate( 'Y-m-d H:i:s' );
}
return $thePost;
}
/**
* Set the OG/Twitter image data on the post object.
*
* @since 4.1.6
*
* @param Post $thePost The Post object to modify.
* @return Post The modified Post object.
*/
public static function setOgTwitterImageData( $thePost ) {
// Set the OG image.
if (
in_array( $thePost->og_image_type, [
'featured',
'content',
'attach',
'custom',
'custom_image'
], true )
) {
// Disable the cache.
aioseo()->social->image->useCache = false;
// Set the image details.
$ogImage = aioseo()->social->facebook->getImage( $thePost->post_id );
$thePost->og_image_url = is_array( $ogImage ) ? $ogImage[0] : $ogImage;
$thePost->og_image_width = aioseo()->social->facebook->getImageWidth();
$thePost->og_image_height = aioseo()->social->facebook->getImageHeight();
// Reset the cache property.
aioseo()->social->image->useCache = true;
}
// Set the Twitter image.
if (
! $thePost->twitter_use_og &&
in_array( $thePost->twitter_image_type, [
'featured',
'content',
'attach',
'custom',
'custom_image'
], true )
) {
// Disable the cache.
aioseo()->social->image->useCache = false;
// Set the image details.
$ogImage = aioseo()->social->twitter->getImage( $thePost->post_id );
$thePost->twitter_image_url = is_array( $ogImage ) ? $ogImage[0] : $ogImage;
// Reset the cache property.
aioseo()->social->image->useCache = true;
}
return $thePost;
}
/**
* Saves some of the data as post meta so that it can be used for localization.
*
* @since 4.1.5
*
* @param int $postId The post ID.
* @param array $data The data.
* @return void
*/
private static function updatePostMeta( $postId, $data ) {
// Update the post meta as well for localization.
$keywords = ! empty( $data['keywords'] ) ? aioseo()->helpers->jsonTagsToCommaSeparatedList( $data['keywords'] ) : [];
$ogArticleTags = ! empty( $data['og_article_tags'] ) ? aioseo()->helpers->jsonTagsToCommaSeparatedList( $data['og_article_tags'] ) : [];
update_post_meta( $postId, '_aioseo_title', $data['title'] );
update_post_meta( $postId, '_aioseo_description', $data['description'] );
update_post_meta( $postId, '_aioseo_keywords', $keywords );
update_post_meta( $postId, '_aioseo_og_title', $data['og_title'] );
update_post_meta( $postId, '_aioseo_og_description', $data['og_description'] );
update_post_meta( $postId, '_aioseo_og_article_section', $data['og_article_section'] );
update_post_meta( $postId, '_aioseo_og_article_tags', $ogArticleTags );
update_post_meta( $postId, '_aioseo_twitter_title', $data['twitter_title'] );
update_post_meta( $postId, '_aioseo_twitter_description', $data['twitter_description'] );
}
/**
* Returns the default values for the TruSEO page analysis.
*
* @since 4.0.0
*
* @return object The default values.
*/
public static function getPageAnalysisDefaults() {
$defaults = [
'analysis' => [
'basic' => [
'lengthContent' => [
'error' => 1,
'maxScore' => 9,
'score' => 6,
],
],
'title' => [
'titleLength' => [
'error' => 1,
'maxScore' => 9,
'score' => 1,
],
],
'readability' => [
'contentHasAssets' => [
'error' => 1,
'maxScore' => 5,
'score' => 0,
],
]
]
];
return json_decode( wp_json_encode( $defaults ) );
}
/**
* Returns a JSON object with default schema options.
*
* @since 4.2.5
*
* @param string $existingOptions The existing options in JSON.
* @param null|WP_Post $post The post object.
* @return string The existing options with defaults added in JSON.
*/
public static function getDefaultSchemaOptions( $existingOptions = '', $post = null ) {
$defaultGraphName = aioseo()->schema->getDefaultPostTypeGraph( $post );
$defaults = [
'blockGraphs' => [],
'customGraphs' => [],
'default' => [
'data' => [
'Article' => [],
'Course' => [],
'Dataset' => [],
'FAQPage' => [],
'Movie' => [],
'Person' => [],
'Product' => [],
'Recipe' => [],
'Service' => [],
'SoftwareApplication' => [],
'WebPage' => []
],
'graphName' => $defaultGraphName,
'isEnabled' => true,
],
'graphs' => []
];
if ( empty( $existingOptions ) ) {
return json_decode( wp_json_encode( $defaults ) );
}
$existingOptions = json_decode( wp_json_encode( $existingOptions ), true );
$existingOptions = array_replace_recursive( $defaults, $existingOptions );
if ( isset( $existingOptions['defaultGraph'] ) && ! empty( $existingOptions['defaultPostTypeGraph'] ) ) {
$existingOptions['default']['isEnabled'] = ! empty( $existingOptions['defaultGraph'] );
unset( $existingOptions['defaultGraph'] );
unset( $existingOptions['defaultPostTypeGraph'] );
}
// Reset the default graph type to make sure it's accurate.
$existingOptions['default']['graphName'] = $defaultGraphName;
return json_decode( wp_json_encode( $existingOptions ) );
}
/**
* Returns the defaults for the keyphrases column.
*
* @since 4.1.7
*
* @param string $keyphrases The database keyphrases.
* @return object The defaults.
*/
public static function getKeyphrasesDefaults( $keyphrases = '' ) {
$keyphrases = json_decode( (string) $keyphrases );
$defaults = [
'focus' => [
'keyphrase' => '',
'score' => 0,
'analysis' => [
'keyphraseInTitle' => [
'score' => 0,
'maxScore' => 9,
'error' => 1
]
]
],
'additional' => []
];
if ( empty( $keyphrases ) ) {
return json_decode( wp_json_encode( $defaults ) );
}
if ( empty( $keyphrases->focus ) ) {
$keyphrases->focus = $defaults['focus'];
}
if ( empty( $keyphrases->additional ) ) {
$keyphrases->additional = $defaults['additional'];
}
return $keyphrases;
}
/**
* Returns the defaults for the options column.
*
* @since 4.2.2
* @version 4.2.9
*
* @param Post $post The Post object.
* @return Post The modified Post object.
*/
public static function setOptionsDefaults( $post ) {
$defaults = [
'linkFormat' => [
'internalLinkCount' => 0,
'linkAssistantDismissed' => false
]
];
if ( empty( $post->options ) ) {
$post->options = json_decode( wp_json_encode( $defaults ) );
return $post;
}
$post->options = json_decode( wp_json_encode( $post->options ), true );
$post->options = array_replace_recursive( $defaults, $post->options );
$post->options = json_decode( wp_json_encode( $post->options ) );
return $post;
}
/**
* Returns the default Open AI options.
*
* @since 4.3.2
*
* @param array $existingOptions The existing options.
* @return array The default options.
*/
public static function getDefaultOpenAiOptions( $existingOptions = '' ) {
$defaults = [
'title' => [
'suggestions' => [],
'usage' => 0
],
'description' => [
'suggestions' => [],
'usage' => 0
]
];
if ( empty( $existingOptions ) ) {
return json_decode( wp_json_encode( $defaults ) );
}
$existingOptions = json_decode( wp_json_encode( $existingOptions ), true );
$existingOptions = array_replace_recursive( $defaults, $existingOptions );
return json_decode( wp_json_encode( $existingOptions ) );
}
}