cloud-8.x-2.0-beta1/src/Form/CloudServerTemplateRevisionDeleteForm.php
src/Form/CloudServerTemplateRevisionDeleteForm.php
<?php
namespace Drupal\cloud\Form;
use Drupal\Core\Database\Connection;
use Drupal\Core\Datetime\DateFormatterInterface;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Form\ConfirmFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Messenger\Messenger;
use Drupal\Core\Url;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Provides a form for deleting a cloud server template revision.
*
* @ingroup cloud_server_template
*/
class CloudServerTemplateRevisionDeleteForm extends ConfirmFormBase {
/**
* The cloud server template revision.
*
* @var \Drupal\cloud\Entity\CloudServerTemplateInterface
*/
protected $revision;
/**
* The cloud server template storage.
*
* @var \Drupal\Core\Entity\EntityStorageInterface
*/
protected $cloudServerTemplateStorage;
/**
* The database connection.
*
* @var \Drupal\Core\Database\Connection
*/
protected $connection;
/**
* The Messenger service.
*
* @var \Drupal\Core\Messenger\Messenger
*/
protected $messenger;
/**
* The mocked date formatter class.
*
* @var \Drupal\Core\Datetime\DateFormatter
*/
protected $dateFormatter;
/**
* Constructs a new CloudServerTemplateRevisionDeleteForm.
*
* @param \Drupal\Core\Entity\EntityStorageInterface $entity_storage
* The entity storage.
* @param \Drupal\Core\Database\Connection $connection
* The database connection.
* @param \Drupal\Core\Messenger\Messenger $messenger
* The messenger service.
* @param \Drupal\Core\Datetime\DateFormatterInterface $date_formatter
* The date formatter service.
*/
public function __construct(EntityStorageInterface $entity_storage,
Connection $connection,
Messenger $messenger,
DateFormatterInterface $date_formatter) {
$this->cloudServerTemplateStorage = $entity_storage;
$this->connection = $connection;
$this->messenger = $messenger;
$this->dateFormatter = $date_formatter;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
$entity_manager = $container->get('entity.manager');
return new static(
$entity_manager->getStorage('cloud_server_template'),
$container->get('database'),
$container->get('messenger'),
$container->get('date.formatter')
);
}
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'cloud_server_template_revision_delete_confirm';
}
/**
* {@inheritdoc}
*/
public function getQuestion() {
return t('Are you sure you want to delete the revision from %revision-date?', ['%revision-date' => \Drupal::service('date.formatter')->format($this->revision->getRevisionCreationTime())]);
}
/**
* {@inheritdoc}
*/
public function getCancelUrl() {
return new Url('entity.cloud_server_template.version_history', [
'cloud_context' => $this->revision->getCloudContext(),
'cloud_server_template' => $this->revision->id(),
]);
}
/**
* {@inheritdoc}
*/
public function getConfirmText() {
return t('Delete');
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state, $cloud_server_template_revision = NULL) {
$this->revision = $this->cloudServerTemplateStorage->loadRevision($cloud_server_template_revision);
$form = parent::buildForm($form, $form_state);
return $form;
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$this->cloudServerTemplateStorage->deleteRevision($this->revision->getRevisionId());
$this->logger('content')->notice('Cloud server template: deleted %title revision %revision.', ['%title' => $this->revision->label(), '%revision' => $this->revision->getRevisionId()]);
$this->messenger->addMessage(t('Revision from %revision-date of Cloud server template %title has been deleted.', ['%revision-date' => $this->dateFormatter->format($this->revision->getRevisionCreationTime()), '%title' => $this->revision->label()]));
$form_state->setRedirect(
'entity.cloud_server_template.canonical',
['cloud_server_template' => $this->revision->id(), 'cloud_context' => $this->revision->getCloudContext()]
);
if ($this->connection->query('SELECT COUNT(DISTINCT vid) FROM {cloud_server_template_field_revision} WHERE id = :id', [':id' => $this->revision->id()])->fetchField() > 1) {
$form_state->setRedirect(
'entity.cloud_server_template.version_history', [
'cloud_context' => $this->revision->getCloudContext(),
'cloud_server_template' => $this->revision->id(),
]
);
}
}
}
