Browse Source

Heartbeat Class providing a static method for parsing hashtags and restructuring messages

logicp 7 years ago
parent
commit
6a7293dc0c
1 changed files with 45 additions and 0 deletions
  1. 45 0
      src/Entity/Heartbeat.php

+ 45 - 0
src/Entity/Heartbeat.php

@@ -11,6 +11,7 @@ use Drupal\Core\Utility\Token;
 use Drupal\Core\Url;
 use Drupal\Core\Link;
 use Drupal\Core\Database\Database;
+use Drupal\taxonomy\Entity\Term;
 use Drupal\user\UserInterface;
 
 /**
@@ -426,11 +427,18 @@ class Heartbeat extends RevisionableContentEntityBase implements HeartbeatInterf
    */
   public static function buildMessage(Token $tokenService, $preparsedMessage, $entities = NULL, $entityType, $mediaData = NULL) {
 
+    $arbitrarious = 'nothing at all';
+    $naul = 'nullll';
+
+
     switch (true) {
 
       case $entityType === 'node':
 
         $parsedMessage = $tokenService->replace($preparsedMessage . '<a class="heartbeat-node" href="/node/[node:nid]">', $entities);
+        if (strpos($parsedMessage, '#')) {
+          self::parseHashtags($parsedMessage);
+        }
         /** @noinspection NestedTernaryOperatorInspection */
         $message = $parsedMessage;
         $message .= $mediaData ? self::buildMediaMarkup($mediaData) : '';
@@ -543,6 +551,43 @@ class Heartbeat extends RevisionableContentEntityBase implements HeartbeatInterf
   }
 
 
+  public static function parseHashtags(&$message) {
+    $lastRow = false;
+    $tagsArray = explode('#', $message);
+    $i = 0;
+    $num = count($tagsArray);
+    foreach ($tagsArray as $hashtag) {
+      if ($i === $num - 1) {
+        $lastTagArray = explode(' ', $hashtag);
+        if (strlen($lastTagArray[1]) > 1) {
+          $hashtag = trim($lastTagArray[0]);
+          $lastRow = true;
+          $remainder = '';
+          $lastRowArgCount = count($lastTagArray);
+
+          for ($x = 1; $x < $lastRowArgCount; $x++) {
+            $remainder .= ' ' . $lastTagArray[$x];
+          }
+        }
+
+      }
+      $tid = \Drupal::entityQuery("taxonomy_term")->condition("name", trim($hashtag))->execute();
+
+      if (count($tid) > 0) {
+        $term = Term::load(array_values($tid)[0]);
+        $link = Link::fromTextAndUrl('#' . $hashtag, $term->toUrl());
+        $tagsArray[$i] = !$lastRow ? $link->toString() : $link->toString() . $remainder;
+      }
+      $i++;
+
+    }
+    $message = '';
+    foreach ($tagsArray as $replacements) {
+      $message .= $replacements;
+    }
+  }
+
+
   /**
    * Helper method to identify the number of times a word is repeated in a phrase
    *