<?php
/**
* @file classes/components/form/publication/PublishForm.php
*
* Copyright (c) 2014-2021 Simon Fraser University
* Copyright (c) 2000-2021 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @class PublishForm
*
* @ingroup classes_controllers_form
*
* @brief A preset form for confirming a publication's issue before publishing.
* It may also be used for scheduling a publication in an issue for later
* publication.
*/
namespace APP\components\forms\publication;
use APP\facades\Repo;
use PKP\components\forms\FieldHTML;
use PKP\components\forms\FormComponent;
use PKP\core\Core;
use PKP\core\PKPString;
define('FORM_PUBLISH', 'publish');
class PublishForm extends FormComponent
{
/** @copydoc FormComponent::$id */
public $id = FORM_PUBLISH;
/** @copydoc FormComponent::$method */
public $method = 'PUT';
/** @var \APP\publication\Publication */
public $publication;
/** @var \APP\journal\Journal */
public $submissionContext;
/**
* Constructor
*
* @param string $action URL to submit the form to
* @param \APP\publication\Publication $publication The publication to change settings for
* @param \APP\journal\Journal $submissionContext journal or press
* @param array $requirementErrors A list of pre-publication requirements that are not met.
*/
public function __construct($action, $publication, $submissionContext, $requirementErrors)
{
$this->action = $action;
$this->errors = $requirementErrors;
$this->publication = $publication;
$this->submissionContext = $submissionContext;
// Set separate messages and buttons if publication requirements have passed
if (empty($requirementErrors)) {
$msg = __('publication.publish.confirmation');
$submitLabel = __('publication.publish');
if ($publication->getData('issueId')) {
$issue = Repo::issue()->get($publication->getData('issueId'));
if ($issue) {
if ($issue->getData('published')) {
$msg = __('publication.publish.confirmation.backIssue', ['issue' => htmlspecialchars($issue->getIssueIdentification())]);
} else {
$msg = __('publication.publish.confirmation.futureIssue', ['issue' => htmlspecialchars($issue->getIssueIdentification())]);
$submitLabel = __('editor.submission.schedulePublication');
}
}
}
// If a publication date has already been set and the date has passed this will
// be published immediately regardless of the issue assignment
if ($publication->getData('datePublished') && $publication->getData('datePublished') <= Core::getCurrentDate()) {
$timestamp = strtotime($publication->getData('datePublished'));
$dateFormatLong = PKPString::convertStrftimeFormat($submissionContext->getLocalizedDateFormatLong());
$msg = __(
'publication.publish.confirmation.datePublishedInPast',
[
'datePublished' => date($dateFormatLong, $timestamp),
]
);
$submitLabel = __('publication.publish');
}
$this->addPage([
'id' => 'default',
'submitButton' => [
'label' => $submitLabel,
],
]);
} else {
$msg = '<p>' . __('publication.publish.requirements') . '</p>';
$msg .= '<ul>';
foreach ($requirementErrors as $error) {
$msg .= '<li>' . $error . '</li>';
}
$msg .= '</ul>';
$this->addPage([
'id' => 'default',
]);
}
$this->addGroup([
'id' => 'default',
'pageId' => 'default',
])
->addField(new FieldHTML('validation', [
'description' => $msg,
'groupId' => 'default',
]));
}
}
|