forked from niallkennedy/open-graph-protocol-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
media.php
292 lines (267 loc) · 6.83 KB
/
media.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
<?php
/**
* Structured properties representations of Open Graph protocol media: image, video, audio
*
* @link http://ogp.me/#structured Open Graph protocol structured properties
* @package open-graph-protocol-tools
* @author Niall Kennedy <[email protected]>
* @version 1.3
* @copyright Public Domain
*/
if ( !class_exists('OpenGraphProtocol') )
require_once(dirname(__FILE__) . '/open-graph-protocol.php');
/**
* Describe a media object
*
* @version 1.3
*/
abstract class OpenGraphProtocolMedia {
/**
* HTTP scheme URL
*
* @var string
* @since 1.3
*/
protected $url;
/**
* HTTPS scheme URL
*
* @var string
* @since 1.3
*/
protected $secure_url;
/**
* Internet media type of the linked URLs
*
* @var string
* @since 1.3
*/
protected $type;
/**
* Treat a string reference just like the base property
*/
public function toString() {
return $this->url;
}
public function toArray() {
return get_object_vars($this);
}
/**
* @return string URL string or null if not set
*/
public function getURL() {
return $this->url;
}
/**
* Set the media URL
*
* @param string $url resource location
*/
public function setURL( $url ) {
if ( is_string( $url ) && !empty( $url ) ) {
$url = trim($url);
if (OpenGraphProtocol::VERIFY_URLS) {
$url = OpenGraphProtocol::is_valid_url( $url, array( 'text/html', 'application/xhtml+xml' ) );
}
if (!empty($url))
$this->url = $url;
}
return $this;
}
/**
* Remove the URL property.
* Sets up the maximum compatibility between image and image:url indexers
*/
public function removeURL() {
if ( !empty($this->url) )
unset($this->url);
}
/**
* @return string secure URL string or null if not set
*/
public function getSecureURL() {
return $this->url;
}
/**
* Set the secure URL for display in a HTTPS page
*
* @param string $url resource location
*/
public function setSecureURL( $url ) {
if ( is_string( $url ) && !empty( $url ) ) {
$url = trim($url);
if (OpenGraphProtocol::VERIFY_URLS) {
if ( parse_url($url,PHP_URL_SCHEME) === 'https' ) {
$url = OpenGraphProtocol::is_valid_url( $url, array( 'text/html', 'application/xhtml+xml' ) );
} else {
$url = '';
}
}
if (!empty($url))
$this->secure_url = $url;
}
return $this;
}
/**
* Get the Internet media type of the referenced resource
*
* @return string Internet media type or null if none set
*/
public function getType() {
return $this->type;
}
}
abstract class OpenGraphProtocolVisualMedia extends OpenGraphProtocolMedia {
/**
* Height of the media object in pixels
*
* @var int
* @since 1.3
*/
protected $height;
/**
* Width of the media object in pixels
*
* @var int
* @since 1.3
*/
protected $width;
/**
* @return int width in pixels
*/
public function getWidth() {
return $this->width;
}
/**
* Set the object width
*
* @param int $width width in pixels
*/
public function setWidth( $width ) {
if ( is_int($width) && $width > 0 )
$this->width = $width;
return $this;
}
/**
* @return int height in pixels
*/
public function getHeight() {
return $this->height;
}
/**
* Set the height of the referenced object in pixels
* @var int height of the referenced object in pixels
*/
public function setHeight( $height ) {
if ( is_int($height) && $height > 0 )
$this->height = $height;
return $this;
}
}
/**
* An image representing page content. Suitable for display alongside a summary of the webpage.
*/
class OpenGraphProtocolImage extends OpenGraphProtocolVisualMedia {
/**
* Map a file extension to a registered Internet media type
*
* @link http://www.iana.org/assignments/media-types/image/index.html IANA image types
* @param string $extension file extension
* @return string Internet media type in the format image/*
*/
public static function extension_to_media_type( $extension ) {
if ( empty($extension) || ! is_string($extension) )
return;
if ( $extension === 'jpeg' || $extension === 'jpg' )
return 'image/jpeg';
else if ( $extension === 'png' )
return 'image/png';
else if ( $extension === 'gif' )
return 'image/gif';
else if ( $extension === 'svg' )
return 'image/svg+sml';
else if ( $extension === 'ico' )
return 'image/vnd.microsoft.icon';
}
/**
* Set the Internet media type. Allow only image types.
*
* @param string $type Internet media type
*/
public function setType( $type ) {
if ( substr_compare( $type, 'image/', 0, 6 ) === 0 )
$this->type = $type;
return $this;
}
}
/**
* A video that complements the webpage content
*/
class OpenGraphProtocolVideo extends OpenGraphProtocolVisualMedia {
/**
* Map a file extension to a registered Internet media type
* Include Flash as a video type due to its popularity as a wrapper
*
* @link http://www.iana.org/assignments/media-types/video/index.html IANA video types
* @param string $extension file extension
* @return string Internet media type in the format video/* or Flash
*/
public static function extension_to_media_type( $extension ) {
if ( empty($extension) || ! is_string($extension) )
return;
if ( $extension === 'swf' )
return 'application/x-shockwave-flash';
else if ( $extension === 'mp4' )
return 'video/mp4';
else if ( $extension === 'ogv' )
return 'video/ogg';
else if ( $extension === 'webm' )
return 'video/webm';
}
/**
* Set the Internet media type. Allow only video types + Flash wrapper.
*
* @param string $type Internet media type
*/
public function setType( $type ) {
if ( $type === 'application/x-shockwave-flash' || substr_compare( $type, 'video/', 0, 6 ) === 0 )
$this->type = $type;
return $this;
}
}
/**
* Audio file suitable for playback alongside the main linked content
*/
class OpenGraphProtocolAudio extends OpenGraphProtocolMedia {
/**
* Map a file extension to a registered Internet media type
* Include Flash as a video type due to its popularity as a wrapper
*
* @link http://www.iana.org/assignments/media-types/audio/index.html IANA video types
* @param string $extension file extension
* @return string Internet media type in the format audio/* or Flash
*/
public static function extension_to_media_type( $extension ) {
if ( empty($extension) || ! is_string($extension) )
return;
if ( $extension === 'swf' )
return 'application/x-shockwave-flash';
else if ( $extension === 'mp3' )
return 'audio/mpeg';
else if ( $extension === 'm4a' )
return 'audio/mp4';
else if ( $extension === 'ogg' || $extension === 'oga' )
return 'audio/ogg';
}
/**
* Set the Internet media type. Allow only audio types + Flash wrapper.
*
* @param string $type Internet media type
*/
public function setType( $type ) {
if ( $type === 'application/x-shockwave-flash' || substr_compare( $type, 'audio/', 0, 6 ) === 0 )
$this->type = $type;
return $this;
}
}
?>