Bläddra i källkod

Stream tracks path
tracking Flagging events in EventSubscriber

logicp 7 år sedan
förälder
incheckning
858e58b686

+ 1 - 0
config/install/heartbeat.heartbeat_type.user_create_node.yml

@@ -7,6 +7,7 @@ label: 'User Create Node'
 hid: null
 message_id: null
 description: 'Records the event of a user creating a node'
+mainentity: 'node'
 message: '!user has created a node: !nodetitle'
 message_concat: ''
 perms: 0

+ 3 - 0
config/schema/heartbeat.schema.yml

@@ -19,6 +19,9 @@ heartbeat.heartbeat_type.*:
     description:
       type: string
       label: 'description'
+    mainentity:
+      type: string
+      label: 'Main Entity'
     message:
       type: string
       label: 'message'

+ 5 - 5
src/Entity/HeartbeatType.php

@@ -58,7 +58,7 @@ class HeartbeatType extends ConfigEntityBundleBase implements HeartbeatTypeInter
   protected $variables;
   protected $attachments;
   protected $groupType;
-  protected $mainEntity;
+  protected $mainentity;
 
 
   protected $entityManager;
@@ -328,11 +328,11 @@ class HeartbeatType extends ConfigEntityBundleBase implements HeartbeatTypeInter
   /**
    * Sets the main Entity Type of the Heartbeat Type
    *
-   * @param string $entityType
+   * @param string $mainentity
    *  Describing entity type used in this Heartbeat Type
    */
-  public function setMainEntity($mainEntity) {
-    $this->set('mainEntity', $mainEntity);
+  public function setMainEntity($mainentity) {
+    $this->set('mainentity', $mainentity);
   }
 
   /**
@@ -340,7 +340,7 @@ class HeartbeatType extends ConfigEntityBundleBase implements HeartbeatTypeInter
    *
    */
   public function getMainEntity() {
-    return $this->get('mainEntity');
+    return $this->get('mainentity');
   }
 
 

+ 3 - 3
src/Entity/HeartbeatTypeInterface.php

@@ -52,11 +52,11 @@ interface HeartbeatTypeInterface extends ConfigEntityInterface {
   /**
    * Sets the main Entity Type of the Heartbeat Type
    *
-   * @param string $entityType
+   * @param string $mainentity
    *  Describing entity type used in this Heartbeat Type
    */
 
-  public function setMainEntity($mainEntity);
+  public function setMainEntity($mainentity);
 
   /**
    * Gets the main Entity Type of the Heartbeat Type
@@ -151,7 +151,7 @@ interface HeartbeatTypeInterface extends ConfigEntityInterface {
   /**
    * Sets the arguments for the concatenated message
    *
-   * @param string $concatArgs
+   * @param string $arguments
    *
    */
 

+ 47 - 2
src/EventSubscriber/HeartbeatEventSubscriber.php

@@ -68,9 +68,54 @@ class HeartbeatEventSubscriber implements EventSubscriberInterface {
    * @param GetResponseEvent $event
    */
   public function flag_entity_flagged(Event $event) {
-    $stophere = null;
-    $flagging = $event->getFlagging();
+//    $stophere = null;
+//    $flagging = $event->getFlagging();
+//    if ($flagging->getFlagId() == 'friendship') {
+//      $entity = $this->flagService->getFlagById($flagging->getFlagId());
+//
+//      $user = $flagging->getOwner();
+//
+//
+//      if ($entity->id() && $user->isAuthenticated()) {
+//
+//        $heartbeatTypeService = \Drupal::service('heartbeat.heartbeattype');
+//        $tokenService = \Drupal::service('token');
+//
+//        foreach ($heartbeatTypeService->getTypes() as $type) {
+//
+//          $heartbeatTypeEntity = $heartbeatTypeService->load($type);
+//          $arguments = json_decode($heartbeatTypeEntity->getArguments());
+//
+//          foreach ($arguments as $key => $argument) {
+//            $variables[$key] = $argument;
+//          }
+//
+//          $preparsedMessageString = strtr($heartbeatTypeEntity->getMessage(), $variables);
+//
+//          $entities = array(
+//            'node' => $entity,
+//            'user' => $user,
+//          );
+//
+//          $heartbeatMessage = Heartbeat::buildMessage($tokenService, $preparsedMessageString, $entities, $media);
+//
+//          //      $translatedMessage = t($messageTemplate);
+//
+//          $heartbeatActivity = Heartbeat::create([
+//            'type' => $heartbeatTypeEntity->id(),
+//            'uid' => $user->id(),
+//            'nid' => $entity->id(),
+//            'name' => 'Dev Test',
+//          ]);
+//
+//          $heartbeatActivity->setMessage($heartbeatMessage);
+//          $heartbeatActivity->save();
+//
+//        }
+//      }
+//    }
     drupal_set_message('Event flag.entity_flagged thrown by Subscriber in module heartbeat.', 'status', TRUE);
+    return $event;
   }
   /**
    * This method is called whenever the flag.entity_unflagged event is

+ 1 - 1
src/Form/HeartbeatTypeForm.php

@@ -304,7 +304,7 @@ class HeartbeatTypeForm extends EntityForm {
     $heartbeat_type->set('perms', $form_state->getValue('perms'));
     $heartbeat_type->set('variables', $form_state->getValue('variables'));
     $heartbeat_type->set('arguments', json_encode($form_state->get('messageMap')));
-
+    $heartbeat_type->set('mainentity', $this->entityTypes[$form_state->getValue('entity_type')]);
     $status = $heartbeat_type->save();
 
     switch ($status) {