Your IP : 216.73.216.240
<?php
/**
* Pinpoll.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;
/**
* Pinpoll Provider
* Pinpoll Tools - Create Polls, Quizzes & Forms
*
* @link https://www.pinpoll.com/products/tools
*
*/
class Pinpoll extends ProviderAdapter implements ProviderInterface
{
/** inline {@inheritdoc} */
protected $endpoint = 'https://tools.pinpoll.com/oembed?format=json';
/** inline {@inheritdoc} */
protected static $hosts = [
'tools.pinpoll.com'
];
/** inline {@inheritdoc} */
protected $httpsSupport = true;
/** inline {@inheritdoc} */
protected $responsiveSupport = true;
/** inline {@inheritdoc} */
public function validateUrl(Url $url)
{
return (bool) (preg_match('~tools\.pinpoll\.com/([^/]+)/([0-9]+)$~i', (string) $url));
}
/** inline {@inheritdoc} */
public function normalizeUrl(Url $url)
{
$url->convertToHttps();
$url->removeQueryString();
$url->removeLastSlash();
return $url;
}
}