2009-11-02 05:02:57 +01:00
< ? php
2015-11-02 00:27:42 +01:00
2009-11-02 05:02:57 +01:00
/**
2015-11-02 00:27:42 +01:00
* Set dates at which content needs to be reviewed and provide a report and emails to alert
* to content needing review .
*
* @ property string $ContentReviewType
* @ property int $ReviewPeriodDays
* @ property Date $NextReviewDate
* @ property string $LastEditedByName
* @ property string $OwnerNames
2009-11-02 05:02:57 +01:00
*
2015-11-02 00:27:42 +01:00
* @ method DataList ReviewLogs ()
* @ method DataList ContentReviewGroups ()
* @ method DataList ContentReviewUsers ()
2009-11-02 05:02:57 +01:00
*/
2015-11-02 00:27:42 +01:00
class SiteTreeContentReview extends DataExtension implements PermissionProvider
{
/**
* @ var array
*/
private static $db = array (
" ContentReviewType " => " Enum('Inherit, Disabled, Custom', 'Inherit') " ,
" ReviewPeriodDays " => " Int " ,
" NextReviewDate " => " Date " ,
" LastEditedByName " => " Varchar(255) " ,
" OwnerNames " => " Varchar(255) " ,
);
/**
* @ var array
*/
private static $defaults = array (
" ContentReviewType " => " Inherit " ,
);
/**
* @ var array
*/
private static $has_many = array (
" ReviewLogs " => " ContentReviewLog " ,
);
/**
* @ var array
*/
private static $belongs_many_many = array (
" ContentReviewGroups " => " Group " ,
" ContentReviewUsers " => " Member " ,
);
/**
* @ var array
*/
private static $schedule = array (
0 => " No automatic review date " ,
1 => " 1 day " ,
7 => " 1 week " ,
30 => " 1 month " ,
60 => " 2 months " ,
91 => " 3 months " ,
121 => " 4 months " ,
152 => " 5 months " ,
183 => " 6 months " ,
365 => " 12 months " ,
);
/**
* @ return array
*/
public static function get_schedule ()
{
return self :: $schedule ;
}
/**
* Takes a list of groups and members and return a list of unique member .
*
* @ param SS_List $groups
* @ param SS_List $members
*
* @ return ArrayList
*/
public static function merge_owners ( SS_List $groups , SS_List $members )
{
$contentReviewOwners = new ArrayList ();
if ( $groups -> count ()) {
$groupIDs = array ();
foreach ( $groups as $group ) {
$familyIDs = $group -> collateFamilyIDs ();
if ( is_array ( $familyIDs )) {
$groupIDs = array_merge ( $groupIDs , array_values ( $familyIDs ));
}
}
array_unique ( $groupIDs );
if ( count ( $groupIDs )) {
$groupMembers = DataObject :: get ( " Member " ) -> where ( " \" Group \" . \" ID \" IN ( " . implode ( " , " , $groupIDs ) . " ) " )
-> leftJoin ( " Group_Members " , " \" Member \" . \" ID \" = \" Group_Members \" . \" MemberID \" " )
-> leftJoin ( " Group " , " \" Group_Members \" . \" GroupID \" = \" Group \" . \" ID \" " );
$contentReviewOwners -> merge ( $groupMembers );
}
}
$contentReviewOwners -> merge ( $members );
$contentReviewOwners -> removeDuplicates ();
return $contentReviewOwners ;
}
/**
* @ param FieldList $actions
*/
public function updateCMSActions ( FieldList $actions )
{
if ( $this -> canBeReviewedBy ( Member :: currentUser ())) {
2015-11-12 03:56:19 +01:00
Requirements :: css ( " contentreview/css/contentreview.css " );
2016-05-17 06:34:00 +02:00
2015-11-12 03:56:19 +01:00
$reviewTitle = LiteralField :: create (
2015-11-17 02:17:54 +01:00
" ReviewContentNotesLabel " ,
2015-11-12 03:56:19 +01:00
" <label class= \" left \" for= \" Form_EditForm_ReviewNotes \" > " . _t ( " ContentReview.CONTENTREVIEW " , " Content due for review " ) . " </label> "
);
2016-05-17 06:34:00 +02:00
2015-11-12 03:56:19 +01:00
$ReviewNotes = LiteralField :: create ( " ReviewNotes " , " <textarea class= \" no-change-track \" id= \" Form_EditForm_ReviewNotes \" name= \" ReviewNotes \" placeholder= \" " . _t ( " ContentReview.COMMENTS " , " (optional) Add comments... " ) . " \" class= \" text \" ></textarea> " );
2016-05-17 06:34:00 +02:00
2015-11-12 03:56:19 +01:00
$quickReviewAction = FormAction :: create ( " savereview " , _t ( " ContentReview.MARKREVIEWED " , " Mark as reviewed " ))
2015-11-13 04:21:14 +01:00
-> setAttribute ( " data-icon " , " pencil " )
2015-11-12 03:56:19 +01:00
-> setAttribute ( " data-text-alternate " , _t ( " ContentReview.MARKREVIEWED " , " Mark as reviewed " ));
2016-05-17 06:34:00 +02:00
2015-11-12 03:56:19 +01:00
$allFields = CompositeField :: create ( $reviewTitle , $ReviewNotes , $quickReviewAction )
-> addExtraClass ( 'review-notes field' );
2016-05-17 06:34:00 +02:00
2015-11-12 03:56:19 +01:00
$reviewTab = Tab :: create ( 'ReviewContent' , $allFields );
$reviewTab -> addExtraClass ( 'contentreview-tab' );
2016-05-17 06:34:00 +02:00
2015-11-12 03:56:19 +01:00
$actions -> fieldByName ( 'ActionMenus' ) -> insertBefore ( $reviewTab , 'MoreOptions' );
2015-11-02 00:27:42 +01:00
}
}
/**
* Returns false if the content review have disabled .
*
* @ param SiteTree $page
*
* @ return bool | Date
*/
public function getReviewDate ( SiteTree $page = null )
{
if ( $page === null ) {
$page = $this -> owner ;
}
if ( $page -> obj ( " NextReviewDate " ) -> exists ()) {
return $page -> obj ( " NextReviewDate " );
}
$options = $this -> owner -> getOptions ();
if ( ! $options ) {
return false ;
}
if ( ! $options -> ReviewPeriodDays ) {
return false ;
}
// Failover to check on ReviewPeriodDays + LastEdited
$nextReviewUnixSec = strtotime ( " + " . $options -> ReviewPeriodDays . " days " , SS_Datetime :: now () -> format ( " U " ));
$date = Date :: create ( " NextReviewDate " );
$date -> setValue ( date ( " Y-m-d H:i:s " , $nextReviewUnixSec ));
return $date ;
}
/**
* Get the object that have the information about the content review settings . Either :
*
* - a SiteTreeContentReview decorated object
* - the default SiteTree config
* - false if this page have it ' s content review disabled
*
* Will go through parents and root pages will use the site config if their setting is Inherit .
*
* @ return bool | DataObject
*
* @ throws Exception
*/
public function getOptions ()
{
if ( $this -> owner -> ContentReviewType == " Custom " ) {
return $this -> owner ;
}
if ( $this -> owner -> ContentReviewType == " Disabled " ) {
return false ;
}
$page = $this -> owner ;
// $page is inheriting it's settings from it's parent, find
// the first valid parent with a valid setting
while ( $parent = $page -> Parent ()) {
// Root page, use site config
if ( ! $parent -> exists ()) {
return SiteConfig :: current_site_config ();
}
if ( $parent -> ContentReviewType == " Custom " ) {
return $parent ;
}
if ( $parent -> ContentReviewType == " Disabled " ) {
return false ;
}
$page = $parent ;
}
throw new Exception ( " This shouldn't really happen, as per usual developer logic. " );
}
/**
* @ return string
*/
public function getOwnerNames ()
{
$options = $this -> getOptions ();
$names = array ();
if ( ! $options ) {
return " " ;
}
foreach ( $options -> OwnerGroups () as $group ) {
$names [] = $group -> getBreadcrumbs ( " > " );
}
foreach ( $options -> OwnerUsers () as $group ) {
$names [] = $group -> getName ();
}
return implode ( " , " , $names );
}
/**
* @ return null | string
*/
public function getEditorName ()
{
$member = Member :: currentUser ();
if ( $member ) {
2016-05-17 06:34:00 +02:00
return $member -> getTitle ();
2015-11-02 00:27:42 +01:00
}
return null ;
}
/**
* Get all Members that are Content Owners to this page . This includes checking group
* hierarchy and adding any direct users .
*
* @ return ArrayList
*/
public function ContentReviewOwners ()
{
return SiteTreeContentReview :: merge_owners (
$this -> OwnerGroups (),
$this -> OwnerUsers ()
);
}
/**
* @ return ManyManyList
*/
public function OwnerGroups ()
{
return $this -> owner -> getManyManyComponents ( " ContentReviewGroups " );
}
/**
* @ return ManyManyList
*/
public function OwnerUsers ()
{
return $this -> owner -> getManyManyComponents ( " ContentReviewUsers " );
}
/**
* @ param FieldList $fields
*/
public function updateSettingsFields ( FieldList $fields )
{
Requirements :: javascript ( " contentreview/javascript/contentreview.js " );
// Display read-only version only
if ( ! Permission :: check ( " EDIT_CONTENT_REVIEW_FIELDS " )) {
$schedule = self :: get_schedule ();
$contentOwners = ReadonlyField :: create ( " ROContentOwners " , _t ( " ContentReview.CONTENTOWNERS " , " Content Owners " ), $this -> getOwnerNames ());
$nextReviewAt = DateField :: create ( 'RONextReviewDate' , _t ( " ContentReview.NEXTREVIEWDATE " , " Next review date " ), $this -> owner -> NextReviewDate );
if ( ! isset ( $schedule [ $this -> owner -> ReviewPeriodDays ])) {
$reviewFreq = ReadonlyField :: create ( " ROReviewPeriodDays " , _t ( " ContentReview.REVIEWFREQUENCY " , " Review frequency " ), $schedule [ 0 ]);
} else {
$reviewFreq = ReadonlyField :: create ( " ROReviewPeriodDays " , _t ( " ContentReview.REVIEWFREQUENCY " , " Review frequency " ), $schedule [ $this -> owner -> ReviewPeriodDays ]);
}
$logConfig = GridFieldConfig :: create ()
-> addComponent ( new GridFieldSortableHeader ())
-> addComponent ( $logColumns = new GridFieldDataColumns ());
// Cast the value to the users preferred date format
$logColumns -> setFieldCasting ( array (
" Created " => " DateTimeField->value " ,
));
$logs = GridField :: create ( " ROReviewNotes " , " Review Notes " , $this -> owner -> ReviewLogs (), $logConfig );
$optionsFrom = ReadonlyField :: create ( " ROType " , _t ( " ContentReview.SETTINGSFROM " , " Options are " ), $this -> owner -> ContentReviewType );
$fields -> addFieldsToTab ( " Root.ContentReview " , array (
$contentOwners ,
$nextReviewAt -> performReadonlyTransformation (),
$reviewFreq ,
$optionsFrom ,
$logs ,
));
return ;
}
$options = array ();
$options [ " Disabled " ] = _t ( " ContentReview.DISABLE " , " Disable content review " );
$options [ " Inherit " ] = _t ( " ContentReview.INHERIT " , " Inherit from parent page " );
$options [ " Custom " ] = _t ( " ContentReview.CUSTOM " , " Custom settings " );
$viewersOptionsField = OptionsetField :: create ( " ContentReviewType " , _t ( " ContentReview.OPTIONS " , " Options " ), $options );
$users = Permission :: get_members_by_permission ( array ( " CMS_ACCESS_CMSMain " , " ADMIN " ));
$usersMap = $users -> map ( " ID " , " Title " ) -> toArray ();
asort ( $usersMap );
$userField = ListboxField :: create ( " OwnerUsers " , _t ( " ContentReview.PAGEOWNERUSERS " , " Users " ), $usersMap )
-> setMultiple ( true )
2015-11-18 04:38:28 +01:00
-> addExtraClass ( 'custom-setting' )
2015-11-02 00:27:42 +01:00
-> setAttribute ( " data-placeholder " , _t ( " ContentReview.ADDUSERS " , " Add users " ))
-> setDescription ( _t ( 'ContentReview.OWNERUSERSDESCRIPTION' , 'Page owners that are responsible for reviews' ));
$groupsMap = array ();
foreach ( Group :: get () as $group ) {
$groupsMap [ $group -> ID ] = $group -> getBreadcrumbs ( " > " );
}
asort ( $groupsMap );
$groupField = ListboxField :: create ( " OwnerGroups " , _t ( " ContentReview.PAGEOWNERGROUPS " , " Groups " ), $groupsMap )
-> setMultiple ( true )
2015-11-18 04:38:28 +01:00
-> addExtraClass ( 'custom-setting' )
2015-11-02 00:27:42 +01:00
-> setAttribute ( " data-placeholder " , _t ( " ContentReview.ADDGROUP " , " Add groups " ))
-> setDescription ( _t ( " ContentReview.OWNERGROUPSDESCRIPTION " , " Page owners that are responsible for reviews " ));
$reviewDate = DateField :: create ( " NextReviewDate " , _t ( " ContentReview.NEXTREVIEWDATE " , " Next review date " ))
-> setConfig ( " showcalendar " , true )
-> setConfig ( " dateformat " , " yyyy-MM-dd " )
-> setConfig ( " datavalueformat " , " yyyy-MM-dd " )
-> setDescription ( _t ( " ContentReview.NEXTREVIEWDATADESCRIPTION " , " Leave blank for no review " ));
2015-11-17 03:12:20 +01:00
$reviewFrequency = DropdownField :: create (
2015-11-18 04:38:28 +01:00
" ReviewPeriodDays " ,
_t ( " ContentReview.REVIEWFREQUENCY " , " Review frequency " ),
self :: get_schedule ()
)
-> addExtraClass ( 'custom-setting' )
2015-11-02 00:27:42 +01:00
-> setDescription ( _t ( " ContentReview.REVIEWFREQUENCYDESCRIPTION " , " The review date will be set to this far in the future whenever the page is published " ));
$notesField = GridField :: create ( " ReviewNotes " , " Review Notes " , $this -> owner -> ReviewLogs (), GridFieldConfig_RecordEditor :: create ());
$fields -> addFieldsToTab ( " Root.ContentReview " , array (
new HeaderField ( _t ( " ContentReview.REVIEWHEADER " , " Content review " ), 2 ),
$viewersOptionsField ,
CompositeField :: create (
$userField ,
$groupField ,
$reviewDate ,
$reviewFrequency
2015-11-17 03:12:20 +01:00
) -> addExtraClass ( " review-settings " ),
2015-11-02 00:27:42 +01:00
ReadonlyField :: create ( " ROContentOwners " , _t ( " ContentReview.CONTENTOWNERS " , " Content Owners " ), $this -> getOwnerNames ()),
$notesField ,
));
}
/**
* Creates a ContentReviewLog and connects it to this Page .
*
* @ param Member $reviewer
* @ param string $message
*/
public function addReviewNote ( Member $reviewer , $message )
{
$reviewLog = ContentReviewLog :: create ();
$reviewLog -> Note = $message ;
$reviewLog -> ReviewerID = $reviewer -> ID ;
$this -> owner -> ReviewLogs () -> add ( $reviewLog );
}
/**
* Advance review date to the next date based on review period or set it to null
* if there is no schedule . Returns true if date was required and false is content
* review is 'off' .
*
* @ return bool
*/
public function advanceReviewDate ()
{
$nextDate = false ;
$options = $this -> getOptions ();
if ( $options && $options -> ReviewPeriodDays ) {
$nextDate = date ( 'Y-m-d' , strtotime ( '+ ' . $options -> ReviewPeriodDays . ' days' , SS_Datetime :: now () -> format ( 'U' )));
$this -> owner -> NextReviewDate = $nextDate ;
$this -> owner -> write ();
}
return ( bool ) $nextDate ;
}
/**
* Check if a review is due by a member for this owner .
*
* @ param Member $member
*
* @ return bool
*/
public function canBeReviewedBy ( Member $member = null )
{
if ( ! $this -> owner -> obj ( " NextReviewDate " ) -> exists ()) {
return false ;
}
if ( $this -> owner -> obj ( " NextReviewDate " ) -> InFuture ()) {
return false ;
}
$options = $this -> getOptions ();
if ( $options -> OwnerGroups () -> count () == 0 && $options -> OwnerUsers () -> count () == 0 ) {
return false ;
}
if ( ! $member ) {
return true ;
}
if ( $member -> inGroups ( $options -> OwnerGroups ())) {
return true ;
}
if ( $options -> OwnerUsers () -> find ( " ID " , $member -> ID )) {
return true ;
}
return false ;
}
/**
* Set the review data from the review period , if set .
*/
public function onBeforeWrite ()
{
2016-05-17 06:34:00 +02:00
// Only update if DB fields have been changed
$changedFields = $this -> owner -> getChangedFields ( true , 2 );
if ( $changedFields ) {
$this -> owner -> LastEditedByName = $this -> owner -> getEditorName ();
$this -> owner -> OwnerNames = $this -> owner -> getOwnerNames ();
}
2015-11-02 00:27:42 +01:00
// If the user changed the type, we need to recalculate the review date.
if ( $this -> owner -> isChanged ( " ContentReviewType " , 2 )) {
if ( $this -> owner -> ContentReviewType == " Disabled " ) {
$this -> setDefaultReviewDateForDisabled ();
} elseif ( $this -> owner -> ContentReviewType == " Custom " ) {
$this -> setDefaultReviewDateForCustom ();
} else {
$this -> setDefaultReviewDateForInherited ();
}
}
// Ensure that a inherited page always have a next review date
if ( $this -> owner -> ContentReviewType == " Inherit " && ! $this -> owner -> NextReviewDate ) {
$this -> setDefaultReviewDateForInherited ();
}
// We need to update all the child pages that inherit this setting. We can only
// change children after this record has been created, otherwise the stageChildren
// method will grab all pages in the DB (this messes up unit testing)
if ( ! $this -> owner -> exists ()) {
return ;
}
2016-05-17 06:34:00 +02:00
// parent page change its review period
2015-11-02 00:27:42 +01:00
// && !$this->owner->isChanged('ContentReviewType', 2)
if ( $this -> owner -> isChanged ( " ReviewPeriodDays " , 2 )) {
$nextReviewUnixSec = strtotime ( " + " . $this -> owner -> ReviewPeriodDays . " days " , SS_Datetime :: now () -> format ( " U " ));
$this -> owner -> NextReviewDate = date ( " Y-m-d " , $nextReviewUnixSec );
}
}
private function setDefaultReviewDateForDisabled ()
{
$this -> owner -> NextReviewDate = null ;
}
protected function setDefaultReviewDateForCustom ()
{
2015-11-18 04:38:28 +01:00
// Don't overwrite existing value
2015-11-02 00:27:42 +01:00
if ( $this -> owner -> NextReviewDate ) {
return ;
}
$this -> owner -> NextReviewDate = null ;
$nextDate = $this -> getReviewDate ();
if ( is_object ( $nextDate )) {
$this -> owner -> NextReviewDate = $nextDate -> getValue ();
} else {
$this -> owner -> NextReviewDate = $nextDate ;
}
}
protected function setDefaultReviewDateForInherited ()
{
2015-11-18 04:38:28 +01:00
// Don't overwrite existing value
if ( $this -> owner -> NextReviewDate ) {
return ;
}
2015-11-17 03:12:20 +01:00
2015-11-02 00:27:42 +01:00
$options = $this -> getOptions ();
$nextDate = null ;
2015-11-17 03:12:20 +01:00
if ( $options instanceof SiteTree ) {
$nextDate = $this -> getReviewDate ( $options );
2015-11-02 00:27:42 +01:00
} elseif ( $options instanceof SiteConfig ) {
$nextDate = $this -> getReviewDate ();
}
if ( is_object ( $nextDate )) {
$this -> owner -> NextReviewDate = $nextDate -> getValue ();
} else {
$this -> owner -> NextReviewDate = $nextDate ;
}
}
/**
* Provide permissions to the CMS .
*
* @ return array
*/
public function providePermissions ()
{
return array (
" EDIT_CONTENT_REVIEW_FIELDS " => array (
" name " => " Set content owners and review dates " ,
" category " => _t ( " Permissions.CONTENT_CATEGORY " , " Content permissions " ),
" sort " => 50 ,
),
);
}
/**
* If the queued jobs module is installed , queue up the first job for 9 am tomorrow morning
* ( by default ) .
*/
public function requireDefaultRecords ()
{
if ( class_exists ( " ContentReviewNotificationJob " )) {
// Ensure there is not already a job queued
if ( QueuedJobDescriptor :: get () -> filter ( " Implementation " , " ContentReviewNotificationJob " ) -> first ()) {
return ;
}
$nextRun = new ContentReviewNotificationJob ();
$runHour = Config :: inst () -> get ( " ContentReviewNotificationJob " , " first_run_hour " );
$firstRunTime = date ( " Y-m-d H:i:s " , mktime ( $runHour , 0 , 0 , date ( " m " ), date ( " d " ) + 1 , date ( " y " )));
singleton ( " QueuedJobService " ) -> queueJob (
$nextRun ,
$firstRunTime
);
DB :: alteration_message ( sprintf ( " Added ContentReviewNotificationJob to run at %s " , $firstRunTime ));
}
}
2009-11-02 05:02:57 +01:00
}