Completed
Push — master ( c6716a...daa6a5 )
by Ankit
01:44
created

Dynamic_Featured_Image::save_meta()   C

Complexity

Conditions 8
Paths 7

Size

Total Lines 22
Code Lines 11

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 22
rs 6.6037
c 0
b 0
f 0
cc 8
eloc 11
nc 7
nop 1
1
<?php
2
/**
3
 *
4
 * Plugin Name: Dynamic Featured Image
5
 * Plugin URI: http://wordpress.org/plugins/dynamic-featured-image/
6
 * Description: Dynamically adds multiple featured image or post thumbnail functionality to your posts, pages and custom post types.
7
 * Version: 3.5.2
8
 * Author: Ankit Pokhrel
9
 * Author URI: https://ankitpokhrel.com
10
 * License: GPL2 or later
11
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 * Text Domain: dynamic-featured-image
13
 * Domain Path: /languages
14
 * GitHub Plugin URI: https://github.com/ankitpokhrel/Dynamic-Featured-Image
15
 *
16
 * @package dynamic-featured-image
17
 *
18
 * Copyright (C) 2013 Ankit Pokhrel <[email protected], https://ankitpokhrel.com>
19
 *
20
 * This program is free software; you can redistribute it and/or modify
21
 * it under the terms of the GNU General Public License as published by
22
 * the Free Software Foundation; either version 3 of the License, or
23
 * (at your option) any later version.
24
 *
25
 * This program is distributed in the hope that it will be useful,
26
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
27
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
28
 * GNU General Public License for more details.
29
 *
30
 * You should have received a copy of the GNU General Public License
31
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
32
 */
33
34
// Avoid direct calls to this file.
35
if ( ! defined( 'ABSPATH' ) ) {
36
    header( 'Status: 403 Forbidden' );
37
    header( 'HTTP/1.1 403 Forbidden' );
38
    exit();
39
}
40
41
/**
42
 * Dynamic Featured Image plugin main class.
43
 *
44
 * @author Ankit Pokhrel <[email protected]>
45
 * @version 3.0.1
46
 */
47
class Dynamic_Featured_Image {
48
    /**
49
     * Current version of the plugin.
50
     *
51
     * @since 3.0.0
52
     */
53
    const VERSION = '3.5.2';
54
55
    /**
56
     * Text domain.
57
     *
58
     * @since 3.6.0
59
     */
60
    const TEXT_DOMAIN = 'dynamic-featured-image';
61
62
    /**
63
     * Documentation Link.
64
     *
65
     * @since 3.6.0
66
     */
67
    const WIKI_LINK = 'https://github.com/ankitpokhrel/Dynamic-Featured-Image/wiki';
68
69
    /**
70
     * Image upload directory.
71
     *
72
     * @var $upload_dir string
73
     */
74
    private $upload_dir;
75
76
    /**
77
     * Image upload URL.
78
     *
79
     * @var $upload_url string
80
     */
81
    private $upload_url;
82
83
    /**
84
     * Database object.
85
     *
86
     * @var $db wpdb
87
     */
88
    private $db;
89
90
    /**
91
     * Title for dfi metabox.
92
     *
93
     * @var $metabox_title string
94
     */
95
    protected $metabox_title;
96
97
    /**
98
     * Users post type filter for dfi metabox.
99
     *
100
     * @var $user_filter array
101
     */
102
    protected $user_filter;
103
104
    /**
105
     * Constructor. Hooks all interactions to initialize the class.
106
     *
107
     * @since 1.0.0
108
     * @access public
109
     * @global object $wpdb
110
     *
111
     * @see     add_action()
112
     */
113
    public function __construct() {
114
        // plugin update warning.
115
        add_action( 'in_plugin_update_message-' . plugin_basename( __FILE__ ), array( $this, 'update_notice' ) );
116
117
        add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_admin_scripts' ) );
118
        add_action( 'add_meta_boxes', array( $this, 'initialize_featured_box' ) );
119
        add_action( 'save_post', array( $this, 'save_meta' ) );
120
        add_action( 'plugins_loaded', array( $this, 'load_plugin_textdomain' ) );
121
122
        // handle ajax request.
123
        add_action( 'wp_ajax_dfiMetaBox_callback', array( $this, 'ajax_callback' ) );
124
125
        // add action links.
126
        add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'dfi_action_links' ) );
127
128
        // media uploader custom fields.
129
        add_filter( 'attachment_fields_to_edit', array( $this, 'media_attachment_custom_fields' ), 10, 2 );
130
        add_filter( 'attachment_fields_to_save', array( $this, 'media_attachment_custom_fields_save' ), 10, 2 );
131
132
        // get the site protocol.
133
        $protocol = $this->get_protocol();
134
135
        $this->upload_dir = wp_upload_dir();
136
        $this->upload_url = preg_replace( '#^https?://#', '', $this->upload_dir['baseurl'] );
137
138
        // add protocol to the upload url.
139
        $this->upload_url = $protocol . $this->upload_url;
140
141
        // post type filter added by user.
142
        $this->user_filter = array();
143
144
        global $wpdb;
145
        $this->db = $wpdb;
146
    }
147
148
    /**
149
     * Return site protocol.
150
     *
151
     * @since 3.5.1
152
     * @access public
153
     *
154
     * @return string
155
     */
156
    private function get_protocol() {
0 ignored issues
show
Coding Style introduced by
get_protocol uses the super-global variable $_SERVER which is generally not recommended.

Instead of super-globals, we recommend to explicitly inject the dependencies of your class. This makes your code less dependent on global state and it becomes generally more testable:

// Bad
class Router
{
    public function generate($path)
    {
        return $_SERVER['HOST'].$path;
    }
}

// Better
class Router
{
    private $host;

    public function __construct($host)
    {
        $this->host = $host;
    }

    public function generate($path)
    {
        return $this->host.$path;
    }
}

class Controller
{
    public function myAction(Request $request)
    {
        // Instead of
        $page = isset($_GET['page']) ? intval($_GET['page']) : 1;

        // Better (assuming you use the Symfony2 request)
        $page = $request->query->get('page', 1);
    }
}
Loading history...
157
        return ( ( ! empty( $_SERVER['HTTPS'] ) && 'off' !== $_SERVER['HTTPS'] ) ||
158
                 ( ! empty( $_SERVER['SERVER_PORT'] ) && 443 === $_SERVER['SERVER_PORT'] ) ) ? 'https://' : 'http://';
159
    }
160
161
    /**
162
     * Add required admin scripts.
163
     *
164
     * @since 1.0.0
165
     * @access public
166
     *
167
     * @see  wp_enque_style()
168
     * @see  wp_register_script()
169
     * @see  wp_enqueue_script()
170
     *
171
     * @return void
172
     */
173
    public function enqueue_admin_scripts() {
174
        // enqueue styles.
175
        wp_enqueue_style( 'style-dfi', plugins_url( '/css/style-dfi.css', __FILE__ ), array(), self::VERSION );
176
        wp_enqueue_style( 'dashicons', plugins_url( '/css/dashicons.css', __FILE__ ), array(), self::VERSION );
177
178
        // register script.
179
        wp_register_script( 'scripts-dfi', plugins_url( '/js/script-dfi.js', __FILE__ ), array( 'jquery' ), self::VERSION );
180
181
        // localize the script with required data.
182
        wp_localize_script(
183
            'scripts-dfi',
184
            'WP_SPECIFIC',
185
            array(
186
                'upload_url'               => $this->upload_url,
187
                'metabox_title'            => __( $this->metabox_title, self::TEXT_DOMAIN ),
188
                'mediaSelector_title'      => __( 'Dynamic Featured Image - Media Selector', self::TEXT_DOMAIN ),
189
                'mediaSelector_buttonText' => __( 'Set Featured Image', self::TEXT_DOMAIN ),
190
            )
191
        );
192
193
        // enqueue scripts.
194
        wp_enqueue_script( 'scripts-dfi' );
195
    }
196
197
    /**
198
     * Add upgrade link.
199
     *
200
     * @access public
201
     * @since  3.5.1
202
     * @action plugin_action_links
203
     *
204
     * @codeCoverageIgnore
205
     *
206
     * @param  array $links Action links.
207
     *
208
     * @return array
209
     */
210
    public function dfi_action_links( $links ) {
211
        $upgrade_link = array(
212
            '<a href="https://ankitpokhrel.com/explore/downloads/dynamic-featured-image-pro/" target="_blank">Upgrade to Premium</a>'
213
        );
214
215
        return array_merge( $links, $upgrade_link );
216
    }
217
218
    /**
219
     * Add featured meta boxes dynamically.
220
     *
221
     * @since 1.0.0
222
     * @access public
223
     * @global object $post
224
     *
225
     * @see  get_post_meta()
226
     * @see  get_post_types()
227
     * @see  add_meta_box()
228
     * @see  add_filter()
229
     *
230
     * @return void
231
     */
232
    public function initialize_featured_box() {
233
        global $post;
234
235
        // make metabox title dynamic.
236
        $this->metabox_title = apply_filters( 'dfi_set_metabox_title', __( 'Featured Image', self::TEXT_DOMAIN ) );
237
238
        $featured_data  = get_post_meta( $post->ID, 'dfiFeatured', true );
239
        $total_featured = count( $featured_data );
240
241
        $default_filter    = array( 'attachment', 'revision', 'nav_menu_item' );
242
        $this->user_filter = apply_filters( 'dfi_post_type_user_filter', $this->user_filter );
243
        $filter            = array_merge( $default_filter, $this->user_filter );
244
245
        $post_types = get_post_types();
246
        $post_types = array_diff( $post_types, $filter );
247
248
        $post_types = apply_filters( 'dfi_post_types', $post_types );
249
250
        if ( ! empty( $featured_data ) && $total_featured >= 1 ) {
251
            $i = 2;
252
            foreach ( $featured_data as $featured ) {
253
                $this->dfi_add_meta_box( $post_types, $featured, $i );
254
                $i ++;
255
            }
256
        } else {
257
            $this->dfi_add_meta_box( $post_types );
258
        }
259
    }
260
261
    /**
262
     * Translates more than one digit number digit by digit.
263
     *
264
     * @param  int $number Integer to be translated.
265
     *
266
     * @return string Translated number
267
     */
268
    protected function get_number_translation( $number ) {
269
        if ( $number <= 9 ) {
270
            return __( $number, self::TEXT_DOMAIN );
271
        } else {
272
            $pieces = str_split( $number, 1 );
273
            $buffer = '';
274
            foreach ( $pieces as $piece ) {
275
                $buffer .= __( $piece, self::TEXT_DOMAIN );
276
            }
277
278
            return $buffer;
279
        }
280
    }
281
282
    /**
283
     * Adds meta boxes.
284
     *
285
     * @param  array  $post_types Post types to show featured image box.
286
     * @param  object $featured Callback arguments.
287
     * @param  int    $i Index of the featured image.
288
     *
289
     * @return void
290
     */
291
    private function dfi_add_meta_box( $post_types, $featured = null, $i = null ) {
292
        if ( ! is_null( $i ) ) {
293
            foreach ( $post_types as $type ) {
294
                add_meta_box(
295
                    'dfiFeaturedMetaBox-' . $i,
296
                    __( $this->metabox_title, self::TEXT_DOMAIN ) . ' ' . $this->get_number_translation( $i ),
297
                    array( $this, 'featured_meta_box' ),
298
                    $type,
299
                    'side',
300
                    'low',
301
                    array( $featured, $i + 1 )
302
                );
303
304
                add_filter( "postbox_classes_{$type}_dfiFeaturedMetaBox-" . $i, array( $this, 'add_metabox_classes' ) );
305
            }
306
        } else {
307
            foreach ( $post_types as $type ) {
308
                add_meta_box(
309
                    'dfiFeaturedMetaBox',
310
                    __( $this->metabox_title, self::TEXT_DOMAIN ) . ' ' . __( 2, self::TEXT_DOMAIN ),
311
                    array( $this, 'featured_meta_box' ),
312
                    $type,
313
                    'side',
314
                    'low',
315
                    array( null, null )
316
                );
317
318
                add_filter( "postbox_classes_{$type}_dfiFeaturedMetaBox", array( $this, 'add_metabox_classes' ) );
319
            }
320
        }
321
    }
322
323
    /**
324
     * Separate thumb and full image url from given URL string.
325
     *
326
     * @since  3.3.1
327
     *
328
     * @param  string $url_string Url string.
329
     * @param  string $state Thumb or full.
330
     *
331
     * @return string|null
332
     */
333
    private function separate( $url_string, $state = 'thumb' ) {
334
        $image_piece = explode( ',', $url_string );
335
336
        if ( 'thumb' === $state ) {
337
            return isset( $image_piece[0] ) ? $image_piece[0] : null;
338
        }
339
340
        return isset( $image_piece[1] ) ? $image_piece[1] : null;
341
    }
342
343
    /**
344
     * Create a nonce field
345
     *
346
     * @since  3.5.0
347
     *
348
     * @see  wp_nonce_field()
349
     * @see  plugin_basename()
350
     *
351
     * @codeCoverageIgnore
352
     *
353
     * @param  string $key Nonce key.
354
     *
355
     * @return string
356
     */
357
    protected function nonce_field( $key ) {
358
        return wp_nonce_field( plugin_basename( __FILE__ ), $key, true, false );
359
    }
360
361
    /**
362
     * Featured meta box as seen in the admin
363
     *
364
     * @since 1.0.0
365
     * @access public
366
     *
367
     * @param  object $post Global post object.
368
     * @param  array  $featured Array containing featured image count.
369
     *
370
     * @throws Exception Medium size image not found.
371
     * @return void
372
     */
373
    public function featured_meta_box( $post, $featured ) {
374
        $featured_img         = $featured['args'][0];
375
        $featured_id          = is_null( $featured['args'][1] ) ? 2 : --$featured['args'][1];
376
        $featured_img_full    = $featured_img;
377
        $featured_img_trimmed = $featured_img;
378
379
        if ( ! is_null( $featured_img ) ) {
380
            $featured_img_trimmed = $this->separate( $featured_img );
381
            $featured_img_full    = $this->separate( $featured_img, 'full' );
382
        }
383
384
        try {
385
            $thumbnail = $this->get_image_thumb( $this->upload_url . $featured_img_full, 'medium' );
386
            if ( is_null( $thumbnail ) ) {
387
                // medium sized thumbnail image is missing.
388
                throw new Exception( 'Medium size image not found', 1 );
389
            }
390
        } catch ( Exception $e ) {
391
            // since medium sized thumbnail image was not found,
392
            // let's set full image url as thumbnail.
393
            $thumbnail = $featured_img_full;
394
        }
395
396
        // Add a nonce field.
397
        echo $this->nonce_field( 'dfi_fimageplug-' . $featured_id ); // WPCS: XSS ok.
398
        echo $this->get_featured_box( $featured_img_trimmed, $featured_img, $featured_id, $thumbnail, $post->ID ); // WPCS: XSS ok.
399
    }
400
401
    /**
402
     * Returns featured box html content.
403
     *
404
     * @since  3.1.0
405
     * @access private
406
     *
407
     * @param string $featured_img_trimmed Medium sized image.
408
     * @param string $featured_img Full sized image.
409
     * @param string $featured_id Attachment Id.
410
     * @param string $thumbnail Thumb sized image.
411
     * @param int    $post_id Post id.
412
     *
413
     * @return string Html content
414
     */
415
    private function get_featured_box( $featured_img_trimmed, $featured_img, $featured_id, $thumbnail, $post_id ) {
416
        $has_featured_image = ! empty( $featured_img_trimmed ) ? 'hasFeaturedImage' : '';
417
        $thumbnail          = ! is_null( $thumbnail ) ? $thumbnail : '';
418
        $dfi_empty          = is_null( $featured_img_trimmed ) ? 'dfiImgEmpty' : '';
419
420
        return "<a href='javascript:void(0)' class='dfiFeaturedImage {$has_featured_image}' title='" . __( 'Set Featured Image', self::TEXT_DOMAIN ) . "' data-post-id='" . $post_id . "'><span class='dashicons dashicons-camera'></span></a><br/>
421
            <img src='" . $thumbnail . "' class='dfiImg {$dfi_empty}'/>
422
            <div class='dfiLinks'>
423
                <a href='javascript:void(0)' data-id='{$featured_id}' data-id-local='" . $this->get_number_translation( $featured_id + 1 ) . "' class='dfiAddNew dashicons dashicons-plus' title='" . __( 'Add New', self::TEXT_DOMAIN ) . "'></a>
424
                <a href='javascript:void(0)' class='dfiRemove dashicons dashicons-minus' title='" . __( 'Remove', self::TEXT_DOMAIN ) . "'></a>
425
            </div>
426
            <div class='dfiClearFloat'></div>
427
            <input type='hidden' name='dfiFeatured[]' value='{$featured_img}'  class='dfiImageHolder' />";
428
    }
429
430
    /**
431
     * Load new featured meta box via ajax
432
     *
433
     * @since 1.0.0
434
     * @access public
435
     *
436
     * @return void
437
     */
438
    public function ajax_callback() {
439
        $featured_id = isset( $_POST['id'] ) ? intval( wp_unslash( $_POST['id'] ) ) : null;
440
441
        if ( ! is_numeric( $featured_id ) ) {
442
            return;
443
        }
444
445
        // @codingStandardsIgnoreStart
446
        echo $this->nonce_field( 'dfi_fimageplug-' . $featured_id );
447
        ?>
448
        <a href="javascript:void(0)" class="dfiFeaturedImage"
449
           title="<?php echo __( 'Set Featured Image', self::TEXT_DOMAIN ) ?>"><span
450
                    class="dashicons dashicons-camera"></span></a><br/>
451
        <img src="" class="dfiImg dfiImgEmpty"/>
452
        <div class="dfiLinks">
453
            <a href="javascript:void(0)" data-id="<?php echo $featured_id ?>"
454
               data-id-local="<?php echo $this->get_number_translation( $featured_id + 1 ) ?>"
455
               class="dfiAddNew dashicons dashicons-plus" title="<?php echo __( 'Add New', self::TEXT_DOMAIN ) ?>"></a>
456
            <a href="javascript:void(0)" class="dfiRemove dashicons dashicons-minus"
457
               title="<?php echo __( 'Remove', self::TEXT_DOMAIN ) ?>"></a>
458
        </div>
459
        <div class="dfiClearFloat"></div>
460
        <input type="hidden" name="dfiFeatured[]" value="" class="dfiImageHolder"/>
461
        <?php
462
        // @codingStandardsIgnoreEnd
463
        wp_die( '' );
464
    }
465
466
    /**
467
     * Add custom class 'featured-meta-box' to meta box.
468
     *
469
     * @since 1.0.0
470
     * @access public
471
     *
472
     * @see  add_metabox_classes
473
     *
474
     * @param array $classes Classes to add in the meta box.
475
     *
476
     * @return array
477
     */
478
    public function add_metabox_classes( $classes ) {
479
        array_push( $classes, 'featured-meta-box' );
480
481
        return $classes;
482
    }
483
484
    /**
485
     * Add custom fields in media uploader.
486
     *
487
     * @since  3.4.0
488
     *
489
     * @param array $form_fields Fields to include in media attachment form.
490
     * @param array $post Post data.
491
     *
492
     * @return array
493
     */
494
    public function media_attachment_custom_fields( $form_fields, $post ) {
495
        $form_fields['dfi-link-to-image'] = array(
496
            'label' => __( 'Link to Image', self::TEXT_DOMAIN ),
497
            'input' => 'text',
498
            'value' => get_post_meta( $post->ID, '_dfi_link_to_image', true ),
499
        );
500
501
        return $form_fields;
502
    }
503
504
    /**
505
     * Save values of media uploader custom fields.
506
     *
507
     * @since 3.4.0
508
     *
509
     * @param array $post Post data for database.
510
     * @param array $attachment Attachment fields from $_POST form.
511
     *
512
     * @return array
513
     */
514
    public function media_attachment_custom_fields_save( $post, $attachment ) {
515
        if ( isset( $attachment['dfi-link-to-image'] ) ) {
516
            update_post_meta( $post['ID'], '_dfi_link_to_image', $attachment['dfi-link-to-image'] );
517
        }
518
519
        return $post;
520
    }
521
522
    /**
523
     * Update featured images in the database.
524
     *
525
     * @since 1.0.0
526
     * @access public
527
     *
528
     * @see  plugin_basename()
529
     * @see  update_post_meta()
530
     * @see  current_user_can()
531
     *
532
     * @param  int $post_id Current post id.
533
     *
534
     * @return bool|null
535
     */
536
    public function save_meta( $post_id ) {
537
        // Check auto save.
538
        if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
539
            return false;
540
        }
541
542
        if ( ! $this->verify_nonces() ) {
543
            return false;
544
        }
545
546
        // Check permission before saving data.
547
        if ( current_user_can( 'edit_posts', $post_id ) && isset( $_POST['dfiFeatured'] ) ) {
548
            $featured_images = is_array( $_POST['dfiFeatured'] ) ? $_POST['dfiFeatured'] : []; // WPCS: sanitization ok.
549
550
            $sanitized = [];
551
            foreach ( $featured_images as $image ) {
552
                $sanitized[] = sanitize_text_field( wp_unslash( $image ) );
553
            }
554
555
            update_post_meta( $post_id, 'dfiFeatured', $sanitized );
556
        }
557
    }
558
559
    /**
560
     * Verify metabox nonces.
561
     *
562
     * @access protected
563
     * @see  wp_verify_nonce()
564
     *
565
     * @return bool
566
     */
567
    protected function verify_nonces() {
0 ignored issues
show
Coding Style introduced by
verify_nonces uses the super-global variable $_POST which is generally not recommended.

Instead of super-globals, we recommend to explicitly inject the dependencies of your class. This makes your code less dependent on global state and it becomes generally more testable:

// Bad
class Router
{
    public function generate($path)
    {
        return $_SERVER['HOST'].$path;
    }
}

// Better
class Router
{
    private $host;

    public function __construct($host)
    {
        $this->host = $host;
    }

    public function generate($path)
    {
        return $this->host.$path;
    }
}

class Controller
{
    public function myAction(Request $request)
    {
        // Instead of
        $page = isset($_GET['page']) ? intval($_GET['page']) : 1;

        // Better (assuming you use the Symfony2 request)
        $page = $request->query->get('page', 1);
    }
}
Loading history...
568
        $keys = array_keys( $_POST );
569
570
        foreach ( $keys as $key ) {
571
            if ( preg_match( '/dfi_fimageplug-\d+$/', $key ) ) {
572
                $nonce = isset( $_POST[ $key ] ) ? sanitize_text_field( wp_unslash( $_POST[ $key ] ) ) : '';
573
574
                // Verify nonce.
575
                if ( ! wp_verify_nonce(
576
                    $nonce,
577
                    plugin_basename( __FILE__ )
578
                ) ) {
579
                    return false;
580
                }
581
            }
582
        }
583
584
        return true;
585
    }
586
587
    /**
588
     * Add update notice. Displayed in plugin update page.
589
     *
590
     * @since 2.0.0
591
     * @access public
592
     *
593
     * @return void
594
     */
595
    public function update_notice() {
596
        $info = __( 'ATTENTION! Please read the <a href="' . self::WIKI_LINK . '" target="_blank">DOCUMENTATION</a> properly before update.',
597
        self::TEXT_DOMAIN );
598
599
        echo '<span style="color:red; padding:7px 0; display: block">' . strip_tags( $info, '<a><b><i><span>' ) . '</span>'; // WPCS: XSS ok.
600
    }
601
602
    /**
603
     * Execute query.
604
     *
605
     * @param string $query Query to execute.
606
     *
607
     * @return null|string
608
     */
609
    private function execute_query( $query ) {
610
        return $this->db->get_var( $query );
611
    }
612
613
    /**
614
     * Get attachment id of the image by image url.
615
     *
616
     * @since 3.1.7
617
     * @access protected
618
     * @global object $wpdb
619
     *
620
     * @param  string $image_url URL of an image.
621
     *
622
     * @return string
623
     */
624
    protected function get_attachment_id( $image_url ) {
625
        return $this->execute_query( $this->db->prepare( 'SELECT ID FROM ' . $this->db->posts . ' WHERE guid = %s', $image_url ) );
626
    }
627
628
    /**
629
     * Get image url of the image by attachment id.
630
     *
631
     * @since 2.0.0
632
     * @access public
633
     *
634
     * @see  wp_get_attachment_image_src()
635
     *
636
     * @param  int    $attachment_id attachment id of an image.
637
     * @param  string $size size of the image to fetch (thumbnail, medium, full).
638
     *
639
     * @return string
640
     */
641
    public function get_image_url( $attachment_id, $size = 'full' ) {
642
        $image_thumb = wp_get_attachment_image_src( $attachment_id, $size );
643
644
        return empty( $image_thumb ) ? null : $image_thumb[0];
645
    }
646
647
    /**
648
     * Get image thumbnail url of specific size by image url.
649
     *
650
     * @since 2.0.0
651
     * @access public
652
     *
653
     * @see  get_image_id()
654
     * @see  wp_get_attachment_image_src()
655
     *
656
     * @param  string $image_url url of an image.
657
     * @param  string $size size of the image to fetch (thumbnail, medium, full).
658
     *
659
     * @return string
660
     */
661
    public function get_image_thumb( $image_url, $size = 'thumbnail' ) {
662
        $attachment_id = $this->get_image_id( $image_url );
663
        $image_thumb   = wp_get_attachment_image_src( $attachment_id, $size );
664
665
        return empty( $image_thumb ) ? null : $image_thumb[0];
666
    }
667
668
    /**
669
     * Gets attachment id from given image url.
670
     *
671
     * @param  string $image_url url of an image.
672
     *
673
     * @since  2.0.0
674
     * @access public
675
     *
676
     * @return int|null attachment id of an image
677
     */
678
    public function get_image_id( $image_url ) {
679
        $attachment_id = $this->get_attachment_id( $image_url );
680
681
        if ( is_null( $attachment_id ) ) {
682
            // check if the image is edited image.
683
            // and try to get the attachment id.
684
            $image_url = str_replace( $this->upload_url . '/', '', $image_url );
685
            $row       = $this->execute_query( $this->db->prepare( 'SELECT post_id FROM ' . $this->db->postmeta . ' WHERE meta_value = %s', $image_url ) );
686
            if ( ! is_null( $row ) ) {
687
                $attachment_id = $row;
688
            }
689
        }
690
691
        return $attachment_id;
692
    }
693
694
    /**
695
     * Get image title.
696
     *
697
     * @since 2.0.0
698
     * @access public
699
     *
700
     * @param string $image_url URL of an image.
701
     *
702
     * @return string
703
     */
704
    public function get_image_title( $image_url ) {
705
        return $this->execute_query( $this->db->prepare( 'SELECT post_title FROM ' . $this->db->posts . ' WHERE guid = %s', $image_url ) );
706
    }
707
708
    /**
709
     * Get image title by id.
710
     *
711
     * @since 2.0.0
712
     * @access public
713
     *
714
     * @param  int $attachment_id Attachment id of an image.
715
     *
716
     * @return string
717
     */
718
    public function get_image_title_by_id( $attachment_id ) {
719
        return $this->execute_query( $this->db->prepare( 'SELECT post_title FROM ' . $this->db->posts . ' WHERE ID = %d', $attachment_id ) );
720
    }
721
722
    /**
723
     * Get image caption.
724
     *
725
     * @since 2.0.0
726
     * @access public
727
     *
728
     * @param  string $image_url URL of an image.
729
     *
730
     * @return string
731
     */
732
    public function get_image_caption( $image_url ) {
733
        return $this->execute_query( $this->db->prepare( 'SELECT post_excerpt FROM ' . $this->db->posts . ' WHERE guid = %s', $image_url ) );
734
    }
735
736
    /**
737
     * Get image caption by id.
738
     *
739
     * @since 2.0.0
740
     * @access public
741
     *
742
     * @param  int $attachment_id Attachment id of an image.
743
     *
744
     * @return string
745
     */
746
    public function get_image_caption_by_id( $attachment_id ) {
747
        return $this->execute_query( $this->db->prepare( 'SELECT post_excerpt FROM ' . $this->db->posts . ' WHERE ID = %d', $attachment_id ) );
748
    }
749
750
    /**
751
     * Get image alternate text.
752
     *
753
     * @since 2.0.0
754
     * @access public
755
     *
756
     * @see  get_post_meta()
757
     *
758
     * @param  string $image_url URL of an image.
759
     *
760
     * @return string
761
     */
762
    public function get_image_alt( $image_url ) {
763
        $attachment = $this->db->get_col( $this->db->prepare( 'SELECT ID FROM ' . $this->db->posts . ' WHERE guid = %s', $image_url ) );
764
765
        $alt = null;
766
        if ( ! empty( $attachment ) ) {
767
            $alt = get_post_meta( $attachment[0], '_wp_attachment_image_alt' );
768
        }
769
770
        return ( is_null( $alt ) || empty( $alt ) ) ? null : $alt[0];
771
    }
772
773
    /**
774
     * Get image alternate text by attachment id.
775
     *
776
     * @since 2.0.0
777
     * @access public
778
     *
779
     * @see  get_post_meta()
780
     *
781
     * @param  int $attachment_id Attachment id of an image.
782
     *
783
     * @return string
784
     */
785
    public function get_image_alt_by_id( $attachment_id ) {
786
        $alt = get_post_meta( $attachment_id, '_wp_attachment_image_alt' );
787
788
        return empty( $alt ) ? null : $alt[0];
789
    }
790
791
    /**
792
     * Get image description.
793
     *
794
     * @since 3.0.0
795
     * @access public
796
     *
797
     * @param  string $image_url URL of an image.
798
     *
799
     * @return string
800
     */
801
    public function get_image_description( $image_url ) {
802
        return $this->execute_query( $this->db->prepare( 'SELECT post_content FROM ' . $this->db->posts . ' WHERE guid = %s', $image_url ) );
803
    }
804
805
    /**
806
     * Get image description by id.
807
     *
808
     * @since 3.0.0
809
     * @access public
810
     *
811
     * @param  int $attachment_id attachment id of an image.
812
     *
813
     * @return string
814
     */
815
    public function get_image_description_by_id( $attachment_id ) {
816
        return $this->execute_query( $this->db->prepare( 'SELECT post_content FROM ' . $this->db->posts . ' WHERE ID = %d', $attachment_id ) );
817
    }
818
819
    /**
820
     * Get link to image.
821
     *
822
     * @since 3.4.0
823
     * @access public
824
     *
825
     * @param  int $attachment_id Attachment id of an image.
826
     *
827
     * @return string|null
828
     */
829
    public function get_link_to_image( $attachment_id ) {
830
        return get_post_meta( $attachment_id, '_dfi_link_to_image', true );
831
    }
832
833
    /**
834
     * Get all attachment ids of the post.
835
     *
836
     * @since 2.0.0
837
     * @access public
838
     *
839
     * @see  get_post_meta()
840
     *
841
     * @param  int $post_id id of the current post.
842
     *
843
     * @return array
844
     */
845
    public function get_post_attachment_ids( $post_id ) {
846
        $dfi_images = get_post_meta( $post_id, 'dfiFeatured', true );
847
        $ret_val    = array();
848
849
        if ( ! empty( $dfi_images ) && is_array( $dfi_images ) ) {
850
            foreach ( $dfi_images as $dfi_image ) {
851
                $dfi_image_full = $this->separate( $dfi_image, 'full' );
852
                $ret_val[]     = $this->get_image_id( $this->upload_url . $dfi_image_full );
853
            }
854
        }
855
856
        return $ret_val;
857
    }
858
859
    /**
860
     * Fetches featured image data of nth position.
861
     *
862
     * @since  3.0.0
863
     * @access  public
864
     *
865
     * @see  get_featured_images()
866
     *
867
     * @param  int $position Position of the featured image.
868
     * @param  int $post_id Current post id.
869
     *
870
     * @return array if found, null otherwise.
871
     */
872
    public function get_nth_featured_image( $position, $post_id = null ) {
873
        if ( is_null( $post_id ) ) {
874
            global $post;
875
            $post_id = $post->ID;
876
        }
877
878
        $featured_images = $this->get_featured_images( $post_id );
879
880
        return isset( $featured_images[ $position - 2 ] ) ? $featured_images[ $position - 2 ] : null;
881
    }
882
883
    /**
884
     * Check if the image is attached with the particular post.
885
     *
886
     * @since 2.0.0
887
     * @access public
888
     *
889
     * @see  get_post_attachment_ids()
890
     *
891
     * @param  int $attachment_id Attachment id of an image.
892
     * @param  int $post_id Current post id.
893
     *
894
     * @return bool
895
     */
896
    public function is_attached( $attachment_id, $post_id ) {
897
        if ( empty( $attachment_id ) ) {
898
            return false;
899
        }
900
901
        $attachment_ids = $this->get_post_attachment_ids( $post_id );
902
903
        return in_array( $attachment_id, $attachment_ids, true ) ? true : false;
904
    }
905
906
    /**
907
     * Retrieve featured images for specific post(s).
908
     *
909
     * @since 2.0.0
910
     * @access public
911
     *
912
     * @see get_post_meta()
913
     *
914
     * @param  integer $post_id id of the current post.
915
     *
916
     * @return array
917
     */
918
    public function get_featured_images( $post_id = null ) {
919
        if ( is_null( $post_id ) ) {
920
            global $post;
921
922
            $post_id = $post->ID;
923
        }
924
925
        $dfi_images = get_post_meta( $post_id, 'dfiFeatured', true );
926
        $ret_images = array();
927
928
        if ( ! empty( $dfi_images ) && is_array( $dfi_images ) ) {
929
            $dfi_images = array_filter( $dfi_images );
930
931
            $count = 0;
932
            foreach ( $dfi_images as $dfi_image ) {
933
                $dfi_image_trimmed = $this->separate( $dfi_image );
934
                $dfi_image_full    = $this->separate( $dfi_image, 'full' );
935
936
                try {
937
                    $ret_images[ $count ]['thumb']         = $this->get_real_upload_path( $dfi_image_trimmed );
938
                    $ret_images[ $count ]['full']          = $this->get_real_upload_path( $dfi_image_full );
939
                    $ret_images[ $count ]['attachment_id'] = $this->get_image_id( $ret_images[ $count ]['full'] );
940
941
                } catch ( Exception $e ) {
942
                    /* Ignore the exception and continue with other featured images */
943
                }
944
945
                $count ++;
946
            }
947
        }
948
949
        return $ret_images;
950
    }
951
952
    /**
953
     * Check to see if the upload url is already available in path.
954
     *
955
     * @since  3.1.14
956
     * @access protected
957
     *
958
     * @param  string $img Uploaded image.
959
     *
960
     * @return string
961
     */
962
    protected function get_real_upload_path( $img ) {
963
        // check if upload path is already attached.
964
        if ( false !== strpos( $img, $this->upload_url ) || preg_match( '/https?:\/\//', $img ) ) {
965
            return $img;
966
        }
967
968
        return $this->upload_url . $img;
969
    }
970
971
    /**
972
     * Retrieve featured images for specific post(s) including the default Featured Image.
973
     *
974
     * @since 3.1.7
975
     * @access public
976
     *
977
     * @see  $this->get_featured_images()
978
     *
979
     * @param int $post_id Current post id.
980
     *
981
     * @return array An array of images or an empty array on failure
982
     */
983
    public function get_all_featured_images( $post_id = null ) {
984
        if ( is_null( $post_id ) ) {
985
            global $post;
986
987
            $post_id = $post->ID;
988
        }
989
990
        $thumbnail_id         = get_post_thumbnail_id( $post_id );
991
        $featured_image_array = array();
992
993
        if ( ! empty( $thumbnail_id ) ) {
994
            $featured_image         = array(
995
                'thumb'         => wp_get_attachment_thumb_url( $thumbnail_id ),
996
                'full'          => wp_get_attachment_url( $thumbnail_id ),
997
                'attachment_id' => $thumbnail_id,
998
            );
999
1000
            $featured_image_array[] = $featured_image;
1001
        }
1002
1003
        return array_merge( $featured_image_array, $this->get_featured_images( $post_id ) );
1004
    }
1005
1006
    /**
1007
     * Load the plugin's textdomain hooked to 'plugins_loaded'.
1008
     *
1009
     * @since 1.0.0
1010
     * @access public
1011
     *
1012
     * @see    load_plugin_textdomain()
1013
     * @see    plugin_basename()
1014
     * @action plugins_loaded
1015
     *
1016
     * @codeCoverageIgnore
1017
     *
1018
     * @return void
1019
     */
1020
    public function load_plugin_textdomain() {
1021
        load_plugin_textdomain(
1022
            self::TEXT_DOMAIN,
1023
            false,
1024
            dirname( plugin_basename( __FILE__ ) ) . '/languages/'
1025
        );
1026
    }
1027
}
1028
1029
/**
1030
 * Instantiate the main class.
1031
 *
1032
 * @since 1.0.0
1033
 * @access public
1034
 *
1035
 * @var object $dynamic_featured_image holds the instantiated class {@uses Dynamic_Featured_Image}
1036
 */
1037
global $dynamic_featured_image;
1038
$dynamic_featured_image = new Dynamic_Featured_Image();
1039