Current File : /home/pacjaorg/www/copwordpres/wp-content/plugins/embedpress/EmbedPress/Providers/Gumroad.php |
<?php
namespace EmbedPress\Providers;
use Embera\Provider\ProviderAdapter;
use Embera\Provider\ProviderInterface;
use Embera\Url;
(defined('ABSPATH') && defined('EMBEDPRESS_IS_LOADED')) or die("No direct script access allowed.");
/**
* Entity responsible to support Gumroad embeds.
*
* @package EmbedPress
* @subpackage EmbedPress/Providers
* @author EmbedPress <help@embedpress.com>
* @copyright Copyright (C) 2023 WPDeveloper. All rights reserved.
* @license GPLv3 or later
* @since 1.0.0
*/
class Gumroad extends ProviderAdapter implements ProviderInterface
{
/** inline {@inheritdoc} */
protected static $hosts = ["gumroad.com"];
/**
* Method that verifies if the embed URL belongs to Gumroad.
*
* @param Url $url
* @return boolean
* @since 1.0.0
*
*/
public function validateUrl(Url $url)
{
return (bool) preg_match(
"/^https:\/\/[\w.-]+\.gumroad\.com\/l\/[\w.-]+$/i",
(string) $url
);
}
public function validateGumroad($url)
{
return (bool) preg_match(
"/^https:\/\/[\w.-]+\.gumroad\.com\/l\/[\w.-]+$/i",
(string) $url
);
}
/**
* This method fakes an Oembed response.
*
* @since 1.0.0
*
* @return array
*/
public function fakeResponse()
{
$src_url = urldecode($this->url);
// Check if the url is already converted to the embed format
if ($this->validateGumroad($src_url)) {
$iframeSrc = $this->url;
} else {
return [];
}
$width = isset($this->config['maxwidth']) ? $this->config['maxwidth'] : 600;
$height = isset($this->config['maxheight']) ? $this->config['maxheight'] : 350;
return [
'type' => 'rich',
'provider_name' => 'Gumroad',
'provider_url' => 'https://gumroad.com',
'title' => 'Unknown title',
'html' => '<iframe title="" width="' . esc_attr($width) . '" height="' . esc_attr($height) . '" src="' . esc_url($iframeSrc) . '" ></iframe>',
];
}
/** inline @inheritDoc */
public function modifyResponse(array $response = [])
{
return $this->fakeResponse();
}
}