# bookit/2.6.0.5/src/Bookit/Gateways/Contracts/Abstract_WhoDat.php

Bookit — Booking &amp; Appointment Calendar, version 2.6.0.5. 127 lines.

- Page: https://pluginprobe.com/plugins/bookit/2.6.0.5/code/src/Bookit/Gateways/Contracts/Abstract_WhoDat.php
- Raw: https://pluginprobe.com/plugins/bookit/2.6.0.5/raw/src/Bookit/Gateways/Contracts/Abstract_WhoDat.php
- Modified: 2026-09-14T17:08:02+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/bookit/2.6.0.5/code/src/Bookit/Gateways/Contracts/Abstract_WhoDat.php#L10-L20`.

```php
<?php

namespace Bookit\Gateways\Contracts;

use Bookit\Vendor\StellarWP\Arrays\Arr;

/**
 * Abstract class to handle WhoDat connections
 *
 * @since   2.5.0
 *
 * @package Bookit\Gateways\PayPal
 */
abstract class Abstract_WhoDat implements WhoDat_Interface {

	/**
	 * Public WhoDat URL, used to authenticate accounts with gateway payment providers
	 *
	 * @since 2.5.0
	 *
	 * @var string
	 */
	private $api_base_url = 'https://whodat.theeventscalendar.com/commerce/v1';

	/**
	 * Returns the gateway-specific endpoint to use
	 *
	 * @since 2.5.0
	 *
	 * @return string
	 */
	private function get_gateway_endpoint() {
		return $this->api_endpoint;
	}

	/**
	 * Returns the WhoDat URL to use.
	 *
	 * @since 2.5.0
	 *
	 * @return string
	 */
	private function get_api_base_url() {

		if ( defined( 'BOOKIT_WHODAT_DEV_URL' ) && BOOKIT_WHODAT_DEV_URL ) {
			return BOOKIT_WHODAT_DEV_URL;
		}

		return $this->api_base_url;
	}

	/**
	 * @inheritDoc
	 */
	public function get_api_url( $endpoint, array $query_args = [] ) {
		return add_query_arg( $query_args, "{$this->get_api_base_url()}/{$this->get_gateway_endpoint()}/{$endpoint}" );
	}

	/**
	 * @inheritDoc
	 */
	public function get( $endpoint, array $query_args ) {
		$url = $this->get_api_url( $endpoint, $query_args );

		$request = wp_remote_get( $url );

		if ( is_wp_error( $request ) ) {
			$this->log_error( 'WhoDat request error:', $request->get_error_message(), $url );

			return null;
		}

		$body = wp_remote_retrieve_body( $request );
		$body = json_decode( $body, true );

		return $body;
	}

	/**
	 * @inheritDoc
	 */
	public function post( $endpoint, array $query_args = [], array $request_arguments = [] ) {
		$url = $this->get_api_url( $endpoint, $query_args );

		$default_arguments = [
			'body' => [],
		];

		foreach ( $default_arguments as $key => $default_argument ) {
			$request_arguments[ $key ] = array_merge( $default_argument, Arr::get( $request_arguments, $key, [] ) );
		}
		$request_arguments = array_filter( $request_arguments );
		$request           = wp_remote_post( $url, $request_arguments );

		if ( is_wp_error( $request ) ) {
			$this->log_error( 'WhoDat request error:', $request->get_error_message(), $url );

			return null;
		}

		$body = wp_remote_retrieve_body( $request );
		$body = json_decode( $body, true );

		if ( ! is_array( $body ) ) {
			$this->log_error( 'WhoDat unexpected response:', $body, $url );
			$this->log_error( 'Response:', print_r( $request, true ), '--->' );

			return null;
		}

		return $body;
	}

	/**
	 * @inheritDoc
	 */
	public function log_error( $type, $message, $url ) {
		$log = sprintf(
			'[%s] %s %s',
			$url,
			$type,
			$message
		);
		error_log( $log );
	}

}
```
