|
@@ -0,0 +1,253 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+namespace Drupal\heartbeat\Plugin\Block;
|
|
|
+
|
|
|
+use Drupal\comment\Entity\Comment;
|
|
|
+use Drupal\Core\Block\BlockBase;
|
|
|
+use Drupal\Core\Entity\EntityTypeManager;
|
|
|
+use Drupal\Core\Form\FormBuilder;
|
|
|
+use Drupal\flag\FlagService;
|
|
|
+use Drupal\User\Entity\User;
|
|
|
+use Drupal\Flag\Entity\Flag;
|
|
|
+use Drupal\Core\Datetime\DateFormatter;
|
|
|
+use Drupal\file\Entity\File;
|
|
|
+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;
|
|
|
+
|
|
|
+
|
|
|
+/**
|
|
|
+ * Provides a 'HeartbeatBlock' block.
|
|
|
+ *
|
|
|
+ * @Block(
|
|
|
+ * id = "heartbeat_more_block",
|
|
|
+ * admin_label = @Translation("Heartbeat More block"),
|
|
|
+ * )
|
|
|
+ */
|
|
|
+class HeartbeatMoreBlock 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;
|
|
|
+
|
|
|
+ protected $entityTypeManager;
|
|
|
+
|
|
|
+ protected $dateFormatter;
|
|
|
+
|
|
|
+ protected $flagService;
|
|
|
+
|
|
|
+ protected $formBuilder;
|
|
|
+ /**
|
|
|
+ * 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, EntityTypeManager $entity_type_manager, DateFormatter $date_formatter, FlagService $flag_service, FormBuilder $form_builder
|
|
|
+ ) {
|
|
|
+ parent::__construct($configuration, $plugin_id, $plugin_definition);
|
|
|
+ $this->heartbeatTypeServices = $heartbeat_heartbeattype;
|
|
|
+ $this->heartbeatStreamServices = $heartbeatstream;
|
|
|
+ $this->heartbeatService = $heartbeat;
|
|
|
+ $this->entityTypeManager = $entity_type_manager;
|
|
|
+ $this->dateFormatter = $date_formatter;
|
|
|
+ $this->flagService = $flag_service;
|
|
|
+ $this->formBuilder = $form_builder;
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * {@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'),
|
|
|
+ $container->get('entity_type.manager'),
|
|
|
+ $container->get('date.formatter'),
|
|
|
+ $container->get('flag'),
|
|
|
+ $container->get('form_builder')
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * {@inheritdoc}
|
|
|
+ * @throws \Drupal\Core\Database\InvalidQueryException
|
|
|
+ */
|
|
|
+ public function build() {
|
|
|
+
|
|
|
+ $feedConfig = \Drupal::config('heartbeat_feed.settings');
|
|
|
+ $myConfig = \Drupal::config('heartbeat_more.settings');
|
|
|
+ $friendData = \Drupal::config('heartbeat_friendship.settings')->get('data');
|
|
|
+
|
|
|
+ $hid = $myConfig->get('hid');
|
|
|
+ $feed = $feedConfig->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->getOlderStreamForUidsByType($uids, $feed, $hid) as $heartbeat) {
|
|
|
+ $this->renderMessage($messages, $heartbeat);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (count($messages) > 0) {
|
|
|
+ return [
|
|
|
+ '#theme' => 'heartbeat_stream',
|
|
|
+ '#messages' => $messages,
|
|
|
+ '#attached' => array(
|
|
|
+ 'library' => 'heartbeat/heartbeat',
|
|
|
+ 'drupalSettings' => [
|
|
|
+ 'activeFeed' => 'jigga',
|
|
|
+ 'friendData' => $friendData,
|
|
|
+ ]
|
|
|
+ ),
|
|
|
+ '#cache' => array('max-age' => 0)
|
|
|
+ ];
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return [
|
|
|
+ '#type' => 'markup',
|
|
|
+ '#markup' => 'End of feed',
|
|
|
+ ];
|
|
|
+ }
|
|
|
+
|
|
|
+ private function renderMessage(array &$messages, $heartbeat) {
|
|
|
+
|
|
|
+ $timeago = $this->dateFormatter->formatInterval(REQUEST_TIME - $heartbeat->getCreatedTime());
|
|
|
+ $user = $heartbeat->getOwner();
|
|
|
+// $rendered = $this->entityTypeManager->getViewBuilder('user')->view($user, 'full');
|
|
|
+ $userView = user_view($user, 'compact');
|
|
|
+// $flag = $this->flagService->getFlagById("friendship");
|
|
|
+// $flagLink = $flag->getLinkTypePlugin()->getAsLink($flag, $user);
|
|
|
+// $flagUrl = $flagLink->getUrl()->toString();
|
|
|
+// $flagText = $flagLink->getText();
|
|
|
+ $userPic = $user->get('user_picture')->getValue();
|
|
|
+ if (!empty($userPic)) {
|
|
|
+ $profilePic = $user->get('user_picture')->getValue()[0]['target_id'];
|
|
|
+ }
|
|
|
+
|
|
|
+ if (NULL === $profilePic) {
|
|
|
+ $profilePic = 86;
|
|
|
+ }
|
|
|
+
|
|
|
+ $pic = File::load($profilePic);
|
|
|
+
|
|
|
+ if ($pic !== NULL) {
|
|
|
+ $style = $this->entityTypeManager->getStorage('image_style')
|
|
|
+ ->load('thumbnail');
|
|
|
+ $rendered = $style->buildUrl($pic->getFileUri());
|
|
|
+ }
|
|
|
+
|
|
|
+ $cids = \Drupal::entityQuery('comment')
|
|
|
+ ->condition('entity_id', $heartbeat->id())
|
|
|
+ ->condition('entity_type', 'heartbeat')
|
|
|
+ ->sort('cid', 'ASC')
|
|
|
+ ->execute();
|
|
|
+
|
|
|
+ $comments = [];
|
|
|
+
|
|
|
+ foreach($cids as $cid) {
|
|
|
+
|
|
|
+ $comment = Comment::load($cid);
|
|
|
+
|
|
|
+ $commentOwner = user_view($comment->getOwner(), 'comment');
|
|
|
+ $comments[] = [
|
|
|
+ 'id' => $cid,
|
|
|
+ 'body' => $comment->get('comment_body')->value,
|
|
|
+ 'username' => $comment->getAuthorName(),
|
|
|
+ 'owner' => $commentOwner,
|
|
|
+ 'timeAgo' => $this->dateFormatter->formatInterval(REQUEST_TIME - $comment->getCreatedTime())
|
|
|
+ ];
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+// $heartbeatCommentBlock = \Drupal\block\Entity\Block::load('heartbeatcommentblock');
|
|
|
+// $commentForm = $this->entityTypeManager->getViewBuilder('block')
|
|
|
+// ->view($heartbeatCommentBlock);
|
|
|
+
|
|
|
+ $form = \Drupal::service('form_builder')->getForm('\Drupal\heartbeat\Form\HeartbeatCommentForm', $heartbeat);
|
|
|
+
|
|
|
+ $likeFlag = $this->flagService->getFlagById('heartbeat_like');
|
|
|
+ $unlikeFlag = $this->flagService->getFlagById('jihad_flag');
|
|
|
+
|
|
|
+
|
|
|
+ $unlikeKey = 'flag_' . $unlikeFlag->id();
|
|
|
+ $unlikeData = [
|
|
|
+ '#lazy_builder' => ['flag.link_builder:build', [
|
|
|
+ $heartbeat->getEntityTypeId(),
|
|
|
+ $heartbeat->id(),
|
|
|
+ $unlikeFlag->id(),
|
|
|
+ ]],
|
|
|
+ '#create_placeholder' => TRUE,
|
|
|
+ ];
|
|
|
+
|
|
|
+ $likeKey = 'flag_' . $likeFlag->id();
|
|
|
+ $likeData = [
|
|
|
+ '#lazy_builder' => ['flag.link_builder:build', [
|
|
|
+ $heartbeat->getEntityTypeId(),
|
|
|
+ $heartbeat->id(),
|
|
|
+ $likeFlag->id(),
|
|
|
+ ]],
|
|
|
+ '#create_placeholder' => TRUE,
|
|
|
+ ];
|
|
|
+
|
|
|
+ $messages[] = array('heartbeat' => $heartbeat->getMessage()->getValue()[0]['value'],
|
|
|
+ 'userPicture' => $rendered,
|
|
|
+ 'userId' => $user->id(),
|
|
|
+ 'timeAgo' => $timeago,
|
|
|
+ 'id' => $heartbeat->id(),
|
|
|
+ 'user' => $userView,
|
|
|
+ 'commentForm' => $form,
|
|
|
+ 'comments' => $comments,
|
|
|
+ 'likeFlag' => [$likeKey => $likeData],
|
|
|
+ 'unlikeFlag' => [$unlikeKey => $unlikeData]
|
|
|
+ );
|
|
|
+ }
|
|
|
+}
|