Added "hideMail" option for enable/disable email in Semantic data
This option is useful for reduce loading of page when using "AuthLDAP/AD" plugin. #14 #15
This commit is contained in:
parent
da1aaf0cdd
commit
c41859fe17
6 changed files with 583 additions and 424 deletions
362
action.php
362
action.php
|
@ -4,211 +4,273 @@
|
||||||
*
|
*
|
||||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||||
* @author Giuseppe Di Terlizzi <giuseppe.diterlizzi@gmail.com>
|
* @author Giuseppe Di Terlizzi <giuseppe.diterlizzi@gmail.com>
|
||||||
* @copyright (C) 2015, Giuseppe Di Terlizzi
|
* @copyright (C) 2015-2019, Giuseppe Di Terlizzi
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// must be run within Dokuwiki
|
// must be run within Dokuwiki
|
||||||
if(!defined('DOKU_INC')) die();
|
if (!defined('DOKU_INC')) {
|
||||||
|
die();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Semantic Action Plugin
|
* Class Semantic Action Plugin
|
||||||
*
|
*
|
||||||
* Add semantic data to DokuWiki
|
* Add semantic data to DokuWiki
|
||||||
*/
|
*/
|
||||||
class action_plugin_semantic extends DokuWiki_Action_Plugin {
|
class action_plugin_semantic extends DokuWiki_Action_Plugin
|
||||||
|
{
|
||||||
|
|
||||||
private $helper = null;
|
private $helper = null;
|
||||||
|
|
||||||
public function __construct() {
|
public function __construct()
|
||||||
$this->helper = $this->loadHelper('semantic');
|
{
|
||||||
}
|
$this->helper = $this->loadHelper('semantic');
|
||||||
|
|
||||||
/**
|
|
||||||
* Register events
|
|
||||||
*
|
|
||||||
* @param Doku_Event_Handler $controller
|
|
||||||
*/
|
|
||||||
public function register(Doku_Event_Handler $controller) {
|
|
||||||
|
|
||||||
if ($this->getConf('useJSONLD')) {
|
|
||||||
$controller->register_hook('TPL_METAHEADER_OUTPUT', 'BEFORE', $this, 'website');
|
|
||||||
$controller->register_hook('TPL_METAHEADER_OUTPUT', 'BEFORE', $this, 'json_ld');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($this->getConf('useMetaDescription')) {
|
/**
|
||||||
$controller->register_hook('TPL_METAHEADER_OUTPUT', 'BEFORE', $this, 'meta_description');
|
* Register events
|
||||||
|
*
|
||||||
|
* @param Doku_Event_Handler $controller handler
|
||||||
|
*/
|
||||||
|
public function register(Doku_Event_Handler $controller)
|
||||||
|
{
|
||||||
|
|
||||||
|
if ($this->getConf('useJSONLD')) {
|
||||||
|
$controller->register_hook('TPL_METAHEADER_OUTPUT', 'BEFORE', $this, 'website');
|
||||||
|
$controller->register_hook('TPL_METAHEADER_OUTPUT', 'BEFORE', $this, 'json_ld');
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($this->getConf('useMetaDescription')) {
|
||||||
|
$controller->register_hook('TPL_METAHEADER_OUTPUT', 'BEFORE', $this, 'meta_description');
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($this->getConf('useMetaAuthor')) {
|
||||||
|
$controller->register_hook('TPL_METAHEADER_OUTPUT', 'BEFORE', $this, 'meta_author');
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($this->getConf('useDublinCore')) {
|
||||||
|
$controller->register_hook('TPL_METAHEADER_OUTPUT', 'BEFORE', $this, 'meta_dublin_core');
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($this->getConf('useOpenGraph')) {
|
||||||
|
$controller->register_hook('TPL_METAHEADER_OUTPUT', 'BEFORE', $this, 'meta_open_graph');
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($this->getConf('exposeWebService')) {
|
||||||
|
$controller->register_hook('AJAX_CALL_UNKNOWN', 'BEFORE', $this, 'ajax');
|
||||||
|
}
|
||||||
|
|
||||||
|
$controller->register_hook('DOKUWIKI_STARTED', 'AFTER', $this, 'jsinfo');
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($this->getConf('useMetaAuthor')) {
|
/**
|
||||||
$controller->register_hook('TPL_METAHEADER_OUTPUT', 'BEFORE', $this, 'meta_author');
|
* Export JSON-JD in $JSONINFO array
|
||||||
}
|
*/
|
||||||
|
public function jsinfo(Doku_Event &$event, $param)
|
||||||
|
{
|
||||||
|
|
||||||
if ($this->getConf('useDublinCore')) {
|
global $JSINFO;
|
||||||
$controller->register_hook('TPL_METAHEADER_OUTPUT', 'BEFORE', $this, 'meta_dublin_core');
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($this->getConf('useOpenGraph')) {
|
$JSINFO['plugin']['semantic'] = array(
|
||||||
$controller->register_hook('TPL_METAHEADER_OUTPUT', 'BEFORE', $this, 'meta_open_graph');
|
'exposeWebService' => $this->getConf('exposeWebService'),
|
||||||
}
|
);
|
||||||
|
|
||||||
if ($this->getConf('exposeWebService')) {
|
|
||||||
$controller->register_hook('AJAX_CALL_UNKNOWN', 'BEFORE', $this, 'ajax');
|
|
||||||
}
|
|
||||||
|
|
||||||
$controller->register_hook('DOKUWIKI_STARTED', 'AFTER', $this, 'jsinfo');
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public function jsinfo(Doku_Event &$event, $param) {
|
|
||||||
|
|
||||||
global $JSINFO;
|
|
||||||
|
|
||||||
$JSINFO['plugin']['semantic'] = array(
|
|
||||||
'exposeWebService' => $this->getConf('exposeWebService'),
|
|
||||||
);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Export in JSON-LD format
|
* Export in JSON-LD format
|
||||||
*
|
*
|
||||||
* @param Doku_Event &$event
|
* @param Doku_Event $event handler
|
||||||
* @return string
|
* @param array $param
|
||||||
*/
|
*
|
||||||
public function ajax(Doku_Event &$event, $param) {
|
* @return string
|
||||||
|
*/
|
||||||
|
public function ajax(Doku_Event &$event, $param)
|
||||||
|
{
|
||||||
|
|
||||||
if ($event->data !== 'plugin_semantic') {
|
if ($event->data !== 'plugin_semantic') {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
//no other ajax call handlers needed
|
//no other ajax call handlers needed
|
||||||
$event->stopPropagation();
|
$event->stopPropagation();
|
||||||
$event->preventDefault();
|
$event->preventDefault();
|
||||||
|
|
||||||
global $INPUT;
|
global $INPUT;
|
||||||
|
|
||||||
$export = $INPUT->str('export');
|
$export = $INPUT->str('export');
|
||||||
$id = $INPUT->str('id');
|
$id = $INPUT->str('id');
|
||||||
|
|
||||||
if (! $id) return false;
|
if (!$id) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
$this->helper->getMetadata($id);
|
$this->helper->getMetadata($id);
|
||||||
$json_ld = $this->helper->getJsonLD();
|
$json_ld = $this->helper->getJsonLD();
|
||||||
|
|
||||||
$json = new JSON();
|
$json = new JSON();
|
||||||
|
|
||||||
header('Content-Type: application/ld+json');
|
header('Content-Type: application/ld+json');
|
||||||
print $json->encode($json_ld);
|
print $json->encode($json_ld);
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public function website(Doku_Event &$event, $param) {
|
|
||||||
$event->data["script"][] = array (
|
|
||||||
"type" => "application/ld+json",
|
|
||||||
"_data" => json_encode($this->helper->getWebSite()),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* JSON-LD Event handler
|
|
||||||
*
|
|
||||||
* @param Doku_Event &$event
|
|
||||||
*/
|
|
||||||
public function json_ld(Doku_Event &$event, $param) {
|
|
||||||
|
|
||||||
global $ID;
|
|
||||||
|
|
||||||
$this->helper->getMetadata($ID);
|
|
||||||
$json_ld = $this->helper->getJsonLD();
|
|
||||||
|
|
||||||
if (! count($json_ld)) return false;
|
|
||||||
|
|
||||||
$event->data["script"][] = array (
|
|
||||||
"type" => "application/ld+json",
|
|
||||||
"_data" => json_encode($json_ld),
|
|
||||||
);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public function meta_description(Doku_Event &$event, $params) {
|
|
||||||
|
|
||||||
global $ID;
|
|
||||||
|
|
||||||
$this->helper->getMetadata($ID);
|
|
||||||
|
|
||||||
if ($description = $this->helper->getDescription()) {
|
|
||||||
|
|
||||||
$description = str_replace("\n", ' ', $description);
|
|
||||||
|
|
||||||
$event->data['meta'][] = array(
|
|
||||||
'name' => 'description',
|
|
||||||
'content' => $description,
|
|
||||||
);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
/**
|
||||||
|
* Expose JSON-JD WebSite schema
|
||||||
|
*
|
||||||
|
* @param Doku_Event $event handler
|
||||||
|
* @param array $params
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function website(Doku_Event &$event, $params)
|
||||||
|
{
|
||||||
|
$event->data["script"][] = array(
|
||||||
|
"type" => "application/ld+json",
|
||||||
|
"_data" => json_encode($this->helper->getWebSite(), JSON_PRETTY_PRINT),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* JSON-LD Event handler
|
||||||
|
*
|
||||||
|
* @param Doku_Event $event handler
|
||||||
|
* @param array $params
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function json_ld(Doku_Event &$event, $params)
|
||||||
|
{
|
||||||
|
|
||||||
public function meta_author(Doku_Event &$event, $params) {
|
global $ID;
|
||||||
|
|
||||||
global $ID;
|
$this->helper->getMetadata($ID);
|
||||||
|
$json_ld = $this->helper->getJsonLD();
|
||||||
|
|
||||||
$this->helper->getMetadata($ID);
|
if (!count($json_ld)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
if ($author = $this->helper->getAuthor()) {
|
$event->data["script"][] = array(
|
||||||
|
"type" => "application/ld+json",
|
||||||
$event->data['meta'][] = array(
|
"_data" => json_encode($json_ld, JSON_PRETTY_PRINT),
|
||||||
'name' => 'author',
|
);
|
||||||
'content' => $author,
|
|
||||||
);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
/**
|
||||||
|
* Meta Description handler
|
||||||
|
*
|
||||||
|
* @param Doku_Event $event handler
|
||||||
|
* @param array $params
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function meta_description(Doku_Event &$event, $params)
|
||||||
|
{
|
||||||
|
|
||||||
|
global $ID;
|
||||||
|
|
||||||
public function meta_open_graph(Doku_Event &$event, $params) {
|
$this->helper->getMetadata($ID);
|
||||||
|
|
||||||
global $ID;
|
if ($description = $this->helper->getDescription()) {
|
||||||
|
|
||||||
$this->helper->getMetadata($ID);
|
$description = str_replace("\n", ' ', $description);
|
||||||
|
|
||||||
foreach ($this->helper->getOpenGraph() as $property => $content) {
|
$event->data['meta'][] = array(
|
||||||
|
'name' => 'description',
|
||||||
|
'content' => $description,
|
||||||
|
);
|
||||||
|
|
||||||
if (! $content) continue;
|
}
|
||||||
|
|
||||||
$event->data['meta'][] = array(
|
|
||||||
'property' => $property,
|
|
||||||
'content' => $content,
|
|
||||||
);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
/**
|
||||||
|
* Meta Description handler
|
||||||
|
*
|
||||||
|
* @param Doku_Event $event handler
|
||||||
|
* @param array $params
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function meta_author(Doku_Event &$event, $params)
|
||||||
|
{
|
||||||
|
|
||||||
|
global $ID;
|
||||||
|
|
||||||
public function meta_dublin_core(Doku_Event &$event, $params) {
|
$this->helper->getMetadata($ID);
|
||||||
|
|
||||||
global $ID;
|
if ($author = $this->helper->getAuthor()) {
|
||||||
|
|
||||||
$this->helper->getMetadata($ID);
|
$event->data['meta'][] = array(
|
||||||
|
'name' => 'author',
|
||||||
|
'content' => $author,
|
||||||
|
);
|
||||||
|
|
||||||
foreach ($this->helper->getDublinCore() as $name => $content) {
|
}
|
||||||
|
|
||||||
if (! $content) continue;
|
|
||||||
|
|
||||||
$event->data['meta'][] = array(
|
|
||||||
'name' => $name,
|
|
||||||
'content' => $content,
|
|
||||||
);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
/**
|
||||||
|
* OpenGraph handler
|
||||||
|
*
|
||||||
|
* @param Doku_Event $event handler
|
||||||
|
* @param array $params
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function meta_open_graph(Doku_Event &$event, $params)
|
||||||
|
{
|
||||||
|
|
||||||
|
global $ID;
|
||||||
|
|
||||||
|
$this->helper->getMetadata($ID);
|
||||||
|
|
||||||
|
foreach ($this->helper->getOpenGraph() as $property => $content) {
|
||||||
|
|
||||||
|
if (!$content) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
$event->data['meta'][] = array(
|
||||||
|
'property' => $property,
|
||||||
|
'content' => $content,
|
||||||
|
);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dublin Core handler
|
||||||
|
*
|
||||||
|
* @param Doku_Event $event handler
|
||||||
|
* @param array $params
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function meta_dublin_core(Doku_Event &$event, $params)
|
||||||
|
{
|
||||||
|
|
||||||
|
global $ID;
|
||||||
|
|
||||||
|
$this->helper->getMetadata($ID);
|
||||||
|
|
||||||
|
foreach ($this->helper->getDublinCore() as $name => $content) {
|
||||||
|
|
||||||
|
if (!$content) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
$event->data['meta'][] = array(
|
||||||
|
'name' => $name,
|
||||||
|
'content' => $content,
|
||||||
|
);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,3 +13,4 @@ $conf['useMetaAuthor'] = 1;
|
||||||
$conf['useDublinCore'] = 0;
|
$conf['useDublinCore'] = 0;
|
||||||
$conf['useOpenGraph'] = 0;
|
$conf['useOpenGraph'] = 0;
|
||||||
$conf['excludedPages'] = '(wiki|playground)';
|
$conf['excludedPages'] = '(wiki|playground)';
|
||||||
|
$conf['hideMail'] = 0;
|
||||||
|
|
|
@ -13,3 +13,4 @@ $meta['useJSONLD'] = array('onoff');
|
||||||
$meta['exposeWebService'] = array('onoff');
|
$meta['exposeWebService'] = array('onoff');
|
||||||
$meta['defaultSchemaOrgType'] = array('multichoice','_choices' => array('Article', 'NewsArticle', 'TechArticle', 'BlogPosting', 'Recipe'));
|
$meta['defaultSchemaOrgType'] = array('multichoice','_choices' => array('Article', 'NewsArticle', 'TechArticle', 'BlogPosting', 'Recipe'));
|
||||||
$meta['excludedPages'] = array('regex');
|
$meta['excludedPages'] = array('regex');
|
||||||
|
$meta['hideMail'] = array('onoff');
|
||||||
|
|
640
helper.php
640
helper.php
|
@ -4,312 +4,406 @@
|
||||||
*
|
*
|
||||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||||
* @author Giuseppe Di Terlizzi <giuseppe.diterlizzi@gmail.com>
|
* @author Giuseppe Di Terlizzi <giuseppe.diterlizzi@gmail.com>
|
||||||
|
* @copyright (C) 2015-2019, Giuseppe Di Terlizzi
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// must be run within Dokuwiki
|
// must be run within Dokuwiki
|
||||||
if(!defined('DOKU_INC')) die();
|
if (!defined('DOKU_INC')) {
|
||||||
|
die();
|
||||||
|
}
|
||||||
|
|
||||||
class helper_plugin_semantic extends DokuWiki_Plugin {
|
class helper_plugin_semantic extends DokuWiki_Plugin
|
||||||
|
{
|
||||||
|
|
||||||
private $meta = array();
|
private $meta = array();
|
||||||
private $page = null;
|
private $page = null;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get Schema.org WebSite
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function getWebSite()
|
||||||
|
{
|
||||||
|
|
||||||
public function getWebSite() {
|
global $conf;
|
||||||
|
|
||||||
global $conf;
|
$json_ld = array(
|
||||||
|
'@context' => 'http://schema.org',
|
||||||
|
'@type' => 'WebSite',
|
||||||
|
'url' => DOKU_URL,
|
||||||
|
'name' => $conf['title'],
|
||||||
|
'potentialAction' => array(
|
||||||
|
'@type' => 'SearchAction',
|
||||||
|
'target' => DOKU_URL . DOKU_SCRIPT . '?do=search&id={search_term_string}',
|
||||||
|
'query-input' => 'required name=search_term_string',
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
$json_ld = array(
|
return $json_ld;
|
||||||
'@context' => 'http://schema.org',
|
|
||||||
'@type' => 'WebSite',
|
|
||||||
'url' => DOKU_URL,
|
|
||||||
'name' => $conf['title'],
|
|
||||||
'potentialAction' => array(
|
|
||||||
'@type' => 'SearchAction',
|
|
||||||
'target' => DOKU_URL.DOKU_SCRIPT.'?do=search&id={search_term_string}',
|
|
||||||
'query-input' => 'required name=search_term_string'
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
return $json_ld;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public function getMetadata($page) {
|
|
||||||
|
|
||||||
global $INFO;
|
|
||||||
global $ID;
|
|
||||||
global $license;
|
|
||||||
global $auth;
|
|
||||||
global $conf;
|
|
||||||
|
|
||||||
$this->page = cleanID($page);
|
|
||||||
|
|
||||||
$auth_check = auth_quickaclcheck($this->page);
|
|
||||||
|
|
||||||
if ((bool) preg_match('/'. trim($this->getConf('excludedPages')) .'/', $this->page)) return false;
|
|
||||||
|
|
||||||
if (! $auth_check) return false;
|
|
||||||
|
|
||||||
$this->meta = p_get_metadata($this->page);
|
|
||||||
|
|
||||||
if (isset($this->meta['plugin']['semantic']['enabled']) && ! $this->meta['plugin']['semantic']['enabled']) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (! isset($this->meta['date']) || $this->meta['date'] == '') return false;
|
|
||||||
|
|
||||||
return $this->meta;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getSchemaOrgType() {
|
|
||||||
|
|
||||||
return ((isset($this->meta['plugin']['semantic']['schema.org']['type']))
|
|
||||||
? $this->meta['plugin']['semantic']['schema.org']['type']
|
|
||||||
: $this->getConf('defaultSchemaOrgType'));
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getFirstImage() {
|
|
||||||
return ((@$this->meta['relation']['firstimage']) ? $this->meta['relation']['firstimage'] : null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getFirstImageURL() {
|
|
||||||
return ($this->getFirstImage() ? ml($this->getFirstImage(), '', true, '&', true) : null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getDescription() {
|
|
||||||
return (@$this->meta['description']['abstract'] ? $this->meta['description']['abstract']: $this->getTitle());
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getAuthor() {
|
|
||||||
return ($this->meta['creator'] ? $this->meta['creator'] : null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getAuthorID() {
|
|
||||||
return ($this->meta['user'] ? $this->meta['user'] : null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getTitle() {
|
|
||||||
return (@$this->meta['title'] ? $this->meta['title'] : null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getCreatedDate() {
|
|
||||||
return ((@$this->meta['date']['created']) ? $this->meta['date']['created'] : -1);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getModifiedDate() {
|
|
||||||
return ((@$this->meta['date']['modified']) ? $this->meta['date']['modified'] : -1);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getLicense() {
|
|
||||||
global $license;
|
|
||||||
global $conf;
|
|
||||||
return @$license[$conf['license']];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return JSON-LD structured data in according of selected Schema.org type
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getStructuredData() {
|
|
||||||
|
|
||||||
global $auth;
|
|
||||||
global $conf;
|
|
||||||
|
|
||||||
if (! count($this->meta)) return false;
|
|
||||||
|
|
||||||
$license = $this->getLicense();
|
|
||||||
$type = $this->getSchemaOrgType();
|
|
||||||
$user_data = $auth->getUserData($this->getAuthorID());
|
|
||||||
$license_url = $license['url'];
|
|
||||||
$page_url = wl($this->page, '', true);
|
|
||||||
$description = str_replace("\n", ' ', $this->getDescription());
|
|
||||||
$created = date(DATE_W3C, $this->getCreatedDate());
|
|
||||||
$modified = date(DATE_W3C, $this->getModifiedDate());
|
|
||||||
$title = (isset($this->meta['title']) ? $this->meta['title'] : $this->page);
|
|
||||||
$wiki_logo_info = array();
|
|
||||||
$wiki_logo = tpl_getMediaFile(array(':wiki:logo.png', ':logo.png', 'images/logo.png'), true, $wiki_logo_info);
|
|
||||||
|
|
||||||
|
|
||||||
$json_ld = array(
|
|
||||||
'@context' => 'http://schema.org',
|
|
||||||
'@type' => $type,
|
|
||||||
'headline' => $title,
|
|
||||||
'name' => $title,
|
|
||||||
'datePublished' => $created,
|
|
||||||
'dateCreated' => $created,
|
|
||||||
'dateModified' => $modified,
|
|
||||||
'description' => $description,
|
|
||||||
'license' => $license_url,
|
|
||||||
'url' => $page_url,
|
|
||||||
|
|
||||||
'mainEntityOfPage' => array(
|
|
||||||
'@type' => 'WebPage',
|
|
||||||
'@id' => $page_url,
|
|
||||||
),
|
|
||||||
|
|
||||||
'publisher' => array(
|
|
||||||
'@type' => 'Organization',
|
|
||||||
'name' => $conf['title'],
|
|
||||||
'logo' => array(
|
|
||||||
'@type' => 'ImageObject',
|
|
||||||
'url' => $wiki_logo,
|
|
||||||
),
|
|
||||||
)
|
|
||||||
|
|
||||||
);
|
|
||||||
|
|
||||||
if ($image_url = $this->getFirstImageURL()) {
|
|
||||||
|
|
||||||
$image_info = array();
|
|
||||||
$article_image = tpl_getMediaFile(array(':' . $this->getFirstImage()), true, $image_info);
|
|
||||||
|
|
||||||
$json_ld['image'] = array(
|
|
||||||
'@type' => 'ImageObject',
|
|
||||||
'url' => $image_url,
|
|
||||||
'width' => $image_info[0],
|
|
||||||
'height' => $image_info[1],
|
|
||||||
);
|
|
||||||
|
|
||||||
} else {
|
|
||||||
|
|
||||||
// Fallback
|
|
||||||
//$json_ld['image'] = $json_ld['publisher']['logo'];
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($author = $this->getAuthor()) {
|
/**
|
||||||
|
* Get the metadata of the page
|
||||||
|
*
|
||||||
|
* @param string $page ID
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getMetadata($page)
|
||||||
|
{
|
||||||
|
|
||||||
$json_ld['author'] = array(
|
global $INFO;
|
||||||
'@context' => 'http://schema.org',
|
global $ID;
|
||||||
'@type' => 'Person',
|
global $license;
|
||||||
'name' => $author,
|
global $auth;
|
||||||
'email' => $user_data['mail']
|
global $conf;
|
||||||
);
|
|
||||||
|
|
||||||
if (isset($this->meta['contributor'])) {
|
$this->page = cleanID($page);
|
||||||
foreach ($this->meta['contributor'] as $uid => $fullname) {
|
|
||||||
$contributor_data = $auth->getUserData($uid);
|
$auth_check = auth_quickaclcheck($this->page);
|
||||||
$json_ld['contributor'][] = array(
|
|
||||||
'@context' => 'http://schema.org',
|
if ((bool) preg_match('/' . trim($this->getConf('excludedPages')) . '/', $this->page)) {
|
||||||
'@type' => 'Person',
|
return false;
|
||||||
'name' => $fullname,
|
|
||||||
'email' => $contributor_data['mail']
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
if (!$auth_check) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->meta = p_get_metadata($this->page);
|
||||||
|
|
||||||
|
if (isset($this->meta['plugin']['semantic']['enabled']) && !$this->meta['plugin']['semantic']['enabled']) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!isset($this->meta['date']) || $this->meta['date'] == '') {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->meta;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return $json_ld;
|
/**
|
||||||
|
* Get Schema.Org page type
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getSchemaOrgType()
|
||||||
|
{
|
||||||
|
|
||||||
}
|
return ((isset($this->meta['plugin']['semantic']['schema.org']['type']))
|
||||||
|
? $this->meta['plugin']['semantic']['schema.org']['type']
|
||||||
|
: $this->getConf('defaultSchemaOrgType'));
|
||||||
public function getJsonLD() {
|
|
||||||
|
|
||||||
$json_ld = array();
|
|
||||||
|
|
||||||
if ($structured_data = $this->getStructuredData()) {
|
|
||||||
$json_ld[] = $structured_data;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($backlinks = $this->getBacklinks()) {
|
/**
|
||||||
$json_ld[] = $backlinks;
|
* Get the first image in page
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getFirstImage()
|
||||||
|
{
|
||||||
|
return ((@$this->meta['relation']['firstimage']) ? $this->meta['relation']['firstimage'] : null);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $json_ld;
|
/**
|
||||||
|
* Get the URL of the first image in page
|
||||||
}
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
public function getBacklinks() {
|
public function getFirstImageURL()
|
||||||
|
{
|
||||||
if (! $backlinks = ft_backlinks($this->page)) return false;
|
return ($this->getFirstImage() ? ml($this->getFirstImage(), '', true, '&', true) : null);
|
||||||
|
|
||||||
$json_ld_webpage = array(
|
|
||||||
'@context' => 'http://schema.org',
|
|
||||||
'@type' => 'WebPage'
|
|
||||||
);
|
|
||||||
|
|
||||||
foreach ($backlinks as $pageid) {
|
|
||||||
$json_ld_webpage['relatedLink'][] = wl($pageid, '', true);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($json_ld_webpage['relatedLink'])) return $json_ld_webpage;
|
/**
|
||||||
|
* Get page description
|
||||||
}
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
public function getDublinCore() {
|
public function getDescription()
|
||||||
|
{
|
||||||
global $conf;
|
return (@$this->meta['description']['abstract'] ? $this->meta['description']['abstract'] : $this->getTitle());
|
||||||
|
|
||||||
if (! $this->meta) return array();
|
|
||||||
|
|
||||||
$license = $this->getLicense();
|
|
||||||
$contributors = array();
|
|
||||||
|
|
||||||
if (isset($this->meta['contributor']) && is_array($this->meta['contributor'])) {
|
|
||||||
foreach ($this->meta['contributor'] as $uid => $fullname) {
|
|
||||||
$contributors[] = $fullname;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$dublin_core = array(
|
/**
|
||||||
'DC.Title' => $this->getTitle(),
|
* Get author name
|
||||||
'DC.Description' => str_replace("\n", ' ', $this->getDescription()),
|
*
|
||||||
'DC.Publisher' => $this->getAuthor(),
|
* @return string
|
||||||
'DC.Contributors' => implode(', ', $contributors),
|
*/
|
||||||
'DC.Rights' => $license['name'],
|
public function getAuthor()
|
||||||
'DC.Language' => $conf['lang'],
|
{
|
||||||
'DC.Created' => date(DATE_W3C, $this->getCreatedDate()),
|
return ($this->meta['creator'] ? $this->meta['creator'] : null);
|
||||||
'DC.Modified' => date(DATE_W3C, $this->getModifiedDate()),
|
|
||||||
'DC.Date' => date(DATE_W3C, $this->getCreatedDate()),
|
|
||||||
'DC.Identifier' => "urn:" . $this->page,
|
|
||||||
);
|
|
||||||
|
|
||||||
return $dublin_core;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public function getOpenGraph() {
|
|
||||||
|
|
||||||
global $conf;
|
|
||||||
|
|
||||||
if (! $this->meta) return array();
|
|
||||||
|
|
||||||
$locale = $conf['lang'];
|
|
||||||
|
|
||||||
if ($locale == 'en') {
|
|
||||||
$locale = 'en_GB';
|
|
||||||
} else {
|
|
||||||
$locale .= '_' . strtoupper($locale);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$open_graph = array(
|
/**
|
||||||
|
* Get author ID
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getAuthorID()
|
||||||
|
{
|
||||||
|
return ($this->meta['user'] ? $this->meta['user'] : null);
|
||||||
|
}
|
||||||
|
|
||||||
'og:title' => $this->getTitle(),
|
/**
|
||||||
'og:description' => str_replace("\n", ' ', $this->getDescription()),
|
* Get the page title
|
||||||
'og:url' => wl($this->page, '', true),
|
*
|
||||||
'og:type' => 'article',
|
* @return string
|
||||||
'og:image' => $this->getFirstImageURL(),
|
*/
|
||||||
'og:locale' => $locale,
|
public function getTitle()
|
||||||
'og:site_name' => $conf['title'],
|
{
|
||||||
|
return (@$this->meta['title'] ? $this->meta['title'] : null);
|
||||||
|
}
|
||||||
|
|
||||||
'article:published_time' => date(DATE_W3C, $this->getCreatedDate()),
|
/**
|
||||||
'article:modified_time' => date(DATE_W3C, $this->getModifiedDate()),
|
* Get the create date of page
|
||||||
'article:section' => date(DATE_W3C, $this->getModifiedDate()),
|
*
|
||||||
'article:author' => $this->getAuthor(),
|
* @return int
|
||||||
|
*/
|
||||||
|
public function getCreatedDate()
|
||||||
|
{
|
||||||
|
return ((@$this->meta['date']['created']) ? $this->meta['date']['created'] : -1);
|
||||||
|
}
|
||||||
|
|
||||||
);
|
/**
|
||||||
|
* Get the modified date of page
|
||||||
|
*
|
||||||
|
* @return int
|
||||||
|
*/
|
||||||
|
public function getModifiedDate()
|
||||||
|
{
|
||||||
|
return ((@$this->meta['date']['modified']) ? $this->meta['date']['modified'] : -1);
|
||||||
|
}
|
||||||
|
|
||||||
return $open_graph;
|
/**
|
||||||
|
* Get DokuWiki license
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getLicense()
|
||||||
|
{
|
||||||
|
global $license;
|
||||||
|
global $conf;
|
||||||
|
return @$license[$conf['license']];
|
||||||
|
}
|
||||||
|
|
||||||
}
|
/**
|
||||||
|
* Return JSON-LD structured data in according of selected Schema.org type
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function getStructuredData()
|
||||||
|
{
|
||||||
|
|
||||||
|
global $auth;
|
||||||
|
global $conf;
|
||||||
|
|
||||||
|
if (!count($this->meta)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
$license = $this->getLicense();
|
||||||
|
$type = $this->getSchemaOrgType();
|
||||||
|
$user_data = ($this->getConf('hideMail') ? array('mail' => null) : $auth->getUserData($this->getAuthorID()));
|
||||||
|
$license_url = $license['url'];
|
||||||
|
$page_url = wl($this->page, '', true);
|
||||||
|
$description = str_replace("\n", ' ', $this->getDescription());
|
||||||
|
$created = date(DATE_W3C, $this->getCreatedDate());
|
||||||
|
$modified = date(DATE_W3C, $this->getModifiedDate());
|
||||||
|
$title = (isset($this->meta['title']) ? $this->meta['title'] : $this->page);
|
||||||
|
$wiki_logo_info = array();
|
||||||
|
$wiki_logo = tpl_getMediaFile(array(':wiki:logo.png', ':logo.png', 'images/logo.png'), true, $wiki_logo_info);
|
||||||
|
|
||||||
|
$json_ld = array(
|
||||||
|
'@context' => 'http://schema.org',
|
||||||
|
'@type' => $type,
|
||||||
|
'headline' => $title,
|
||||||
|
'name' => $title,
|
||||||
|
'datePublished' => $created,
|
||||||
|
'dateCreated' => $created,
|
||||||
|
'dateModified' => $modified,
|
||||||
|
'description' => $description,
|
||||||
|
'license' => $license_url,
|
||||||
|
'url' => $page_url,
|
||||||
|
|
||||||
|
'mainEntityOfPage' => array(
|
||||||
|
'@type' => 'WebPage',
|
||||||
|
'@id' => $page_url,
|
||||||
|
),
|
||||||
|
|
||||||
|
'publisher' => array(
|
||||||
|
'@type' => 'Organization',
|
||||||
|
'name' => $conf['title'],
|
||||||
|
'logo' => array(
|
||||||
|
'@type' => 'ImageObject',
|
||||||
|
'url' => $wiki_logo,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
|
||||||
|
);
|
||||||
|
|
||||||
|
if ($image_url = $this->getFirstImageURL()) {
|
||||||
|
|
||||||
|
$image_info = array();
|
||||||
|
$article_image = tpl_getMediaFile(array(':' . $this->getFirstImage()), true, $image_info);
|
||||||
|
|
||||||
|
$json_ld['image'] = array(
|
||||||
|
'@type' => 'ImageObject',
|
||||||
|
'url' => $image_url,
|
||||||
|
'width' => $image_info[0],
|
||||||
|
'height' => $image_info[1],
|
||||||
|
);
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
// Fallback
|
||||||
|
//$json_ld['image'] = $json_ld['publisher']['logo'];
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($author = $this->getAuthor()) {
|
||||||
|
|
||||||
|
$json_ld['author'] = array(
|
||||||
|
'@context' => 'http://schema.org',
|
||||||
|
'@type' => 'Person',
|
||||||
|
'name' => $author,
|
||||||
|
'email' => $user_data['mail'],
|
||||||
|
);
|
||||||
|
|
||||||
|
if (isset($this->meta['contributor'])) {
|
||||||
|
foreach ($this->meta['contributor'] as $uid => $fullname) {
|
||||||
|
|
||||||
|
$contributor_data = ($this->getConf('hideMail') ? array('mail' => null) : $auth->getUserData($uid));
|
||||||
|
|
||||||
|
$json_ld['contributor'][] = array(
|
||||||
|
'@context' => 'http://schema.org',
|
||||||
|
'@type' => 'Person',
|
||||||
|
'name' => $fullname,
|
||||||
|
'email' => $contributor_data['mail'],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
return $json_ld;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getJsonLD()
|
||||||
|
{
|
||||||
|
|
||||||
|
$json_ld = array();
|
||||||
|
|
||||||
|
if ($structured_data = $this->getStructuredData()) {
|
||||||
|
$json_ld[] = $structured_data;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($backlinks = $this->getBacklinks()) {
|
||||||
|
$json_ld[] = $backlinks;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $json_ld;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getBacklinks()
|
||||||
|
{
|
||||||
|
|
||||||
|
if (!$backlinks = ft_backlinks($this->page)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
$json_ld_webpage = array(
|
||||||
|
'@context' => 'http://schema.org',
|
||||||
|
'@type' => 'WebPage',
|
||||||
|
);
|
||||||
|
|
||||||
|
foreach ($backlinks as $pageid) {
|
||||||
|
$json_ld_webpage['relatedLink'][] = wl($pageid, '', true);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isset($json_ld_webpage['relatedLink'])) {
|
||||||
|
return $json_ld_webpage;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getDublinCore()
|
||||||
|
{
|
||||||
|
|
||||||
|
global $conf;
|
||||||
|
|
||||||
|
if (!$this->meta) {
|
||||||
|
return array();
|
||||||
|
}
|
||||||
|
|
||||||
|
$license = $this->getLicense();
|
||||||
|
$contributors = array();
|
||||||
|
|
||||||
|
if (isset($this->meta['contributor']) && is_array($this->meta['contributor'])) {
|
||||||
|
foreach ($this->meta['contributor'] as $uid => $fullname) {
|
||||||
|
$contributors[] = $fullname;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$dublin_core = array(
|
||||||
|
'DC.Title' => $this->getTitle(),
|
||||||
|
'DC.Description' => str_replace("\n", ' ', $this->getDescription()),
|
||||||
|
'DC.Publisher' => $this->getAuthor(),
|
||||||
|
'DC.Contributors' => implode(', ', $contributors),
|
||||||
|
'DC.Rights' => $license['name'],
|
||||||
|
'DC.Language' => $conf['lang'],
|
||||||
|
'DC.Created' => date(DATE_W3C, $this->getCreatedDate()),
|
||||||
|
'DC.Modified' => date(DATE_W3C, $this->getModifiedDate()),
|
||||||
|
'DC.Date' => date(DATE_W3C, $this->getCreatedDate()),
|
||||||
|
'DC.Identifier' => "urn:" . $this->page,
|
||||||
|
);
|
||||||
|
|
||||||
|
return $dublin_core;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getOpenGraph()
|
||||||
|
{
|
||||||
|
|
||||||
|
global $conf;
|
||||||
|
|
||||||
|
if (!$this->meta) {
|
||||||
|
return array();
|
||||||
|
}
|
||||||
|
|
||||||
|
$locale = $conf['lang'];
|
||||||
|
|
||||||
|
if ($locale == 'en') {
|
||||||
|
$locale = 'en_GB';
|
||||||
|
} else {
|
||||||
|
$locale .= '_' . strtoupper($locale);
|
||||||
|
}
|
||||||
|
|
||||||
|
$open_graph = array(
|
||||||
|
|
||||||
|
'og:title' => $this->getTitle(),
|
||||||
|
'og:description' => str_replace("\n", ' ', $this->getDescription()),
|
||||||
|
'og:url' => wl($this->page, '', true),
|
||||||
|
'og:type' => 'article',
|
||||||
|
'og:image' => $this->getFirstImageURL(),
|
||||||
|
'og:locale' => $locale,
|
||||||
|
'og:site_name' => $conf['title'],
|
||||||
|
|
||||||
|
'article:published_time' => date(DATE_W3C, $this->getCreatedDate()),
|
||||||
|
'article:modified_time' => date(DATE_W3C, $this->getModifiedDate()),
|
||||||
|
'article:section' => date(DATE_W3C, $this->getModifiedDate()),
|
||||||
|
'article:author' => $this->getAuthor(),
|
||||||
|
|
||||||
|
);
|
||||||
|
|
||||||
|
return $open_graph;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,3 +15,4 @@ $lang['useJSONLD'] = 'Add JSON-LD';
|
||||||
$lang['useMetaAuthor'] = 'Add author meta tag';
|
$lang['useMetaAuthor'] = 'Add author meta tag';
|
||||||
$lang['useMetaDescription'] = 'Add description meta tag';
|
$lang['useMetaDescription'] = 'Add description meta tag';
|
||||||
$lang['useOpenGraph'] = 'Add Open Graph protocol metadata';
|
$lang['useOpenGraph'] = 'Add Open Graph protocol metadata';
|
||||||
|
$lang['hideMail'] = 'Hide Author e-Mail address';
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
base semantic
|
base semantic
|
||||||
author Giuseppe Di Terlizzi
|
author Giuseppe Di Terlizzi
|
||||||
email giuseppe.diterlizzi@gmail.com
|
email giuseppe.diterlizzi@gmail.com
|
||||||
date 2018-08-25
|
date 2019-10-08
|
||||||
name Semantic Plugin
|
name Semantic Plugin
|
||||||
desc Add Semantic Data in DokuWiki
|
desc Add Semantic Data in DokuWiki
|
||||||
url http://www.dokuwiki.org/plugin:semantic
|
url http://www.dokuwiki.org/plugin:semantic
|
||||||
|
|
Loading…
Reference in a new issue