bludit/bl-plugins/sitemap/plugin.php

122 lines
2.4 KiB
PHP
Raw Normal View History

2016-01-08 00:43:09 +01:00
<?php
class pluginSitemap extends Plugin {
2018-03-24 11:31:41 +01:00
public function init()
{
$this->formButtons = false;
}
2017-10-13 23:40:23 +02:00
// Method called on the settings of the plugin on the admin area
public function form()
{
global $L;
2017-10-13 23:40:23 +02:00
2018-08-16 14:19:21 +02:00
$html = '<div class="alert alert-primary" role="alert">';
$html .= $this->description();
$html .= '</div>';
$html .= '<div>';
$html .= '<label>'.$L->get('Sitemap URL').'</label>';
2017-10-13 23:40:23 +02:00
$html .= '<a href="'.Theme::sitemapUrl().'">'.Theme::sitemapUrl().'</a>';
$html .= '</div>';
return $html;
}
2016-01-08 00:43:09 +01:00
private function createXML()
{
global $site;
2018-08-03 18:59:23 +02:00
global $pages;
2016-01-08 00:43:09 +01:00
$xml = '<?xml version="1.0" encoding="UTF-8" ?>';
$xml .= '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">';
$xml .= '<url>';
$xml .= '<loc>'.$site->url().'</loc>';
$xml .= '</url>';
// Get DB
$pageNumber = 1;
2018-08-06 21:46:58 +02:00
$numberOfItems = -1;
$onlyPublished = true;
2018-08-06 21:46:58 +02:00
$list = $pages->getList($pageNumber, $numberOfItems, $onlyPublished);
foreach($list as $pageKey) {
try {
// Create the page object from the page key
2018-08-02 17:06:53 +02:00
$page = new Page($pageKey);
$xml .= '<url>';
$xml .= '<loc>'.$page->permalink().'</loc>';
$xml .= '<lastmod>'.$page->dateRaw(SITEMAP_DATE_FORMAT).'</lastmod>';
$xml .= '<changefreq>daily</changefreq>';
$xml .= '</url>';
} catch (Exception $e) {
// Continue
}
2016-01-08 00:43:09 +01:00
}
$xml .= '</urlset>';
2016-01-08 00:43:09 +01:00
// New DOM document
$doc = new DOMDocument();
$doc->formatOutput = true;
$doc->loadXML($xml);
2018-09-05 22:55:14 +02:00
return $doc->save($this->workspace().'sitemap.xml');
2016-01-08 00:43:09 +01:00
}
public function install($position=0)
2016-01-08 00:43:09 +01:00
{
parent::install($position);
2018-09-05 22:55:14 +02:00
return $this->createXML();
2016-01-08 00:43:09 +01:00
}
2018-02-28 11:08:35 +01:00
public function post()
{
// Call the method
parent::post();
// After POST request
$this->createXML();
}
2016-01-08 00:43:09 +01:00
public function afterPageCreate()
{
$this->createXML();
}
public function afterPageModify()
{
$this->createXML();
}
public function afterPageDelete()
{
$this->createXML();
}
2017-07-29 01:20:47 +02:00
public function beforeAll()
2016-01-08 00:43:09 +01:00
{
2017-07-29 01:20:47 +02:00
$webhook = 'sitemap.xml';
if( $this->webhook($webhook) ) {
2016-01-08 00:43:09 +01:00
// Send XML header
header('Content-type: text/xml');
$doc = new DOMDocument();
// Workaround for a bug https://bugs.php.net/bug.php?id=62577
libxml_disable_entity_loader(false);
// Load XML
$doc->load($this->workspace().'sitemap.xml');
libxml_disable_entity_loader(true);
2016-01-08 00:43:09 +01:00
// Print the XML
echo $doc->saveXML();
// Terminate the run successfully
exit(0);
2016-01-08 00:43:09 +01:00
}
}
2018-08-16 14:19:21 +02:00
}