# css-javascript-toolbox/9.4/framework/ServicesAPI/Services.class.php

CSS &amp; JavaScript Toolbox, version 9.4. 162 lines.

- Page: https://pluginprobe.com/plugins/css-javascript-toolbox/9.4/code/framework/ServicesAPI/Services.class.php
- Raw: https://pluginprobe.com/plugins/css-javascript-toolbox/9.4/raw/framework/ServicesAPI/Services.class.php
- Modified: 2019-11-21T15:00:34+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/css-javascript-toolbox/9.4/code/framework/ServicesAPI/Services.class.php#L10-L20`.

```php
<?php
/**
* 
*/

/**
* 
*/
class CJTServicesClient {
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected static $instance;
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	private $sslVerify = false;
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	private $timeOut = 10;
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	private $url;
	
	/**
	* put your comment there...
	* 
	*/
	public function __construct() {
		# Initialize
		$this->url = cssJSToolbox::getCJTWebSiteURL() . "cjtservices-api";
	}

	/**
	* put your comment there...
	* 
	* @return CJTServicesClient
	*/
	public static function & getInstance() {
		# Maintain only ONE instance
		if (!self::$instance) {
			self::$instance = new CJTServicesClient();
		}
		return self::$instance;
	}

	/**
	* put your comment there...
	* 
	*/
	public function getSSLVerify() {
		return $this->sslVerify;
	}
	
	/**
	* put your comment there...
	* 
	*/
	public function getTimeOut() {
		return $this->timeOut;
	}

	/**
	* put your comment there...
	* 
	*/
	public function getUrl() {
		return $this->url;
	}

	/**
	* put your comment there...
	* 
	* @param mixed $module
	* @param mixed $method
	* @param mixed $params
	*/
	public function makeCall($module, $method, $params = null, $postData = null) {
		# Prepare method name by replacing all UPPER Letters to Lower 
		# precedence by _
		while ( preg_match( '/[A-Z]/', $method, $upperLetter, PREG_OFFSET_CAPTURE ) ) {
			$method = substr_replace( $method, 
																( '_' . strtolower( $upperLetter[ 0 ][ 0 ] ) ), 
																$upperLetter[ 0 ][ 1 ], 1 
																);
		};
		# Lowercase module name
		$module = strtolower( $module );
		# Construct method call uri
		$methodUri = "{$this->url}/{$module}/{$method}";
		# Defaults and E_ALL Complains
		if ( !$params ) {
			$params = array();
		}
		# Encode parameters
		foreach ($params as $name => $value) {
			$params[ $name ] = urlencode( $value );
		}
		# Add query string parameters
		$methodUri = add_query_arg( $params, $methodUri );
		# Request parameters
		$requestParams = array(
			'timeout' => $this->getTimeOut(),
			'sslverify' => $this->getSSLVerify(),
			'body' => json_encode( $postData ),
		);
		# POST Server
		$postRequest = wp_remote_post( $methodUri,  $requestParams );
		if ( ! $postRequest || ( $postRequest instanceof WP_Error ) ) {
			throw new CJTServicesAPICallException( 'CJTStore: Unable to call CJT Services API' );
		}
		# Make sure its CJT Services Response (E.g CJT Services is not activated or the returned
		# content is not belong to CJT Services response)
		if ( ! wp_remote_retrieve_header( $postRequest, 'cjt-store' ) ) {
			throw new CJTServicesAPICallException( 'CJTStore: Invalid response!!!' );
		}
		# Return response Wordpress Handle
		return $postRequest;
	}
	
	/**
	* put your comment there...
	* 
	* @param mixed $value
	* @return {CJTServicesClient|mixed}
	*/
	public function & setSSLVerify($value) {
		# Set
		$this->sslVerify = $value;
		# Chaining
		return $this;
	}

	/**
	* put your comment there...
	* 
	* @param mixed $value
	* @return CJTServicesClient
	*/
	public function & setTimeOut($value) {
		# Set
		$this->timeOut = $value;
		# Chaining
		return $this;
	}

	
}
```
