Traits
2 years ago
AbandonedCheckout.php
3 years ago
AbandonedCheckoutProtocol.php
3 years ago
Account.php
3 years ago
AccountPortalSession.php
3 years ago
Activation.php
3 years ago
ApiToken.php
3 years ago
BalanceTransaction.php
3 years ago
Brand.php
3 years ago
Bump.php
3 years ago
BuyLink.php
3 years ago
CancellationAct.php
3 years ago
CancellationReason.php
3 years ago
Charge.php
3 years ago
Checkout.php
2 years ago
Collection.php
3 years ago
Component.php
3 years ago
Coupon.php
3 years ago
Customer.php
2 years ago
CustomerLink.php
3 years ago
CustomerNotificationProtocol.php
3 years ago
DatabaseModel.php
2 years ago
Download.php
3 years ago
Event.php
3 years ago
Form.php
3 years ago
Fulfillment.php
3 years ago
FulfillmentItem.php
3 years ago
IncomingWebhook.php
2 years ago
Integration.php
3 years ago
Invoice.php
3 years ago
License.php
3 years ago
LineItem.php
2 years ago
ManualPaymentMethod.php
3 years ago
Media.php
3 years ago
Model.php
2 years ago
ModelInterface.php
3 years ago
Order.php
3 years ago
OrderProtocol.php
3 years ago
PaymentIntent.php
3 years ago
PaymentMethod.php
3 years ago
Period.php
3 years ago
PortalProtocol.php
3 years ago
PortalSession.php
3 years ago
Price.php
3 years ago
Processor.php
3 years ago
Product.php
2 years ago
ProductCollection.php
2 years ago
ProductGroup.php
2 years ago
ProductMedia.php
3 years ago
Promotion.php
3 years ago
ProvisionalAccount.php
3 years ago
Purchase.php
3 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
2 years ago
SubscriptionProtocol.php
3 years ago
TaxProtocol.php
3 years ago
TaxRegistration.php
3 years ago
TaxZone.php
3 years ago
Upload.php
3 years ago
User.php
2 years ago
Variant.php
2 years ago
VariantOption.php
2 years ago
VariantValue.php
2 years ago
VerificationCode.php
3 years ago
Webhook.php
2 years ago
WebhookRegistration.php
2 years ago
Form.php
205 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Models; |
| 4 | |
| 5 | use SureCart\Models\Product; |
| 6 | |
| 7 | /** |
| 8 | * Checkout form class |
| 9 | */ |
| 10 | class Form { |
| 11 | /** |
| 12 | * Holds the form post. |
| 13 | * |
| 14 | * @var \WP_Post; |
| 15 | */ |
| 16 | protected $post; |
| 17 | |
| 18 | /** |
| 19 | * Get the post |
| 20 | * |
| 21 | * @param [type] $id |
| 22 | */ |
| 23 | final public function __construct( $id = 0 ) { |
| 24 | $this->post = get_post( $id ); |
| 25 | } |
| 26 | |
| 27 | /** |
| 28 | * The form's post type |
| 29 | * |
| 30 | * @return string The post type. |
| 31 | */ |
| 32 | protected function getPostType() { |
| 33 | // TODO: get this from registration. |
| 34 | return 'sc_form'; |
| 35 | } |
| 36 | |
| 37 | /** |
| 38 | * Get the stored product choices |
| 39 | * |
| 40 | * @param int|WP_Post $id Post object or id. |
| 41 | * @return array |
| 42 | */ |
| 43 | protected function getPriceIds( $id ) { |
| 44 | $this->post = get_post( $id ); |
| 45 | $blocks = parse_blocks( $this->post->post_content ); |
| 46 | return $this->getNested( $blocks, 'price_id' ); |
| 47 | } |
| 48 | |
| 49 | /** |
| 50 | * Get a form's attribute |
| 51 | * |
| 52 | * @param string $attribute Attribute name. |
| 53 | * @return mixed |
| 54 | */ |
| 55 | public function getAttribute( $attribute ) { |
| 56 | $blocks = parse_blocks( $this->post->post_content ); |
| 57 | $form_block = $blocks[0] ?? false; |
| 58 | if ( ! $form_block || 'surecart/form' !== $form_block['blockName'] ) { |
| 59 | return ''; |
| 60 | } |
| 61 | return $form_block['attrs'][ $attribute ] ?? null; |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * Get the form's mode |
| 66 | * |
| 67 | * @param int|WP_Post $id Post object or id. |
| 68 | * @return string |
| 69 | */ |
| 70 | protected function getMode( $id ) { |
| 71 | $this->post = get_post( $id ); |
| 72 | if ( empty( $this->post ) ) { |
| 73 | return null; |
| 74 | } |
| 75 | $blocks = parse_blocks( $this->post->post_content ); |
| 76 | $form_block = $blocks[0] ?? false; |
| 77 | if ( ! $form_block || 'surecart/form' !== $form_block['blockName'] ) { |
| 78 | return ''; |
| 79 | } |
| 80 | return apply_filters( 'surecart/payments/mode', $form_block['attrs']['mode'] ?? 'live' ); |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * Get nested values from an array |
| 85 | * |
| 86 | * @param array $array Array to search. |
| 87 | * @param string $nested_key Nested key to search for. |
| 88 | * @return array |
| 89 | */ |
| 90 | protected function getNested( array $array, $nested_key ) { |
| 91 | $return = array(); |
| 92 | array_walk_recursive( |
| 93 | $array, |
| 94 | function( $a, $key ) use ( &$return, $nested_key ) { |
| 95 | if ( $nested_key === $key ) { |
| 96 | $return[] = $a; |
| 97 | } |
| 98 | } |
| 99 | ); |
| 100 | return $return; |
| 101 | } |
| 102 | |
| 103 | /** |
| 104 | * Get the form's products. |
| 105 | * |
| 106 | * @param int|WP_Post Block post id. |
| 107 | */ |
| 108 | protected function getProducts( $id ) { |
| 109 | $ids = $this->getPriceIds( $id ); |
| 110 | // no products. |
| 111 | if ( empty( $ids ) ) { |
| 112 | return []; |
| 113 | } |
| 114 | |
| 115 | // get prices with their product |
| 116 | $prices = Price::where( |
| 117 | [ |
| 118 | 'ids' => $ids, |
| 119 | ] |
| 120 | )->with( [ 'product' ] )->get(); |
| 121 | |
| 122 | $products = []; |
| 123 | foreach ( $prices as $price ) { |
| 124 | $products[] = $price->product; |
| 125 | } |
| 126 | return $products; |
| 127 | } |
| 128 | |
| 129 | protected function getPosts( $id ) { |
| 130 | $blocks = $this->searchBlocks( $id ); |
| 131 | $shortcodes = $this->searchShortcodes( $id ); |
| 132 | return array_merge( $blocks, $shortcodes ); |
| 133 | } |
| 134 | |
| 135 | public function searchBlocks( $id ) { |
| 136 | return get_posts( |
| 137 | [ |
| 138 | 's' => '<!-- wp:surecart/checkout-form {"id":' . (int) $id, |
| 139 | 'sentence' => 1, |
| 140 | 'post_type' => 'any', |
| 141 | 'per_page' => -1, |
| 142 | ] |
| 143 | ); |
| 144 | } |
| 145 | |
| 146 | public function searchShortcodes( $id ) { |
| 147 | return get_posts( |
| 148 | [ |
| 149 | 's' => '[sc_form id=' . (int) $id, |
| 150 | 'sentence' => 1, |
| 151 | 'post_type' => 'any', |
| 152 | 'per_page' => -1, |
| 153 | ] |
| 154 | ); |
| 155 | } |
| 156 | |
| 157 | /** |
| 158 | * Get blocks from the posts. |
| 159 | * |
| 160 | * @param array $posts Array of posts. |
| 161 | * @return array Array of blocks. |
| 162 | */ |
| 163 | public function getBlocksFromPosts( $posts ) { |
| 164 | $blocks = []; |
| 165 | foreach ( $posts as $post ) { |
| 166 | $parsed_blocks = parse_blocks( $post->post_content ); |
| 167 | $blocks = array_merge( $blocks, $this->findCheckoutBlocks( $parsed_blocks, $post ) ); |
| 168 | } |
| 169 | return array_filter( $blocks ); |
| 170 | } |
| 171 | |
| 172 | /** |
| 173 | * Find our checkout block. |
| 174 | * |
| 175 | * @param array $post_blocks Blocks array. |
| 176 | * @param \WP_Post $post_object Post object. |
| 177 | * @return array |
| 178 | */ |
| 179 | public function findCheckoutBlocks( $post_blocks, \WP_Post $post_object ) { |
| 180 | $blocks = []; |
| 181 | foreach ( $post_blocks as $block ) { |
| 182 | if ( 'surecart/checkout-form' === $block['blockName'] ) { |
| 183 | $block['post'] = $post_object; |
| 184 | $blocks[] = $block; |
| 185 | } elseif ( ! empty( $block['innerBlocks'] ) ) { |
| 186 | $blocks = array_merge( $blocks, $this->findCheckoutBlocks( $block['innerBlocks'], $post_object ) ); |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | return array_filter( $blocks ); |
| 191 | } |
| 192 | |
| 193 | /** |
| 194 | * Static Facade Accessor |
| 195 | * |
| 196 | * @param string $method Method to call. |
| 197 | * @param mixed $params Method params. |
| 198 | * |
| 199 | * @return mixed |
| 200 | */ |
| 201 | public static function __callStatic( $method, $params ) { |
| 202 | return call_user_func_array( [ new static(), $method ], $params ); |
| 203 | } |
| 204 | } |
| 205 |