2016-05-27 03:09:03 +02:00
|
|
|
<?php
|
|
|
|
|
2017-06-29 08:45:17 +02:00
|
|
|
namespace SilverStripe\View\Shortcodes;
|
2016-05-27 03:09:03 +02:00
|
|
|
|
2018-06-20 01:37:35 +02:00
|
|
|
use Embed\Http\DispatcherInterface;
|
2017-04-03 06:30:01 +02:00
|
|
|
use SilverStripe\Core\Convert;
|
|
|
|
use SilverStripe\Core\Injector\Injector;
|
2019-08-19 17:35:40 +02:00
|
|
|
use SilverStripe\ORM\ArrayList;
|
|
|
|
use SilverStripe\ORM\FieldType\DBField;
|
|
|
|
use SilverStripe\View\ArrayData;
|
2018-06-20 01:40:28 +02:00
|
|
|
use SilverStripe\View\Embed\Embeddable;
|
|
|
|
use SilverStripe\View\Embed\EmbedResource;
|
2017-04-18 00:34:18 +02:00
|
|
|
use SilverStripe\View\HTML;
|
2016-08-19 00:51:35 +02:00
|
|
|
use SilverStripe\View\Parsers\ShortcodeHandler;
|
2016-05-27 03:09:03 +02:00
|
|
|
use Embed\Adapters\Adapter;
|
|
|
|
use Embed\Embed;
|
2017-04-03 06:30:01 +02:00
|
|
|
use SilverStripe\View\Parsers\ShortcodeParser;
|
2016-05-27 03:09:03 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Provider for the [embed] shortcode tag used by the embedding service
|
|
|
|
* in the HTML Editor field.
|
|
|
|
* Provides the html needed for the frontend and the editor field itself.
|
|
|
|
*/
|
|
|
|
class EmbedShortcodeProvider implements ShortcodeHandler
|
|
|
|
{
|
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
/**
|
|
|
|
* Gets the list of shortcodes provided by this handler
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public static function get_shortcodes()
|
|
|
|
{
|
2020-04-20 19:58:09 +02:00
|
|
|
return ['embed'];
|
2016-11-29 00:31:16 +01:00
|
|
|
}
|
2016-05-27 03:09:03 +02:00
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
/**
|
|
|
|
* Embed shortcode parser from Oembed. This is a temporary workaround.
|
|
|
|
* Oembed class has been replaced with the Embed external service.
|
|
|
|
*
|
2017-04-03 06:30:01 +02:00
|
|
|
* @param array $arguments
|
|
|
|
* @param string $content
|
|
|
|
* @param ShortcodeParser $parser
|
|
|
|
* @param string $shortcode
|
2016-11-29 00:31:16 +01:00
|
|
|
* @param array $extra
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2020-04-20 19:58:09 +02:00
|
|
|
public static function handle_shortcode($arguments, $content, $parser, $shortcode, $extra = [])
|
2016-11-29 00:31:16 +01:00
|
|
|
{
|
2017-04-03 06:30:01 +02:00
|
|
|
// Get service URL
|
|
|
|
if (!empty($content)) {
|
|
|
|
$serviceURL = $content;
|
|
|
|
} elseif (!empty($arguments['url'])) {
|
|
|
|
$serviceURL = $arguments['url'];
|
2016-11-29 00:31:16 +01:00
|
|
|
} else {
|
2017-04-03 06:30:01 +02:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
// See https://github.com/oscarotero/Embed#example-with-all-options for service arguments
|
|
|
|
$serviceArguments = [];
|
|
|
|
if (!empty($arguments['width'])) {
|
|
|
|
$serviceArguments['min_image_width'] = $arguments['width'];
|
|
|
|
}
|
|
|
|
if (!empty($arguments['height'])) {
|
|
|
|
$serviceArguments['min_image_height'] = $arguments['height'];
|
|
|
|
}
|
|
|
|
|
2018-06-20 01:40:28 +02:00
|
|
|
/** @var EmbedResource $embed */
|
|
|
|
$embed = Injector::inst()->create(Embeddable::class, $serviceURL);
|
|
|
|
if (!empty($serviceArguments)) {
|
|
|
|
$embed->setOptions(array_merge($serviceArguments, (array) $embed->getOptions()));
|
|
|
|
}
|
|
|
|
|
2017-04-03 06:30:01 +02:00
|
|
|
// Allow resolver to be mocked
|
|
|
|
$dispatcher = null;
|
|
|
|
if (isset($extra['resolver'])) {
|
|
|
|
$dispatcher = Injector::inst()->create(
|
|
|
|
$extra['resolver']['class'],
|
|
|
|
$serviceURL,
|
|
|
|
$extra['resolver']['config']
|
|
|
|
);
|
2018-06-20 01:37:35 +02:00
|
|
|
} elseif (Injector::inst()->has(DispatcherInterface::class)) {
|
|
|
|
$dispatcher = Injector::inst()->get(DispatcherInterface::class);
|
2017-04-03 06:30:01 +02:00
|
|
|
}
|
|
|
|
|
2018-07-13 17:44:23 +02:00
|
|
|
if ($dispatcher) {
|
2018-06-20 01:40:28 +02:00
|
|
|
$embed->setDispatcher($dispatcher);
|
2017-04-03 06:30:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Process embed
|
2018-06-20 01:40:28 +02:00
|
|
|
$embed = $embed->getEmbed();
|
2017-04-03 06:30:01 +02:00
|
|
|
|
|
|
|
// Convert embed object into HTML
|
|
|
|
if ($embed && $embed instanceof Adapter) {
|
|
|
|
$result = static::embedForTemplate($embed, $arguments);
|
|
|
|
if ($result) {
|
|
|
|
return $result;
|
|
|
|
}
|
2016-11-29 00:31:16 +01:00
|
|
|
}
|
2017-04-03 06:30:01 +02:00
|
|
|
|
|
|
|
// Fallback to link to service
|
|
|
|
return static::linkEmbed($arguments, $serviceURL, $serviceURL);
|
2016-11-29 00:31:16 +01:00
|
|
|
}
|
2016-05-27 03:09:03 +02:00
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
/**
|
|
|
|
* @param Adapter $embed
|
2017-04-03 06:30:01 +02:00
|
|
|
* @param array $arguments Additional shortcode params
|
2016-11-29 00:31:16 +01:00
|
|
|
* @return string
|
|
|
|
*/
|
2017-04-03 06:30:01 +02:00
|
|
|
public static function embedForTemplate($embed, $arguments)
|
2016-11-29 00:31:16 +01:00
|
|
|
{
|
2017-04-03 06:30:01 +02:00
|
|
|
switch ($embed->getType()) {
|
2016-11-29 00:31:16 +01:00
|
|
|
case 'video':
|
|
|
|
case 'rich':
|
2017-04-03 06:30:01 +02:00
|
|
|
// Attempt to inherit width (but leave height auto)
|
|
|
|
if (empty($arguments['width']) && $embed->getWidth()) {
|
|
|
|
$arguments['width'] = $embed->getWidth();
|
2016-11-29 00:31:16 +01:00
|
|
|
}
|
2019-01-28 15:51:34 +01:00
|
|
|
return static::videoEmbed($arguments, $embed->getCode());
|
2016-11-29 00:31:16 +01:00
|
|
|
case 'link':
|
2019-01-28 15:51:34 +01:00
|
|
|
return static::linkEmbed($arguments, $embed->getUrl(), $embed->getTitle());
|
2016-11-29 00:31:16 +01:00
|
|
|
case 'photo':
|
2019-01-28 15:51:34 +01:00
|
|
|
return static::photoEmbed($arguments, $embed->getUrl());
|
2017-04-03 06:30:01 +02:00
|
|
|
default:
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build video embed tag
|
|
|
|
*
|
|
|
|
* @param array $arguments
|
|
|
|
* @param string $content Raw HTML content
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected static function videoEmbed($arguments, $content)
|
|
|
|
{
|
|
|
|
// Ensure outer div has given width (but leave height auto)
|
|
|
|
if (!empty($arguments['width'])) {
|
|
|
|
$arguments['style'] = 'width: ' . intval($arguments['width']) . 'px;';
|
2016-11-29 00:31:16 +01:00
|
|
|
}
|
2017-04-03 06:30:01 +02:00
|
|
|
|
2019-08-19 17:35:40 +02:00
|
|
|
$data = [
|
|
|
|
'Arguments' => $arguments,
|
|
|
|
'Attributes' => static::buildAttributeListFromArguments($arguments, ['width', 'height', 'url', 'caption']),
|
|
|
|
'Content' => DBField::create_field('HTMLFragment', $content)
|
|
|
|
];
|
|
|
|
|
|
|
|
return ArrayData::create($data)->renderWith(self::class . '_video')->forTemplate();
|
2017-04-03 06:30:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build <a> embed tag
|
|
|
|
*
|
|
|
|
* @param array $arguments
|
|
|
|
* @param string $href
|
|
|
|
* @param string $title Default title
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected static function linkEmbed($arguments, $href, $title)
|
|
|
|
{
|
2019-08-19 17:35:40 +02:00
|
|
|
$data = [
|
|
|
|
'Arguments' => $arguments,
|
|
|
|
'Attributes' => static::buildAttributeListFromArguments($arguments, ['width', 'height', 'url', 'caption']),
|
|
|
|
'Href' => $href,
|
|
|
|
'Title' => !empty($arguments['caption']) ? ($arguments['caption']) : $title
|
|
|
|
];
|
|
|
|
|
|
|
|
return ArrayData::create($data)->renderWith(self::class . '_link')->forTemplate();
|
2017-04-03 06:30:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build img embed tag
|
|
|
|
*
|
|
|
|
* @param array $arguments
|
|
|
|
* @param string $src
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected static function photoEmbed($arguments, $src)
|
|
|
|
{
|
2019-08-19 17:35:40 +02:00
|
|
|
$data = [
|
|
|
|
'Arguments' => $arguments,
|
|
|
|
'Attributes' => static::buildAttributeListFromArguments($arguments, ['url']),
|
|
|
|
'Src' => $src
|
|
|
|
];
|
|
|
|
|
|
|
|
return ArrayData::create($data)->renderWith(self::class . '_photo')->forTemplate();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build a list of HTML attributes from embed arguments - used to preserve backward compatibility
|
|
|
|
*
|
|
|
|
* @deprecated 4.5.0 Use {$Arguments.name} directly in shortcode templates to access argument values
|
|
|
|
* @param array $arguments List of embed arguments
|
|
|
|
* @param array $exclude List of attribute names to exclude from the resulting list
|
|
|
|
* @return ArrayList
|
|
|
|
*/
|
|
|
|
private static function buildAttributeListFromArguments(array $arguments, array $exclude = []): ArrayList
|
|
|
|
{
|
|
|
|
$attributes = ArrayList::create();
|
|
|
|
foreach ($arguments as $key => $value) {
|
|
|
|
if (in_array($key, $exclude)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$attributes->push(ArrayData::create([
|
|
|
|
'Name' => $key,
|
|
|
|
'Value' => Convert::raw2att($value)
|
|
|
|
]));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $attributes;
|
2016-11-29 00:31:16 +01:00
|
|
|
}
|
2016-05-27 03:09:03 +02:00
|
|
|
}
|