filebrowser-8.x-2.x-dev/src/FilebrowserUninstallValidator.php
src/FilebrowserUninstallValidator.php
<?php
/**
* Prevents filebrowser module from being uninstalled whilst any filebrowser nodes exists.
*/
namespace Drupal\filebrowser;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Extension\ModuleUninstallValidatorInterface;
use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\Core\StringTranslation\TranslationInterface;
class FilebrowserUninstallValidator implements ModuleUninstallValidatorInterface {
use StringTranslationTrait;
/**
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
* @var \Drupal\Core\Entity\Query\QueryInterface
*/
protected $entityQuery;
/**
* @var \Drupal\Core\StringTranslation\TranslationInterface
*/
protected $stringTranslation;
/**
* Constructs a new FilebrowserUninstallValidator.
*
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager
* The entity query factory.
* @param \Drupal\Core\StringTranslation\TranslationInterface $stringTranslation
* The string translation service.
*/
public function __construct(EntityTypeManagerInterface $entityTypeManager, TranslationInterface $stringTranslation) {
$this->entityTypeManager = $entityTypeManager;
$this->entityQuery = $entityTypeManager->getStorage('node')->getQuery();
$this->stringTranslation = $stringTranslation;
}
/**
* {@inheritdoc}
*/
public function validate($module) {
$reasons = [];
if ($module == 'filebrowser') {
// The Filebrowser node type is provided by the Filebrowser module. Prevent uninstall
// if there are any nodes of that type.
if ($this->hasNodes()) {
$reasons[] = $this->t('To uninstall Filebrowser, delete all nodes of type %type', ['%type' => 'dir_listing']);
}
}
return $reasons;
}
/**
* Determines if there is any filebrowser nodes or not.
*
* @return bool
* TRUE if there are filebrowser nodes, FALSE otherwise.
*/
protected function hasNodes() {
$nodes = $this->entityQuery
->condition('type', 'dir_listing')
->accessCheck(FALSE)
->range(0, 1)
->execute();
return !empty($nodes);
}
}