2010-05-28 04:28:38 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Content side-report listing pages with broken links
|
|
|
|
* @package cms
|
|
|
|
* @subpackage content
|
|
|
|
*/
|
|
|
|
|
|
|
|
class BrokenLinksReport extends SS_Report {
|
|
|
|
function title() {
|
2010-05-28 04:30:17 +02:00
|
|
|
return _t('BrokenLinksReport.BROKENLINKS',"Broken links report");
|
2010-05-28 04:28:38 +02:00
|
|
|
}
|
2010-05-28 04:30:34 +02:00
|
|
|
function sourceRecords($params, $sort, $limit) {
|
2010-05-28 04:30:40 +02:00
|
|
|
if (!isset($_REQUEST['CheckSite']) || $params['CheckSite'] == 'Published') $ret = Versioned::get_by_stage('SiteTree', 'Live', "(HasBrokenLink = 1 OR HasBrokenFile = 1)");
|
|
|
|
else $ret = DataObject::get('SiteTree', "(HasBrokenFile = 1 OR HasBrokenLink = 1)");
|
2010-05-28 04:28:38 +02:00
|
|
|
|
|
|
|
$returnSet = new DataObjectSet();
|
|
|
|
if ($ret) foreach($ret as $record) {
|
|
|
|
$reason = false;
|
|
|
|
$isRedirectorPage = in_array($record->ClassName, ClassInfo::subclassesFor('RedirectorPage'));
|
|
|
|
$isVirtualPage = in_array($record->ClassName, ClassInfo::subclassesFor('VirtualPage'));
|
|
|
|
|
|
|
|
if ($isVirtualPage) {
|
|
|
|
if ($record->HasBrokenLink) {
|
2010-05-28 04:30:17 +02:00
|
|
|
$reason = "virtual page pointing to non-existent page";
|
2010-05-28 04:28:38 +02:00
|
|
|
$reasonCodes = array("VPBROKENLINK");
|
|
|
|
}
|
|
|
|
} else if ($isRedirectorPage) {
|
|
|
|
if ($record->HasBrokenLink) {
|
2010-05-28 04:30:17 +02:00
|
|
|
$reason = "redirector page pointing to non-existent page";
|
2010-05-28 04:28:38 +02:00
|
|
|
$reasonCodes = array("RPBROKENLINK");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if ($record->HasBrokenLink && $record->HasBrokenFile) {
|
|
|
|
$reason = "has broken link and file";
|
|
|
|
$reasonCodes = array("BROKENFILE", "BROKENLINK");
|
|
|
|
} else if ($record->HasBrokenLink && !$record->HasBrokenFile) {
|
|
|
|
$reason = "has broken link";
|
|
|
|
$reasonCodes = array("BROKENLINK");
|
|
|
|
} else if (!$record->HasBrokenLink && $record->HasBrokenFile) {
|
|
|
|
$reason = "has broken file";
|
|
|
|
$reasonCodes = array("BROKENFILE");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($reason) {
|
2010-05-28 04:30:17 +02:00
|
|
|
if (isset($params['Reason']) && $params['Reason'] && !in_array($params['Reason'], $reasonCodes)) continue;
|
2010-05-28 04:28:38 +02:00
|
|
|
$record->BrokenReason = $reason;
|
|
|
|
$returnSet->push($record);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-28 04:30:40 +02:00
|
|
|
if ($sort) $returnSet->sort($sort);
|
|
|
|
|
2010-05-28 04:28:38 +02:00
|
|
|
return $returnSet;
|
|
|
|
}
|
|
|
|
function columns() {
|
|
|
|
$fields = array(
|
|
|
|
"Title" => array(
|
|
|
|
"title" => "Title",
|
|
|
|
'formatting' => '<a href=\"admin/show/$ID\" title=\"Edit page\">$value</a>'
|
|
|
|
),
|
2010-05-28 04:30:17 +02:00
|
|
|
"LastEdited" => array(
|
2010-05-28 04:30:27 +02:00
|
|
|
"title" => "Date ".(isset($_REQUEST['CheckSite']) && ($_REQUEST['CheckSite'] == 'Draft')?'last modified':'published'),
|
2010-05-28 04:30:17 +02:00
|
|
|
'casting' => 'SSDatetime->Full'
|
|
|
|
),
|
2010-05-28 04:28:38 +02:00
|
|
|
"BrokenReason" => array(
|
2010-05-28 04:30:17 +02:00
|
|
|
"title" => "Problem type"
|
2010-05-28 04:28:38 +02:00
|
|
|
),
|
|
|
|
'AbsoluteLink' => array(
|
2010-05-28 04:30:17 +02:00
|
|
|
'title' => 'URL',
|
2010-05-28 04:28:38 +02:00
|
|
|
'formatting' => '$value " . ($AbsoluteLiveLink ? "<a href=\"$AbsoluteLiveLink\">(live)</a>" : "") . " <a href=\"$value?stage=Stage\">(draft)</a>'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
return $fields;
|
|
|
|
}
|
|
|
|
function parameterFields() {
|
|
|
|
return new FieldSet(
|
2010-05-28 04:30:27 +02:00
|
|
|
new DropdownField('CheckSite', 'Check site', array(
|
|
|
|
'Published' => 'Published Site',
|
|
|
|
'Draft' => 'Draft Site'
|
|
|
|
)),
|
2010-05-28 04:28:38 +02:00
|
|
|
new DropdownField('Reason', 'Problem to check', array(
|
|
|
|
'' => 'Any',
|
|
|
|
'BROKENFILE' => 'Broken file',
|
|
|
|
'BROKENLINK' => 'Broken link',
|
|
|
|
'VPBROKENLINK' => 'Virtual page pointing to invalid source',
|
|
|
|
'RPBROKENLINK' => 'Redirector page pointing to invalid destination',
|
|
|
|
))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|