koblog/bl-modules/sitemap/plugin.php
2025-07-03 11:01:37 +02:00

112 lines
2.3 KiB
PHP

<?php
class pluginSitemap extends Plugin {
private function createXML()
{
global $site;
global $pages;
$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>';
$list = $pages->getList($pageNumber=1, $numberOfItems=-1, $published=true, $static=true, $sticky=true, $draft=false, $scheduled=false);
foreach ($list as $pageKey) {
try {
// Create the page object from the page key
$page = new Page($pageKey);
if (!$page->noindex()) {
$xml .= '<url>';
$xml .= '<loc>'.$page->permalink().'</loc>';
$xml .= '<lastmod>'.$page->date(SITEMAP_DATE_FORMAT).'</lastmod>';
$xml .= '</url>';
}
} catch (Exception $e) {
// Continue
}
}
$xml .= '</urlset>';
// New DOM document
$doc = new DOMDocument();
$doc->formatOutput = true;
$doc->loadXML($xml);
return $doc->save($this->workspace().'sitemap.xml');
}
private function ping()
{
global $site;
if ($site->pingSearchEngine()) {
$urlGoogle = 'https://www.google.com/ping?sitemap='.Theme::sitemapUrl();
$urlBing = 'https://www.bing.com/ping?sitemap='.Theme::sitemapUrl();
TCP::http($urlGoogle, 'GET', true, 3);
TCP::http($urlBing, 'GET', true, 3);
}
}
public function install($position=0)
{
parent::install($position);
return $this->createXML();
}
public function post()
{
parent::post();
return $this->createXML();
}
public function afterPageCreate()
{
$this->createXML();
$this->ping();
}
public function afterPageModify()
{
$this->createXML();
$this->ping();
}
public function afterPageDelete()
{
$this->createXML();
$this->ping();
}
public function beforeAll()
{
$webhook = 'sitemap.xml';
if( $this->webhook($webhook) ) {
$sitemapFile = $this->workspace().'sitemap.xml';
$sitemapSize = filesize($sitemapFile);
// Send XML header
header('Content-type: text/xml');
header('Content-length: '.$sitemapSize);
$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);
// Print the XML
echo $doc->saveXML();
// Terminate the run successfully
exit(0);
}
}
}