STRATO-apps/wordpress_03/app/wp-content/plugins/fluentformpro/src/Integrations/Automizy/API.php

SHA-256: 9780f896b47994d60f7e6974f387ff8cae83099b3d1c24814dc2a3db99339e24
<?php

namespace FluentFormPro\Integrations\Automizy;

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

class API
{
    protected $apiUrl = 'https://gateway.automizy.com/v2/';

    protected $apiKey = null;

    public function __construct($apiKey = null)
    {
        $this->apiKey = $apiKey;
    }

    public function default_options()
    {
        return array(
            'apikey' => $this->apiKey
        );
    }

    public function make_request($action, $options = array(), $method = 'GET')
    {
        /* Build request options string. */
        $request_options = $this->default_options();

        $request_options = wp_parse_args($options, $request_options);

        $options_string = http_build_query($request_options);

        /* Build request URL. */
        $request_url = $this->apiUrl . $action;

        /* Execute request based on method. */
        switch ($method) {
            case 'POST':

                $request_url = $this->apiUrl.$action;
                $args = [];
                $args['body'] = json_encode($options);
                $args['method'] = 'POST';
                $args['headers'] = [
                    'Content-Type' => 'application/json',
                    'Accept'       => 'application/json',
                    'Authorization' => 'Bearer '.$this->apiKey
                ];
                $response = wp_remote_post($request_url, $args);
                break;

            case 'GET':
                $args['headers'] = [
                    'Content-Type' => 'application/json',
                    'Accept'       => 'application/json',
                    'Authorization' => 'Bearer '.$this->apiKey
                ];
                $response = wp_remote_get($request_url, $args);
                break;
        }
        /* If WP_Error, die. Otherwise, return decoded JSON. */
        if (is_wp_error($response)) {
            return [
                'error'   => 'API_Error',
                'message' => $response->get_error_message()
            ];
        } else if($response['response']['code'] < 300) {
            return json_decode($response['body'], true);
        } else {
            return [
                'error'   => 'API_Error',
                'message' => $response['response']['message']
            ];
        }
    }

    /**
     * Test the provided API credentials.
     *
     * @access public
     * @return bool
     */
    public function auth_test()
    {
        return $this->make_request('smart-lists',[], 'GET');
    }


    public function subscribe($listId, $data)
    {
        return $this->make_request('smart-lists/'.$listId.'/contacts', $data, 'POST');
    }

    /**
     * Get all Forms in the system.
     *
     * @access public
     * @return array
     */
    public function getLists()
    {
        $response = $this->make_request('smart-lists', [], 'GET');
        if (!empty($response['error'])) {
            return [];
        }

        return $response['smartLists'];
    }

    public function getCustomFields()
    {
        $response = $this->make_request('custom-fields', [], 'GET');
        if (!empty($response['error'])) {
            return [];
        }

        return $response['customFields'];
    }

}