2009-10-11 02:06:57 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* A simple parser that allows you to map BBCode-like "shortcodes" to an arbitrary callback.
|
|
|
|
*
|
2013-02-04 21:27:22 +01:00
|
|
|
* See the documentation at docs/reference/shortcodes.md .
|
2009-10-11 02:06:57 +02:00
|
|
|
*
|
2012-04-12 08:02:46 +02:00
|
|
|
* @package framework
|
2009-10-11 02:06:57 +02:00
|
|
|
* @subpackage misc
|
|
|
|
*/
|
|
|
|
class ShortcodeParser {
|
|
|
|
|
|
|
|
private static $instances = array();
|
|
|
|
|
|
|
|
private static $active_instance = 'default';
|
|
|
|
|
2012-09-26 23:34:00 +02:00
|
|
|
// --------------------------------------------------------------------------------------------------------------
|
2009-10-11 02:06:57 +02:00
|
|
|
|
|
|
|
protected $shortcodes = array();
|
|
|
|
|
2012-09-26 23:34:00 +02:00
|
|
|
// --------------------------------------------------------------------------------------------------------------
|
2009-10-11 02:06:57 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the {@link ShortcodeParser} instance that is attached to a particular identifier.
|
|
|
|
*
|
|
|
|
* @param string $identifier Defaults to "default".
|
|
|
|
* @return ShortcodeParser
|
|
|
|
*/
|
|
|
|
public static function get($identifier = 'default') {
|
|
|
|
if(!array_key_exists($identifier, self::$instances)) {
|
|
|
|
self::$instances[$identifier] = new ShortcodeParser();
|
|
|
|
}
|
|
|
|
|
|
|
|
return self::$instances[$identifier];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the currently active/default {@link ShortcodeParser} instance.
|
|
|
|
*
|
|
|
|
* @return ShortcodeParser
|
|
|
|
*/
|
|
|
|
public static function get_active() {
|
|
|
|
return self::get(self::$active_instance);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the identifier to use for the current active/default {@link ShortcodeParser} instance.
|
|
|
|
*
|
|
|
|
* @param string $identifier
|
|
|
|
*/
|
|
|
|
public static function set_active($identifier) {
|
|
|
|
self::$active_instance = (string) $identifier;
|
|
|
|
}
|
|
|
|
|
2012-09-26 23:34:00 +02:00
|
|
|
// --------------------------------------------------------------------------------------------------------------
|
2009-10-11 02:06:57 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Register a shortcode, and attach it to a PHP callback.
|
|
|
|
*
|
|
|
|
* The callback for a shortcode will have the following arguments passed to it:
|
|
|
|
* - Any parameters attached to the shortcode as an associative array (keys are lower-case).
|
|
|
|
* - Any content enclosed within the shortcode (if it is an enclosing shortcode). Note that any content within
|
|
|
|
* this will not have been parsed, and can optionally be fed back into the parser.
|
|
|
|
* - The {@link ShortcodeParser} instance used to parse the content.
|
|
|
|
* - The shortcode tag name that was matched within the parsed content.
|
|
|
|
*
|
|
|
|
* @param string $shortcode The shortcode tag to map to the callback - normally in lowercase_underscore format.
|
|
|
|
* @param callback $callback The callback to replace the shortcode with.
|
|
|
|
*/
|
|
|
|
public function register($shortcode, $callback) {
|
|
|
|
if(is_callable($callback)) $this->shortcodes[$shortcode] = $callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if a shortcode has been registered.
|
|
|
|
*
|
|
|
|
* @param string $shortcode
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function registered($shortcode) {
|
|
|
|
return array_key_exists($shortcode, $this->shortcodes);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove a specific registered shortcode.
|
|
|
|
*
|
|
|
|
* @param string $shortcode
|
|
|
|
*/
|
|
|
|
public function unregister($shortcode) {
|
|
|
|
if($this->registered($shortcode)) unset($this->shortcodes[$shortcode]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove all registered shortcodes.
|
|
|
|
*/
|
|
|
|
public function clear() {
|
|
|
|
$this->shortcodes = array();
|
|
|
|
}
|
|
|
|
|
2012-09-26 23:34:00 +02:00
|
|
|
// --------------------------------------------------------------------------------------------------------------
|
2009-10-11 02:06:57 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse a string, and replace any registered shortcodes within it with the result of the mapped callback.
|
|
|
|
*
|
|
|
|
* @param string $content
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function parse($content) {
|
|
|
|
if(!$this->shortcodes) return $content;
|
|
|
|
|
|
|
|
$shortcodes = implode('|', array_map('preg_quote', array_keys($this->shortcodes)));
|
2012-05-23 08:18:06 +02:00
|
|
|
$pattern = "/\[($shortcodes)(.*?)(\/\]|\](?(4)|(?:(.+?)\[\/\s*\\1\s*\]))|\])/s";
|
|
|
|
|
|
|
|
if(preg_match_all($pattern, $content, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER)) {
|
|
|
|
$replacements = array();
|
|
|
|
foreach($matches as $match) {
|
|
|
|
$prefix = $match[0][1] ? $content[$match[0][1]-1] : '';
|
|
|
|
if(strlen($match[0][0]) + $match[0][1] < strlen($content)) {
|
|
|
|
$suffix = $content[strlen($match[0][0]) + $match[0][1]];
|
|
|
|
} else {
|
|
|
|
$suffix = '';
|
|
|
|
}
|
|
|
|
if($prefix == '[' && $suffix == ']') {
|
|
|
|
$replacements[] = array($match[0][0], $match[0][1]-1, strlen($match[0][0]) + 2);
|
|
|
|
} else {
|
|
|
|
$replacements[] = array($this->handleShortcode($match), $match[0][1], strlen($match[0][0]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// We reverse this so that replacements don't break offsets
|
|
|
|
foreach(array_reverse($replacements) as $replace) {
|
|
|
|
$content = substr_replace($content, $replace[0], $replace[1], $replace[2]);
|
|
|
|
}
|
|
|
|
}
|
2009-10-11 02:06:57 +02:00
|
|
|
|
2012-05-23 08:18:06 +02:00
|
|
|
return $content;
|
2009-10-11 02:06:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
protected function handleShortcode($matches) {
|
2012-05-23 08:18:06 +02:00
|
|
|
$shortcode = $matches[1][0];
|
2009-10-11 02:06:57 +02:00
|
|
|
|
|
|
|
$attributes = array(); // Parse attributes into into this array.
|
|
|
|
|
2012-05-23 08:18:06 +02:00
|
|
|
if(preg_match_all('/(\w+) *= *(?:([\'"])(.*?)\\2|([^ ,"\'>]+))/', $matches[2][0], $match, PREG_SET_ORDER)) {
|
2009-10-11 02:06:57 +02:00
|
|
|
foreach($match as $attribute) {
|
|
|
|
if(!empty($attribute[4])) {
|
|
|
|
$attributes[strtolower($attribute[1])] = $attribute[4];
|
|
|
|
} elseif(!empty($attribute[3])) {
|
|
|
|
$attributes[strtolower($attribute[1])] = $attribute[3];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-05-23 08:18:06 +02:00
|
|
|
|
2012-09-26 23:34:00 +02:00
|
|
|
return call_user_func(
|
|
|
|
$this->shortcodes[$shortcode],
|
|
|
|
$attributes, isset($matches[4][0]) ? $matches[4][0] : '', $this, $shortcode);
|
2009-10-11 02:06:57 +02:00
|
|
|
}
|
|
|
|
|
2012-03-09 02:25:42 +01:00
|
|
|
}
|