HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux ip-10-0-8-47 6.8.0-1021-aws #23~22.04.1-Ubuntu SMP Tue Dec 10 16:31:58 UTC 2024 aarch64
User: ubuntu (1000)
PHP: 8.1.2-1ubuntu2.22
Disabled: NONE
Upload Files
File: //proc/self/cwd/wp-content/plugins/premium-addons-for-elementor/admin/includes/duplicator.php
<?php
/**
 * PA Duplicator.
 */

namespace PremiumAddons\Admin\Includes;

use Elementor\Core\Files\CSS\Post as Post_CSS;

if ( ! defined( 'ABSPATH' ) ) {
	exit();
}

/**
 * Class Duplicator
 */
class Duplicator {

	/**
	 * PA Duplicator action.
	 */
	const DUPLICATE_ACTION = 'pa_duplicator';

	/**
	 * Class object
	 *
	 * @var instance
	 */
	private static $instance = null;

	/**
	 * Elementor slug
	 *
	 * @var elementor
	 */
	private static $elementor = 'elementor';

	/**
	 * PAPRO Slug
	 *
	 * @var papro
	 */
	private static $papro = 'premium-addons-pro';

	/**
	 * Constructor for the class
	 */
	public function __construct() {

		add_action( 'admin_action_' . self::DUPLICATE_ACTION, array( $this, 'duplicate_post' ) );

		add_filter( 'post_row_actions', array( $this, 'add_duplicator_actions' ), 10, 2 );

		add_filter( 'page_row_actions', array( $this, 'add_duplicator_actions' ), 10, 2 );

	}

	/**
	 * Add Duplicator Actions
	 *
	 * Add duplicator action links to posts/pages
	 *
	 * @access public
	 * @since 3.9.7
	 *
	 * @param array  $actions row actions.
	 * @param object $post \WP_Post.
	 * @return array
	 */
	public function add_duplicator_actions( $actions, $post ) {

		if ( current_user_can( 'edit_posts' ) && post_type_supports( $post->post_type, 'elementor' ) ) {

			$actions[ self::DUPLICATE_ACTION ] = sprintf(
				'<a href="%1$s" title="%2$s"><span class="screen-reader-text">%2$s</span>%3$s</a>',
				esc_url( self::get_duplicate_url( $post->ID ) ),
				/* translators: %s: Post Title */
				sprintf( esc_attr__( 'Duplicate - %s', 'premium-addons-for-elementor' ), esc_attr( $post->post_title ) ),
				__( 'PA Duplicate', 'premium-addons-for-elementor' )
			);

		}

		return $actions;
	}

	/**
	 * Get duplicate url
	 *
	 * @access public
	 * @since 3.9.7
	 *
	 * @param integer $post_id item ID.
	 * @return string
	 */
	public static function get_duplicate_url( $post_id ) {

		$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1;

		return wp_nonce_url(
			add_query_arg(
				array(
					'action'  => self::DUPLICATE_ACTION,
					'post_id' => $post_id,
					'paged'   => $paged,
				),
				admin_url( 'admin.php' )
			),
			self::DUPLICATE_ACTION
		);
	}

	/**
	 * Duplicate required post/page
	 *
	 * @access public
	 * @since 3.9.7
	 *
	 * @return void
	 */
	public function duplicate_post() {

		if ( ! current_user_can( 'edit_posts' ) ) {
			return;
		}

		$nonce   = isset( $_GET['_wpnonce'] ) ? sanitize_text_field( wp_unslash( $_GET['_wpnonce'] ) ) : '';
		$post_id = isset( $_GET['post_id'] ) ? absint( $_GET['post_id'] ) : 0;
		$paged   = isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1;

		if ( ! wp_verify_nonce( $nonce, self::DUPLICATE_ACTION ) ) {
			return;
		}

		$post = get_post( $post_id );
		if ( is_null( $post ) ) {
			return;
		}

		$post = sanitize_post( $post, 'db' );

		$duplicated_post_id = self::insert_post( $post );

		$redirect = add_query_arg(
			array(
				'post_type' => $post->post_type,
				'paged'     => $paged,
			),
			admin_url( 'edit.php' )
		);

		if ( ! is_wp_error( $duplicated_post_id ) ) {

			self::duplicate_post_taxonomies( $post, $duplicated_post_id );
			self::duplicate_post_meta_data( $post, $duplicated_post_id );

			$css = Post_CSS::create( $duplicated_post_id );
			$css->update();

		}

		wp_safe_redirect( $redirect );
		die();
	}

	/**
	 * Duplicate required post/page
	 *
	 * @access public
	 * @since 3.9.7
	 *
	 * @param object $post WP_Post.
	 */
	protected static function insert_post( $post ) {

		$current_user = wp_get_current_user();

		$post_meta = get_post_meta( $post->ID );

		$duplicated_post_args = array(
			'post_status'    => 'draft',
			'post_type'      => $post->post_type,
			'post_parent'    => $post->post_parent,
			'post_content'   => $post->post_content,
			'menu_order'     => $post->menu_order,
			'ping_status'    => $post->ping_status,
			'post_excerpt'   => $post->post_excerpt,
			'post_password'  => $post->post_password,
			'comment_status' => $post->comment_status,
			'to_ping'        => $post->to_ping,
			'post_author'    => $current_user->ID,
			'post_title'     => sprintf(
				/* translators: 1: Post Title, 2: Post ID */
				__( '%1$s - Duplicate - [#%2$d]', 'premium-addons-for-elementor' ),
				$post->post_title,
				$post->ID
			),
		);

		if ( isset( $post_meta['_elementor_edit_mode'][0] ) ) {

			$data = array(
				'meta_input' => array(
					'_elementor_edit_mode'     => $post_meta['_elementor_edit_mode'][0],
					'_elementor_template_type' => $post_meta['_elementor_template_type'][0],
				),
			);

			$duplicated_post_args = array_merge( $duplicated_post_args, $data );

		}

		return wp_insert_post( $duplicated_post_args );
	}

	/**
	 * Add post taxonomies to the cloned version
	 *
	 * @access public
	 * @since 3.9.7
	 *
	 * @param object  $post WP_Post.
	 * @param integer $id item ID.
	 */
	public static function duplicate_post_taxonomies( $post, $id ) {

		$taxonomies = get_object_taxonomies( $post->post_type );

		if ( ! empty( $taxonomies ) && is_array( $taxonomies ) ) {
			foreach ( $taxonomies as $taxonomy ) {
				$terms = wp_get_object_terms( $post->ID, $taxonomy, array( 'fields' => 'slugs' ) );
				wp_set_object_terms( $id, $terms, $taxonomy, false );
			}
		}
	}

	/**
	 * Add post meta data to the cloned version
	 *
	 * @access public
	 * @since 3.9.7
	 *
	 * @param object  $post WP_Post.
	 * @param integer $id item ID.
	 */
	public static function duplicate_post_meta_data( $post, $id ) {

		global $wpdb;

		$postmeta = esc_sql( $wpdb->postmeta );

		$post_id = esc_sql( $post->ID );

		$meta = $wpdb->get_results(
			$wpdb->prepare( "SELECT meta_key, meta_value FROM {$postmeta} WHERE post_id = %d", $post_id )
		);

		if ( ! empty( $meta ) && is_array( $meta ) ) {

			$query = "INSERT INTO {$postmeta} ( post_id, meta_key, meta_value ) VALUES ";

			$_records = array();

			foreach ( $meta as $meta_info ) {

				$meta_value = $meta_info->meta_value;
				$meta_key   = sanitize_text_field( $meta_info->meta_key );

				$_value     = $meta_value;
				$_records[] = $wpdb->prepare( "( $id, %s, %s )", $meta_key, $_value );
			}

			$query .= implode( ', ', $_records ) . ';';
			$wpdb->query( $query );
		}

	}


	/**
	 * Creates and returns an instance of the class
	 *
	 * @since 3.20.9
	 * @access public
	 *
	 * @return object
	 */
	public static function get_instance() {

		if ( ! isset( self::$instance ) ) {

			self::$instance = new self();

		}

		return self::$instance;
	}

}