/var/www/hkosl.com/aga/wp-content/plugins/wordpress-seo/frontend/class-twitter.php


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
<?php
/**
 * WPSEO plugin file.
 *
 * @package WPSEO\Frontend
 */

/**
 * This class handles the Twitter card functionality.
 *
 * @link https://dev.twitter.com/docs/cards
 */
class WPSEO_Twitter {

    
/**
     * Instance of this class.
     *
     * @var object
     */
    
public static $instance;

    
/**
     * Images.
     *
     * @var array
     */
    
private $images = array();

    
/**
     * Images.
     *
     * @var array
     */
    
public $shown_images = array();

    
/**
     * Will hold the Twitter card type being created.
     *
     * @var string
     */
    
private $type;

    
/**
     * Card types currently allowed by Twitter.
     *
     * @link https://dev.twitter.com/cards/types
     *
     * @var array
     */
    
private $valid_types = array(
        
'summary',
        
'summary_large_image',
        
'app',
        
'player',
    );

    
/**
     * Class constructor.
     */
    
public function __construct() {
        
$this->twitter();
    }

    
/**
     * Outputs the Twitter Card code on singular pages.
     */
    
public function twitter() {

        
/**
         * Filter: 'wpseo_output_twitter_card' - Allow disabling of the Twitter card.
         *
         * @api bool $enabled Enabled/disabled flag
         */
        
if ( false === apply_filters'wpseo_output_twitter_card'true ) ) {
            return;
        }

        
wp_reset_query();

        
$this->type();
        
$this->description();
        
$this->title();
        
$this->site_twitter();

        if ( ! 
post_password_required() ) {
            
$this->image();
        }

        if ( 
is_singular() ) {
            
$this->author();
        }

        
/**
         * Action: 'wpseo_twitter' - Hook to add all Yoast SEO Twitter output to so they're close together.
         */
        
do_action'wpseo_twitter' );
    }

    
/**
     * Display the Twitter card type.
     *
     * This defaults to summary but can be filtered using the <code>wpseo_twitter_card_type</code> filter.
     *
     * @link https://dev.twitter.com/docs/cards
     */
    
protected function type() {
        
$this->determine_card_type();
        
$this->sanitize_card_type();

        
$this->output_metatag'card'$this->type );
    }

    
/**
     * Determines the twitter card type for the current page.
     */
    
private function determine_card_type() {
        
$this->type WPSEO_Options::get'twitter_card_type' );

        
// @todo This should be reworked to use summary_large_image for any fitting image R.
        
if ( is_singular() && has_shortcode$GLOBALS['post']->post_content'gallery' ) ) {

            
$this->images get_post_gallery_images();

            if ( 
count$this->images ) > ) {
                
$this->type 'summary_large_image';
            }
        }

        
/**
         * Filter: 'wpseo_twitter_card_type' - Allow changing the Twitter Card type as output in the Twitter card by Yoast SEO.
         *
         * @api string $unsigned The type string.
         */
        
$this->type apply_filters'wpseo_twitter_card_type'$this->type );
    }

    
/**
     * Determines whether the card type is of a type currently allowed by Twitter.
     *
     * @link https://dev.twitter.com/cards/types
     */
    
private function sanitize_card_type() {
        if ( ! 
in_array$this->type$this->valid_typestrue ) ) {
            
$this->type 'summary';
        }
    }

    
/**
     * Output the metatag.
     *
     * @param string $name    Tag name string.
     * @param string $value   Tag value string.
     * @param bool   $escaped Force escape flag.
     */
    
private function output_metatag$name$value$escaped false ) {

        
// Escape the value if not escaped.
        
if ( false === $escaped ) {
            
$value esc_attr$value );
        }

        
/**
         * Filter: 'wpseo_twitter_metatag_key' - Make the Twitter metatag key filterable.
         *
         * @api string $key The Twitter metatag key.
         */
        
$metatag_key apply_filters'wpseo_twitter_metatag_key''name' );

        
// Output meta.
        
echo '<meta 'esc_attr$metatag_key ), '="twitter:'esc_attr$name ), '" content="'$value'" />'"\n";
    }

    
/**
     * Displays the description for Twitter.
     *
     * Only used when OpenGraph is inactive.
     */
    
protected function description() {
        if ( 
WPSEO_Frontend_Page_Type::is_simple_page() ) {
            
$meta_desc $this->single_descriptionWPSEO_Frontend_Page_Type::get_simple_page_id() );
        }
        elseif ( 
is_category() || is_tax() || is_tag() ) {
            
$meta_desc $this->taxonomy_description();
        }
        else {
            
$meta_desc $this->fallback_description();
        }

        
$meta_desc wpseo_replace_vars$meta_descget_queried_object() );

        
/**
         * Filter: 'wpseo_twitter_description' - Allow changing the Twitter description as output in the Twitter card by Yoast SEO.
         *
         * @api string $twitter The description string.
         */
        
$meta_desc apply_filters'wpseo_twitter_description'$meta_desc );
        if ( 
is_string$meta_desc ) && $meta_desc !== '' ) {
            
$this->output_metatag'description'$meta_desc );
        }
    }

    
/**
     * Returns the description for a singular page.
     *
     * @param int $post_id Post ID.
     *
     * @return string
     */
    
private function single_description$post_id ) {
        
$meta_desc trimWPSEO_Meta::get_value'twitter-description'$post_id ) );

        if ( 
is_string$meta_desc ) && '' !== $meta_desc ) {
            return 
$meta_desc;
        }

        
$meta_desc $this->fallback_description();
        if ( 
is_string$meta_desc ) && '' !== $meta_desc ) {
            return 
$meta_desc;
        }

        return 
wp_strip_all_tagsget_the_excerpt() );
    }

    
/**
     * Getting the description for the taxonomy.
     *
     * @return bool|mixed|string
     */
    
private function taxonomy_description() {
        
$meta_desc WPSEO_Taxonomy_Meta::get_meta_without_term'twitter-description' );

        if ( ! 
is_string$meta_desc ) || $meta_desc === '' ) {
            
$meta_desc $this->fallback_description();
        }

        if ( 
is_string$meta_desc ) && $meta_desc !== '' ) {
            return 
$meta_desc;
        }

        return 
wp_strip_all_tagsterm_description() );
    }

    
/**
     * Returns a fallback description.
     *
     * @return string
     */
    
private function fallback_description() {
        return 
trimWPSEO_Frontend::get_instance()->metadescfalse ) );
    }

    
/**
     * Displays the title for Twitter.
     *
     * Only used when OpenGraph is inactive.
     */
    
protected function title() {
        if ( 
WPSEO_Frontend_Page_Type::is_simple_page() ) {
            
$title $this->single_titleWPSEO_Frontend_Page_Type::get_simple_page_id() );
        }
        elseif ( 
is_category() || is_tax() || is_tag() ) {
            
$title $this->taxonomy_title();
        }
        else {
            
$title $this->fallback_title();
        }

        
$title wpseo_replace_vars$titleget_queried_object() );

        
/**
         * Filter: 'wpseo_twitter_title' - Allow changing the Twitter title as output in the Twitter card by Yoast SEO.
         *
         * @api string $twitter The title string.
         */
        
$title apply_filters'wpseo_twitter_title'$title );
        if ( 
is_string$title ) && $title !== '' ) {
            
$this->output_metatag'title'$title );
        }
    }

    
/**
     * Returns the Twitter title for a single post.
     *
     * @param int $post_id Post ID.
     *
     * @return string
     */
    
private function single_title$post_id ) {
        
$title WPSEO_Meta::get_value'twitter-title'$post_id );
        if ( ! 
is_string$title ) || $title === '' ) {
            return 
$this->fallback_title();
        }

        return 
$title;
    }

    
/**
     * Getting the title for the taxonomy.
     *
     * @return bool|mixed|string
     */
    
private function taxonomy_title() {
        
$title WPSEO_Taxonomy_Meta::get_meta_without_term'twitter-title' );

        if ( ! 
is_string$title ) || $title === '' ) {
            return 
$this->fallback_title();
        }

        return 
$title;
    }

    
/**
     * Returns the Twitter title for any page.
     *
     * @return string
     */
    
private function fallback_title() {
        return 
WPSEO_Frontend::get_instance()->title'' );
    }

    
/**
     * Displays the Twitter account for the site.
     */
    
protected function site_twitter() {
        switch ( 
WPSEO_Options::get'company_or_person''' ) ) {
            case 
'person':
                
$user_id = (int) WPSEO_Options::get'company_or_person_user_id'false );
                
$twitter get_the_author_meta'twitter'$user_id );
                
// For backwards compat reasons, if there is no twitter ID for person, we fall back to site.
                
if ( empty( $twitter ) ) {
                    
$twitter WPSEO_Options::get'twitter_site' );
                }
                break;
            case 
'company':
            default:
                
$twitter WPSEO_Options::get'twitter_site' );
                break;
        }

        
/**
         * Filter: 'wpseo_twitter_site' - Allow changing the Twitter site account as output in the Twitter card by Yoast SEO.
         *
         * @api string $unsigned Twitter site account string.
         */
        
$site apply_filters'wpseo_twitter_site'$twitter );
        
$site $this->get_twitter_id$site );

        if ( 
is_string$site ) && $site !== '' ) {
            
$this->output_metatag'site''@' $site );
        }
    }

    
/**
     * Checks if the given id is actually an id or a url and if url, distills the id from it.
     *
     * Solves issues with filters returning urls and theme's/other plugins also adding a user meta
     * twitter field which expects url rather than an id (which is what we expect).
     *
     * @param string $id Twitter ID or url.
     *
     * @return string|bool Twitter ID or false if it failed to get a valid Twitter ID.
     */
    
private function get_twitter_id$id ) {
        if ( 
preg_match'`([A-Za-z0-9_]{1,25})$`'$id$match ) ) {
            return 
$match[1];
        }

        return 
false;
    }

    
/**
     * Displays the image for Twitter.
     *
     * Only used when OpenGraph is inactive or Summary Large Image card is chosen.
     */
    
protected function image() {
        if ( 
is_category() || is_tax() || is_tag() ) {
            
$this->taxonomy_image_output();
        }
        else {
            
$this->single_image_output();
        }

        if ( 
count$this->shown_images ) === && WPSEO_Options::get'og_default_image''' ) !== '' ) {
            
$this->image_outputWPSEO_Options::get'og_default_image' ) );
        }
    }

    
/**
     * Outputs the first image of a gallery.
     */
    
private function gallery_images_output() {

        
$this->image_outputreset$this->images ) );
    }

    
/**
     * @return bool
     */
    
private function taxonomy_image_output() {
        foreach ( array( 
'twitter-image''opengraph-image' ) as $tag ) {
            
$img WPSEO_Taxonomy_Meta::get_meta_without_term$tag );
            if ( 
is_string$img ) && $img !== '' ) {
                
$this->image_output$img );

                return 
true;
            }
        }

        
/**
         * Filter: wpseo_twitter_taxonomy_image - Allow developers to set a custom Twitter image for taxonomies.
         *
         * @api bool|string $unsigned Return string to supply image to use, false to use no image.
         */
        
$img apply_filters'wpseo_twitter_taxonomy_image'false );
        if ( 
is_string$img ) && $img !== '' ) {
            
$this->image_output$img );

            return 
true;
        }

        return 
false;
    }

    
/**
     * Takes care of image output when we only need to display a single image.
     *
     * @return void
     */
    
private function single_image_output() {
        if ( 
$this->homepage_image_output() ) {
            return;
        }

        
// Posts page, which won't be caught by is_singular() below.
        
if ( $this->posts_page_image_output() ) {
            return;
        }

        if ( 
WPSEO_Frontend_Page_Type::is_simple_page() ) {
            
$post_id WPSEO_Frontend_Page_Type::get_simple_page_id();

            if ( 
$this->image_from_meta_values_output$post_id ) ) {
                return;
            }

            if ( 
$this->image_of_attachment_page_output$post_id ) ) {
                return;
            }

            if ( 
$this->image_thumbnail_output$post_id ) ) {
                return;
            }

            if ( 
count$this->images ) > ) {
                
$this->gallery_images_output();
                return;
            }

            if ( 
$this->image_from_content_output$post_id ) ) {
                return;
            }
        }
    }

    
/**
     * Show the front page image.
     *
     * @return bool
     */
    
private function homepage_image_output() {
        if ( 
is_front_page() ) {
            if ( 
WPSEO_Options::get'og_frontpage_image''' ) !== '' ) {
                
$this->image_outputWPSEO_Options::get'og_frontpage_image' ) );

                return 
true;
            }
        }

        return 
false;
    }

    
/**
     * Show the posts page image.
     *
     * @return bool
     */
    
private function posts_page_image_output() {

        if ( 
is_front_page() || ! is_home() ) {
            return 
false;
        }

        
$post_id get_option'page_for_posts' );

        if ( 
$this->image_from_meta_values_output$post_id ) ) {
            return 
true;
        }

        if ( 
$this->image_thumbnail_output$post_id ) ) {
            return 
true;
        }

        return 
false;
    }

    
/**
     * Outputs a Twitter image tag for a given image.
     *
     * @param string $img The source URL to the image.
     *
     * @return bool
     */
    
protected function image_output$img ) {

        
/**
         * Filter: 'wpseo_twitter_image' - Allow changing the Twitter Card image.
         *
         * @api string $img Image URL string.
         */
        
$img apply_filters'wpseo_twitter_image'$img );

        if ( 
WPSEO_Utils::is_url_relative$img ) === true && $img[0] === '/' ) {
            
$parsed_url wp_parse_urlhome_url() );
            
$img        $parsed_url['scheme'] . '://' $parsed_url['host'] . $img;
        }

        
$escaped_img esc_url$img );

        if ( 
in_array$escaped_img$this->shown_imagestrue ) ) {
            return 
false;
        }

        if ( 
is_string$escaped_img ) && $escaped_img !== '' ) {
            
$this->output_metatag'image'$escaped_imgtrue );
            
array_push$this->shown_images$escaped_img );

            return 
true;
        }

        return 
false;
    }

    
/**
     * Retrieve images from the post meta values.
     *
     * @param int $post_id Optional post ID to use.
     *
     * @return bool
     */
    
private function image_from_meta_values_output$post_id ) {
        foreach ( array( 
'twitter-image''opengraph-image' ) as $tag ) {
            
$img WPSEO_Meta::get_value$tag$post_id );
            if ( 
$img !== '' ) {
                
$this->image_output$img );

                return 
true;
            }
        }

        return 
false;
    }

    
/**
     * Retrieve an attachment page's attachment.
     *
     * @param string $attachment_id The ID of the attachment for which to retrieve the image.
     *
     * @return bool
     */
    
private function image_of_attachment_page_output$attachment_id ) {
        if ( 
get_post_type$attachment_id ) === 'attachment' ) {
            
$mime_type get_post_mime_type$attachment_id );
            switch ( 
$mime_type ) {
                case 
'image/jpeg':
                case 
'image/png':
                case 
'image/gif':
                    
$this->image_outputwp_get_attachment_url$attachment_id ) );
                    return 
true;
            }
        }

        return 
false;
    }

    
/**
     * Retrieve the featured image.
     *
     * @param int $post_id Optional post ID to use.
     *
     * @return bool
     */
    
private function image_thumbnail_output$post_id ) {

        if ( empty( 
$post_id ) ) {
            
$post_id get_the_ID();
        }

        if ( 
function_exists'has_post_thumbnail' ) && has_post_thumbnail$post_id ) ) {
            
/**
             * Filter: 'wpseo_twitter_image_size' - Allow changing the Twitter Card image size.
             *
             * @api string $featured_img Image size string.
             */
            
$featured_img wp_get_attachment_image_srcget_post_thumbnail_id$post_id ), apply_filters'wpseo_twitter_image_size''full' ) );

            if ( 
$featured_img ) {
                
$this->image_output$featured_img[0] );

                return 
true;
            }
        }

        return 
false;
    }

    
/**
     * Retrieve the image from the content.
     *
     * @param int $post_id The post id to extract the images from.
     *
     * @return bool True when images output succeeded.
     */
    
private function image_from_content_output$post_id ) {
        
$image_url WPSEO_Image_Utils::get_first_usable_content_image_for_post$post_id );

        if ( 
$image_url === null || empty( $image_url ) ) {
            return 
false;
        }

        
$this->image_output$image_url );

        return 
true;
    }

    
/**
     * Displays the authors Twitter account.
     */
    
protected function author() {
        
$post get_post();

        
$twitter null;
        if ( 
is_object$post ) ) {
            
$twitter ltrimtrimget_the_author_meta'twitter'$post->post_author ) ), '@' );
        }
        
/**
         * Filter: 'wpseo_twitter_creator_account' - Allow changing the Twitter account as output in the Twitter card by Yoast SEO.
         *
         * @api string $twitter The twitter account name string.
         */
        
$twitter apply_filters'wpseo_twitter_creator_account'$twitter );
        
$twitter $this->get_twitter_id$twitter );

        if ( 
is_string$twitter ) && $twitter !== '' ) {
            
$this->output_metatag'creator''@' $twitter );
        }
        elseif ( 
WPSEO_Options::get'twitter_site''' ) !== '' && is_stringWPSEO_Options::get'twitter_site' ) ) ) {
            
$this->output_metatag'creator''@' WPSEO_Options::get'twitter_site' ) );
        }
    }

    
/**
     * Get the singleton instance of this class.
     *
     * @return object
     */
    
public static function get_instance() {
        if ( ! ( 
self::$instance instanceof self ) ) {
            
self::$instance = new self();
        }

        return 
self::$instance;
    }
/* End of class */