2022-04-22 15:25:49 +00:00
|
|
|
<?php declare(strict_types = 1);
|
|
|
|
|
|
|
|
namespace Drupal\opencase;
|
|
|
|
use Drupal;
|
2022-05-15 15:13:53 +00:00
|
|
|
use Drupal\Core\Entity\EntityTypeManagerInterface;
|
2022-04-22 15:25:49 +00:00
|
|
|
|
|
|
|
final class TimeBasedFieldUpdater {
|
2022-05-15 15:13:53 +00:00
|
|
|
|
|
|
|
private EntityTypeManagerInterface $entityTypeManager;
|
2022-04-22 15:25:49 +00:00
|
|
|
private string $date_field;
|
|
|
|
private string $entity_type;
|
|
|
|
private array $conditions;
|
|
|
|
private string $date_format;
|
|
|
|
|
2022-05-15 15:13:53 +00:00
|
|
|
final public function __construct(EntityTypeManagerInterface $entityTypeManager, string $entity_type, string $date_field, array $conditions = [], string $date_format = 'Y-m-d')
|
|
|
|
{
|
|
|
|
$this->entityTypeManager = $entityTypeManager;
|
2022-04-22 15:25:49 +00:00
|
|
|
$this->date_field = $date_field;
|
|
|
|
$this->conditions = $conditions;
|
|
|
|
$this->date_format = $date_format;
|
|
|
|
$this->entity_type = $entity_type;
|
|
|
|
}
|
|
|
|
|
2022-05-15 15:13:53 +00:00
|
|
|
final public function update(string $time_elapsed, array $old_values, array $new_values): void {
|
|
|
|
$query = $this->entityTypeManager->getStorage($this->entity_type)->getQuery();
|
2022-04-22 15:25:49 +00:00
|
|
|
foreach($this->conditions as $cond_field=>$cond_value) {
|
|
|
|
$query->condition($cond_field, $cond_value);
|
|
|
|
}
|
|
|
|
foreach($old_values as $old_field=>$old_value) {
|
|
|
|
$query->condition($old_field, $old_value);
|
|
|
|
}
|
|
|
|
$query->condition($this->date_field, date($this->date_format, strtotime('-'.$time_elapsed)), "<");
|
|
|
|
foreach($query->execute() as $id) {
|
2022-05-15 15:13:53 +00:00
|
|
|
$entity = $this->entityTypeManager->getStorage($this->entity_type)->load($id);
|
2022-04-22 15:25:49 +00:00
|
|
|
foreach($new_values as $new_field=>$new_value) {
|
2022-05-15 15:13:53 +00:00
|
|
|
$entity->$new_field = $new_value;
|
2022-04-22 15:25:49 +00:00
|
|
|
}
|
|
|
|
$entity->save();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|