livre-1.0.0-beta6/book/src/BookBreadcrumbBuilder.php
book/src/BookBreadcrumbBuilder.php
<?php
namespace Drupal\book;
use Drupal\Core\Breadcrumb\Breadcrumb;
use Drupal\Core\Breadcrumb\BreadcrumbBuilderInterface;
use Drupal\Core\Cache\CacheableMetadata;
use Drupal\Core\Entity\EntityRepositoryInterface;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Language\LanguageInterface;
use Drupal\Core\Language\LanguageManagerInterface;
use Drupal\Core\Link;
use Drupal\Core\Routing\RouteMatchInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\node\NodeInterface;
/**
* Provides a breadcrumb builder for nodes in a book.
*/
class BookBreadcrumbBuilder implements BreadcrumbBuilderInterface {
use StringTranslationTrait;
/**
* The node storage.
*
* @var \Drupal\Core\Entity\EntityStorageInterface
*/
protected EntityStorageInterface $nodeStorage;
/**
* Constructs the BookBreadcrumbBuilder.
*
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* The entity type manager service.
* @param \Drupal\Core\Session\AccountInterface $account
* The current user account.
* @param \Drupal\Core\Entity\EntityRepositoryInterface $entityRepository
* The entity repository service.
* @param \Drupal\Core\Language\LanguageManagerInterface $languageManager
* The language manager service.
*
* @throws \Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException
* @throws \Drupal\Component\Plugin\Exception\PluginNotFoundException
*/
public function __construct(
EntityTypeManagerInterface $entity_type_manager,
protected AccountInterface $account,
protected EntityRepositoryInterface $entityRepository,
protected LanguageManagerInterface $languageManager,
) {
$this->nodeStorage = $entity_type_manager->getStorage('node');
}
/**
* {@inheritdoc}
*/
public function applies(RouteMatchInterface $route_match, ?CacheableMetadata $cacheable_metadata = NULL): bool {
// @todo Remove null safe operator after Drupal 12.0.0 becomes the minimum
// requirement, see https://www.drupal.org/project/drupal/issues/3459277.
$cacheable_metadata?->addCacheContexts(['route.book_navigation']);
$node = $route_match->getParameter('node');
return $node instanceof NodeInterface && !empty($node->getBook());
}
/**
* {@inheritdoc}
*
* @throws \Drupal\Core\Entity\EntityMalformedException
*/
public function build(RouteMatchInterface $route_match): Breadcrumb {
$book_nids = [];
$breadcrumb = new Breadcrumb();
$links = [Link::createFromRoute($this->t('Home'), '<front>', [], [
'language' => $this->languageManager->getCurrentLanguage(LanguageInterface::TYPE_CONTENT),
]),
];
$breadcrumb->addCacheContexts(['languages:' . LanguageInterface::TYPE_CONTENT]);
$book = $route_match->getParameter('node')->getBook();
$depth = 1;
// We skip the current node.
while (!empty($book['p' . ($depth + 1)])) {
$book_nids[] = $book['p' . $depth];
$depth++;
}
/** @var \Drupal\node\NodeInterface[] $parent_books */
$parent_books = $this->nodeStorage->loadMultiple($book_nids);
$parent_books = array_map([$this->entityRepository, 'getTranslationFromContext'], $parent_books);
if (count($parent_books) > 0) {
$depth = 1;
while (!empty($book['p' . ($depth + 1)])) {
if (!empty($parent_books[$book['p' . $depth]]) && ($parent_book = $parent_books[$book['p' . $depth]])) {
$access = $parent_book->access('view', $this->account, TRUE);
$breadcrumb->addCacheableDependency($access);
if ($access->isAllowed()) {
$breadcrumb->addCacheableDependency($parent_book);
$links[] = $parent_book->toLink();
}
}
$depth++;
}
}
$breadcrumb->setLinks($links);
// @todo Remove after Drupal 12.0.0 becomes the minimum requirement,
// see https://www.drupal.org/project/drupal/issues/3459277.
$breadcrumb->addCacheContexts(['route.book_navigation']);
return $breadcrumb;
}
}
