?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/caldera-forms/includes/cf-pro-client/classes/api/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/caldera-forms/includes/cf-pro-client/classes

?? Viewing: keys.php

<?php


namespace calderawp\calderaforms\pro\api;

use calderawp\calderaforms\pro\interfaces\arrayable;


/**
 * Class keys
 * @package calderawp\calderaforms\pro
 */
class keys implements arrayable
{

	/**
	 * API secret key
	 *
	 * @since 0.0.1
	 *
	 * @var string
	 */
	protected $secret;

	/**
	 * API public key
	 *
	 * @since 0.0.1
	 *
	 * @var string
	 */
	protected $public;


	/**
	 * keys constructor.
	 *
	 * @since 0.0.1
	 *
	 * @param string|null $public Optional. Public key
	 * @param string|null $secret Optional. Secret Key
	 */
	public function __construct($public = null, $secret = null)
	{
		$this->set_public($public);
		$this->set_secret($secret);

	}

	/**
	 * Convert to array, including token
	 *
	 * @since 0.0.1
	 *
	 * @return array
	 */
	public function toArray()
	{
		return [
			'token' => $this->get_token(),
			'public' => $this->get_public(),
			'secret' => $this->get_secret(),
		];

	}

	/**
	 * Create object from saved or other array
	 *
	 * @since 0.0.1
	 *
	 * @param array $data Optional data.
	 *
	 * @return keys
	 */
	public static function fromArray(array $data = [])
	{
		$keys = new keys();
		if ( !empty($data[ 'public' ]) ) {
			$keys->set_public($data[ 'public' ]);
		}
		if ( !empty($data[ 'secret' ]) ) {
			$keys->set_secret($data[ 'secret' ]);
		}

		return $keys;
	}

	/**
	 * Get API token
	 *
	 * @since 0.0.1
	 *
	 * @return string
	 */
	public function get_token()
	{
		return $this->get_public() && $this->get_secret() ?
			sha1($this->get_public() . $this->get_secret())
			: false;

	}

	/**
	 * Get API public key
	 *
	 * @since 0.0.1
	 *
	 * @return string
	 */
	public function get_public()
	{
		return apply_filters('caldera_forms_pro_get_public_key', $this->public);

	}

	/**
	 * Set API key
	 *
	 * @since 0.0.1
	 *
	 * @return keys
	 */
	public function set_public($key)
	{
		$this->public = $key;
		return $this;

	}

	/**
	 * Set API secret
	 *
	 * @since 0.0.1
	 *
	 * @return keys
	 */
	public function set_secret($key)
	{
		$this->secret = $key;
		return $this;

	}

	/**
	 * Get API secret key
	 *
	 * @since 0.2.0
	 *
	 * @return string
	 */
	public function get_secret()
	{
		return apply_filters('caldera_forms_pro_get_secret_key', $this->secret);

	}


}


??

??