View source
<?php
namespace Drupal\aggregator\Plugin\Block;
use Drupal\aggregator\FeedStorageInterface;
use Drupal\aggregator\ItemStorageInterface;
use Drupal\Core\Access\AccessResult;
use Drupal\Core\Block\BlockBase;
use Drupal\Core\Cache\Cache;
use Drupal\Core\Entity\Query\QueryInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\Core\Session\AccountInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
class AggregatorFeedBlock extends BlockBase implements ContainerFactoryPluginInterface {
protected $feedStorage;
protected $itemStorage;
protected $itemQuery;
public function __construct(array $configuration, $plugin_id, $plugin_definition, FeedStorageInterface $feed_storage, ItemStorageInterface $item_storage, QueryInterface $item_query) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->feedStorage = $feed_storage;
$this->itemStorage = $item_storage;
$this->itemQuery = $item_query;
}
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('entity.manager')
->getStorage('aggregator_feed'), $container
->get('entity.manager')
->getStorage('aggregator_item'), $container
->get('entity.query')
->get('aggregator_item'));
}
public function defaultConfiguration() {
return array(
'block_count' => 10,
'feed' => NULL,
);
}
protected function blockAccess(AccountInterface $account) {
return AccessResult::allowedIfHasPermission($account, 'access news feeds');
}
public function blockForm($form, FormStateInterface $form_state) {
$feeds = $this->feedStorage
->loadMultiple();
$options = array();
foreach ($feeds as $feed) {
$options[$feed
->id()] = $feed
->label();
}
$form['feed'] = array(
'#type' => 'select',
'#title' => $this
->t('Select the feed that should be displayed'),
'#default_value' => $this->configuration['feed'],
'#options' => $options,
);
$range = range(2, 20);
$form['block_count'] = array(
'#type' => 'select',
'#title' => $this
->t('Number of news items in block'),
'#default_value' => $this->configuration['block_count'],
'#options' => array_combine($range, $range),
);
return $form;
}
public function blockSubmit($form, FormStateInterface $form_state) {
$this->configuration['block_count'] = $form_state
->getValue('block_count');
$this->configuration['feed'] = $form_state
->getValue('feed');
}
public function build() {
if ($feed = $this->feedStorage
->load($this->configuration['feed'])) {
$result = $this->itemQuery
->condition('fid', $feed
->id())
->range(0, $this->configuration['block_count'])
->sort('timestamp', 'DESC')
->sort('iid', 'DESC')
->execute();
if ($result) {
$items = $this->itemStorage
->loadMultiple($result);
$build['list'] = [
'#theme' => 'item_list',
'#items' => [],
];
foreach ($items as $item) {
$build['list']['#items'][$item
->id()] = [
'#type' => 'link',
'#url' => $item
->urlInfo(),
'#title' => $item
->label(),
];
}
$build['more_link'] = [
'#type' => 'more_link',
'#url' => $feed
->urlInfo(),
'#attributes' => [
'title' => $this
->t("View this feed's recent news."),
],
];
return $build;
}
}
}
public function getCacheTags() {
$cache_tags = parent::getCacheTags();
$feed = $this->feedStorage
->load($this->configuration['feed']);
return Cache::mergeTags($cache_tags, $feed
->getCacheTags());
}
}