Ver código fonte

youtube media is handled
weight field added to HeartbeatStream and HeartbeatType
bug fixes

logicp 7 anos atrás
pai
commit
a3860b49f4

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

@@ -10,9 +10,6 @@ heartbeat.heartbeat_type.*:
       label: 'Label'
     uuid:
       type: string
-    hid:
-      type: serial
-      label: 'hid'
     message_id:
       type: string
       label: 'message_id'
@@ -28,6 +25,9 @@ heartbeat.heartbeat_type.*:
     message:
       type: string
       label: 'message'
+    weight:
+      type: integer
+      label: 'Weight'
 #    message_concat:
 #      type: string
 #      label: 'message_concat'

+ 29 - 0
heartbeat.module

@@ -12,6 +12,7 @@ use Drupal\Core\Form\FormState;
 use Drupal\node\NodeInterface;
 use Drupal\Core\Session\AccountInterface;
 use Drupal\Core\Entity;
+use Drupal\Core\Database\Database;
 use Drupal\heartbeat\Entity\FILE_FIELD;
 use Drupal\heartbeat\Entity\Heartbeat;
 use GuzzleHttp\Exception\RequestException;
@@ -322,6 +323,34 @@ function updateFeeds() {
  */
 function heartbeat_ajax_render_alter(array &$data) {
 
+}
+
+/**
+ * Implements hook_cron().
+ */
+function heartbeat_cron() {
+  //Iterate over the Heartbeat Types and ensure that the weight of bundle-specific types are lower than that of their
+  //parent type. This will allow us to ensure Bundle specific types end up being published as opposed to
+  //Types which represent all content types
+  $heartbeatTypes = \Drupal::service('entity.query')->get('heartbeat_type')->condition('mainentity', 'node')->execute();
+
+  if (count($heartbeatTypes) > 1) {
+    foreach($heartbeatTypes as $heartbeatType) {
+
+      $entity = \Drupal::service('entity_type.manager')->getStorage('heartbeat_type')->load($heartbeatType);
+
+      if ($entity->getBundle() === null) {
+        $entity->setWeight(99);
+        $entity->save();
+      } else {
+        $entity->setWeight(0);
+        $entity->save();
+      }
+
+    }
+  }
+
+
 }
 
 /**

+ 8 - 3
src/Entity/Heartbeat.php

@@ -466,9 +466,14 @@ class Heartbeat extends RevisionableContentEntityBase implements HeartbeatInterf
   }
 
   private static function mediaTag($type, $filePath) {
-    //TODO put this into new method
-    if ($type == 'image') { $type = 'img';}
-    return '<'. $type . ' src="' . str_replace('public://', '/sites/default/files/', $filePath) . '" / >';
+
+    if ($type === 'image') {
+      $type = 'img';
+      return '<' . $type . ' src="' . str_replace('public://', '/sites/default/files/', $filePath) . '" / >';
+    } else if ($type === 'youtube') {
+      $filePath = str_replace('http://www.youtube.com/embed/', 'youtube://', $filePath);
+      return '<iframe width="560" height="315" src="' . $filePath . '" frameborder="0"></iframe>';
+    }
   }
 
   protected static function handleMultipleEntities(Token $tokenService, $message, $entities) {

+ 21 - 1
src/Entity/HeartbeatStream.php

@@ -77,12 +77,13 @@ class HeartbeatStream extends RevisionableContentEntityBase implements Heartbeat
   protected $settings;
   protected $variables;
   protected $types;
+  protected $weight;
 
   /**
    * @return array
    */
   public function getTypes() {
-    return $this->types;
+    return $this->get('types');
   }
 
   /**
@@ -423,8 +424,27 @@ class HeartbeatStream extends RevisionableContentEntityBase implements Heartbeat
       ->setRevisionable(TRUE)
       ->setSetting('target_type', 'heartbeat_type');
 
+    $fields['weight'] = BaseFieldDefinition::create('integer')
+      ->setLabel(t('Weight'))
+      ->setDescription(t('The weight of the stream'))
+      ->setDefaultValue(0);
+
 
     return $fields;
   }
 
+  /**
+   * @return mixed
+   */
+  public function setWeight($weight) {
+    $this->set('weight', $weight);
+  }
+
+  /**
+   * @param $weight
+   * @return mixed
+   */
+  public function getWeight() {
+    return $this->get('weight');
+  }
 }

+ 11 - 0
src/Entity/HeartbeatStreamInterface.php

@@ -214,4 +214,15 @@ interface HeartbeatStreamInterface extends RevisionableInterface, RevisionLogInt
 
   public function setTypes($heartbeat_types);
 
+
+  /**
+   * @return mixed
+   */
+  public function setWeight($weight);
+
+  /**
+   * @param $weight
+   * @return mixed
+   */
+  public function getWeight();
 }

+ 15 - 0
src/Entity/HeartbeatType.php

@@ -363,4 +363,19 @@ class HeartbeatType extends ConfigEntityBundleBase implements HeartbeatTypeInter
   public function getBundle() {
     return $this->get('bundle');
   }
+
+  /**
+   * @return mixed
+   */
+  public function setWeight($weight) {
+    $this->set('weight', $weight);
+  }
+
+  /**
+   * @param $weight
+   * @return mixed
+   */
+  public function getWeight() {
+    return $this->get('weight');
+  }
 }

+ 10 - 0
src/Entity/HeartbeatTypeInterface.php

@@ -210,6 +210,16 @@ interface HeartbeatTypeInterface extends ConfigEntityInterface {
   public function getBundle();
 
 
+  /**
+   * @return mixed
+   */
+  public function setWeight($weight);
+
+  /**
+   * @param $weight
+   * @return mixed
+   */
+  public function getWeight();
 
 //  /**
 //   * Sets the attachments for this message stream

+ 3 - 3
src/Form/HeartbeatFeedForm.php

@@ -104,9 +104,9 @@ class HeartbeatFeedForm extends FormBase {
       ]
     ];
 
-    $form['feedsearch'] = [
-      '#type' => 'search',
-    ];
+//    $form['feedsearch'] = [
+//      '#type' => 'search',
+//    ];
 
 
     $form['submit'] = [

+ 8 - 0
src/Form/HeartbeatStreamForm.php

@@ -100,6 +100,12 @@ class HeartbeatStreamForm extends ContentEntityForm {
       '#default' => $entity->getPath(),
     );
 
+    $form['weight'] = array(
+      '#type' => 'number',
+      '#description' => 'The weight of the stream',
+      '#default' => $entity->getWeight()
+    );
+
     return $form;
   }
 
@@ -129,6 +135,8 @@ class HeartbeatStreamForm extends ContentEntityForm {
 
       $entity->setPath($form_state->getValue('path'));
 
+      $entity->setWeight($form_state->getValue('weight'));
+
       $entity->save();
     }
 

+ 6 - 4
src/HeartbeatStreamServices.php

@@ -124,8 +124,9 @@ class HeartbeatStreamServices {
     if ($stream !== null) {
       $types = array();
       foreach ($stream->getTypes() as $heartbeatType) {
-        if (!empty($heartbeatType['target_id']) && $heartbeatType['target_id'] !== "0") {
-          $types[] = $heartbeatType['target_id'];
+        $value = $heartbeatType->getValue()['target_id'];
+        if ($value !== "0") {
+          $types[] = $value;
         }
       }
       $beats = $this->entityTypeManager->getStorage('heartbeat')->loadMultiple($this->entityQuery->get('heartbeat')->condition('status', 1)->condition('type', $types, 'IN')->sort('created', 'DESC')->execute());
@@ -148,8 +149,9 @@ class HeartbeatStreamServices {
     if ($stream !== null) {
       $types = array();
       foreach ($stream->getTypes() as $heartbeatType) {
-        if (!empty($heartbeatType['target_id']) && $heartbeatType['target_id'] !== "0") {
-          $types[] = $heartbeatType['target_id'];
+        $value = $heartbeatType->getValue()['target_id'];
+        if ($value !== "0") {
+          $types[] = $value;
         }
       }
       $uids[] = $currentUid;

+ 1 - 1
src/HeartbeatTypeServices.php

@@ -49,7 +49,7 @@ class HeartbeatTypeServices {
 
 
   public function getTypes() {
-    return $this->entityQuery->get('heartbeat_type')->execute();
+    return $this->entityQuery->get('heartbeat_type')->sort('weight', 'ASC')->execute();
   }
 
   public function load($id) {

+ 2 - 2
src/Plugin/Block/HeartbeatBlock.php

@@ -85,7 +85,7 @@ class HeartbeatBlock extends BlockBase implements ContainerFactoryPluginInterfac
     $myConfig = \Drupal::service('config.factory')->getEditable('heartbeat_feed.settings');
 
     $feed = $myConfig->get('message');
-
+    $uids = null;
     $messages = array();
 
     $query = Database::getConnection()->select('heartbeat_friendship', 'hf')
@@ -99,7 +99,7 @@ class HeartbeatBlock extends BlockBase implements ContainerFactoryPluginInterfac
       }
     }
       if ($feed !== null) {
-        if ($uids !== null && count($uids) > 0) {
+        if (!empty($uids)) {
           foreach ($this->heartbeatStreamServices->createStreamForUidsByType($uids, $feed) as $heartbeat) {
             $messages[] = $heartbeat->getMessage()->getValue()[0]['value'];
           }