131 lines
3.1 KiB
PHP
131 lines
3.1 KiB
PHP
<?php
|
|
/**
|
|
* @package Joomla.Component.Builder
|
|
*
|
|
* @created 4th September, 2022
|
|
* @author Llewellyn van der Merwe <https://dev.vdm.io>
|
|
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
|
|
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*/
|
|
|
|
namespace VDM\Joomla\Componentbuilder\JoomlaPower\Service;
|
|
|
|
|
|
use Joomla\DI\Container;
|
|
use Joomla\DI\ServiceProviderInterface;
|
|
use VDM\Joomla\Componentbuilder\JoomlaPower\Config;
|
|
use VDM\Joomla\Componentbuilder\Table;
|
|
use VDM\Joomla\Componentbuilder\JoomlaPower\Grep;
|
|
use VDM\Joomla\Componentbuilder\JoomlaPower\Super as Superpower;
|
|
use VDM\Joomla\Componentbuilder\Compiler\Power\Parser;
|
|
|
|
|
|
/**
|
|
* Joomla Power Service Provider
|
|
*
|
|
* @since 3.2.1
|
|
*/
|
|
class JoomlaPower implements ServiceProviderInterface
|
|
{
|
|
/**
|
|
* Registers the service provider with a DI container.
|
|
*
|
|
* @param Container $container The DI container.
|
|
*
|
|
* @return void
|
|
* @since 3.2.0
|
|
*/
|
|
public function register(Container $container)
|
|
{
|
|
$container->alias(Config::class, 'Config')
|
|
->share('Config', [$this, 'getConfig'], true);
|
|
|
|
$container->alias(Table::class, 'Table')
|
|
->share('Table', [$this, 'getTable'], true);
|
|
|
|
$container->alias(Grep::class, 'Joomla.Power.Grep')
|
|
->share('Joomla.Power.Grep', [$this, 'getGrep'], true);
|
|
|
|
$container->alias(Superpower::class, 'Joomlapower')
|
|
->share('Joomlapower', [$this, 'getSuperpower'], true);
|
|
|
|
$container->alias(Parser::class, 'Power.Parser')
|
|
->share('Power.Parser', [$this, 'getParser'], true);
|
|
}
|
|
|
|
/**
|
|
* Get The Config Class.
|
|
*
|
|
* @param Container $container The DI container.
|
|
*
|
|
* @return Config
|
|
* @since 3.2.0
|
|
*/
|
|
public function getConfig(Container $container): Config
|
|
{
|
|
return new Config();
|
|
}
|
|
|
|
/**
|
|
* Get The Table Class.
|
|
*
|
|
* @param Container $container The DI container.
|
|
*
|
|
* @return Table
|
|
* @since 3.2.0
|
|
*/
|
|
public function getTable(Container $container): Table
|
|
{
|
|
return new Table();
|
|
}
|
|
|
|
/**
|
|
* Get The Grep Class.
|
|
*
|
|
* @param Container $container The DI container.
|
|
*
|
|
* @return Grep
|
|
* @since 3.2.0
|
|
*/
|
|
public function getGrep(Container $container): Grep
|
|
{
|
|
return new Grep(
|
|
$container->get('Config')->local_joomla_powers_repository_path,
|
|
$container->get('Config')->approved_joomla_paths,
|
|
$container->get('Gitea.Repository.Contents')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get The Super Class.
|
|
*
|
|
* @param Container $container The DI container.
|
|
*
|
|
* @return Superpower
|
|
* @since 3.2.0
|
|
*/
|
|
public function getSuperpower(Container $container): Superpower
|
|
{
|
|
return new Superpower(
|
|
$container->get('Joomla.Power.Grep'),
|
|
$container->get('Joomla.Power.Database.Insert'),
|
|
$container->get('Joomla.Power.Database.Update')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get The Parser Class.
|
|
*
|
|
* @param Container $container The DI container.
|
|
*
|
|
* @return Parser
|
|
* @since 3.2.0
|
|
*/
|
|
public function getParser(Container $container): Parser
|
|
{
|
|
return new Parser();
|
|
}
|
|
}
|
|
|