mirror of
https://github.com/silverstripe/silverstripe-contentreview
synced 2024-10-22 17:05:47 +02:00
204 lines
6.9 KiB
PHP
204 lines
6.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Daily task to send emails to the owners of content items when the review date rolls around.
|
|
*/
|
|
class ContentReviewEmails extends BuildTask
|
|
{
|
|
/**
|
|
* @param SS_HTTPRequest $request
|
|
*/
|
|
public function run($request)
|
|
{
|
|
$compatibility = ContentReviewCompatability::start();
|
|
|
|
$now = SS_Datetime::now();
|
|
|
|
// First grab all the pages with a custom setting
|
|
$pages = Page::get()
|
|
->filter('NextReviewDate:LessThanOrEqual', $now->URLDate());
|
|
|
|
// Calculate whether today is the date a First or Second review should occur
|
|
$config = SiteConfig::current_site_config();
|
|
$firstReview = $config->FirstReviewDaysBefore;
|
|
$secondReview = $config->SecondReviewDaysBefore;
|
|
// Subtract the number of days prior to the review, from the current date
|
|
|
|
// Get all pages where the NextReviewDate is still in the future
|
|
$pendingPages = Page::get()->filter('NextReviewDate:GreaterThan', $now->URLDate());
|
|
|
|
// for each of these pages, check if today is the date the First or Second
|
|
// reminder should be sent, and if so, add it to the appropriate ArrayList
|
|
$pendingPagesFirstReminder = new ArrayList();
|
|
$pendingPagesSecondReminder = new ArrayList();
|
|
|
|
foreach ($pendingPages as $page) {
|
|
$notifyDate1 = date('Y-m-d', strtotime($page->NextReviewDate . ' -' . $firstReview . ' days'));
|
|
$notifyDate2 = date('Y-m-d', strtotime($page->NextReviewDate . ' -' . $secondReview . ' days'));
|
|
|
|
if ($notifyDate1 == $now->URLDate()) {
|
|
$pendingPagesFirstReminder->push($page);
|
|
}
|
|
if ($notifyDate2 == $now->URLDate()) {
|
|
$pendingPagesSecondReminder->push($page);
|
|
}
|
|
}
|
|
|
|
$overduePages = $this->getNotifiablePagesForOwners($pages, "due");
|
|
$firstReminderPages = $this->getNotifiablePagesForOwners($pendingPagesFirstReminder, "first");
|
|
$secondReminderPages = $this->getNotifiablePagesForOwners($pendingPagesSecondReminder, "second");
|
|
|
|
// Send one email to one owner with all the pages in there instead of no of pages of emails.
|
|
foreach ($overduePages as $memberID => $pages) {
|
|
$this->notifyOwner($memberID, $pages, "due");
|
|
}
|
|
|
|
// Send a separate email with a different subject line for the first reminder
|
|
foreach ($firstReminderPages as $memberID => $pages) {
|
|
$this->notifyOwner($memberID, $pages, "first");
|
|
}
|
|
|
|
// Send a separate email with a different subject line for the second reminder
|
|
foreach ($secondReminderPages as $memberID => $pages) {
|
|
$this->notifyOwner($memberID, $pages, "second");
|
|
}
|
|
|
|
ContentReviewCompatability::done($compatibility);
|
|
}
|
|
|
|
/**
|
|
* @param SS_list $pages
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function getNotifiablePagesForOwners(SS_list $pages, $type)
|
|
{
|
|
$overduePages = array();
|
|
|
|
foreach ($pages as $page) {
|
|
|
|
if ($type == "first") {
|
|
if (!$page->canRemind()) {
|
|
continue;
|
|
}
|
|
}
|
|
if ($type == "second") {
|
|
if (!$page->canRemindAgain()) {
|
|
continue;
|
|
}
|
|
}
|
|
if ($type == "due") {
|
|
if (!$page->canBeReviewedBy()) {
|
|
continue;
|
|
}
|
|
}
|
|
|
|
$option = $page->getOptions();
|
|
|
|
foreach ($option->ContentReviewOwners() as $owner) {
|
|
if (!isset($overduePages[$owner->ID])) {
|
|
$overduePages[$owner->ID] = new ArrayList();
|
|
}
|
|
|
|
$overduePages[$owner->ID]->push($page);
|
|
}
|
|
}
|
|
|
|
return $overduePages;
|
|
}
|
|
|
|
/**
|
|
* @param int $ownerID
|
|
* @param array|SS_List $pages
|
|
* @param string $type
|
|
*/
|
|
protected function notifyOwner($ownerID, SS_List $pages, $type)
|
|
{
|
|
// Prepare variables
|
|
$siteConfig = SiteConfig::current_site_config();
|
|
$owner = Member::get()->byID($ownerID);
|
|
$templateVariables = $this->getTemplateVariables($owner, $siteConfig, $pages, $type);
|
|
|
|
// Build email
|
|
$email = new Email();
|
|
$email->setTo($owner->Email);
|
|
$email->setFrom($siteConfig->ReviewFrom);
|
|
|
|
if ($type == "first"){$subject = $siteConfig->ReviewSubjectFirstReminder;}
|
|
if ($type == "second"){$subject = $siteConfig->ReviewSubjectSecondReminder;}
|
|
if ($type == "due"){$subject = $siteConfig->ReviewSubject;}
|
|
$email->setSubject($subject);
|
|
|
|
// Get user-editable body
|
|
$body = $this->getEmailBody($siteConfig, $templateVariables, $type);
|
|
|
|
// Populate mail body with fixed template
|
|
$email->setTemplate($siteConfig->config()->content_review_template);
|
|
$email->populateTemplate($templateVariables);
|
|
$email->populateTemplate(array(
|
|
'EmailBody' => $body,
|
|
'Recipient' => $owner,
|
|
'Pages' => $pages,
|
|
));
|
|
|
|
Debug::show($email);
|
|
//$email->send();
|
|
}
|
|
|
|
/**
|
|
* Get string value of HTML body with all variable evaluated.
|
|
*
|
|
* @param SiteConfig $config
|
|
* @param array List of safe template variables to expose to this template
|
|
*
|
|
* @return HTMLText
|
|
*/
|
|
protected function getEmailBody($config, $variables, $type)
|
|
{
|
|
if ($type == "first") {
|
|
$template = SSViewer::fromString($config->ReviewBodyFirstReminder);
|
|
}
|
|
if ($type == "second") {
|
|
$template = SSViewer::fromString($config->ReviewBodySecondReminder);
|
|
}
|
|
if ($type == "due") {
|
|
$template = SSViewer::fromString($config->ReviewBody);
|
|
}
|
|
|
|
$value = $template->process(new ArrayData($variables));
|
|
|
|
// Cast to HTML
|
|
return DBField::create_field('HTMLText', (string) $value);
|
|
}
|
|
|
|
/**
|
|
* Gets list of safe template variables and their values which can be used
|
|
* in both the static and editable templates.
|
|
*
|
|
* {@see ContentReviewAdminHelp.ss}
|
|
*
|
|
* @param Member $recipient
|
|
* @param SiteConfig $config
|
|
* @param SS_List $pages
|
|
* @param string $type
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function getTemplateVariables($recipient, $config, $pages, $type)
|
|
{
|
|
if ($type == "first") {$subject = $config->ReviewSubjectFirstReminder;}
|
|
if ($type == "second") {$subject = $config->ReviewSubjectSecondReminder;}
|
|
if ($type == "due") {$subject = $config->ReviewSubject;}
|
|
|
|
return array(
|
|
'Subject' => $subject,
|
|
'PagesCount' => $pages->count(),
|
|
'FromEmail' => $config->ReviewFrom,
|
|
'ToFirstName' => $recipient->FirstName,
|
|
'ToSurname' => $recipient->Surname,
|
|
'ToEmail' => $recipient->Email,
|
|
'Type' => $type
|
|
);
|
|
}
|
|
}
|