HEX
Server: nginx/1.27.1
System: Linux in-4 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64
User: ilikadirect (1186)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
Upload Files
File: /storage/v6964/testingff/public_html/fdfctr/wp-content/plugins/site-reviews/plugin/Response.php
<?php

namespace GeminiLabs\SiteReviews;

use GeminiLabs\SiteReviews\Helpers\Arr;
use GeminiLabs\SiteReviews\Helpers\Cast;

class Response
{
    public $body;
    public $code;
    public $message;
    public $response;
    public $status;

    public function __construct($request = [])
    {
        $body = json_decode(wp_remote_retrieve_body($request), true);
        $this->body = Cast::toArray($body);
        $this->code = Cast::toInt(wp_remote_retrieve_response_code($request));
        $this->message = Arr::get($body, 'message', wp_remote_retrieve_response_message($request));
        $this->response = Arr::getAs('array', $request, 'http_response');
        $this->status = Arr::get($body, 'status');
        if (is_wp_error($request)) {
            $this->message = $request->get_error_message();
            $this->status = 'error';
            glsr_log()->error($this->message);
        }
    }

    public function data(): array
    {
        return Arr::getAs('array', $this->body, 'data');
    }

    public function failed(): bool
    {
        return !$this->successful();
    }

    public function successful(): bool
    {
        return 'success' === $this->status;
    }
}