bludit/bl-plugins/opengraph/plugin.php

106 lines
2.8 KiB
PHP
Raw Normal View History

2015-06-03 03:17:09 +02:00
<?php
class pluginOpenGraph extends Plugin {
public function init()
{
// Fields and default values for the database of this plugin
$this->dbFields = array(
'defaultImage'=>''
);
}
2015-11-28 23:46:23 +01:00
public function form()
{
global $Language;
2017-10-07 21:49:41 +02:00
$html = '<div>';
$html .= '<label>'.$Language->get('Default image').'</label>';
$html .= '<input id="jsdefaultImage" name="defaultImage" type="text" value="'.$this->getValue('defaultImage').'" placeholder="https://">';
$html .= '</div>';
/*
$html = '<div>';
$html .= '<label>'.$Language->get('Default image').'</label>';
$html .= '<select name="defaultImage">';
$images = Filesystem::listFiles(PATH_UPLOADS);
foreach ($images as $image) {
$base = basename($image);
$html .= '<option value="'.$base.'" '.(($this->getValue('defaultImage')==$base)?'selected':'').'>'.$base.'</option>';
}
$html .= '</select>';
$html .= '</div>';
2017-10-07 21:49:41 +02:00
*/
return $html;
}
2015-08-07 04:13:55 +02:00
public function siteHead()
2015-06-03 03:17:09 +02:00
{
global $Url;
global $Site;
global $WHERE_AM_I;
global $pages;
global $page;
2015-08-07 04:13:55 +02:00
2015-06-03 03:17:09 +02:00
$og = array(
'locale' =>$Site->locale(),
'type' =>'website',
'title' =>$Site->title(),
2015-06-03 03:17:09 +02:00
'description' =>$Site->description(),
'url' =>$Site->url(),
'image' =>'',
'siteName' =>$Site->title()
2015-06-03 03:17:09 +02:00
);
switch ($WHERE_AM_I) {
2016-06-07 02:11:19 +02:00
// The user filter by page
2015-06-03 03:17:09 +02:00
case 'page':
$og['type'] = 'article';
$og['title'] = $page->title();
$og['description'] = $page->description();
$og['url'] = $page->permalink($absolute=true);
$og['image'] = $page->coverImage($absolute=true);
2015-11-28 23:46:23 +01:00
$content = $page->content();
2015-11-28 23:46:23 +01:00
break;
2016-06-07 02:11:19 +02:00
// The user is in the homepage
2015-11-28 23:46:23 +01:00
default:
$content = '';
// The image it's from the first page
2017-10-07 21:49:41 +02:00
if (isset($pages[0]) ) {
$og['image'] = $pages[0]->coverImage($absolute=true);
$content = $pages[0]->content();
2016-01-08 04:04:59 +01:00
}
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
// If the page doesn't have a coverImage try to get an image from the HTML content
if (empty($og['image'])) {
2016-01-08 04:04:59 +01:00
// Get the image from the content
2017-10-21 20:30:59 +02:00
$src = DOM::getFirstImage($content);
if ($src!==false) {
$og['image'] = $src;
} else {
2017-10-07 21:49:41 +02:00
if (Text::isNotEmpty($this->getValue('defaultImage'))) {
$og['image'] = $this->getValue('defaultImage');
}
2016-01-08 04:04:59 +01:00
}
}
$html .= '<meta property="og:image" content="'.$og['image'].'">'.PHP_EOL;
2015-06-03 03:17:09 +02:00
return $html;
}
2015-11-28 23:46:23 +01:00
}