65 lines
1.5 KiB
PHP
65 lines
1.5 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @package Joomla.Plugin
|
|
* @subpackage Webservices.installer
|
|
*
|
|
* @copyright (C) 2020 Open Source Matters, Inc. <https://www.joomla.org>
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*/
|
|
|
|
namespace Joomla\Plugin\WebServices\Installer\Extension;
|
|
|
|
use Joomla\CMS\Event\Application\BeforeApiRouteEvent;
|
|
use Joomla\CMS\Plugin\CMSPlugin;
|
|
use Joomla\Event\SubscriberInterface;
|
|
use Joomla\Router\Route;
|
|
|
|
// phpcs:disable PSR1.Files.SideEffects
|
|
\defined('_JEXEC') or die;
|
|
// phpcs:enable PSR1.Files.SideEffects
|
|
|
|
/**
|
|
* Web Services adapter for com_installer.
|
|
*
|
|
* @since 4.0.0
|
|
*/
|
|
final class Installer extends CMSPlugin implements SubscriberInterface
|
|
{
|
|
/**
|
|
* Returns an array of events this subscriber will listen to.
|
|
*
|
|
* @return array
|
|
*
|
|
* @since 5.1.0
|
|
*/
|
|
public static function getSubscribedEvents(): array
|
|
{
|
|
return [
|
|
'onBeforeApiRoute' => 'onBeforeApiRoute',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Registers com_installer's API's routes in the application
|
|
*
|
|
* @param BeforeApiRouteEvent $event The event object
|
|
*
|
|
* @return void
|
|
*
|
|
* @since 4.0.0
|
|
*/
|
|
public function onBeforeApiRoute(BeforeApiRouteEvent $event): void
|
|
{
|
|
$router = $event->getRouter();
|
|
|
|
$defaults = ['component' => 'com_installer', 'public' => false];
|
|
|
|
$routes = [
|
|
new Route(['GET'], 'v1/extensions', 'manage.displayList', [], $defaults),
|
|
];
|
|
|
|
$router->addRoutes($routes);
|
|
}
|
|
}
|