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/2foodfactor/public_html/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 array $body;
    public int $code;
    public bool $error = false;
    public string $message;
    public array $response;

    /**
     * @param array|\WP_Error $request
     */
    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::getAs('string', $body, 'message', wp_remote_retrieve_response_message($request));
        $this->response = Arr::getAs('array', $request, 'http_response');
        if (is_wp_error($request)) {
            $this->error = true;
            $this->message = $request->get_error_message();
            glsr_log()->error($this->message);
        }
    }

    public function body(): array
    {
        $body = Arr::consolidate($this->body);
        $body = array_map('maybe_unserialize', $body);
        return $body;
    }

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

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

    public function shouldRetry(): bool
    {
        return 429 === $this->code // Too-Many-Requests
            || $this->code >= 500; // Internal errors
    }

    public function successful(): bool
    {
        return false === $this->error
            && $this->code >= 200
            && $this->code <= 299;
    }
}