1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
<?php
defined('C5_EXECUTE') or die("Access Denied.");
class Concrete5_Job_GenerateSitemap extends Job {
const EOL = "\n";
public function getJobName() {
return t('Generate the sitemap.xml file');
}
public function getJobDescription() {
return t('Generate the sitemap.xml file that search engines use to crawl your site.');
}
public function run() {
Cache::disableCache();
Cache::disableLocalCache();
try {
$db = Loader::db();
$instances = array(
'navigation' => Loader::helper('navigation'),
'dashboard' => Loader::helper('concrete/dashboard'),
'view_page' => PermissionKey::getByHandle('view_page'),
'guestGroup' => Group::getByID(GUEST_GROUP_ID),
'now' => new DateTime('now'),
'ak_exclude_sitemapxml' => CollectionAttributeKey::getByHandle('exclude_sitemapxml'),
'ak_sitemap_changefreq' => CollectionAttributeKey::getByHandle('sitemap_changefreq'),
'ak_sitemap_priority' => CollectionAttributeKey::getByHandle('sitemap_priority')
);
$instances['guestGroupAE'] = array(GroupPermissionAccessEntity::getOrCreate($instances['guestGroup']));
$xmlDoc = new SimpleXMLElement('<'.'?xml version="1.0" encoding="' . APP_CHARSET . '"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" />');
$rs = Loader::db()->Query('SELECT cID FROM Pages');
while($row = $rs->FetchRow()) {
self::addPage($xmlDoc, intval($row['cID']), $instances);
}
$rs->Close();
Events::fire('on_sitemap_xml_ready', $xmlDoc);
$dom = dom_import_simplexml($xmlDoc)->ownerDocument;
$dom->formatOutput = true;
$addedPages = count($xmlDoc->url);
$relName = ltrim(SITEMAPXML_FILE, '\\/');
$osName = rtrim(DIR_BASE, '\\/') . '/' . $relName;
$urlName = rtrim(BASE_URL . DIR_REL, '\\/') . '/' . $relName;
if(!file_exists($osName)) {
@touch($osName);
}
if(!is_writable($osName)) {
throw new Exception(t('The file %s is not writable', $osName));
}
if(!$hFile = @fopen($osName, 'w')) {
throw new Exception(t('Cannot open file %s', $osName));
}
if([email protected]fwrite($hFile, $dom->saveXML())) {
throw new Exception(t('Error writing to file %s', $osName));
}
@fflush($hFile);
@fclose($hFile);
unset($hFile);
return t('%1$s file saved (%2$d pages).', sprintf('<a href="%s" target="_blank">%s</a>', $urlName, preg_replace('/^https?:\/\//i', '', $urlName)), $addedPages);
}
catch(Exception $x) {
if(isset($hFile) && $hFile) {
@fflush($hFile);
@ftruncate($hFile, 0);
@fclose($hFile);
$hFile = null;
}
throw $x;
}
}
private static function addPage($xmlDoc, $cID, $instances) {
$page = Page::getByID($cID, 'ACTIVE');
if($page->isSystemPage()) {
return;
}
if($page->isExternalLink()) {
return;
}
if($instances['dashboard']->inDashboard($page)) {
return;
}
if($page->isInTrash()) {
return;
}
if($page->isMasterCollection()) {
return;
}
$pageVersion = $page->getVersionObject();
if($pageVersion && !$pageVersion->isApproved()) {
return;
}
$pubDate = new DateTime($page->getCollectionDatePublic());
if($pubDate > $instances['now']) {
return;
}
if($page->getAttribute($instances['ak_exclude_sitemapxml'])) {
return;
}
$instances['view_page']->setPermissionObject($page);
$pa = $instances['view_page']->getPermissionAccessObject();
if (!is_object($pa)) {
return;
}
if (!$pa->validateAccessEntities($instances['guestGroupAE'])) {
return;
}
$lastmod = new DateTime($page->getCollectionDateLastModified());
$changefreq = (string) $page->getAttribute($instances['ak_sitemap_changefreq']);
$priority = (string) $page->getAttribute($instances['ak_sitemap_priority']);
$xmlNode = $xmlDoc->addChild('url');
$xmlNode->addChild('loc', SITEMAPXML_BASE_URL . $instances['navigation']->getLinkToCollection($page));
$xmlNode->addChild('lastmod', $lastmod->format(DateTime::ATOM));
$xmlNode->addChild('changefreq', empty($changefreq) ? SITEMAPXML_DEFAULT_CHANGEFREQ : $changefreq);
$xmlNode->addChild('priority', is_numeric($priority) ? $priority : SITEMAPXML_DEFAULT_PRIORITY);
$ret = Events::fire('on_sitemap_xml_addingpage', $xmlNode, $page);
if((!empty($ret)) && ($ret < 0)) {
for($i = count($xmlDoc->url) - 1; $i >= 0; $i--) {
if($xmlDoc->url[$i] == $xmlNode) {
unset($xmlDoc->url[$i]);
break;
}
}
}
}
}