dbFields = array(
'pingGoogle'=>false,
'pingBing'=>false
);
}
// Method called on the settings of the plugin on the admin area
public function form()
{
global $L;
$html = '
';
$html .= $this->description();
$html .= '
';
$html .= '';
$html .= '';
$html .= 'Ping Google ';
$html .= '';
$html .= 'getValue('pingGoogle')===true?'selected':'').'>'.$L->get('Enabled').' ';
$html .= 'getValue('pingGoogle')===false?'selected':'').'>'.$L->get('Disabled').' ';
$html .= ' ';
$html .= ''.$L->get('notifies-google-when-you-created').' ';
$html .= '
';
$html .= '';
$html .= 'Ping Bing ';
$html .= '';
$html .= 'getValue('pingBing')===true?'selected':'').'>'.$L->get('Enabled').' ';
$html .= 'getValue('pingBing')===false?'selected':'').'>'.$L->get('Disabled').' ';
$html .= ' ';
$html .= ''.$L->get('notifies-bing-when-you-created').' ';
$html .= '
';
return $html;
}
private function createXML()
{
global $site;
global $pages;
$xml = '';
$xml .= '';
$xml .= '';
$xml .= ''.$site->url().' ';
$xml .= ' ';
$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);
$xml .= '';
$xml .= ''.$page->permalink().' ';
$xml .= ''.$page->date(SITEMAP_DATE_FORMAT).' ';
$xml .= 'daily ';
$xml .= ' ';
} catch (Exception $e) {
// Continue
}
}
$xml .= ' ';
// New DOM document
$doc = new DOMDocument();
$doc->formatOutput = true;
$doc->loadXML($xml);
return $doc->save($this->workspace().'sitemap.xml');
}
private function ping()
{
if ($this->getValue('pingGoogle')) {
$url = 'https://www.google.com/webmasters/sitemaps/ping?sitemap='.Theme::sitemapUrl();
TCP::http($url, 'GET', true, 3);
}
if ($this->getValue('pingBing')) {
$url = 'https://www.bing.com/webmaster/ping.aspx?sitemap='.Theme::sitemapUrl();
TCP::http($url, '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);
}
}
}