2015-06-03 03:17:09 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class pluginOpenGraph extends Plugin {
|
|
|
|
|
2016-06-07 02:11:19 +02:00
|
|
|
// Returns the first image from the HTML content
|
2015-11-28 15:47:03 +01:00
|
|
|
private function getImage($content)
|
|
|
|
{
|
|
|
|
$dom = new DOMDocument();
|
|
|
|
$dom->loadHTML('<meta http-equiv="content-type" content="text/html; charset=utf-8">'.$content);
|
|
|
|
$finder = new DomXPath($dom);
|
2015-11-28 23:46:23 +01:00
|
|
|
|
2016-01-08 04:04:59 +01:00
|
|
|
$images = $finder->query("//img");
|
2015-11-28 15:47:03 +01:00
|
|
|
|
|
|
|
if($images->length>0)
|
|
|
|
{
|
|
|
|
// First image from the list
|
|
|
|
$image = $images->item(0);
|
|
|
|
// Get value from attribute src
|
2015-11-28 23:46:23 +01:00
|
|
|
$imgSrc = $image->getAttribute('src');
|
|
|
|
// Returns the image src
|
|
|
|
return $imgSrc;
|
2015-11-28 15:47:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-08-07 04:13:55 +02:00
|
|
|
public function siteHead()
|
2015-06-03 03:17:09 +02:00
|
|
|
{
|
|
|
|
global $Url, $Site;
|
2015-11-28 23:46:23 +01:00
|
|
|
global $Post, $Page, $posts;
|
2015-08-07 04:13:55 +02:00
|
|
|
|
2015-06-03 03:17:09 +02:00
|
|
|
$og = array(
|
2015-11-28 15:47:03 +01:00
|
|
|
'locale' =>$Site->locale(),
|
|
|
|
'type' =>'website',
|
|
|
|
'title' =>$Site->title(),
|
2015-06-03 03:17:09 +02:00
|
|
|
'description' =>$Site->description(),
|
2015-11-28 15:47:03 +01:00
|
|
|
'url' =>$Site->url(),
|
|
|
|
'image' =>'',
|
|
|
|
'siteName' =>$Site->title()
|
2015-06-03 03:17:09 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
switch($Url->whereAmI())
|
|
|
|
{
|
2016-06-07 02:11:19 +02:00
|
|
|
// The user filter by post
|
2015-06-03 03:17:09 +02:00
|
|
|
case 'post':
|
2015-11-28 15:47:03 +01:00
|
|
|
$og['type'] = 'article';
|
2015-06-03 03:17:09 +02:00
|
|
|
$og['title'] = $Post->title().' | '.$og['title'];
|
|
|
|
$og['description'] = $Post->description();
|
2015-11-28 15:47:03 +01:00
|
|
|
$og['url'] = $Post->permalink(true);
|
2016-01-08 04:04:59 +01:00
|
|
|
$og['image'] = $Post->coverImage(false);
|
2015-11-28 23:46:23 +01:00
|
|
|
|
|
|
|
$content = $Post->content();
|
2015-06-03 03:17:09 +02:00
|
|
|
break;
|
2015-11-28 23:46:23 +01:00
|
|
|
|
2016-06-07 02:11:19 +02:00
|
|
|
// The user filter by page
|
2015-06-03 03:17:09 +02:00
|
|
|
case 'page':
|
2015-11-28 15:47:03 +01:00
|
|
|
$og['type'] = 'article';
|
2015-06-03 03:17:09 +02:00
|
|
|
$og['title'] = $Page->title().' | '.$og['title'];
|
|
|
|
$og['description'] = $Page->description();
|
2015-11-28 15:47:03 +01:00
|
|
|
$og['url'] = $Page->permalink(true);
|
2016-01-08 04:04:59 +01:00
|
|
|
$og['image'] = $Page->coverImage(false);
|
2015-11-28 23:46:23 +01:00
|
|
|
|
|
|
|
$content = $Page->content();
|
|
|
|
break;
|
|
|
|
|
2016-06-07 02:11:19 +02:00
|
|
|
// The user is in the homepage
|
2015-11-28 23:46:23 +01:00
|
|
|
default:
|
2016-06-07 02:11:19 +02:00
|
|
|
// The image it's from the first post
|
2016-01-08 04:04:59 +01:00
|
|
|
if(isset($posts[0])) {
|
|
|
|
$og['image'] = $posts[0]->coverImage(false);
|
|
|
|
$content = $posts[0]->content();
|
|
|
|
}
|
2015-06-03 03:17:09 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
$html = PHP_EOL.'<!-- Open Graph -->'.PHP_EOL;
|
|
|
|
$html .= '<meta property="og:locale" content="'.$og['locale'].'">'.PHP_EOL;
|
|
|
|
$html .= '<meta property="og:type" content="'.$og['type'].'">'.PHP_EOL;
|
|
|
|
$html .= '<meta property="og:title" content="'.$og['title'].'">'.PHP_EOL;
|
|
|
|
$html .= '<meta property="og:description" content="'.$og['description'].'">'.PHP_EOL;
|
|
|
|
$html .= '<meta property="og:url" content="'.$og['url'].'">'.PHP_EOL;
|
2015-07-03 22:44:26 +02:00
|
|
|
$html .= '<meta property="og:siteName" content="'.$og['siteName'].'">'.PHP_EOL;
|
2015-06-03 03:17:09 +02:00
|
|
|
|
2016-06-07 02:11:19 +02:00
|
|
|
// If the post o page doesn't have a coverImage try to get an image from the HTML content
|
|
|
|
if($og['image']===false) {
|
2016-01-08 04:04:59 +01:00
|
|
|
|
|
|
|
// Get the image from the content
|
|
|
|
$src = $this->getImage( $content );
|
2016-06-07 02:11:19 +02:00
|
|
|
|
2016-01-08 04:04:59 +01:00
|
|
|
if($src!==false) {
|
2016-06-07 02:11:19 +02:00
|
|
|
$html .= '<meta property="og:image" content="'.DOMAIN.$src.'">'.PHP_EOL;
|
2016-01-08 04:04:59 +01:00
|
|
|
}
|
|
|
|
}
|
2016-06-07 02:11:19 +02:00
|
|
|
else {
|
|
|
|
$html .= '<meta property="og:image" content="'.DOMAIN_UPLOADS.$og['image'].'">'.PHP_EOL;
|
2015-11-28 23:46:23 +01:00
|
|
|
}
|
|
|
|
|
2015-06-03 03:17:09 +02:00
|
|
|
return $html;
|
|
|
|
}
|
2015-11-28 23:46:23 +01:00
|
|
|
}
|