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/WordPress/Posts/PostService.php
<?php

namespace SureCart\WordPress\Posts;

use WP_Post;

/**
 * Handles Post related services.
 */
class PostService {
	/**
	 * The post.
	 *
	 * @var WP_Post|null
	 */
	public $post;

	/**
	 * Get the form post.
	 *
	 * @param WP_Post|int|null $post The form or post type post.
	 *
	 * @return WP_Post|null
	 */
	public function getFormPost( $post = null ) {
		return $this->getFormPostFromBlock( $post ) ?? $this->getFormPostFromShortcode( $post );
	}

	/**
	 * Get the form post from a page.
	 *
	 * @param WP_Post|int|null $post The form or post type post.
	 *
	 * @return WP_Post|null
	 */
	public function getFormPostFromBlock( $post = null ) {
		$this->post = get_post( $post ?? $this->post );

		// we don't have a post.
		if ( empty( $this->post->ID ) ) {
			return null;
		}

		// get the checkout form block.
		$block = wp_get_first_block( parse_blocks( $this->post->post_content ), 'surecart/checkout-form' );

		if ( empty( $block['attrs']['id'] ) ) {
			return null;
		}

		// get the post.
		return get_post( $block['attrs']['id'] ?? null );
	}

	/**
	 * Get the form post from a shortcode.
	 *
	 * @param WP_Post|null $post The form or post type post.
	 *
	 * @return WP_Post|null
	 */
	public function getFormPostFromShortcode( $post = null ) {
		$this->post = get_post( $post ?? $this->post );

		if ( empty( $this->post->ID ) ) {
			return null;
		}

		if ( has_shortcode( $this->post->post_content, 'sc_form' ) ) {
			$shortcode = get_shortcode_regex( ['sc_form'] );
			preg_match( "/$shortcode/", $this->post->post_content, $matches );
			$attrs = shortcode_parse_atts( $matches[3] ?? '' );
			return ! empty( $attrs['id'] ) ? get_post( $attrs['id'] ) : null;
		}

		return null;
	}

	/**
	 * Get the form block.
	 *
	 * @param WP_Post|null $post The form or post type post.
	 * @return array|null
	 */
	public function getFormBlock( $post = null ) {
		$this->post = get_post( $post ?? $this->post );

		// we don't have a post.
		if ( empty( $this->post->ID ) ) {
			return null;
		}

		// this is not the block we are are looking for.
		if ( ! has_block( 'surecart/checkout-form', $this->post ) && ! has_block( 'surecart/form', $this->post ) ) {
			return null;
		}

		$blocks = parse_blocks( $this->post->post_content );

		// we have a checkout form block.
		if ( has_block( 'surecart/checkout-form', $post ) ) {
			$block = wp_get_first_block( $blocks, 'surecart/checkout-form' );
			// Get the form post id.
			$this->post = get_post( $block['attrs']['id'] ?? null );
		}

		$blocks = parse_blocks( $this->post->post_content );

		return wp_get_first_block( $blocks, 'surecart/form' );
	}
}