Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
jsarnowski/brizy-pro / drewm / drip / src / Response.php
Size: Mime:
<?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();
	}

	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;
	}

	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'];
		}
	}
}