Current File : /home/inlingua/www/crm/ninexb/wp-content/plugins/tablesome/workflow-library/triggers/wp-forms.php
<?php

namespace Tablesome\Workflow_Library\Triggers;

use Tablesome\Includes\Modules\Workflow\Abstract_Trigger;

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

if (!class_exists('\Tablesome\Workflow_Library\Triggers\WP_Forms')) {
    class WP_Forms extends Abstract_Trigger
    {

        public $trigger_source_id = 0;
        public $trigger_source_data = array();
        public $wpforms_data = array();

        public $unsupported_formats = array(
            'password',
            'layout',
            'pagebreak',
            'divider',
            'html',
            'content',
            'entry-preview',
            'signature',
            'captcha',
            'net_promoter_score',
            'captcha_recaptcha',
        );

        public static $instance = null;

        public static function get_instance()
        {
            if (is_null(self::$instance)) {
                self::$instance = new self();
            }
            return self::$instance;
        }

        public function get_config()
        {

            /** Hook for handle the redirection after submiting the form */
            add_action('wpforms_frontend_confirmation_message_after', [$this, 'redirect_action_callback'], PHP_INT_MAX, 4);

            $is_active = class_exists('WPForms') ? true : false;
            return array(
                'integration' => 'wpforms',
                'integration_label' => __('WPForms', 'tablesome'),
                'trigger' => 'tablesome_wpforms_form_submit',
                'trigger_id' => 2,
                'trigger_label' => __('On Form Submit', 'tablesome'),
                'trigger_type' => 'forms',
                'is_active' => $is_active,
                'is_premium' => "no",
                'hooks' => array(
                    array(
                        'priority' => 10,
                        'accepted_args' => 4,
                        'name' => 'wpforms_process_entry_save',
                        'callback_name' => 'trigger_callback',
                    ),
                ),
                'supported_actions' => [],
                'unsupported_actions' => [8, 9]
            );
        }

        public function get_collection()
        {
            $forms = $this->get_posts();
            if (empty($forms)) {
                return [];
            }

            foreach ($forms as $index => $form) {
                $forms[$index]['fields'] = $this->get_post_fields($form['id']);
            }
            return $forms;
        }

        public function get_posts()
        {

            $exists = function_exists('wpforms') && method_exists(wpforms()->form, 'get');
            if (!$exists) {
                return [];
            }
            $forms = wpforms()->form->get('');
            if (empty($forms)) {
                return [];
            }

            $posts = [];
            foreach ($forms as $post) {
                $posts[] = array(
                    'id' => $post->ID,
                    'label' => $post->post_title . " (ID: " . $post->ID . ")",
                    'integration_type' => 'wpforms',
                );
            }
            return $posts;
        }

        public function get_post_fields($id, array $args = array())
        {

            $form = wpforms()->form->get($id, array('content_only' => true));

            $form_fields = isset($form['fields']) ? $form['fields'] : [];

            if (empty($form_fields)) {
                return [];
            }
            $fields = array();
            foreach ($form_fields as $form_field) {
                $type = isset($form_field['type']) ? $form_field['type'] : '';
                $label = isset($form_field['label']) && !empty($form_field['label']) ? $form_field['label'] : 'label-' . $form_field['id'];
                if (!in_array($type, $this->unsupported_formats)) {

                    $field = [
                        "id" => $form_field['id'],
                        "label" => $label,
                        "field_type" => $type,
                    ];

                    $have_options = (isset($form_field['choices']) && !empty($form_field['choices']));
                    if ($have_options) {
                        $field['options'] = $this->get_formatted_options($form_field);
                    }
                    $fields[] = $field;
                }
            }
            return $fields;
        }

        public function trigger_callback($fields, $entry, $form_id, $form_data)
        {

            // error_log('$fields : ' . print_r($fields, true));
            // error_log('$entry : ' . print_r($entry, true));
            // error_log('$form_data : ' . print_r($form_data, true));

            $submission_data = $this->get_formatted_posted_data($fields, $entry, $form_id, $form_data);
            $submission_data = apply_filters("tablesome_form_submission_data", $submission_data);

            $this->trigger_source_id = $form_id;
            $this->trigger_source_data = array(
                'integration' => $this->get_config()['integration'],
                'form_title' => $form_data['settings']['form_title'],
                'form_id' => $form_id,
                'data' => $submission_data,
            );

            // Can use this prop when its need. form-settings, fields-settings, meta-info and the conditional fields
            $this->wpforms_data = $form_data;

            $this->run_triggers($this, $this->trigger_source_data);
        }

        public function conditions($trigger_meta, $trigger_data)
        {
            $integration = isset($trigger_meta['integration']) ? $trigger_meta['integration'] : '';
            $trigger_id = isset($trigger_meta['trigger_id']) ? $trigger_meta['trigger_id'] : '';

            if ($integration != $this->get_config()['integration'] || $trigger_id != $this->get_config()['trigger_id']) {
                return false;
            }

            $trigger_source_id = isset($trigger_meta['form_id']) ? $trigger_meta['form_id'] : 0;
            if (isset($trigger_data['form_id']) && $trigger_data['form_id'] == $trigger_source_id) {
                return true;
            }
            return false;
        }

        public function get_formatted_posted_data($fields, $entry, $form_id, $form_data)
        {
            $data = array();
            if (empty($fields)) {
                return $data;
            }

            // error_log('wpforms $fields : ' . print_r($fields, true));
            // error_log('wpforms $form_data : ' . print_r($form_data, true));
            foreach ($fields as $key => $field) {
                $value = isset($field['value']) ? html_entity_decode($field['value']) : '';
                $type = isset($field['type']) ? $field['type'] : '';
                $format = isset($form_data['fields'][$key]['format']) ? $form_data['fields'][$key]['format'] : '';
                $data_type = '';

                if ($format == 'time') {
                    $data_type = 'text';
                }

                if ($type == 'date-time') {
                    /**
                     *  Issue #1093 - For supporting the date field
                     *  In WPForms, they also give the user-submitted date-time value in unix format.
                     *
                     *  Ref: https://stackoverflow.com/questions/4676195/why-do-i-need-to-multiply-unix-timestamps-by-1000-in-javascript
                     */
                    $unix_timestamp = (int) $field['unix'];
                    $unix_timestamp = $unix_timestamp * 1000;
                } else if ($type == 'checkbox' || $type == 'select') {
                    $value = explode("\n", $value);
                    $value = is_array($value) && !empty($value) ? implode(',', $value) : $value;
                } else if ($type == 'file-upload') {
                    $file_url = $value;

                    // $value = attachment_url_to_postid($url);
                    $file_type = wp_check_filetype($file_url);
                }

                $data[$key] = array(
                    'label' => isset($field['name']) ? $field['name'] : '',
                    'value' => $value,
                    'type' => $type,
                    'format' => $format,
                    'ts_data_type' => $data_type, // use this prop when the column format type is time
                    'unix_timestamp' => isset($unix_timestamp) ? $unix_timestamp : '', // use this prop when the column format type is date
                );

                if ($type == 'file-upload') {
                    // $data[$name]['type'] = 'file';
                    error_log(' WPForms file_type : ' . print_r($file_type, true));
                    $data[$key]['file_type'] = isset($file_type) ? $file_type['type'] : '';
                    $data[$key]['linkText'] = 'View File';
                    $data[$key]['file_url'] = $file_url ?? '';
                }
            }
            return $data;
        }

        public function get_formatted_options($form_field)
        {
            $options = array();
            foreach ($form_field['choices'] as $id => $choice_data) {
                $options[] = array(
                    'id' => $id,
                    'label' => $choice_data['label'],
                );
            }
            return $options;
        }

        public function get_field_option_id_by_value($props)
        {
            $selected_option_id = $props['trigger_value'];
            $field_id = $props['field'];
            $field = isset($this->wpforms_data['fields'][$field_id]) ? $this->wpforms_data['fields'][$field_id] : [];
            $choices = isset($field['choices']) ? $field['choices'] : [];

            if (empty($field) || empty($choices)) {
                return $selected_option_id;
            }

            foreach ($choices as $id => $choice) {
                if ($choice['label'] == $props['trigger_value']) {
                    $selected_option_id = $id;
                    break;
                }
            }

            return $selected_option_id;
        }

        public function redirect_action_callback($confirmation, $form_data, $fields, $entry_id)
        {
            global $workflow_redirection_data;

            if (is_null($workflow_redirection_data) || empty($workflow_redirection_data)) {
                return;
            }
            foreach ($workflow_redirection_data as $data) {

                $url = $data['url'];
                $open_in_new_tab = $data['open_in_new_tab'];

                $command = "window.location.href=JS_Url;";
                if ($open_in_new_tab) {
                    $command = "window.open(JS_Url,'_blank');";
                }

                // $script = "<script>";

                // $script .= "let JS_Url = '" . esc_url_raw($url) . "';";

                // $script .= "</script>";

                // echo $script;

                ?>
                    <script>
                        let JS_Url = <?php echo wp_json_encode(esc_url_raw($url)); ?>;
                        <?php echo wp_kses_post($command); ?>
                    </script>

                <?php //

            }

        }
    } // End of class
}