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: 
<?php
/**
 * RKD Banklink.
 *
 * @link https://github.com/renekorss/Banklink/
 *
 * @author Rene Korss <rene.korss@gmail.com>
 * @copyright 2016-2019 Rene Korss
 * @license MIT
 */
namespace RKD\Banklink\Response;

/**
 * Response wrapper.
 *
 * @author Rene Korss <rene.korss@gmail.com>
 */
class Response implements ResponseInterface
{
    /**
     * Signature verified and transaction successful.
     */
    const STATUS_SUCCESS = 1;

    /**
     * Signature not verified.
     */
    const STATUS_ERROR = -1;

    /**
     * Automatic response value.
     */
    const RESPONSE_AUTO = 'Y';

    /**
     * Response status.
     *
     * @var int
     */
    protected $status;

    /**
     * Response data.
     *
     * @var array
     */
    protected $responseData;

    /**
     * Prefered language.
     *
     * @var string
     */
    protected $language;

    /**
     * Response automatic state.
     *
     * @var bool
     */
    protected $isAutomatic = false;

    /**
     * Set response status and data.
     *
     * @param int   $status       Verification status
     * @param array $responseData Array of bank response
     */
    public function __construct($status, array $responseData)
    {
        $this->status = $status;
        $this->responseData = $responseData;
    }

    /**
     * Get boolean to know if transaction was successful.
     *
     * @return bool True on sucess, false othwerwise
     */
    public function wasSuccessful() : bool
    {
        return $this->status === self::STATUS_SUCCESS;
    }

    /**
     * Get transaction status.
     *
     * @return int Status
     */
    public function getStatus() : int
    {
        return $this->status;
    }

    /**
     * Get response data.
     *
     * @return array Array of response
     */
    public function getResponseData() : array
    {
        return $this->responseData;
    }

    /**
     * Set prefered language.
     *
     * @param string $language Prefered language
     *
     * @return self
     */
    public function setLanguage(string $language) : ResponseInterface
    {
        $this->language = $language;
        return $this;
    }

    /**
     * Get prefered language.
     *
     * @return string Language (EST, ENG, RUS)
     */
    public function getLanguage() : string
    {
        return $this->language;
    }
}