/home/smartbloks/public_html/new/wp-content/plugins/mailoptin/vendor/drewm/drip/src/Response.php
<?php

namespace DrewM\Drip;

class Response
{
    public $status  = null;
    public $error   = null;
    public $message = null;

    protected $data = [];

    public function __construct($meta, $body)
    {
        $this->process_meta($meta);
        $this->process_body($body);
        $this->handle_errors();
    }

    protected function process_meta($meta)
    {
        if (isset($meta['http_code'])) {
            $this->status = (int) $meta['http_code'];
        }
    }

    protected function process_body($body)
    {
        $decoded_body = json_decode($body, true);
        if (is_array($decoded_body)) {
            $this->data = $decoded_body;
        }
    }

    protected function handle_errors()
    {
        if (is_array($this->data) && isset($this->data['errors'])) {
            $this->error   = $this->data['errors'][0]['code'];
            $this->message = $this->data['errors'][0]['message'];
        }
    }

    public function __get($name)
    {
        if (is_array($this->data) && isset($this->data[$name])) {
            return $this->data[$name];
        }

        return false;
    }

    public function get()
    {
        return $this->data;
    }

    public function __toString()
    {
        return print_r($this->data, true);
    }

    public function __debugInfo()
    {
        return $this->data;
    }
}