HeartbeatBlock.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <?php
  2. namespace Drupal\heartbeat\Plugin\Block;
  3. use Drupal\Core\Block\BlockBase;
  4. //use Drupal\Core\Asset\AssetResolver;
  5. use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
  6. use Symfony\Component\DependencyInjection\ContainerInterface;
  7. use Drupal\Core\Database\Database;
  8. use Drupal\heartbeat\HeartbeatTypeServices;
  9. use Drupal\heartbeat\HeartbeatStreamServices;
  10. use Drupal\heartbeat\HeartbeatService;
  11. //* deriver = "Drupal\heartbeat\Plugin\Derivative\HeartbeatBlockDeriver
  12. /**
  13. * Provides a 'HeartbeatBlock' block.
  14. *
  15. * @Block(
  16. * id = "heartbeat_block",
  17. * admin_label = @Translation("Heartbeat block"),
  18. * )
  19. */
  20. class HeartbeatBlock extends BlockBase implements ContainerFactoryPluginInterface {
  21. /**
  22. * Drupal\heartbeat\HeartbeatTypeServices definition.
  23. *
  24. * @var \Drupal\heartbeat\HeartbeatTypeServices
  25. */
  26. protected $heartbeatTypeServices;
  27. /**
  28. * Drupal\heartbeat\HeartbeatStreamServices definition.
  29. *
  30. * @var \Drupal\heartbeat\HeartbeatStreamServices
  31. */
  32. protected $heartbeatStreamServices;
  33. /**
  34. * Drupal\heartbeat\HeartbeatService definition.
  35. *
  36. * @var \Drupal\heartbeat\HeartbeatService
  37. */
  38. protected $heartbeatService;
  39. /**
  40. * Construct.
  41. *
  42. * @param array $configuration
  43. * A configuration array containing information about the plugin instance.
  44. * @param string $plugin_id
  45. * The plugin_id for the plugin instance.
  46. * @param string $plugin_definition
  47. * The plugin implementation definition.
  48. */
  49. public function __construct(
  50. array $configuration,
  51. $plugin_id,
  52. $plugin_definition,
  53. HeartbeatTypeServices $heartbeat_heartbeattype,
  54. HeartbeatStreamServices $heartbeatstream,
  55. HeartbeatService $heartbeat
  56. ) {
  57. parent::__construct($configuration, $plugin_id, $plugin_definition);
  58. $this->heartbeatTypeServices = $heartbeat_heartbeattype;
  59. $this->heartbeatStreamServices = $heartbeatstream;
  60. $this->heartbeatService = $heartbeat;
  61. }
  62. /**
  63. * {@inheritdoc}
  64. */
  65. public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
  66. return new static(
  67. $configuration,
  68. $plugin_id,
  69. $plugin_definition,
  70. $container->get('heartbeat.heartbeattype'),
  71. $container->get('heartbeatstream'),
  72. $container->get('heartbeat')
  73. );
  74. }
  75. /**
  76. * {@inheritdoc}
  77. * @throws \Drupal\Core\Database\InvalidQueryException
  78. */
  79. public function build() {
  80. $myConfig = \Drupal::service('config.factory')->getEditable('heartbeat_feed.settings');
  81. $feed = $myConfig->get('message');
  82. $uids = null;
  83. $messages = array();
  84. $query = Database::getConnection()->select('heartbeat_friendship', 'hf')
  85. ->fields('hf',['uid', 'uid_target']);
  86. $conditionOr = $query->orConditionGroup()
  87. ->condition('hf.uid', \Drupal::currentUser()->id())
  88. ->condition('hf.uid_target', \Drupal::currentUser()->id());
  89. $results = $query->condition($conditionOr)->execute();
  90. if ($result = $results->fetchAll()) {
  91. $uids = array();
  92. foreach ($result as $uid) {
  93. $uids[] = $uid->uid_target;
  94. $uids[] = $uid->uid;
  95. }
  96. }
  97. if ($feed !== null) {
  98. $uids = count($uids) > 1 ? array_unique($uids) : $uids;
  99. if (!empty($uids)) {
  100. foreach ($this->heartbeatStreamServices->createStreamForUidsByType($uids, $feed) as $heartbeat) {
  101. $messages[] = $heartbeat->getMessage()->getValue()[0]['value'];
  102. }
  103. } else {
  104. foreach ($this->heartbeatStreamServices->createStreamByType($feed) as $heartbeat) {
  105. $messages[] = $heartbeat->getMessage()->getValue()[0]['value'];
  106. }
  107. }
  108. } else {
  109. // foreach ($this->heartbeatStreamServices->createStreamForUids($uids) as $heartbeat) {
  110. foreach ($this->heartbeatStreamServices->loadAllStreams() as $heartbeat) {
  111. $messages[] = $heartbeat->getMessage()->getValue()[0]['value'];
  112. }
  113. }
  114. return [
  115. '#theme' => 'heartbeat_stream',
  116. '#messages' => $messages,
  117. '#attached' => array(
  118. 'library' => 'heartbeat/heartbeat',
  119. 'drupalSettings' => ['activeFeed' => 'jigga']
  120. ),
  121. '#cache' => array('max-age' => 0)
  122. ];
  123. }
  124. }