Blocks
1 year ago
Concerns
1 year ago
Traits
1 year ago
AbandonedCheckout.php
2 years ago
AbandonedCheckoutProtocol.php
3 years ago
Account.php
3 years ago
AccountPortalSession.php
3 years ago
Activation.php
2 years ago
Affiliation.php
2 years ago
AffiliationProduct.php
1 year ago
AffiliationProtocol.php
2 years ago
AffiliationRequest.php
2 years ago
ApiToken.php
3 years ago
BalanceTransaction.php
3 years ago
Brand.php
3 years ago
BulkAction.php
2 years ago
Bump.php
1 year ago
BuyLink.php
2 years ago
CancellationAct.php
3 years ago
CancellationReason.php
3 years ago
Charge.php
1 year ago
Checkout.php
1 year ago
Click.php
2 years ago
Collection.php
2 years ago
CommissionStructure.php
2 years ago
Component.php
3 years ago
Coupon.php
1 year ago
Customer.php
2 years ago
CustomerLink.php
3 years ago
CustomerNotificationProtocol.php
3 years ago
DatabaseModel.php
1 year ago
Discount.php
1 year ago
Download.php
3 years ago
Event.php
3 years ago
Export.php
2 years ago
Form.php
3 years ago
Fulfillment.php
3 years ago
FulfillmentItem.php
1 year ago
GalleryItem.php
1 year ago
GalleryItemAttachment.php
1 year ago
GalleryItemMedia.php
1 year ago
GalleryItemProductMedia.php
1 year ago
IncomingWebhook.php
1 year ago
Integration.php
2 years ago
Invoice.php
1 year ago
License.php
2 years ago
LineItem.php
1 year ago
ManualPaymentMethod.php
1 year ago
Media.php
1 year ago
Model.php
1 year ago
ModelInterface.php
3 years ago
Order.php
2 years ago
OrderProtocol.php
3 years ago
PaymentInstrument.php
1 year ago
PaymentIntent.php
3 years ago
PaymentMethod.php
1 year ago
Payout.php
2 years ago
PayoutGroup.php
2 years ago
Period.php
3 years ago
PortalProtocol.php
3 years ago
PortalSession.php
3 years ago
Price.php
1 year ago
Processor.php
1 year ago
Product.php
1 year ago
ProductCollection.php
1 year ago
ProductGroup.php
2 years ago
ProductMedia.php
1 year ago
Promotion.php
1 year ago
ProvisionalAccount.php
2 years ago
Purchase.php
2 years ago
Referral.php
2 years ago
ReferralItem.php
2 years ago
Refund.php
3 years ago
RegisteredWebhook.php
2 years ago
ReturnItem.php
2 years ago
ReturnReason.php
2 years ago
ReturnRequest.php
2 years ago
ShippingMethod.php
3 years ago
ShippingProfile.php
3 years ago
ShippingProtocol.php
3 years ago
ShippingRate.php
3 years ago
ShippingZone.php
3 years ago
Statistic.php
3 years ago
Subscription.php
1 year ago
SubscriptionProtocol.php
3 years ago
TaxOverride.php
2 years ago
TaxProtocol.php
3 years ago
TaxRegistration.php
3 years ago
TaxZone.php
3 years ago
Upload.php
3 years ago
Upsell.php
1 year ago
UpsellFunnel.php
2 years ago
User.php
2 years ago
Variant.php
1 year ago
VariantOption.php
2 years ago
VariantOptionValue.php
1 year ago
VariantValue.php
2 years ago
VerificationCode.php
3 years ago
Webhook.php
1 year ago
WebhookRegistration.php
2 years ago
Purchase.php
163 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Models; |
| 4 | |
| 5 | use SureCart\Models\Order; |
| 6 | use SureCart\Models\Traits\HasCustomer; |
| 7 | use SureCart\Models\Traits\HasLicense; |
| 8 | use SureCart\Models\Traits\HasProduct; |
| 9 | use SureCart\Models\Traits\HasRefund; |
| 10 | use SureCart\Models\Traits\HasSubscription; |
| 11 | |
| 12 | /** |
| 13 | * Purchase model. |
| 14 | */ |
| 15 | class Purchase extends Model { |
| 16 | use HasCustomer, HasProduct, HasSubscription, HasRefund, HasLicense; |
| 17 | |
| 18 | /** |
| 19 | * Rest API endpoint |
| 20 | * |
| 21 | * @var string |
| 22 | */ |
| 23 | protected $endpoint = 'purchases'; |
| 24 | |
| 25 | /** |
| 26 | * Object name |
| 27 | * |
| 28 | * @var string |
| 29 | */ |
| 30 | protected $object_name = 'purchase'; |
| 31 | |
| 32 | /** |
| 33 | * Set the product attribute |
| 34 | * |
| 35 | * @param string $value Product properties. |
| 36 | * @return void |
| 37 | */ |
| 38 | public function setInitialOrderAttribute( $value ) { |
| 39 | $this->setRelation( 'initial_order', $value, Order::class ); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Revoke the purchase. |
| 44 | * |
| 45 | * @param string $id Model id. |
| 46 | * |
| 47 | * @return $this|\WP_Error |
| 48 | */ |
| 49 | protected function revoke( $id = 0 ) { |
| 50 | $id = $id ? $id : $this->id; |
| 51 | |
| 52 | if ( $this->fireModelEvent( 'revoking' ) === false ) { |
| 53 | return false; |
| 54 | } |
| 55 | |
| 56 | if ( empty( $id ) ) { |
| 57 | return new \WP_Error( 'not_saved', 'You can only revoke an existing purchase.' ); |
| 58 | } |
| 59 | |
| 60 | $model = $this->makeRequest( |
| 61 | [ |
| 62 | 'method' => 'PATCH', |
| 63 | 'query' => $this->query, |
| 64 | ], |
| 65 | $this->endpoint . '/' . $id . '/revoke/', |
| 66 | ); |
| 67 | |
| 68 | if ( is_wp_error( $model ) ) { |
| 69 | return $model; |
| 70 | } |
| 71 | |
| 72 | $this->resetAttributes(); |
| 73 | |
| 74 | $this->fill( $model ); |
| 75 | |
| 76 | $this->fireModelEvent( 'revoked' ); |
| 77 | |
| 78 | // purchase revoked event. |
| 79 | do_action( 'surecart/purchase_revoked', $this ); |
| 80 | |
| 81 | return $this; |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * Invoke the purchase. |
| 86 | * |
| 87 | * @param string $id Model id. |
| 88 | * |
| 89 | * @return $this|\WP_Error |
| 90 | */ |
| 91 | protected function invoke( $id = 0 ) { |
| 92 | $id = $id ? $id : $this->id; |
| 93 | |
| 94 | if ( $this->fireModelEvent( 'invoking' ) === false ) { |
| 95 | return false; |
| 96 | } |
| 97 | |
| 98 | if ( empty( $id ) ) { |
| 99 | return new \WP_Error( 'not_saved', 'You can only invoke an existing purchase.' ); |
| 100 | } |
| 101 | |
| 102 | $model = $this->makeRequest( |
| 103 | [ |
| 104 | 'method' => 'PATCH', |
| 105 | 'query' => $this->getQuery(), |
| 106 | ], |
| 107 | $this->endpoint . '/' . $id . '/invoke/', |
| 108 | ); |
| 109 | |
| 110 | if ( is_wp_error( $model ) ) { |
| 111 | return $model; |
| 112 | } |
| 113 | |
| 114 | $this->resetAttributes(); |
| 115 | |
| 116 | $this->fill( $model ); |
| 117 | |
| 118 | $this->fireModelEvent( 'invoked' ); |
| 119 | |
| 120 | // purchase invoked event. |
| 121 | do_action( 'surecart/purchase_invoked', $this ); |
| 122 | |
| 123 | return $this; |
| 124 | } |
| 125 | |
| 126 | /** |
| 127 | * Has the product changed? |
| 128 | */ |
| 129 | protected function getHasProductChangedAttribute() { |
| 130 | return (bool) $this->getPreviousProductIdAttribute(); |
| 131 | } |
| 132 | |
| 133 | /** |
| 134 | * Get the previous product ID. |
| 135 | * |
| 136 | * @return string |
| 137 | */ |
| 138 | protected function getPreviousProductIdAttribute() { |
| 139 | if ( empty( $this->attributes['previous_attributes']['product'] ) ) { |
| 140 | return false; |
| 141 | } |
| 142 | if ( is_string( $this->attributes['previous_attributes']['product'] ) ) { |
| 143 | return $this->attributes['previous_attributes']['product']; |
| 144 | } |
| 145 | if ( ! empty( $this->attributes['previous_attributes']['product']['id'] ) ) { |
| 146 | return $this->attributes['previous_attributes']['product']['id']; |
| 147 | } |
| 148 | return false; |
| 149 | } |
| 150 | |
| 151 | /** |
| 152 | * Get the previous quantity |
| 153 | * |
| 154 | * @return integer |
| 155 | */ |
| 156 | protected function getPreviousQuantityAttribute() { |
| 157 | if ( empty( $this->attributes['previous_attributes']['quantity'] ) ) { |
| 158 | return false; |
| 159 | } |
| 160 | return $this->attributes['previous_attributes']['quantity']; |
| 161 | } |
| 162 | } |
| 163 |