<?php
/**
 * Shortcodes class
 *
 * @author Your Inspiration Themes
 * @package YITH WooCommerce Wishlist
 * @version 3.0.0
 */

if ( ! defined( 'YITH_WCWL' ) ) { exit; } // Exit if accessed directly

if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
	/**
	 * YITH WCWL Shortcodes
	 *
	 * @since 1.0.0
	 */
	class YITH_WCWL_Shortcode {

		/**
		 * Init shortcodes available for the plugin
		 *
		 * @return void
		 */
		public static function init() {
			// register shortcodes
			add_shortcode( 'yith_wcwl_wishlist', array( 'YITH_WCWL_Shortcode', 'wishlist' ) );
			add_shortcode( 'yith_wcwl_add_to_wishlist', array( 'YITH_WCWL_Shortcode', 'add_to_wishlist' ) );

            // register gutenberg blocks
			add_action( 'init', array( 'YITH_WCWL_Shortcode', 'register_gutenberg_blocks' ) );
			add_action( 'yith_plugin_fw_gutenberg_before_do_shortcode', array( 'YITH_WCWL_Shortcode', 'fix_for_gutenberg_blocks' ), 10, 1 );
		}

		/**
		 * Register available gutenberg blocks
		 *
		 * @return void
		 */
		public static function register_gutenberg_blocks() {
			$blocks = array(
				'yith-wcwl-add-to-wishlist' => array(
					'style'          => 'yith-wcwl-main',
					'script'         => 'jquery-yith-wcwl',
					'title'          => _x( 'YITH Add to wishlist', '[gutenberg]: block name', 'yith-woocommerce-wishlist' ),
					'description'    => _x( 'Shows Add to wishlist button', '[gutenberg]: block description', 'yith-woocommerce-wishlist' ),
					'shortcode_name' => 'yith_wcwl_add_to_wishlist',
					'attributes'     => array(
						'product_id'  => array(
							'type'    => 'text',
							'label'   => __( 'ID of the product to add to the wishlist (leave empty to use the global product)', 'yith-woocommerce-wishlist' ),
							'default' => '',
						),
						'wishlist_url'  => array(
							'type'    => 'text',
							'label'   => __( 'URL of the wishlist page (leave empty to use the default settings)', 'yith-woocommerce-wishlist' ),
							'default' => '',
						),
						'label'  => array(
							'type'    => 'text',
							'label'   => __( 'Button label (leave empty to use the default settings)', 'yith-woocommerce-wishlist' ),
							'default' => '',
						),
						'browse_wishlist_text'  => array(
							'type'    => 'text',
							'label'   => __( '"Browse wishlist" label (leave empty to use the default settings)', 'yith-woocommerce-wishlist' ),
							'default' => '',
						),
						'already_in_wishslist_text'  => array(
							'type'    => 'text',
							'label'   => __( '"Product already in wishlist" label (leave empty to use the default settings)', 'yith-woocommerce-wishlist' ),
							'default' => '',
						),
						'product_added_text'  => array(
							'type'    => 'text',
							'label'   => __( '"Product added to wishlist" label (leave empty to use the default settings)', 'yith-woocommerce-wishlist' ),
							'default' => '',
						),
						'icon'  => array(
							'type'    => 'text',
							'label'   => __( 'Icon for the button (use any FontAwesome valid class, or leave empty to use the default settings)', 'yith-woocommerce-wishlist' ),
							'default' => '',
						),
						'link_classes'  => array(
							'type'    => 'text',
							'label'   => __( 'Additional CSS classes for the button (leave empty to use the default settings)', 'yith-woocommerce-wishlist' ),
							'default' => '',
						),
					),
				),
				'yith-wcwl-wishlist' => array(
					'style'          => 'yith-wcwl-main',
					'script'         => 'jquery-yith-wcwl',
					'title'          => _x( 'YITH Wishlist', '[gutenberg]: block name', 'yith-woocommerce-wishlist' ),
					'description'    => _x( 'Shows a list of products in wishlist', '[gutenberg]: block description', 'yith-woocommerce-wishlist' ),
					'shortcode_name' => 'yith_wcwl_wishlist',
					'attributes'     => array(
						'pagination'    => array(
							'type'    => 'select',
							'label'   => __( 'Choose whether to paginate items in the wishlist or show them all', 'yith-woocommerce-wishlist' ),
							'default' => 'no',
							'options' => array(
								'yes' => __( 'Paginate', 'yith-woocommerce-wishlist' ),
								'no' => __( 'Do not paginate', 'yith-woocommerce-wishlist' )
							)
						),
						'per_page'    => array(
							'type'    => 'number',
							'label'   => __( 'Number of items to show per page', 'yith-woocommerce-wishlist' ),
							'default' => '5',
						),
						'wishlist_id'  => array(
							'type'    => 'text',
							'label'   => __( 'ID of the wishlist to show (e.g. K6EOWXB888ZD)', 'yith-woocommerce-wishlist' ),
							'default' => '',
						),
					),
				)
			);

			yith_plugin_fw_gutenberg_add_blocks( $blocks );
		}

		/**
		 * Fix preview of Gutenberg blocks at backend
		 *
		 * @param $shortcode string Shortcode to render
		 * @return void
		 */
		public static function fix_for_gutenberg_blocks( $shortcode ){
			if( strpos( $shortcode, '[yith_wcwl_add_to_wishlist' ) !== false ){
				if( strpos( $shortcode, 'product_id=""' ) !== false ){
					$products = wc_get_products( array(
						'type' => 'simple',
						'limit' => 1
					) );

					if( ! empty( $products ) ){
						global $product;
						$product = array_shift( $products );
					}
				}
			}
		}

		/**
		 * Print the wishlist HTML.
		 *
		 * @since 1.0.0
		 */
		public static function wishlist( $atts, $content = null ) {
			global $yith_wcwl_is_wishlist, $yith_wcwl_wishlist_token;

			$atts = shortcode_atts( array(
				'per_page' => 5,
				'pagination' => 'no',
				'wishlist_id' => false,
				'action_params' => get_query_var( YITH_WCWL()->wishlist_param, false ),
				'no_interactions' => 'no',
				'layout' => ''
			), $atts );

			/**
			 * @var $per_page int
			 * @var $pagination string
			 * @var $wishlist_id int
			 * @var $action_params array
			 * @var $no_interactions string
			 * @var $layout string
			 */
			extract( $atts );

			// retrieve options from query string
			$action_params = explode( '/', apply_filters( 'yith_wcwl_current_wishlist_view_params', $action_params ) );
			$action = ( isset( $action_params[0] ) ) ? $action_params[0] : 'view';

			// retrieve options from db
			$default_wishlist_title = get_option( 'yith_wcwl_wishlist_title' );
			$show_price = get_option( 'yith_wcwl_price_show' ) == 'yes';
			$show_stock = get_option( 'yith_wcwl_stock_show' ) == 'yes';
			$show_date_added = get_option( 'yith_wcwl_show_dateadded' ) == 'yes';
			$show_add_to_cart = get_option( 'yith_wcwl_add_to_cart_show' ) == 'yes';
			$show_remove_product = get_option( 'yith_wcwl_show_remove', 'yes' ) == 'yes';
			$show_variation = get_option( 'yith_wcwl_variation_show' ) == 'yes';
			$repeat_remove_button = get_option( 'yith_wcwl_repeat_remove_button' ) == 'yes';
			$add_to_cart_label = get_option( 'yith_wcwl_add_to_cart_text', __( 'Add to cart', 'yith-woocommerce-wishlist' ) );
			$price_excluding_tax = get_option( 'woocommerce_tax_display_cart' ) == 'excl';
			$ajax_loading = get_option( 'yith_wcwl_ajax_enable', 'no' );

			// icons
			$icon = get_option( 'yith_wcwl_add_to_wishlist_icon' );
			$custom_icon = get_option( 'yith_wcwl_add_to_wishlist_custom_icon' );

			if( 'custom' == $icon ){
				$heading_icon = '<img src="' . $custom_icon . '" width="32" />';
			}
			else{
				$heading_icon = ! empty( $icon ) ? '<i class="fa ' . $icon . '"></i>' : '';
			}

			// init params needed to load correct template
			$template_part = 'view';
			$no_interactions = $no_interactions == 'yes';
			$additional_params = array(
				// wishlist data
				'wishlist' => false,
				'is_default' => true,
				'is_custom_list' => false,
				'wishlist_token' => '',
				'wishlist_id' => false,
				'is_private' => false,

				// wishlist items
				'count' => 0,
				'wishlist_items' => array(),

				//page data
				'page_title' => $default_wishlist_title,
				'default_wishlsit_title' => $default_wishlist_title,
				'current_page' => 1,
				'page_links' => false,
				'layout' => $layout,

				// user data
				'is_user_logged_in' => is_user_logged_in(),
				'is_user_owner' => true,

				// view data
				'no_interactions' => $no_interactions,
				'show_price' => $show_price,
				'show_dateadded' => $show_date_added,
				'show_stock_status' => $show_stock,
				'show_add_to_cart' => $show_add_to_cart && ! $no_interactions,
				'show_remove_product' => $show_remove_product && ! $no_interactions,
				'add_to_cart_text' => $add_to_cart_label,
				'show_ask_estimate_button' => false,
				'ask_estimate_url' => '',
				'price_excl_tax' => $price_excluding_tax,
				'show_cb' => false,
				'show_quantity' => false,
				'show_variation' => $show_variation,
				'show_price_variations' => false,
				'show_update' => false,
				'enable_drag_n_drop' => false,
				'enable_add_all_to_cart' => false,
				'move_to_another_wishlist' => false,
				'repeat_remove_button' => $repeat_remove_button && ! $no_interactions,
				'show_last_column' => $show_date_added || ( $show_add_to_cart && ! $no_interactions ) || ( $repeat_remove_button && ! $no_interactions ),

				// wishlist icon
				'heading_icon' => $heading_icon,

				// share data
				'share_enabled' => false,

				// template data
				'template_part' => $template_part,
				'additional_info' => false,
				'available_multi_wishlist' => false,
				'users_wishlists' => array(),
				'form_action' => esc_url( YITH_WCWL()->get_wishlist_url( 'view' ) )
			);

			$wishlist = YITH_WCWL_Wishlist_Factory::get_current_wishlist( $atts );

			if( $wishlist ){
				// set global wishlist token
				$yith_wcwl_wishlist_token = $wishlist->get_token();

				// retrieve wishlist params
				$is_user_owner = $wishlist->is_current_user_owner();
				$count = $wishlist->count_items();
				$offset = 0;

				// sets current page, number of pages and element offset
				$current_page = max( 1, get_query_var( 'paged' ) );

				// sets variables for pagination, if shortcode atts is set to yes
				if( $pagination == 'yes' && ! $no_interactions && $count > 1 ){
					$pages = ceil( $count / $per_page );

					if( $current_page > $pages ){
						$current_page = $pages;
					}

					$offset = ( $current_page - 1 ) * $per_page;

					if( $pages > 1 ){
						$page_links = paginate_links( array(
							'base' => esc_url( add_query_arg( array( 'paged' => '%#%' ), $wishlist->get_url() ) ),
							'format' => '?paged=%#%',
							'current' => $current_page,
							'total' => $pages,
							'show_all' => true
						) );
					}
				}
				else{
					$per_page = 0;
				}

				// retrieve items to print
				$wishlist_items = $wishlist->get_items( $per_page, $offset );

				// retrieve wishlist information
				$is_default = $wishlist->get_is_default();
				$wishlist_token = $wishlist->get_token();
				$wishlist_title = $wishlist->get_formatted_name();

				$additional_params = wp_parse_args( array(
					// wishlist items
					'count' => $count,
					'wishlist_items' => $wishlist_items,

					// wishlist data
					'wishlist' => $wishlist,
					'is_default' => $is_default,
					'is_custom_list' => $is_user_owner && ! $no_interactions,
					'wishlist_token' => $wishlist_token,
					'wishlist_id' => $wishlist->get_id(),
					'is_private' => $wishlist->get_privacy() == 2,
					'ajax_loading' => $ajax_loading,

					//page data
					'page_title' => $wishlist_title,
					'current_page' => $current_page,
					'page_links' => isset( $page_links ) && ! $no_interactions ? $page_links : false,

					// user data
					'is_user_owner' => $is_user_owner,

					// view data
					'show_remove_product' => $show_remove_product && $is_user_owner && ! $no_interactions,
					'repeat_remove_button' => $repeat_remove_button && $is_user_owner && ! $no_interactions,

					// template data
					'form_action' => $wishlist->get_url()
				), $additional_params );

				// share options
				$share_facebook_enabled = get_option( 'yith_wcwl_share_fb' ) == 'yes';
				$share_twitter_enabled = get_option( 'yith_wcwl_share_twitter' ) == 'yes';
				$share_pinterest_enabled = get_option( 'yith_wcwl_share_pinterest' ) == 'yes';
				$share_email_enabled = get_option( 'yith_wcwl_share_email' ) == 'yes';
				$share_whatsapp_enabled = get_option( 'yith_wcwl_share_whatsapp' ) == 'yes';
				$share_url_enabled = get_option( 'yith_wcwl_share_url' ) == 'yes';

				if( ! $no_interactions && ( $share_facebook_enabled || $share_twitter_enabled || $share_pinterest_enabled || $share_email_enabled || $share_whatsapp_enabled || $share_url_enabled ) ){
					$share_title = apply_filters( 'yith_wcwl_socials_share_title', __( 'Share on:', 'yith-woocommerce-wishlist' ) );
					$share_link_url = $wishlist->get_url();
					$share_links_title = apply_filters( 'plugin_text', urlencode( get_option( 'yith_wcwl_socials_title' ) ) );
					$share_summary = urlencode( str_replace( '%wishlist_url%', $share_link_url, get_option( 'yith_wcwl_socials_text' ) ) );

					$share_atts = array(
						'share_facebook_enabled' => $share_facebook_enabled,
						'share_twitter_enabled' => $share_twitter_enabled,
						'share_pinterest_enabled' => $share_pinterest_enabled,
						'share_email_enabled' => $share_email_enabled,
						'share_whatsapp_enabled' => $share_whatsapp_enabled,
						'share_url_enabled' => $share_url_enabled,
						'share_title' => $share_title,
						'share_link_url' => $share_link_url,
						'share_link_title' => $share_links_title,
					);

					if( $share_facebook_enabled ){
						$share_facebook_icon = get_option( 'yith_wcwl_fb_button_icon', 'fa-facebook' );
						$share_facebook_custom_icon = get_option( 'yith_wcwl_fb_button_custom_icon' );

						if( ! in_array( $share_facebook_icon, array( 'none', 'custom' ) ) ){
							$share_atts['share_facebook_icon'] = "<i class='fa {$share_facebook_icon}'></i>";
						}
						elseif( 'custom' == $share_facebook_icon && $share_facebook_custom_icon ){
							$alt_text = __( 'Share on Facebook', 'yith-woocommerce-wishlist' );
							$share_atts['share_facebook_icon'] = "<img src='{$share_facebook_custom_icon}' alt='{$alt_text}'/>";
						}
						else{
							$share_atts['share_facebook_icon'] = '';
						}

					}

					if( $share_twitter_enabled ){
						$share_twitter_summary = urlencode( str_replace( '%wishlist_url%', '', get_option( 'yith_wcwl_socials_text' ) ) );
						$share_twitter_icon = get_option( 'yith_wcwl_tw_button_icon', 'fa-twitter' );
						$share_twitter_custom_icon = get_option( 'yith_wcwl_tw_button_custom_icon' );

						$share_atts['share_twitter_summary'] = $share_twitter_summary;

						if( ! in_array( $share_twitter_icon, array( 'none', 'custom' ) ) ){
							$share_atts['share_twitter_icon'] = "<i class='fa {$share_twitter_icon}'></i>";
						}
						elseif( 'custom' == $share_twitter_icon && $share_twitter_custom_icon ){
							$alt_text = __( 'Tweet on Twitter', 'yith-woocommerce-wishlist' );
							$share_atts['share_twitter_icon'] = "<img src='{$share_twitter_custom_icon}' alt='{$alt_text}'/>";
						}
						else{
							$share_atts['share_twitter_icon'] = '';
						}
					}

					if( $share_pinterest_enabled ){
						$share_image_url = urlencode( get_option( 'yith_wcwl_socials_image_url' ) );
						$share_pinterest_icon = get_option( 'yith_wcwl_pr_button_icon', 'fa-pinterest' );
						$share_pinterest_custom_icon = get_option( 'yith_wcwl_pr_button_custom_icon' );

						$share_atts['share_summary'] = $share_summary;
						$share_atts['share_image_url'] = $share_image_url;

						if( ! in_array( $share_pinterest_icon, array( 'none', 'custom' ) ) ){
							$share_atts['share_pinterest_icon'] = "<i class='fa {$share_pinterest_icon}'></i>";
						}
						elseif( 'custom' == $share_pinterest_icon && $share_pinterest_custom_icon ){
							$alt_text = __( 'Pin on Pinterest', 'yith-woocommerce-wishlist' );
							$share_atts['share_pinterest_icon'] = "<img src='{$share_pinterest_custom_icon}' alt='{$alt_text}'/>";
						}
						else{
							$share_atts['share_pinterest_icon'] = '';
						}
					}

					if( $share_email_enabled ){
						$share_email_icon = get_option( 'yith_wcwl_em_button_icon', 'fa-email' );
						$share_email_custom_icon = get_option( 'yith_wcwl_em_button_custom_icon' );

						if( ! in_array( $share_email_icon, array( 'none', 'custom' ) ) ){
							$share_atts['share_email_icon'] = "<i class='fa {$share_email_icon}'></i>";
						}
						elseif( 'custom' == $share_email_icon && $share_email_custom_icon ){
							$alt_text = __( 'Share via email', 'yith-woocommerce-wishlist' );
							$share_atts['share_email_icon'] = "<img src='{$share_email_custom_icon}' alt='{$alt_text}'/>";
						}
						else{
							$share_atts['share_email_icon'] = '';
						}
					}

					if( $share_whatsapp_enabled ){
						$share_whatsapp_icon = get_option( 'yith_wcwl_wa_button_icon', 'fa-whatsapp' );
						$share_whatsapp_custom_icon = get_option( 'yith_wcwl_wa_button_custom_icon' );
						$share_whatsapp_url = '';

						if( wp_is_mobile() ){
							$share_whatsapp_url = 'whatsapp://send?text=' . __( 'My wishlist on ', 'yith-woocommerce-wishlist' ) . ' – ' . urlencode($share_link_url);
						}
						else{
							$share_whatsapp_url = 'https://web.whatsapp.com/send?text=' . __( 'My wishlist on ', 'yith-woocommerce-wishlist' ) . ' – ' . urlencode($share_link_url);
						}

						$share_atts['share_whatsapp_url'] = $share_whatsapp_url;

						if( ! in_array( $share_whatsapp_icon, array( 'none', 'custom' ) ) ){
							$share_atts['share_whatsapp_icon'] = "<i class='fa {$share_whatsapp_icon}'></i>";
						}
						elseif( 'custom' == $share_whatsapp_icon && $share_whatsapp_custom_icon ){
							$alt_text = __( 'Share on WhatsApp', 'yith-woocommerce-wishlist' );
							$share_atts['share_whatsapp_icon'] = "<img src='{$share_whatsapp_custom_icon}' alt='{$alt_text}'/>";
						}
						else{
							$share_atts['share_whatsapp_icon'] = '';
						}
					}

					$additional_params['share_enabled'] = true;
					$additional_params['share_atts'] = $share_atts;
				}
			}

			// filter params
			$additional_params = apply_filters( 'yith_wcwl_wishlist_params', $additional_params, $action, $action_params, $pagination, $per_page );

			$atts = array_merge(
				$atts,
				$additional_params
			);

			$atts['fragment_options'] = YITH_WCWL_Frontend()->format_fragment_options( $atts, 'wishlist' );

			// apply filters for add to cart buttons
			YITH_WCWL_Frontend()->alter_add_to_cart_button();

			// sets that we're in the wishlist template
			$yith_wcwl_is_wishlist = true;

			$template = yith_wcwl_get_template( 'wishlist.php', $atts, true );

			// we're not in wishlist template anymore
			$yith_wcwl_is_wishlist = false;
			$yith_wcwl_wishlist_token = null;

			// remove filters for add to cart buttons
			YITH_WCWL_Frontend()->restore_add_to_cart_button();

			return apply_filters( 'yith_wcwl_wishlisth_html', $template, array(), true );
		}

		/**
		 * Return "Add to Wishlist" button.
		 *
		 * @since 1.0.0
		 */
		public static function add_to_wishlist( $atts, $content = null ) {
			global $product;

			// product object
			$current_product = ( isset( $atts['product_id'] ) ) ? wc_get_product( $atts['product_id'] ) : false;
			$current_product = $current_product ? $current_product : $product;

			if( ! $current_product ){
				return '';
			}

			$current_product_id = yit_get_product_id( $current_product );

			// product parent
			$current_product_parent = $current_product->get_parent_id();

			// labels & icons settings
			$label_option = get_option( 'yith_wcwl_add_to_wishlist_text' );
			$icon_option = get_option( 'yith_wcwl_add_to_wishlist_icon' );
			$custom_icon = 'none' != $icon_option ? get_option( 'yith_wcwl_add_to_wishlist_custom_icon' ) : '';
			$added_icon_option = get_option( 'yith_wcwl_added_to_wishlist_icon' );
			$custom_added_icon = 'none' != $added_icon_option ? get_option( 'yith_wcwl_added_to_wishlist_custom_icon' ) : '';
			$browse_wishlist = get_option( 'yith_wcwl_browse_wishlist_text' );
			$already_in_wishlist = get_option( 'yith_wcwl_already_in_wishlist_text' );
			$product_added = get_option( 'yith_wcwl_product_added_text' );
			$loop_position = get_option( 'yith_wcwl_loop_position' );

			// button label
			$label = apply_filters( 'yith_wcwl_button_label', $label_option );

			// button icon
			$icon = apply_filters( 'yith_wcwl_button_icon', $icon_option != 'none' ? $icon_option : '' );
			$added_icon = apply_filters( 'yith_wcwl_button_added_icon', $added_icon_option != 'none' ? $added_icon_option : '' );

			// button class
			$is_single = isset( $atts['is_single'] ) ? $atts['is_single'] : yith_wcwl_is_single();
			$use_custom_button = get_option( 'yith_wcwl_add_to_wishlist_style' );
			$classes = apply_filters( 'yith_wcwl_add_to_wishlist_button_classes', in_array( $use_custom_button, array( 'button_custom', 'button_default' ) ) ? 'add_to_wishlist single_add_to_wishlist button alt' : 'add_to_wishlist single_add_to_wishlist' );

			// check if product is already in wishlist
			$exists = YITH_WCWL()->is_product_in_wishlist( $current_product_id );
			$added_to_wishlist_behaviour = get_option( 'yith_wcwl_after_add_to_wishlist_behaviour', 'view' );
			$container_classes = $exists ? 'exists' : false;
			$found_in_list = $exists ? yith_wcwl_get_wishlist( false ) : false;
			$found_item = $found_in_list ? $found_in_list->get_product( $current_product_id ) : false;

			$template_part = $exists && $added_to_wishlist_behaviour != 'add' ? 'browse' : 'button';
			$template_part = isset( $atts['added_to_wishlist'] ) ? ( $atts['added_to_wishlist'] ? 'added' : 'browse' ) : $template_part;

			if( $found_in_list && in_array( $template_part, array( 'browse', 'added' ) ) ){
				'remove' == $added_to_wishlist_behaviour && $template_part = 'remove';
			}

			if( 'remove' == $template_part ){
				$classes = str_replace( array( 'single_add_to_wishlist', 'add_to_wishlist' ), '', $classes );
				$label = apply_filters( 'yith_wcwl_remove_from_wishlist_label', __( 'Remove from list', 'yith-woocommerce-wishlist' ) );
			}

			// forcefully add icon when showing button over image, if no one is set
			if( ! $is_single && 'before_image' == get_option( 'yith_wcwl_loop_position' ) ){
				$classes = str_replace( 'button', '', $classes );
			}

			$ajax_loading = get_option( 'yith_wcwl_ajax_enable', 'no' ) == 'yes';

			// get wishlist url
			$wishlist_url = YITH_WCWL()->get_wishlist_url();

			// get product type
			$product_type = $current_product->get_type();

			$additional_params = array(
				'base_url' => yith_wcwl_get_current_url(),
				'wishlist_url' => $wishlist_url,
				'in_default_wishlist' => $exists,
				'exists' => $exists,
				'container_classes' => $container_classes,
				'is_single' => $is_single,
				'show_exists' => false,
				'found_in_list' => $found_in_list,
				'found_item' => $found_item,
				'product_id' => $current_product_id,
				'parent_product_id' => $current_product_parent ? $current_product_parent : $current_product_id,
				'product_type' => $product_type,
				'label' => $label,
				'show_view' => yith_wcwl_is_single(),
				'browse_wishlist_text' => apply_filters( 'yith_wcwl_browse_wishlist_label', $browse_wishlist ),
				'already_in_wishslist_text' => apply_filters( 'yith_wcwl_product_already_in_wishlist_text_button', $already_in_wishlist ),
				'product_added_text' => apply_filters( 'yith_wcwl_product_added_to_wishlist_message_button', $product_added ),
				'icon' => $icon,
				'heading_icon' => $icon,
				'link_classes' => $classes,
				'available_multi_wishlist' => false,
				'disable_wishlist' => false,
				'show_count' => false,
				'ajax_loading' => $ajax_loading,
				'loop_position' => $loop_position,
				'template_part' => $template_part
			);

			// let third party developer filter options
			$additional_params = apply_filters( 'yith_wcwl_add_to_wishlist_params', $additional_params, $atts );

			$atts = shortcode_atts(
				$additional_params,
				$atts
			);

			// set icon when missing, when on top of image (icon only, icon required)
			if( ! $is_single && 'before_image' == get_option( 'yith_wcwl_loop_position' ) && ( ! $atts['icon'] || 'custom' == $atts['icon'] ) ){
				if( ! $atts['icon'] ) {
					$atts['icon'] = 'fa-heart-o';
				}
				elseif( 'custom' == $atts['icon'] && ! $custom_icon && ! $custom_added_icon ){
					$atts['icon'] = 'fa-heart-o';
				}
			}

			// change icon when item exists in wishlist
			if( $atts['exists'] ){
				if( $added_icon && ( 'custom' != $added_icon || $custom_added_icon || $custom_icon ) ){
					$atts['icon'] = $added_icon;
				}
				elseif( strpos( $atts['icon'], '-o' ) !== false ){
					$atts['icon'] = str_replace( '-o', '', $atts['icon'] );
				}
			}

			if( 'custom' == $atts['icon'] && $atts['exists'] && $custom_added_icon ){
				$icon_html = '<img class="yith-wcwl-icon" src="' . $custom_added_icon . '" width="32" />';
			}
			elseif( 'custom' == $atts['icon'] && $custom_icon ){
				$icon_html = '<img class="yith-wcwl-icon" src="' . $custom_icon . '" width="32" />';
				$heading_icon_html = $icon_html;
			}
			elseif( 'custom' != $atts['icon'] ){
				$icon_html = ! empty( $atts['icon'] ) ? '<i class="yith-wcwl-icon fa ' . $atts['icon'] . '"></i>' : '';
				$heading_icon_html = ! empty( $atts['heading_icon'] ) ? '<i class="yith-wcwl-icon fa ' . $atts['heading_icon'] . '"></i>' : '';
			}
			else{
				$icon_html = '';
			}

			// set fragment options
			$atts['fragment_options'] = YITH_WCWL_Frontend()->format_fragment_options( $atts, 'add_to_wishlist' );
			$atts['icon'] = $icon_html;
			$atts['heading_icon'] = $heading_icon_html;

			$template = yith_wcwl_get_template( 'add-to-wishlist.php', $atts, true );

			return apply_filters( 'yith_wcwl_add_to_wishlisth_button_html', $template, $wishlist_url, $product_type, $exists );
		}

    }
}

YITH_WCWL_Shortcode::init();
