Your IP : 216.73.216.240
<?php
/**
* Adways.php
*
* @package Embera
* @author Michael Pratt <yo@michael-pratt.com>
* @link http://www.michael-pratt.com/
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Embera\Provider;
use Embera\Url;
/**
* adways.com Provider
* Adways Studio and Media make the digital video advertisement better.
*
* @link https://www.adways.com/
*
*/
class Adways extends ProviderAdapter implements ProviderInterface
{
/** inline {@inheritdoc} */
protected $endpoint = 'https://play.adpaths.com/oembed/?format=json';
/** inline {@inheritdoc} */
protected static $hosts = [
'play.adpaths.com'
];
/** inline {@inheritdoc} */
protected $httpsSupport = true;
/** inline {@inheritdoc} */
public function validateUrl(Url $url)
{
return (bool) (preg_match('~\.com/experience/([^/]+)/?$~i', (string) $url));
}
/** inline {@inheritdoc} */
public function normalizeUrl(Url $url)
{
$url->convertToHttps();
$url->removeQueryString();
$url->removeLastSlash();
return $url;
}
/** inline {@inheritdoc} */
public function getFakeResponse()
{
$attr = [];
$attr[] = 'width="{width}"';
$attr[] = 'height="{height}"';
$attr[] = 'src="' . (string) $this->url . '"';
$attr[] = 'frameborder="0"';
$attr[] = 'webkitallowfullscreen mozallowfullscreen allowfullscreen';
return [
'type' => 'rich',
'provider_name' => 'Adways',
'provider_url' => 'https://www.adways.com',
'title' => 'Unknown title',
'html' => '<iframe ' . implode(' ', $attr). '></iframe>',
];
}
}