You are here

public function Order::preSave in Commerce Core 8.2

Acts on an entity before the presave hook is invoked.

Used before the entity is saved and before invoking the presave hook. Note that in case of translatable content entities this callback is only fired on their current translation. It is up to the developer to iterate over all translations if needed. This is different from its counterpart in the Field API, FieldItemListInterface::preSave(), which is fired on all field translations automatically. @todo Adjust existing implementations and the documentation according to https://www.drupal.org/node/2577609 to have a consistent API.

Parameters

\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage object.

Throws

\Exception When there is a problem that should prevent saving the entity.

Overrides ContentEntityBase::preSave

See also

\Drupal\Core\Field\FieldItemListInterface::preSave()

File

modules/order/src/Entity/Order.php, line 656

Class

Order
Defines the order entity class.

Namespace

Drupal\commerce_order\Entity

Code

public function preSave(EntityStorageInterface $storage) {
  parent::preSave($storage);
  if (isset($this->original) && !$this
    ->isNew() && $this->original
    ->getVersion() > $this
    ->getVersion()) {
    $mismatch_exception = new OrderVersionMismatchException(sprintf('Attempted to save order %s with version %s. Current version is %s.', $this
      ->id(), $this
      ->getVersion(), $this->original
      ->getVersion()));
    $log_only = $this
      ->getEntityType()
      ->get('log_version_mismatch');
    if ($log_only) {
      watchdog_exception('commerce_order', $mismatch_exception);
    }
    else {
      throw $mismatch_exception;
    }
  }
  $this
    ->setVersion($this
    ->getVersion() + 1);
  if ($this
    ->isNew() && !$this
    ->getIpAddress()) {
    $this
      ->setIpAddress(\Drupal::request()
      ->getClientIp());
  }
  $customer = $this
    ->getCustomer();

  // The customer has been deleted, clear the reference.
  if ($this
    ->getCustomerId() && $customer
    ->isAnonymous()) {
    $this
      ->setCustomerId(0);
  }

  // Maintain the order email.
  if (!$this
    ->getEmail() && $customer
    ->isAuthenticated()) {
    $this
      ->setEmail($customer
      ->getEmail());
  }

  // Make sure the billing profile is owned by the order, not the customer.
  $billing_profile = $this
    ->getBillingProfile();
  if ($billing_profile && $billing_profile
    ->getOwnerId()) {
    $billing_profile
      ->setOwnerId(0);
    $billing_profile
      ->save();
  }
  if ($this
    ->getState()
    ->getId() == 'draft') {

    // Refresh draft orders on every save.
    if (empty($this
      ->getRefreshState())) {
      $this
        ->setRefreshState(self::REFRESH_ON_SAVE);
    }

    // Initialize the flag for OrderStorage::doOrderPreSave().
    if ($this
      ->getData('paid_event_dispatched') === NULL) {
      $this
        ->setData('paid_event_dispatched', FALSE);
    }
  }
}