<?php
/**
 * @package CF7BS
 * @version 1.2.4
 * @author Felix Arntz <felix-arntz@leaves-and-love.net>
 */

remove_action( 'wpcf7_init', 'wpcf7_add_shortcode_date' );
add_action( 'wpcf7_init', 'cf7bs_add_shortcode_date' );

function cf7bs_add_shortcode_date() {
	wpcf7_add_shortcode( array(
		'date',
		'date*',
	), 'cf7bs_date_shortcode_handler', true );
}

function cf7bs_date_shortcode_handler( $tag ) {
	$tag = new WPCF7_Shortcode( $tag );

	if ( empty( $tag->name ) ) {
		return '';
	}

	$mode = $status = 'default';

	$validation_error = wpcf7_get_validation_error( $tag->name );

	$class = wpcf7_form_controls_class( $tag->type );
	$class .= ' wpcf7-validates-as-date';
	if ( $validation_error ) {
		$class .= ' wpcf7-not-valid';
		$status = 'error';
	}

	if ( $tag->is_required() ) {
		$mode = 'required';
	}

	$value = (string) reset( $tag->values );
	$placeholder = '';
	if ( $tag->has_option( 'placeholder' ) || $tag->has_option( 'watermark' ) ) {
		$placeholder = $value;
		$value = '';
	}

	$value = $tag->get_default_option( $value );

	if ( wpcf7_is_posted() && isset( $_POST[ $tag->name ] ) ) {
		$value = stripslashes_deep( $_POST[ $tag->name ] );
	} elseif( isset( $_GET ) && array_key_exists( $tag->name, $_GET ) ) {
		$value = stripslashes_deep( rawurldecode( $_GET[ $tag->name ] ) );
	}

	$field = new CF7BS_Form_Field( cf7bs_apply_field_args_filter( array(
		'name'				=> $tag->name,
		'id'				=> $tag->get_option( 'id', 'id', true ),
		'class'				=> $tag->get_class_option( $class ),
		'type'				=> wpcf7_support_html5() ? $tag->basetype : 'text',
		'value'				=> $value,
		'placeholder'		=> $placeholder,
		'label'				=> $tag->content,
		'options'			=> array(
		  'min'					=> $tag->get_option( 'min', 'date', true ),
		  'max'					=> $tag->get_option( 'max', 'date', true ),
		  'step'				=> $tag->get_option( 'step', 'int', true ),
		),
		'help_text'			=> $validation_error,
		'size'				=> cf7bs_get_form_property( 'size' ),
		'grid_columns'		=> cf7bs_get_form_property( 'grid_columns' ),
		'form_layout'		=> cf7bs_get_form_property( 'layout' ),
		'form_label_width'	=> cf7bs_get_form_property( 'label_width' ),
		'form_breakpoint'	=> cf7bs_get_form_property( 'breakpoint' ),
		'mode'				=> $mode,
		'status'			=> $status,
		'readonly'			=> $tag->has_option( 'readonly' ) ? true : false,
		'tabindex'			=> $tag->get_option( 'tabindex', 'int', true ),
		'wrapper_class'		=> $tag->name,
	), $tag->basetype, $tag->name ) );

	$html = $field->display( false );

	return $html;
}
