2012-11-26 01:22:30 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class VersionFeed extends SiteTreeExtension {
|
2013-10-31 10:38:08 +01:00
|
|
|
|
|
|
|
private static $db = array(
|
2014-04-17 07:44:38 +02:00
|
|
|
'PublicHistory' => 'Boolean(true)'
|
2012-11-26 01:22:30 +01:00
|
|
|
);
|
|
|
|
|
2013-10-31 10:38:08 +01:00
|
|
|
private static $defaults = array(
|
2012-11-26 01:22:30 +01:00
|
|
|
'PublicHistory' => true
|
|
|
|
);
|
|
|
|
|
2013-10-24 23:33:20 +02:00
|
|
|
public function updateFieldLabels(&$labels) {
|
|
|
|
$labels['PublicHistory'] = _t('RSSHistory.LABEL', 'Make history public');
|
|
|
|
}
|
2014-05-14 06:14:15 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Enable the allchanges feed
|
|
|
|
*
|
|
|
|
* @config
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
private static $allchanges_enabled = true;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enables RSS feed for page-specific changes
|
|
|
|
*
|
|
|
|
* @config
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
private static $changes_enabled = true;
|
2013-10-24 23:33:20 +02:00
|
|
|
|
2012-11-26 01:22:30 +01:00
|
|
|
/**
|
|
|
|
* Compile a list of changes to the current page, excluding non-published and explicitly secured versions.
|
|
|
|
*
|
|
|
|
* @param int $highestVersion Top version number to consider.
|
|
|
|
* @param boolean $fullHistory Whether to get the full change history or just the previous version.
|
|
|
|
*
|
|
|
|
* @returns ArrayList List of cleaned records.
|
|
|
|
*/
|
|
|
|
public function getDiffedChanges($highestVersion = null, $fullHistory = true) {
|
|
|
|
// This can leak secured content if it was protected via inherited setting.
|
|
|
|
// For now the users will need to be aware about this shortcoming.
|
|
|
|
$offset = $highestVersion ? "AND \"SiteTree_versions\".\"Version\"<='".(int)$highestVersion."'" : '';
|
|
|
|
$limit = $fullHistory ? null : 2;
|
|
|
|
$versions = $this->owner->allVersions("\"WasPublished\"='1' AND \"CanViewType\" IN ('Anyone', 'Inherit') $offset", "\"LastEdited\" DESC", $limit);
|
|
|
|
|
|
|
|
// Process the list to add the comparisons.
|
|
|
|
$changeList = new ArrayList();
|
|
|
|
$previous = null;
|
|
|
|
$count = 0;
|
|
|
|
foreach ($versions as $version) {
|
|
|
|
$changed = false;
|
|
|
|
|
|
|
|
if (isset($previous)) {
|
|
|
|
// We have something to compare with.
|
|
|
|
$diff = $this->owner->compareVersions($version->Version, $previous->Version);
|
|
|
|
|
|
|
|
// Produce the diff fields for use in the template.
|
|
|
|
if ($version->Title != $previous->Title) {
|
|
|
|
$version->DiffTitle = new HTMLText();
|
|
|
|
$version->DiffTitle->setValue(
|
|
|
|
sprintf(
|
|
|
|
'<div><em>%s</em>' . $diff->Title . '</div>',
|
|
|
|
_t('RSSHistory.TITLECHANGED', 'Title has changed:')
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$changed = true;
|
|
|
|
}
|
|
|
|
if ($version->Content != $previous->Content) {
|
|
|
|
$version->DiffContent = new HTMLText();
|
|
|
|
$version->DiffContent->setValue('<div>'.$diff->obj('Content')->forTemplate().'</div>');
|
|
|
|
$changed = true;
|
|
|
|
}
|
2013-07-22 06:27:52 +02:00
|
|
|
|
|
|
|
// Copy the link so it can be cached by SS_Cache.
|
|
|
|
$version->GeneratedLink = $version->AbsoluteLink();
|
2012-11-26 01:22:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Omit the versions that haven't been visibly changed (only takes the above fields into consideration).
|
|
|
|
if ($changed) {
|
|
|
|
$changeList->push($version);
|
|
|
|
$count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Store the last version for comparison.
|
|
|
|
$previous = $version;
|
|
|
|
}
|
|
|
|
|
2013-03-07 02:54:13 +01:00
|
|
|
// Push the first version on to the list - only if we're looking at the full history or if it's the first
|
|
|
|
// version in the version history.
|
|
|
|
if ($previous && ($fullHistory || $versions->count() == 1)) {
|
2012-11-26 01:22:30 +01:00
|
|
|
$first = clone($previous);
|
|
|
|
$first->DiffContent = new HTMLText();
|
|
|
|
$first->DiffContent->setValue('<div>' . $first->obj('Content')->forTemplate() . '</div>');
|
|
|
|
$changeList->push($first);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $changeList;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function updateSettingsFields(FieldList $fields) {
|
2014-05-14 06:14:15 +02:00
|
|
|
if(!Config::inst()->get(get_class(), 'changes_enabled')) return;
|
|
|
|
|
2012-11-26 01:22:30 +01:00
|
|
|
// Add public history field.
|
|
|
|
$fields->addFieldToTab('Root.Settings', $publicHistory = new FieldGroup(
|
2013-10-24 23:33:20 +02:00
|
|
|
new CheckboxField('PublicHistory', $this->owner->fieldLabel('PublicHistory')
|
2012-11-26 01:22:30 +01:00
|
|
|
)));
|
2013-07-23 00:07:32 +02:00
|
|
|
|
2013-10-24 23:33:20 +02:00
|
|
|
$warning = _t(
|
|
|
|
'VersionFeed.Warning',
|
2013-07-23 00:07:32 +02:00
|
|
|
"Publicising the history will also disclose the changes that have at the time been protected " .
|
2013-10-24 23:33:20 +02:00
|
|
|
"from the public view."
|
|
|
|
);
|
2013-07-23 00:07:32 +02:00
|
|
|
|
|
|
|
$fields->addFieldToTab('Root.Settings', new LiteralField('PublicHistoryWarning', $warning), 'PublicHistory');
|
|
|
|
|
|
|
|
if ($this->owner->CanViewType!='Anyone') {
|
2013-10-24 23:33:20 +02:00
|
|
|
$warning = _t(
|
|
|
|
'VersionFeed.Warning2',
|
2013-07-23 00:07:32 +02:00
|
|
|
"Changing access settings in such a way that this page or pages under it become publicly<br>" .
|
|
|
|
"accessible may result in publicising all historical changes on these pages too. Please review<br>" .
|
2013-10-24 23:33:20 +02:00
|
|
|
"this section's \"Public history\" settings to ascertain only intended information is disclosed."
|
|
|
|
);
|
2013-07-23 00:07:32 +02:00
|
|
|
|
|
|
|
$fields->addFieldToTab('Root.Settings', new LiteralField('PublicHistoryWarning2', $warning), 'CanViewType');
|
|
|
|
}
|
2012-11-26 01:22:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getSiteRSSLink() {
|
|
|
|
// TODO: This link should be from the homepage, not this page.
|
2014-05-14 06:14:15 +02:00
|
|
|
if(Config::inst()->get(get_class(), 'allchanges_enabled')
|
|
|
|
&& SiteConfig::current_site_config()->AllChangesEnabled
|
|
|
|
) {
|
|
|
|
return $this->owner->Link('allchanges');
|
|
|
|
}
|
2012-11-26 01:22:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getDefaultRSSLink() {
|
2014-05-14 06:14:15 +02:00
|
|
|
if(Config::inst()->get(get_class(), 'changes_enabled') && $this->owner->PublicHistory) {
|
|
|
|
return $this->owner->Link('changes');
|
|
|
|
}
|
2012-11-26 01:22:30 +01:00
|
|
|
}
|
2013-07-22 06:27:52 +02:00
|
|
|
}
|