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

SHA-256: 870f8d0a5ae03c1c1412ec59fe224b23264bd0896ff0330d44051f5cf4d4ebc8
<?php

namespace FluentFormPro\Integrations\GetGist;

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

class API
{
    protected $apiUrl = 'https://api.getgist.com/';

    protected $apiKey = null;

    protected $apiSecret = null;

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

    public function default_options()
    {
        return [
            'Authorization' => 'Bearer '.$this->apiKey,
            'Content-Type'  => 'application/json',
            'Accept'        => 'application/json'
        ];
    }

    public function make_request($action, $options = array(), $method = 'GET')
    {

        /* Execute request based on method. */
        switch ($method) {
            case 'POST':
                $headers = $this->default_options();
                $endpointUrl = $this->apiUrl . $action;

                $args = [
                    'headers' => $headers,
                    'body' => json_encode($options)
                ];

                $response = wp_remote_post($endpointUrl, $args);
                break;

            case 'GET':
                $headers = $this->default_options();
                $endpointUrl = $this->apiUrl . $action;

                $args = [
                    'headers' => $headers
                ];

                $response = wp_remote_get($endpointUrl, $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['response']['code'] >= 300) {
            return [
                'error'   => 'API_Error',
                'message' => $response['response']['message']
            ];
        }
        else {
            return json_decode($response['body'], true);
        }
    }

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


    public function subscribe($data)
    {
        $response = $this->make_request('leads', $data, 'POST');

        if (!empty($response['error'])) {
            return new \WP_Error('api_error', $response['message']);
        }
        return $response;
    }

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

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

}