1:   2:   3:   4:   5:   6:   7:   8:   9:  10:  11:  12:  13:  14:  15:  16:  17:  18:  19:  20:  21:  22:  23:  24:  25:  26:  27:  28:  29:  30:  31:  32:  33:  34:  35:  36:  37:  38:  39:  40:  41:  42:  43:  44:  45:  46:  47:  48:  49:  50:  51:  52:  53:  54:  55:  56:  57:  58:  59:  60:  61:  62:  63:  64:  65:  66:  67:  68:  69:  70:  71:  72:  73:  74:  75:  76:  77:  78:  79:  80:  81:  82:  83:  84:  85:  86:  87:  88:  89:  90:  91:  92:  93:  94:  95:  96:  97:  98:  99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 
<?php
/**
 * Erply Books API PHP client
 *
 * @author Rene Korss <rene@koren.ee>
 * @copyright Copyright (c) 2020 Rene Korss (https://koren.ee)
 * @license MIT
 */

namespace Koren\ErplyBooks\Resource;

use GuzzleHttp\Psr7\Request;
use Koren\ErplyBooks\Client;
use Koren\ErplyBooks\Response\ItemResponse;
use Koren\ErplyBooks\Response\ItemsResponse;
use Koren\ErplyBooks\Response\Response;
use RuntimeException;

/**
 * Resource base class
 */
abstract class BaseResource
{
    /**
     * Resolve Client
     * @var \Koren\ErplyBooks\Client
     */
    protected $client;

    /**
     * Endpoint
     * @var string
     */
    protected $endpoint = null;

    /**
     * Constructor
     *
     * @throws \RuntimeException if endpoint is not set
     */
    public function __construct()
    {
        if (strlen($this->endpoint) === 0) {
            throw new RuntimeException(__CLASS__.' dosen\'t have endpoint.'); // @codeCoverageIgnore
        }
    }

    /**
     * Set the API client
     *
     * @param \Koren\ErplyBooks\Client $client
     *
     * @return \Koren\ErplyBooks\Client
     */
    public function setClient(Client $client) : self
    {
        $this->client = $client;
        return $this;
    }

    /**
     * Get the API client
     *
     * @return \Koren\ErplyBooks\Client
     */
    public function getClient() : Client
    {
        return $this->client;
    }

    /**
     * Get endpoint
     *
     * @return string Endpoint
     */
    public function getEndpoint() : string
    {
        return $this->endpoint;
    }

    /**
     * Get endpoint url
     *
     * @return string Endpoint URL
     */
    public function getEndpointUrl() : string
    {
        return \Koren\ErplyBooks\Client::BASE_URL.'/'.$this->getEndpoint();
    }

    /**
     * GET query
     *
     * @param mixed $parameters
     *
     * @return \Koren\ErplyBooks\Response\Response
     */
    public function get($parameters = null) : Response
    {
        $client = $this->getClient();
        $url = $this->getEndpointUrl();

        // Get certain item by ID
        if (is_int($parameters)) {
            $url .= '/'.$parameters;
        // Get items by parameters
        } elseif (is_array($parameters)) {
            $client = $client->withQuery($parameters);
        }

        $response = $client->sendRequest(
            new Request('GET', $url)
        );

        $body = json_decode($response->getBody());
        if (isset($body->items)) {
            return new ItemsResponse($response);
        }

        return new ItemResponse($response);
    }

    /**
     * POST query
     *
     * @param array $data
     *
     * @return \Koren\ErplyBooks\Response\ItemResponse
     */
    public function post($data = []) : ItemResponse
    {
        return new ItemResponse(
            $this->getClient()->sendRequest(
                new Request(
                    'POST',
                    $this->getEndpointUrl(),
                    ['Content-Type' => 'application/json'],
                    \GuzzleHttp\Psr7\stream_for(http_build_query($data))
                )
            )
        );
    }

    /**
     * PUT query
     *
     * @param int $itemId
     * @param array $data
     *
     * @return \Koren\ErplyBooks\Response\ItemResponse
     */
    public function put(int $itemId, $data = []) : ItemResponse
    {
        return new ItemResponse(
            $this->getClient()->sendRequest(
                new Request(
                    'PUT',
                    $this->getEndpointUrl().'/'.$itemId,
                    ['Content-Type' => 'application/json'],
                    \GuzzleHttp\Psr7\stream_for(http_build_query($data))
                )
            )
        );
    }

    /**
     * DELETE query
     *
     * @param int $itemId
     *
     * @return \Koren\ErplyBooks\Response\ItemResponse
     */
    public function delete(int $itemId) : ItemResponse
    {
        return new ItemResponse(
            $this->getClient()->sendRequest(
                new Request('DELETE', $this->getEndpointUrl().'/'.$itemId)
            )
        );
    }
}