View source  
  <?php
namespace Drupal\media_revisions_ui\Form;
use Drupal\Component\Datetime\TimeInterface;
use Drupal\Core\Datetime\DateFormatterInterface;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Form\ConfirmFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Url;
use Drupal\media\MediaInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
class MediaRevisionRevertForm extends ConfirmFormBase {
  
  protected $revision;
  
  protected $mediaStorage;
  
  protected $dateFormatter;
  
  protected $time;
  
  public function __construct(EntityStorageInterface $media_storage, DateFormatterInterface $date_formatter, TimeInterface $time) {
    $this->mediaStorage = $media_storage;
    $this->dateFormatter = $date_formatter;
    $this->time = $time;
  }
  
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('entity_type.manager')
      ->getStorage('media'), $container
      ->get('date.formatter'), $container
      ->get('datetime.time'));
  }
  
  public function getFormId() {
    return 'media_revision_revert_confirm';
  }
  
  public function getQuestion() {
    return $this
      ->t('Are you sure you want to revert to the revision from %revision-date?', [
      '%revision-date' => $this->dateFormatter
        ->format($this->revision
        ->getRevisionCreationTime()),
    ]);
  }
  
  public function getCancelUrl() {
    return new Url('entity.media.version_history', [
      'media' => $this->revision
        ->id(),
    ]);
  }
  
  public function getConfirmText() {
    return $this
      ->t('Revert');
  }
  
  public function getDescription() {
    return '';
  }
  
  public function buildForm(array $form, FormStateInterface $form_state, $media_revision = NULL) {
    $this->revision = $this->mediaStorage
      ->loadRevision($media_revision);
    $form = parent::buildForm($form, $form_state);
    return $form;
  }
  
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $originalRevisionTime = $this->revision
      ->getRevisionCreationTime();
    $this->revision = $this
      ->prepareRevertedRevision($this->revision, $form_state);
    $this->revision
      ->setRevisionLogMessage($this
      ->t('Copy of the revision from %date.', [
      '%date' => $this->dateFormatter
        ->format($originalRevisionTime),
    ]));
    $this->revision
      ->setRevisionUserId($this
      ->currentUser()
      ->id());
    $this->revision
      ->setRevisionCreationTime($this->time
      ->getRequestTime());
    $this->revision
      ->setChangedTime($this->time
      ->getRequestTime());
    $this->revision
      ->save();
    $this
      ->logger('content')
      ->notice('@type: reverted %title revision %revision.', [
      '@type' => $this->revision
        ->getEntityType()
        ->getLabel(),
      '%title' => $this->revision
        ->label(),
      '%revision' => $this->revision
        ->getRevisionId(),
    ]);
    $this
      ->messenger()
      ->addStatus($this
      ->t('@type %title has been reverted to the revision from %revision-date.', [
      '@type' => $this->revision
        ->getEntityType()
        ->getLabel(),
      '%title' => $this->revision
        ->label(),
      '%revision-date' => $this->dateFormatter
        ->format($originalRevisionTime),
    ]));
    $form_state
      ->setRedirect('entity.media.version_history', [
      'media' => $this->revision
        ->id(),
    ]);
  }
  
  protected function prepareRevertedRevision(MediaInterface $revision, FormStateInterface $form_state) {
    $revision
      ->setNewRevision();
    $revision
      ->isDefaultRevision(TRUE);
    return $revision;
  }
}