2007-09-14 02:27:15 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Initial implementation of Sitemap support.
|
2007-11-15 23:40:20 +01:00
|
|
|
* GoogleSitemap should handle requests to 'sitemap.xml'
|
2007-09-14 02:27:15 +02:00
|
|
|
* the other two classes are used to render the sitemap
|
|
|
|
*/
|
|
|
|
|
2007-11-15 23:40:20 +01:00
|
|
|
class GoogleSitemap extends Controller {
|
2007-09-14 02:27:15 +02:00
|
|
|
protected $Pages;
|
2007-10-25 03:10:31 +02:00
|
|
|
|
|
|
|
function __construct() {
|
2007-11-12 03:03:17 +01:00
|
|
|
$this->Pages = Versioned::get_by_stage('SiteTree', 'Live');
|
2007-09-14 02:27:15 +02:00
|
|
|
}
|
|
|
|
|
2007-10-25 03:10:31 +02:00
|
|
|
public function Items() {
|
2007-11-15 23:32:52 +01:00
|
|
|
$newPages = new DataObjectSet();
|
|
|
|
|
2007-10-25 03:10:31 +02:00
|
|
|
foreach($this->Pages as $page) {
|
2007-11-15 23:32:52 +01:00
|
|
|
// Only include pages from this host
|
|
|
|
if(parse_url($page->AbsoluteLink(), PHP_URL_HOST) == $_SERVER['HTTP_HOST']) {
|
|
|
|
|
|
|
|
// If the page has been set to 0 priority, we set a flag so it won't be included
|
|
|
|
if(isset($page->Priority) && $page->Priority <= 0) {
|
|
|
|
$page->Include = false;
|
|
|
|
} else {
|
|
|
|
$page->Include = true;
|
|
|
|
}
|
2007-09-14 02:47:00 +02:00
|
|
|
|
2007-11-15 23:32:52 +01:00
|
|
|
// The one field that isn't easy to deal with in the template is
|
|
|
|
// Change frequency, so we set that here.
|
|
|
|
$properties = $page->toMap();
|
|
|
|
$created = new Datetime($properties['Created']);
|
|
|
|
$now = new Datetime();
|
|
|
|
$versions = $properties['Version'];
|
|
|
|
$timediff = $now->format('U') - $created->format('U');
|
2007-09-14 02:27:15 +02:00
|
|
|
|
2007-11-15 23:32:52 +01:00
|
|
|
// Check how many revisions have been made over the lifetime of the
|
|
|
|
// Page for a rough estimate of it's changing frequency.
|
2007-09-14 02:27:15 +02:00
|
|
|
|
2007-11-15 23:32:52 +01:00
|
|
|
$period = $timediff / ($versions + 1);
|
2007-09-14 02:27:15 +02:00
|
|
|
|
2007-11-15 23:32:52 +01:00
|
|
|
if($period > 60*60*24*365) { // > 1 year
|
|
|
|
$page->ChangeFreq='yearly';
|
|
|
|
} else if($period > 60*60*24*30) { // > ~1 month
|
|
|
|
$page->ChangeFreq='monthly';
|
|
|
|
} else if($period > 60*60*24*7) { // > 1 week
|
|
|
|
$page->ChangeFreq='weekly';
|
|
|
|
} else if($period > 60*60*24) { // > 1 day
|
|
|
|
$page->ChangeFreq='daily';
|
|
|
|
} else if($period > 60*60) { // > 1 hour
|
|
|
|
$page->ChangeFreq='hourly';
|
|
|
|
} else { // < 1 hour
|
|
|
|
$page->ChangeFreq='always';
|
|
|
|
}
|
|
|
|
|
|
|
|
$newPages->push($page);
|
2007-09-14 02:27:15 +02:00
|
|
|
}
|
|
|
|
}
|
2007-11-15 23:32:52 +01:00
|
|
|
return $newPages;
|
2007-09-14 02:27:15 +02:00
|
|
|
}
|
|
|
|
|
2007-10-25 03:10:31 +02:00
|
|
|
static function ping() {
|
2007-11-12 03:09:31 +01:00
|
|
|
//Don't ping if the site has disabled it, or if the site is in dev mode
|
|
|
|
if(!Sitemap::$pings || Director::isDev())
|
2007-09-14 02:47:00 +02:00
|
|
|
return;
|
|
|
|
|
2007-09-14 02:27:15 +02:00
|
|
|
$location = urlencode(Director::absoluteBaseURL() . '/sitemap.xml');
|
|
|
|
|
|
|
|
$response = HTTP::sendRequest("www.google.com", "/webmasters/sitemaps/ping",
|
|
|
|
"sitemap=" . $location);
|
|
|
|
|
|
|
|
return $response;
|
|
|
|
}
|
|
|
|
|
2007-09-14 02:47:00 +02:00
|
|
|
protected static $pings = true;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disables pings to google when the sitemap changes
|
|
|
|
* To use this, in your _config.php file simply include the line
|
|
|
|
* Sitemap::DisableGoogleNotification();
|
|
|
|
*/
|
2007-10-25 03:10:31 +02:00
|
|
|
static function DisableGoogleNotification() {
|
2007-09-14 02:47:00 +02:00
|
|
|
self::$pings = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-25 03:10:31 +02:00
|
|
|
function index($url) {
|
2007-09-14 02:27:15 +02:00
|
|
|
// We need to override the default content-type
|
|
|
|
ContentNegotiator::disable();
|
|
|
|
header('Content-type: application/xml; charset="utf-8"');
|
|
|
|
|
|
|
|
// But we want to still render.
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
}
|
2007-11-12 03:03:17 +01:00
|
|
|
?>
|