|
@@ -13,6 +13,11 @@ use Drupal\Core\Entity\Query\QueryFactory;
|
|
|
*/
|
|
|
class HeartbeatStreamServices {
|
|
|
|
|
|
+
|
|
|
+ protected $lastId;
|
|
|
+
|
|
|
+ protected $latestTimestamp;
|
|
|
+
|
|
|
/**
|
|
|
* Drupal\Core\Entity\EntityTypeManager definition.
|
|
|
*
|
|
@@ -99,7 +104,20 @@ class HeartbeatStreamServices {
|
|
|
public function createStreamForUidsByType($uids, $type) {
|
|
|
$stream = $this->entityTypeManager->getStorage('heartbeat_stream')->load(array_values($this->loadStream($type))[0]);
|
|
|
|
|
|
- return $this->entityTypeManager->getStorage('heartbeat')->loadMultiple($this->entityQuery->get('heartbeat')->condition('status', 1)->condition('type', array_column($stream->getTypes(), 'target_id'), 'IN')->condition('uid', $uids, 'IN')->sort('created', 'DESC')->execute());
|
|
|
+ $beats = $this->entityTypeManager->getStorage('heartbeat')->loadMultiple($this->entityQuery->get('heartbeat')->condition('status', 1)->condition('type', array_column($stream->getTypes(), 'target_id'), 'IN')->condition('uid', $uids, 'IN')->sort('created', 'DESC')->execute());
|
|
|
+
|
|
|
+ $this->lastId = call_user_func('end', array_keys($beats));
|
|
|
+
|
|
|
+ $this->latestTimestamp = array_values($beats)[0]->getRevisionCreationTime();
|
|
|
+
|
|
|
+ return $beats;
|
|
|
+ }
|
|
|
+
|
|
|
+ public function updateStreamForUidsByType($uids, $type) {
|
|
|
+ $stream = $this->entityTypeManager->getStorage('heartbeat_stream')->load(array_values($this->loadStream($type))[0]);
|
|
|
+
|
|
|
+ return $this->entityTypeManager->getStorage('heartbeat')->loadMultiple($this->entityQuery->get('heartbeat')->condition('status', 1)->condition('revision_created', $this->latestTimestamp, '>')->condition('type', array_column($stream->getTypes(), 'target_id'), 'IN')->condition('uid', $uids, 'IN')->sort('created', 'DESC')->execute());
|
|
|
+
|
|
|
}
|
|
|
|
|
|
}
|