2020-03-11 20:29:08 +00:00
|
|
|
<?php
|
2020-03-15 21:21:11 +00:00
|
|
|
|
2021-10-10 09:26:18 +01:00
|
|
|
declare(strict_types = 1);
|
|
|
|
|
2020-05-20 17:53:53 +01:00
|
|
|
// {{{ License
|
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// GNU social is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// }}}
|
|
|
|
|
2020-03-21 20:18:05 +00:00
|
|
|
/**
|
|
|
|
* GNU social's event handler wrapper around Symfony's,
|
|
|
|
* keeping our old interface, which is more convenient and just as powerful
|
|
|
|
*
|
|
|
|
* @package GNUsocial
|
|
|
|
* @category Event
|
|
|
|
*
|
2021-02-19 23:29:43 +00:00
|
|
|
* @author Hugo Sales <hugo@hsal.es>
|
|
|
|
* @copyright 2020-2021 Free Software Foundation, Inc http://www.fsf.org
|
2020-03-21 20:18:05 +00:00
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
|
|
|
*/
|
2020-03-11 20:29:08 +00:00
|
|
|
|
2020-05-11 19:15:08 +01:00
|
|
|
namespace App\Core;
|
2020-03-11 20:29:08 +00:00
|
|
|
|
2021-07-21 17:41:53 +01:00
|
|
|
use ReflectionFunction;
|
2020-03-11 20:29:08 +00:00
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
|
|
|
use Symfony\Component\EventDispatcher\GenericEvent;
|
|
|
|
|
2020-06-23 21:37:29 +01:00
|
|
|
abstract class Event
|
2020-03-15 21:21:11 +00:00
|
|
|
{
|
2020-03-11 20:29:08 +00:00
|
|
|
/**
|
|
|
|
* Constants to be returned from event handlers, for increased clarity
|
|
|
|
*
|
|
|
|
* bool stop - Stop other handlers from processing the event
|
|
|
|
* bool next - Allow the other handlers to process the event
|
|
|
|
*/
|
|
|
|
public const stop = false;
|
|
|
|
public const next = true;
|
|
|
|
|
2020-03-15 21:21:11 +00:00
|
|
|
private static EventDispatcherInterface $dispatcher;
|
|
|
|
|
|
|
|
public static function setDispatcher(EventDispatcherInterface $dis): void
|
|
|
|
{
|
|
|
|
self::$dispatcher = $dis;
|
|
|
|
}
|
2020-03-11 20:29:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add an event handler
|
|
|
|
*
|
|
|
|
* To run some code at a particular point in GNU social processing.
|
|
|
|
* Named events include receiving an XMPP message, adding a new notice,
|
|
|
|
* or showing part of an HTML page.
|
|
|
|
*
|
|
|
|
* The arguments to the handler vary by the event. Handlers can return
|
|
|
|
* two possible values: false means that the event has been replaced by
|
|
|
|
* the handler completely, and no default processing should be done.
|
|
|
|
* Non-false means successful handling, and that the default processing
|
|
|
|
* should succeed. (Note that this only makes sense for some events.)
|
|
|
|
*
|
|
|
|
* Handlers can also abort processing by throwing an exception; these will
|
|
|
|
* be caught by the closest code and displayed as errors.
|
|
|
|
*
|
2020-05-11 18:39:12 +01:00
|
|
|
* @param string $name Name of the event
|
|
|
|
* @param callable $handler Code to run
|
|
|
|
* @param int $priority Higher runs first
|
2020-03-11 20:29:08 +00:00
|
|
|
*/
|
2021-10-10 09:26:18 +01:00
|
|
|
public static function addHandler(
|
|
|
|
string $name,
|
|
|
|
callable $handler,
|
|
|
|
int $priority = 0,
|
|
|
|
string $ns = 'GNUsocial.',
|
|
|
|
): void {
|
2020-03-11 20:29:08 +00:00
|
|
|
self::$dispatcher->addListener(
|
2020-03-20 22:48:27 +00:00
|
|
|
$ns . $name,
|
2021-08-11 23:47:12 +01:00
|
|
|
function ($event, $event_name, $dispatcher) use ($handler, $name) {
|
2020-03-20 22:10:01 +00:00
|
|
|
// Old style of events (preferred)
|
|
|
|
if ($event instanceof GenericEvent) {
|
2021-10-10 09:26:18 +01:00
|
|
|
if ($handler(...$event->getArguments()) === self::stop) {
|
2020-03-20 22:10:01 +00:00
|
|
|
$event->stopPropagation();
|
|
|
|
}
|
2020-03-11 20:29:08 +00:00
|
|
|
return $event;
|
|
|
|
}
|
2021-07-21 17:41:53 +01:00
|
|
|
// @codeCoverageIgnoreStart
|
2020-03-15 21:21:11 +00:00
|
|
|
// Symfony style of events
|
2021-08-11 23:47:12 +01:00
|
|
|
Log::warning("Event::addHandler for {$name} doesn't Conform to GNU social guidelines. Use of this style of event is discouraged.");
|
2021-10-10 09:26:18 +01:00
|
|
|
$handler($event, $event_name, $dispatcher);
|
|
|
|
|
2021-07-21 17:41:53 +01:00
|
|
|
// @codeCoverageIgnoreEnd
|
2020-03-11 20:29:08 +00:00
|
|
|
},
|
2021-10-10 09:26:18 +01:00
|
|
|
$priority,
|
2020-03-11 20:29:08 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle an event
|
|
|
|
*
|
|
|
|
* Events are any point in the code that we want to expose for admins
|
|
|
|
* or third-party developers to use.
|
|
|
|
*
|
|
|
|
* We pass in an array of arguments (including references, for stuff
|
|
|
|
* that can be changed), and each assigned handler gets run with those
|
|
|
|
* arguments. Exceptions can be thrown to indicate an error.
|
|
|
|
*
|
|
|
|
* @param string $name Name of the event that's happening
|
|
|
|
* @param array $args Arguments for handlers
|
2020-03-20 22:48:27 +00:00
|
|
|
* @param string $ns Namspace for the event
|
2020-03-11 20:29:08 +00:00
|
|
|
*
|
|
|
|
* @return bool flag saying whether to continue processing, based
|
2021-10-10 09:26:18 +01:00
|
|
|
* on results of handlers
|
2020-03-11 20:29:08 +00:00
|
|
|
*/
|
2020-08-03 21:55:07 +01:00
|
|
|
public static function handle(string $name, array $args = [], string $ns = 'GNUsocial.'): bool
|
2020-03-11 20:29:08 +00:00
|
|
|
{
|
2020-08-03 21:55:07 +01:00
|
|
|
return !(self::$dispatcher->dispatch(new GenericEvent($name, $args), $ns . $name)->isPropagationStopped());
|
2020-03-11 20:29:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check to see if an event handler exists
|
|
|
|
*
|
|
|
|
* Look to see if there's any handler for a given event, or narrow
|
|
|
|
* by providing the name of a specific plugin class.
|
|
|
|
*
|
2020-03-15 21:21:11 +00:00
|
|
|
* @param string $name Name of the event to look for
|
2020-03-11 20:29:08 +00:00
|
|
|
* @param string $plugin Optional name of the plugin class to look for
|
|
|
|
*
|
|
|
|
* @return bool flag saying whether such a handler exists
|
|
|
|
*/
|
2021-07-21 17:41:53 +01:00
|
|
|
public static function hasHandler(string $name, ?string $plugin = null, string $ns = 'GNUsocial.'): bool
|
2020-03-11 20:29:08 +00:00
|
|
|
{
|
2021-07-21 17:41:53 +01:00
|
|
|
$listeners = self::$dispatcher->getListeners($ns . $name);
|
2020-03-11 20:29:08 +00:00
|
|
|
if (isset($plugin)) {
|
2021-07-21 17:41:53 +01:00
|
|
|
foreach ($listeners as $event_handler) {
|
|
|
|
$class = (new ReflectionFunction((new ReflectionFunction($event_handler))->getStaticVariables()['handler']))->getClosureScopeClass()->getName();
|
|
|
|
if ($class === $plugin) {
|
2020-03-11 20:29:08 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return !empty($listeners);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the array of handlers for $name
|
|
|
|
*
|
|
|
|
* @param string $name Name of event
|
|
|
|
*/
|
2021-07-21 17:41:53 +01:00
|
|
|
public static function getHandlers(string $name, string $ns = 'GNUsocial.'): array
|
2020-03-11 20:29:08 +00:00
|
|
|
{
|
2021-07-21 17:41:53 +01:00
|
|
|
return self::$dispatcher->getListeners($ns . $name);
|
2020-03-11 20:29:08 +00:00
|
|
|
}
|
|
|
|
}
|