HEX
Server: Apache
System: Linux ecngx285.inmotionhosting.com 4.18.0-553.79.1.lve.el8.x86_64 #1 SMP Wed Oct 15 17:59:35 UTC 2025 x86_64
User: zeusxp5 (3862)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: /home/zeusxp5/tour.kamille.us/wp-content/plugins/surecart/app/src/Models/Purchase.php
<?php

namespace SureCart\Models;

use SureCart\Models\Order;
use SureCart\Models\Traits\HasCustomer;
use SureCart\Models\Traits\HasLicense;
use SureCart\Models\Traits\HasProduct;
use SureCart\Models\Traits\HasRefund;
use SureCart\Models\Traits\HasSubscription;

/**
 * Purchase model.
 */
class Purchase extends Model {
	use HasCustomer, HasProduct, HasSubscription, HasRefund, HasLicense;

	/**
	 * Rest API endpoint
	 *
	 * @var string
	 */
	protected $endpoint = 'purchases';

	/**
	 * Object name
	 *
	 * @var string
	 */
	protected $object_name = 'purchase';

	/**
	 * Set the product attribute
	 *
	 * @param  string $value Product properties.
	 * @return void
	 */
	public function setInitialOrderAttribute( $value ) {
		$this->setRelation( 'initial_order', $value, Order::class );
	}

	/**
	 * Revoke the purchase.
	 *
	 * @param string $id Model id.
	 *
	 * @return $this|\WP_Error
	 */
	protected function revoke( $id = 0 ) {
		$id = $id ? $id : $this->id;

		if ( $this->fireModelEvent( 'revoking' ) === false ) {
			return false;
		}

		if ( empty( $id ) ) {
			return new \WP_Error( 'not_saved', 'You can only revoke an existing purchase.' );
		}

		$model = $this->makeRequest(
			[
				'method' => 'PATCH',
				'query'  => $this->query,
			],
			$this->endpoint . '/' . $id . '/revoke/',
		);

		if ( is_wp_error( $model ) ) {
			return $model;
		}

		$this->resetAttributes();

		$this->fill( $model );

		$this->fireModelEvent( 'revoked' );

		// purchase revoked event.
		do_action( 'surecart/purchase_revoked', $this );

		return $this;
	}

	/**
	 * Invoke the purchase.
	 *
	 * @param string $id Model id.
	 *
	 * @return $this|\WP_Error
	 */
	protected function invoke( $id = 0 ) {
		$id = $id ? $id : $this->id;

		if ( $this->fireModelEvent( 'invoking' ) === false ) {
			return false;
		}

		if ( empty( $id ) ) {
			return new \WP_Error( 'not_saved', 'You can only invoke an existing purchase.' );
		}

		$model = $this->makeRequest(
			[
				'method' => 'PATCH',
				'query'  => $this->getQuery(),
			],
			$this->endpoint . '/' . $id . '/invoke/',
		);

		if ( is_wp_error( $model ) ) {
			return $model;
		}

		$this->resetAttributes();

		$this->fill( $model );

		$this->fireModelEvent( 'invoked' );

		// purchase invoked event.
		do_action( 'surecart/purchase_invoked', $this );

		return $this;
	}

	/**
	 * Has the product changed?
	 */
	protected function getHasProductChangedAttribute() {
		return (bool) $this->getPreviousProductIdAttribute();
	}

	/**
	 * Get the previous product ID.
	 *
	 * @return string
	 */
	protected function getPreviousProductIdAttribute() {
		if ( empty( $this->attributes['previous_attributes']['product'] ) ) {
			return false;
		}
		if ( is_string( $this->attributes['previous_attributes']['product'] ) ) {
			return $this->attributes['previous_attributes']['product'];
		}
		if ( ! empty( $this->attributes['previous_attributes']['product']['id'] ) ) {
			return $this->attributes['previous_attributes']['product']['id'];
		}
		return false;
	}

	/**
	 * Get the previous quantity
	 *
	 * @return integer
	 */
	protected function getPreviousQuantityAttribute() {
		if ( empty( $this->attributes['previous_attributes']['quantity'] ) ) {
			return false;
		}
		return $this->attributes['previous_attributes']['quantity'];
	}
}