1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace shweshi\OpenGraph; |
4
|
|
|
|
5
|
|
|
use DOMDocument; |
6
|
|
|
|
7
|
|
|
class OpenGraph |
8
|
|
|
{ |
9
|
|
|
public function fetch($url, $allMeta = null) |
10
|
|
|
{ |
11
|
|
|
$html = $this->curl_get_contents($url); |
12
|
|
|
|
13
|
|
|
/** |
14
|
|
|
* parsing starts here:. |
15
|
|
|
*/ |
16
|
|
|
$doc = new DOMDocument(); |
17
|
|
|
@$doc->loadHTML('<?xml encoding="utf-8" ?>'.$html); |
|
|
|
|
18
|
|
|
|
19
|
|
|
$tags = $doc->getElementsByTagName('meta'); |
20
|
|
|
$metadata = []; |
21
|
|
|
foreach ($tags as $tag) { |
22
|
|
|
$metaproperty = ($tag->hasAttribute('property')) ? $tag->getAttribute('property') : $tag->getAttribute('name'); |
23
|
|
|
if (!$allMeta && $metaproperty && strpos($tag->getAttribute('property'), 'og:') === 0) { |
24
|
|
|
$key = strtr(substr($metaproperty, 3), '-', '_'); |
25
|
|
|
$value = $tag->getAttribute('content'); |
26
|
|
|
} |
27
|
|
|
if ($allMeta && $metaproperty) { |
28
|
|
|
$key = (strpos($metaproperty, 'og:') === 0) ? strtr(substr($metaproperty, 3), '-', '_') : $metaproperty; |
29
|
|
|
$value = $tag->getAttribute('content'); |
30
|
|
|
} |
31
|
|
|
if (!empty($key)) { |
32
|
|
|
$metadata[$key] = $value; |
|
|
|
|
33
|
|
|
} |
34
|
|
|
} |
35
|
|
|
|
36
|
|
|
return $metadata; |
37
|
|
|
} |
38
|
|
|
|
39
|
|
|
protected function curl_get_contents($url) |
40
|
|
|
{ |
41
|
|
|
$curl = curl_init($url); |
42
|
|
|
curl_setopt($curl, CURLOPT_FAILONERROR, 1); |
43
|
|
|
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); |
44
|
|
|
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); |
45
|
|
|
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 0); |
46
|
|
|
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0); |
47
|
|
|
curl_setopt($curl, CURLOPT_TIMEOUT, 30); |
48
|
|
|
curl_setopt($curl, CURLOPT_ENCODING, 'UTF-8'); |
49
|
|
|
$response = curl_exec($curl); |
50
|
|
|
curl_close($curl); |
51
|
|
|
|
52
|
|
|
return $response; |
53
|
|
|
} |
54
|
|
|
} |
55
|
|
|
|
If you suppress an error, we recommend checking for the error condition explicitly: