arch-8.x-1.x-dev/modules/order/modules/addressbook/src/Services/UserAddressesService.php
modules/order/modules/addressbook/src/Services/UserAddressesService.php
<?php
namespace Drupal\arch_addressbook\Services;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\Session\AccountProxyInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* User addresses service.
*
* @package Drupal\arch_addressbook\Services
*/
class UserAddressesService implements UserAddressesServiceInterface {
/**
* EntityTypeManager service.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
* CurrentUser service.
*
* @var \Drupal\Core\Session\AccountProxyInterface
*/
protected $currentUser;
/**
* Address book item storage.
*
* @var \Drupal\Core\Entity\EntityStorageInterface
*/
protected $addressStorage;
/**
* UserAddressesService constructor.
*
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* EntityType Manager object.
* @param \Drupal\Core\Session\AccountProxyInterface $current_user
* CurrentUser service.
*
* @throws \Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException
* @throws \Drupal\Component\Plugin\Exception\PluginNotFoundException
*/
public function __construct(
EntityTypeManagerInterface $entity_type_manager,
AccountProxyInterface $current_user,
) {
$this->entityTypeManager = $entity_type_manager;
$this->currentUser = $current_user;
$this->addressStorage = $entity_type_manager->getStorage('addressbookitem');
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static(
$container->get('entity_type.manager'),
$container->get('current_user')
);
}
/**
* {@inheritdoc}
*/
public function getByUser(
?AccountInterface $account = NULL,
bool $filter_empty_address = FALSE,
) {
return $this->getByProperties([], $account, $filter_empty_address);
}
/**
* {@inheritdoc}
*/
public function getByProperties(
array $values,
?AccountInterface $account = NULL,
bool $filter_empty_address = FALSE,
) {
if (empty($account)) {
$account = $this->currentUser;
}
$values['user_id'] = $account->id();
// Build a query to fetch the entity IDs.
/** @var \Drupal\Core\Entity\Query\Sql\Query $entity_query */
$entity_query = $this->addressStorage->getQuery();
$entity_query->accessCheck(FALSE);
foreach ($values as $name => $value) {
// Cast scalars to array so we can consistently use an IN condition.
$entity_query->condition($name, (array) $value, 'IN');
}
if ($filter_empty_address) {
$entity_query->exists('address');
}
$result = $entity_query->execute();
return $result ? $this->addressStorage->loadMultiple($result) : [];
}
}
