. // }}} /** * Main GNU social entry point * * @package GNUsocial * @category Framework * * StatusNet and GNU social 1 * * @author Refer to CREDITS.md * @copyright 2010 Free Software Foundation, Inc http://www.fsf.org * * GNU social 2 * @author Bruno Casteleiro * @author Diogo Cordeiro * * GNU social 3 * @author Hugo Sales * @copyright 2018-2020 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ namespace App\Core; use App\Core\DB\DB; use App\Core\DB\DefaultSettings; use App\Core\I18n\I18nHelper; use App\Core\Queue\Queue; use App\Core\Router\Router; use Doctrine\ORM\EntityManagerInterface; use Psr\Log\LoggerInterface; use Symfony\Component\Console\Event\ConsoleCommandEvent; use Symfony\Component\EventDispatcher\EventDispatcherInterface; use Symfony\Component\EventDispatcher\EventSubscriberInterface; use Symfony\Component\Form\FormFactoryInterface; use Symfony\Component\HttpKernel\Event\RequestEvent; use Symfony\Component\HttpKernel\KernelEvents; use Symfony\Component\Messenger\MessageBusInterface; use Symfony\Component\Routing\RouterInterface; use Symfony\Contracts\Translation\TranslatorInterface; class GNUsocial implements EventSubscriberInterface { protected LoggerInterface $logger; protected TranslatorInterface $translator; protected EntityManagerInterface $entity_manager; protected RouterInterface $router; protected FormFactoryInterface $form_factory; protected MessageBusInterface $message_bus; /** * Symfony dependency injection gives us access to these services */ public function __construct(LoggerInterface $logger, TranslatorInterface $translator, EntityManagerInterface $em, RouterInterface $router, FormFactoryInterface $ff, MessageBusInterface $message_bus) { $this->logger = $logger; $this->translator = $translator; $this->entity_manager = $em; $this->router = $router; $this->form_factory = $ff; $this->message_bus = $message_bus; } /** * Store these services to be accessed statically and load modules * * @param EventDispatcherInterface $event_dispatcher */ public function register(EventDispatcherInterface $event_dispatcher): void { Log::setLogger($this->logger); Event::setDispatcher($event_dispatcher); I18nHelper::setTranslator($this->translator); DB::setManager($this->entity_manager); Router::setRouter($this->router); Form::setFactory($this->form_factory); Queue::setMessageBus($this->message_bus); DefaultSettings::setDefaults(); ModulesManager::loadModules(); } /** * Event very early on in the Symfony HTTP lifecycle, but after everyting is registered * where we get access to the event dispatcher * * @param RequestEvent $event * @param string $event_name * @param EventDispatcherInterface $event_dispatcher * * @return RequestEvent */ public function onKernelRequest(RequestEvent $event, string $event_name, EventDispatcherInterface $event_dispatcher): RequestEvent { $this->register($event_dispatcher); return $event; } /** * Event after everything is initialized when using the `bin/console` command * * @param ConsoleCommandEvent $event * @param string $event_name * @param EventDispatcherInterface $event_dispatcher * * @return ConsoleCommandEvent */ public function onCommand(ConsoleCommandEvent $event, string $event_name, EventDispatcherInterface $event_dispatcher): ConsoleCommandEvent { $this->register($event_dispatcher); return $event; } /** * Tell Symfony which events we want to listen to, which Symfony detects and autowires * due to this implementing the `EventSubscriberInterface` */ public static function getSubscribedEvents() { return [ KernelEvents::REQUEST => 'onKernelRequest', 'console.command' => 'onCommand', ]; } }