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/Wordpress/Collection.php
<?php

namespace SureCart\Models\Wordpress;

use SureCart\Models\Concerns\Facade;

/**
 * This class syncs product records to WordPress posts.
 */
class Collection {
	use Facade;

	/**
	 * The post.
	 *
	 * @var \WP_Post
	 */
	protected $term;

	/**
	 * The post type.
	 *
	 * @var string
	 */
	protected $taxonomy = 'sc_collection';

	/**
	 * Find the post from the model.
	 *
	 * @param string $model_id The model id.
	 *
	 * @return \WP_Post|\WP_Error|null
	 */
	protected function findByModelId( string $model_id ) {
		// if we don't have a model id, return null.
		if ( empty( $model_id ) ) {
			return null;
		}

		// get term by sc_id.
		$terms = get_terms(
			array(
				'taxonomy'   => $this->taxonomy,
				'meta_key'   => 'sc_id',
				'meta_value' => $model_id,
				'number'     => 1,
				'hide_empty' => false,
			)
		);

		// handle error.
		if ( is_wp_error( $terms ) ) {
			return $terms;
		}

		// return the post.
		return apply_filters( 'surecart_get_collection_term', $terms[0] ?? null, $model_id, $this );
	}

	/**
	 * Sync the model with the post.
	 *
	 * @param \SureCart\Models\ProductCollection $model The model.
	 *
	 * @return \WP_Post|\WP_Error
	 */
	protected function sync( \SureCart\Models\ProductCollection $model ) {
		$this->term = $this->findByModelId( $model->id );

		if ( is_wp_error( $this->term ) ) {
			return $this->term;
		}

		return empty( $this->term->term_id ) ? $this->create( $model ) : $this->update( $model );
	}

	/**
	 * Delete the synced post.
	 *
	 * @param string $id The model id.
	 *
	 * @return \WP_Post|\WP_Error|false|null
	 */
	protected function delete( string $id ) {
		$this->term = $this->findByModelId( $id );

		if ( is_wp_error( $this->term ) ) {
			return $this->term;
		}

		// force delete post.
		return wp_delete_term( $this->term->term_id, $this->taxonomy );
	}

	/**
	 * Create the term.
	 *
	 * @param \SureCart\Models\ProductCollection $collection The collection model.
	 *
	 * @return \WP_Post|\WP_Error
	 */
	protected function create( \SureCart\Models\ProductCollection $collection ) {
		// don't do these actions as they can slow down the sync.
		foreach ( [ 'do_pings', 'transition_post_status', 'save_post', 'pre_post_update', 'add_attachment', 'edit_attachment', 'edit_post', 'term_updated', 'wp_insert_term' ] as $action ) {
			remove_all_actions( $action );
		}

		// we are importing.
		if ( ! defined( 'WP_IMPORTING' ) ) {
			define( 'WP_IMPORTING', true );
		}

		$term = wp_insert_term(
			$collection->name,
			$this->taxonomy,
			[
				'name'        => $collection->name,
				'description' => $collection->description,
				'slug'        => $collection->slug,
			]
		);

		// handle errors.
		if ( is_wp_error( $term ) ) {
			return $term;
		}

		$this->term = get_term( $term['term_id'], $this->taxonomy );

		if ( is_wp_error( $this->term ) || empty( $this->term ) ) {
			return $this->term;
		}

		update_term_meta( $this->term->term_id, 'sc_account', \SureCart::account()->id );
		update_term_meta( $this->term->term_id, 'sc_id', $collection->id );
		update_term_meta( $this->term->term_id, 'collection', $collection->toArray() );

		return $this->term;
	}

	/**
	 * Update the term.
	 *
	 * @param \SureCart\Models\ProductCollection $collection The collection model.
	 *
	 * @return \WP_Post|\WP_Error
	 */
	protected function update( \SureCart\Models\ProductCollection $collection ) {
		// find the post.
		if ( empty( $this->term ) || ! is_a( $this->term, 'WP_Term' ) ) {
			$this->term = $this->findByModelId( $collection->id );
		}

		$term = wp_update_term(
			$this->term->term_id,
			$this->taxonomy,
			[
				'name'        => $collection->name,
				'description' => $collection->description,
				'slug'        => $collection->slug,
			]
		);

		// handle errors.
		if ( is_wp_error( $term ) ) {
			return $term;
		}

		update_term_meta( $term['term_id'], 'sc_account', \SureCart::account()->id );
		update_term_meta( $term['term_id'], 'sc_id', $collection->id );
		update_term_meta( $term['term_id'], 'collection', $collection->toArray() );

		$this->term = get_term( $term['term_id'], $this->taxonomy );

		return $this->term;
	}
}