Your IP : 3.144.108.220


Current Path : /proc/4653/cwd/wp-content/plugins/ninja-forms/includes/
Upload File :
Current File : //proc/4653/cwd/wp-content/plugins/ninja-forms/includes/Dispatcher.php

<?php

use NinjaForms\Includes\Entities\NfSiteEnvironment;
use NinjaForms\Includes\Entities\Usage;

use NinjaForms\Includes\Factories\ConstructNfSiteEntity;
use NinjaForms\Includes\Factories\ConstructNfSiteEnvironmentEntity;
use NinjaForms\Includes\Factories\ConstructUsageEntity;

/**
 * Handles sending information to our api.ninjaforms.com endpoint.
 *
 * @since  3.2
 */
class NF_Dispatcher
{
    private $api_url = 'https://api.ninjaforms.com/';
    
    /**
     * Returns bool true if we are opted-in or have a premium add-on.
     * If a premium add-on is installed, then users have opted into tracked via our terms and conditions.
     * If no premium add-ons are installed, check to see if the user has opted in or out of anonymous usage tracking.
     *
     * @since  3.2.0
     * @return bool
     */
    public function should_we_send() {
        /**
         * TODO:
         * Prevent certain URLS or IPs from submitting. i.e. staging, 127.0.0.1, localhost, etc.
         */

        if ( ! has_filter( 'ninja_forms_settings_licenses_addons' ) && ( ! Ninja_Forms()->tracking->is_opted_in() || Ninja_Forms()->tracking->is_opted_out() ) ) {
            return false;
        }
        return true;
    }

    /**
     * Send consolidated telemetry data
     * 
     * @since  3.2
     * @return void
     * 
     * @updated 3.3.17
     */
    public function sendTelemetryData() {

        $environment = $this->constructNfSiteEnvironment();

        $usage = $this->constructUsage( $environment->nf_db_version);

        $data = array_merge($environment->toArray(),$usage->toArray());
        
        $this->send( '3.8.18', $data );
    }
    
    /**
     * Construct environment variable
     *
     * @return NfSiteEnvironment
     */
    protected function constructNfSiteEnvironment(): NfSiteEnvironment
    {
        $factory = new ConstructNfSiteEnvironmentEntity();

        $return = $factory->handle();

        return $return;
    }

    /**
     * Construct usage array
     *
     * @return Usage
     */
    protected function constructUsage(): Usage
    {
        $factory = new ConstructUsageEntity();

        $return = $factory->handle();

        return $return;
    }

    /**
     * Sends a campaign slug and data to our API endpoint.
     * Checks to ensure that the user has 1) opted into tracking or 2) they have a premium add-on installed.
     * 
     * @since  3.2
     * @param  string       $slug   Campaign slug
     * @param  array        $data   Array of data being sent. Should NOT already be a JSON string.
     * @return void
     */
    public function send( $slug, $data = array() ) {

        if ( ! $this->should_we_send() ) {
            return false;
        }

        $factory = new ConstructNfSiteEntity();
        $siteEntity = $factory->handle();
        $be_data = get_option( 'nf_be_data', [] );

        /*
         * Send our data using wp_remote_post.
         */
        $response = wp_remote_post(
            $this->api_url,
            array(
                'body' => array(
                    'slug'          => $slug,
                    'data'          => wp_json_encode( $data ),
                    'site_data'     => wp_json_encode( $siteEntity->jsonSerialize()),
                    'be_data'       => wp_json_encode( $be_data )
                ),
            )
        );

        if ( !is_wp_error( $response ) ) {
            delete_option( 'nf_be_data' );
        }
    }
}