Completed
Push — develop ( d494ed...7721c5 )
by Paul
02:24
created

Image::normalize()   B

Complexity

Conditions 5
Paths 4

Size

Total Lines 12
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 12
rs 8.8571
c 0
b 0
f 0
cc 5
eloc 6
nc 4
nop 1
1
<?php
2
3
namespace GeminiLabs\Castor;
4
5
use GeminiLabs\Castor\Helpers\PostMeta;
6
use GeminiLabs\Castor\Helpers\Utility;
7
8
class Image
9
{
10
	public $image;
11
12
	protected $postmeta;
13
	protected $utility;
14
15
	public function __construct( PostMeta $postmeta, Utility $utility )
16
	{
17
		$this->postmeta = $postmeta;
18
		$this->utility  = $utility;
19
	}
20
21
	/**
22
	 * @param int|string $attachment
23
	 *
24
	 * @return null|object
25
	 */
26
	public function get( $attachment )
27
	{
28
		if( !( $attachment = $this->normalize( $attachment )))return;
29
		if( $thumbnail = wp_get_attachment_image_src( $attachment, 'thumbnail' )) {
30
			$medium = $this->normalizeSrc( wp_get_attachment_image_src( $attachment, 'medium' ), $thumbnail );
31
			$large = $this->normalizeSrc( wp_get_attachment_image_src( $attachment, 'large' ), $medium );
32
33
			$this->image = (object) [
34
				'alt'       => wp_strip_all_tags( get_post_meta( $attachment, '_wp_attachment_image_alt', true ), true ),
35
				'caption'   => wp_get_attachment_caption( $attachment ),
36
				'copyright' => wp_strip_all_tags( get_post_meta( $attachment, '_copyright', true ), true ),
37
				'ID'        => $attachment,
38
				'large'     => $large,
39
				'medium'    => $medium,
40
				'permalink' => get_attachment_link( $attachment ),
41
				'thumbnail' => $this->normalizeSrc( $thumbnail ),
42
			];
43
		}
44
		return $this;
45
	}
46
47
	public function render( $size = 'large' )
48
	{
49
		return wp_get_attachment_image( $this->image->ID, $size );
50
	}
51
52
	protected function normalize( $attachmentId )
53
	{
54
		if( !filter_var( $attachmentId, FILTER_VALIDATE_INT )) {
55
			$attachmentId = $this->postmeta->get( $attachmentId );
56
		}
57
58
		$attachment = get_post( $attachmentId );
59
60
		if( !$attachmentId || !$attachment || $attachment->post_type != 'attachment' )return;
61
62
		return $attachment->ID;
63
	}
64
65
	/**
66
	 * @param mixed $fallback
67
	 *
68
	 * @return array
69
	 */
70
	protected function normalizeSrc( array $image, $fallback = false )
71
	{
72
		if( is_array( $fallback ) && count( array_diff( $image, $fallback )) < 2 ) {
73
			$image = $fallback;
74
		}
75
		return [
76
			'url'    => $image[0],
77
			'width'  => $image[1],
78
			'height' => $image[2],
79
		];
80
	}
81
}
82