123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- <?php
- namespace Drupal\heartbeat\Plugin\Block;
- use Drupal\Core\Block\BlockBase;
- //use Drupal\Core\Asset\AssetResolver;
- use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
- use Symfony\Component\DependencyInjection\ContainerInterface;
- use Drupal\Core\Database\Database;
- use Drupal\heartbeat\HeartbeatTypeServices;
- use Drupal\heartbeat\HeartbeatStreamServices;
- use Drupal\heartbeat\HeartbeatService;
- //* deriver = "Drupal\heartbeat\Plugin\Derivative\HeartbeatBlockDeriver
- /**
- * Provides a 'HeartbeatBlock' block.
- *
- * @Block(
- * id = "heartbeat_block",
- * admin_label = @Translation("Heartbeat block"),
- * )
- */
- class HeartbeatBlock extends BlockBase implements ContainerFactoryPluginInterface {
- /**
- * Drupal\heartbeat\HeartbeatTypeServices definition.
- *
- * @var \Drupal\heartbeat\HeartbeatTypeServices
- */
- protected $heartbeatTypeServices;
- /**
- * Drupal\heartbeat\HeartbeatStreamServices definition.
- *
- * @var \Drupal\heartbeat\HeartbeatStreamServices
- */
- protected $heartbeatStreamServices;
- /**
- * Drupal\heartbeat\HeartbeatService definition.
- *
- * @var \Drupal\heartbeat\HeartbeatService
- */
- protected $heartbeatService;
- /**
- * Construct.
- *
- * @param array $configuration
- * A configuration array containing information about the plugin instance.
- * @param string $plugin_id
- * The plugin_id for the plugin instance.
- * @param string $plugin_definition
- * The plugin implementation definition.
- */
- public function __construct(
- array $configuration,
- $plugin_id,
- $plugin_definition,
- HeartbeatTypeServices $heartbeat_heartbeattype,
- HeartbeatStreamServices $heartbeatstream,
- HeartbeatService $heartbeat
- ) {
- parent::__construct($configuration, $plugin_id, $plugin_definition);
- $this->heartbeatTypeServices = $heartbeat_heartbeattype;
- $this->heartbeatStreamServices = $heartbeatstream;
- $this->heartbeatService = $heartbeat;
- }
- /**
- * {@inheritdoc}
- */
- public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
- return new static(
- $configuration,
- $plugin_id,
- $plugin_definition,
- $container->get('heartbeat.heartbeattype'),
- $container->get('heartbeatstream'),
- $container->get('heartbeat')
- );
- }
- /**
- * {@inheritdoc}
- * @throws \Drupal\Core\Database\InvalidQueryException
- */
- public function build() {
- $myConfig = \Drupal::service('config.factory')->getEditable('heartbeat_feed.settings');
- $feed = $myConfig->get('message');
- $uids = null;
- $messages = array();
- $query = Database::getConnection()->select('heartbeat_friendship', 'hf')
- ->fields('hf',['uid', 'uid_target']);
- $conditionOr = $query->orConditionGroup()
- ->condition('hf.uid', \Drupal::currentUser()->id())
- ->condition('hf.uid_target', \Drupal::currentUser()->id());
- $results = $query->condition($conditionOr)->execute();
- if ($result = $results->fetchAll()) {
- $uids = array();
- foreach ($result as $uid) {
- $uids[] = $uid->uid_target;
- $uids[] = $uid->uid;
- }
- }
- if ($feed !== null) {
- $uids = count($uids) > 1 ? array_unique($uids) : $uids;
- if (!empty($uids)) {
- foreach ($this->heartbeatStreamServices->createStreamForUidsByType($uids, $feed) as $heartbeat) {
- $messages[] = $heartbeat->getMessage()->getValue()[0]['value'];
- }
- } else {
- foreach ($this->heartbeatStreamServices->createStreamByType($feed) as $heartbeat) {
- $messages[] = $heartbeat->getMessage()->getValue()[0]['value'];
- }
- }
- } else {
- // foreach ($this->heartbeatStreamServices->createStreamForUids($uids) as $heartbeat) {
- foreach ($this->heartbeatStreamServices->loadAllStreams() as $heartbeat) {
- $messages[] = $heartbeat->getMessage()->getValue()[0]['value'];
- }
- }
- return [
- '#theme' => 'heartbeat_stream',
- '#messages' => $messages,
- '#attached' => array(
- 'library' => 'heartbeat/heartbeat',
- 'drupalSettings' => ['activeFeed' => 'jigga']
- ),
- '#cache' => array('max-age' => 0)
- ];
- }
- }
|