123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390 |
- <?php
- /**
- * @package Grav\Common
- *
- * @copyright Copyright (C) 2015 - 2019 Trilby Media, LLC. All rights reserved.
- * @license MIT License; see LICENSE file for details.
- */
- namespace Grav\Common;
- use Grav\Common\Data\Blueprint;
- use Grav\Common\Data\Data;
- use Grav\Common\Page\Interfaces\PageInterface;
- use Grav\Common\Config\Config;
- use RocketTheme\Toolbox\Event\EventDispatcher;
- use RocketTheme\Toolbox\Event\EventSubscriberInterface;
- use RocketTheme\Toolbox\File\YamlFile;
- class Plugin implements EventSubscriberInterface, \ArrayAccess
- {
- /**
- * @var string
- */
- public $name;
- /**
- * @var array
- */
- public $features = [];
- /**
- * @var Grav
- */
- protected $grav;
- /**
- * @var Config
- */
- protected $config;
- protected $active = true;
- protected $blueprint;
- /**
- * By default assign all methods as listeners using the default priority.
- *
- * @return array
- */
- public static function getSubscribedEvents()
- {
- $methods = get_class_methods(get_called_class());
- $list = [];
- foreach ($methods as $method) {
- if (strpos($method, 'on') === 0) {
- $list[$method] = [$method, 0];
- }
- }
- return $list;
- }
- /**
- * Constructor.
- *
- * @param string $name
- * @param Grav $grav
- * @param Config $config
- */
- public function __construct($name, Grav $grav, Config $config = null)
- {
- $this->name = $name;
- $this->grav = $grav;
- if ($config) {
- $this->setConfig($config);
- }
- }
- /**
- * @param Config $config
- * @return $this
- */
- public function setConfig(Config $config)
- {
- $this->config = $config;
- return $this;
- }
- /**
- * Get configuration of the plugin.
- *
- * @return array
- */
- public function config()
- {
- return $this->config["plugins.{$this->name}"];
- }
- /**
- * Determine if plugin is running under the admin
- *
- * @return bool
- */
- public function isAdmin()
- {
- return Utils::isAdminPlugin();
- }
- /**
- * Determine if plugin is running under the CLI
- *
- * @return bool
- */
- public function isCli()
- {
- return \defined('GRAV_CLI');
- }
- /**
- * Determine if this route is in Admin and active for the plugin
- *
- * @param string $plugin_route
- * @return bool
- */
- protected function isPluginActiveAdmin($plugin_route)
- {
- $should_run = false;
- $uri = $this->grav['uri'];
- if (strpos($uri->path(), $this->config->get('plugins.admin.route') . '/' . $plugin_route) === false) {
- $should_run = false;
- } elseif (isset($uri->paths()[1]) && $uri->paths()[1] === $plugin_route) {
- $should_run = true;
- }
- return $should_run;
- }
- /**
- * @param array $events
- */
- protected function enable(array $events)
- {
- /** @var EventDispatcher $dispatcher */
- $dispatcher = $this->grav['events'];
- foreach ($events as $eventName => $params) {
- if (\is_string($params)) {
- $dispatcher->addListener($eventName, [$this, $params]);
- } elseif (\is_string($params[0])) {
- $dispatcher->addListener($eventName, [$this, $params[0]], $this->getPriority($params, $eventName));
- } else {
- foreach ($params as $listener) {
- $dispatcher->addListener($eventName, [$this, $listener[0]], $this->getPriority($listener, $eventName));
- }
- }
- }
- }
- /**
- * @param array $params
- * @param string $eventName
- */
- private function getPriority($params, $eventName)
- {
- $grav = Grav::instance();
- $override = implode('.', ["priorities", $this->name, $eventName, $params[0]]);
- if ($grav['config']->get($override) !== null)
- {
- return $grav['config']->get($override);
- } elseif (isset($params[1])) {
- return $params[1];
- }
- return 0;
- }
- /**
- * @param array $events
- */
- protected function disable(array $events)
- {
- /** @var EventDispatcher $dispatcher */
- $dispatcher = $this->grav['events'];
- foreach ($events as $eventName => $params) {
- if (\is_string($params)) {
- $dispatcher->removeListener($eventName, [$this, $params]);
- } elseif (\is_string($params[0])) {
- $dispatcher->removeListener($eventName, [$this, $params[0]]);
- } else {
- foreach ($params as $listener) {
- $dispatcher->removeListener($eventName, [$this, $listener[0]]);
- }
- }
- }
- }
- /**
- * Whether or not an offset exists.
- *
- * @param string $offset An offset to check for.
- * @return bool Returns TRUE on success or FALSE on failure.
- */
- public function offsetExists($offset)
- {
- $this->loadBlueprint();
- if ($offset === 'title') {
- $offset = 'name';
- }
- return isset($this->blueprint[$offset]);
- }
- /**
- * Returns the value at specified offset.
- *
- * @param string $offset The offset to retrieve.
- * @return mixed Can return all value types.
- */
- public function offsetGet($offset)
- {
- $this->loadBlueprint();
- if ($offset === 'title') {
- $offset = 'name';
- }
- return $this->blueprint[$offset] ?? null;
- }
- /**
- * Assigns a value to the specified offset.
- *
- * @param string $offset The offset to assign the value to.
- * @param mixed $value The value to set.
- * @throws \LogicException
- */
- public function offsetSet($offset, $value)
- {
- throw new \LogicException(__CLASS__ . ' blueprints cannot be modified.');
- }
- /**
- * Unsets an offset.
- *
- * @param string $offset The offset to unset.
- * @throws \LogicException
- */
- public function offsetUnset($offset)
- {
- throw new \LogicException(__CLASS__ . ' blueprints cannot be modified.');
- }
- /**
- * This function will search a string for markdown links in a specific format. The link value can be
- * optionally compared against via the $internal_regex and operated on by the callback $function
- * provided.
- *
- * format: [plugin:myplugin_name](function_data)
- *
- * @param string $content The string to perform operations upon
- * @param callable $function The anonymous callback function
- * @param string $internal_regex Optional internal regex to extra data from
- *
- * @return string
- */
- protected function parseLinks($content, $function, $internal_regex = '(.*)')
- {
- $regex = '/\[plugin:(?:' . $this->name . ')\]\(' . $internal_regex . '\)/i';
- return preg_replace_callback($regex, $function, $content);
- }
- /**
- * Merge global and page configurations.
- *
- * @param PageInterface $page The page to merge the configurations with the
- * plugin settings.
- * @param mixed $deep false = shallow|true = recursive|merge = recursive+unique
- * @param array $params Array of additional configuration options to
- * merge with the plugin settings.
- * @param string $type Is this 'plugins' or 'themes'
- *
- * @return Data
- */
- protected function mergeConfig(PageInterface $page, $deep = false, $params = [], $type = 'plugins')
- {
- $class_name = $this->name;
- $class_name_merged = $class_name . '.merged';
- $defaults = $this->config->get($type . '.' . $class_name, []);
- $page_header = $page->header();
- $header = [];
- if (!isset($page_header->{$class_name_merged}) && isset($page_header->{$class_name})) {
- // Get default plugin configurations and retrieve page header configuration
- $config = $page_header->{$class_name};
- if (\is_bool($config)) {
- // Overwrite enabled option with boolean value in page header
- $config = ['enabled' => $config];
- }
- // Merge page header settings using deep or shallow merging technique
- $header = $this->mergeArrays($deep, $defaults, $config);
- // Create new config object and set it on the page object so it's cached for next time
- $page->modifyHeader($class_name_merged, new Data($header));
- } else if (isset($page_header->{$class_name_merged})) {
- $merged = $page_header->{$class_name_merged};
- $header = $merged->toArray();
- }
- if (empty($header)) {
- $header = $defaults;
- }
- // Merge additional parameter with configuration options
- $header = $this->mergeArrays($deep, $header, $params);
- // Return configurations as a new data config class
- return new Data($header);
- }
- /**
- * Merge arrays based on deepness
- *
- * @param string|bool $deep
- * @param array $array1
- * @param array $array2
- * @return array
- */
- private function mergeArrays($deep, $array1, $array2)
- {
- if ($deep === 'merge') {
- return Utils::arrayMergeRecursiveUnique($array1, $array2);
- }
- if ($deep === true) {
- return array_replace_recursive($array1, $array2);
- }
- return array_merge($array1, $array2);
- }
- /**
- * Persists to disk the plugin parameters currently stored in the Grav Config object
- *
- * @param string $plugin_name The name of the plugin whose config it should store.
- *
- * @return bool
- */
- public static function saveConfig($plugin_name)
- {
- if (!$plugin_name) {
- return false;
- }
- $grav = Grav::instance();
- $locator = $grav['locator'];
- $filename = 'config://plugins/' . $plugin_name . '.yaml';
- $file = YamlFile::instance($locator->findResource($filename, true, true));
- $content = $grav['config']->get('plugins.' . $plugin_name);
- $file->save($content);
- $file->free();
- return true;
- }
- /**
- * Simpler getter for the plugin blueprint
- *
- * @return Blueprint
- */
- public function getBlueprint()
- {
- if (!$this->blueprint) {
- $this->loadBlueprint();
- }
- return $this->blueprint;
- }
- /**
- * Load blueprints.
- */
- protected function loadBlueprint()
- {
- if (!$this->blueprint) {
- $grav = Grav::instance();
- $plugins = $grav['plugins'];
- $this->blueprint = $plugins->get($this->name)->blueprints();
- }
- }
- }
|