* @git 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; use Joomla\Registry\Registry as JoomlaRegistry; use Joomla\CMS\Factory as JoomlaFactory; use VDM\Joomla\Utilities\GetHelper; use VDM\Joomla\Utilities\StringHelper; use VDM\Joomla\Componentbuilder\Abstraction\BaseConfig; /** * Compiler Configurations * * All these functions are accessed via the direct name without the get: * example: $this->component_code_name calls: $this->getComponentcodename() * * All values once called are cached, yet can be updated directly: * example: $this->component_code_name = 'new_code_name'; // be warned! * * @since 3.2.0 */ class Config extends BaseConfig { /** * The Global Joomla Configuration * * @var JoomlaRegistry * @since 3.2.0 */ protected JoomlaRegistry $config; /** * Constructor * * @param Input|null $input Input * @param Registry|null $params The component parameters * @param Registry|null $config The Joomla configuration * * @throws \Exception * @since 3.2.0 */ public function __construct(?Input $input = null, ?JoomlaRegistry $params = null, ?JoomlaRegistry $config = null) { parent::__construct($input, $params); $this->config = $config ?: JoomlaFactory::getConfig(); } /** * get Gitea Access Token * * @return string the access token * @since 3.2.0 */ protected function getGiteatoken(): ?string { return $this->custom_gitea_token ?? $this->params->get('gitea_token'); } /** * get Add Custom Gitea URL * * @return int the add switch * @since 3.2.0 */ protected function getAddcustomgiteaurl(): int { return $this->params->get('add_custom_gitea_url', 1); } /** * get Custom Gitea URL * * @return string the custom gitea url * @since 3.2.0 */ protected function getCustomgiteaurl(): ?string { if ($this->add_custom_gitea_url == 2) { return $this->params->get('custom_gitea_url'); } return null; } /** * get Custom Gitea Access Token * * @return string the custom access token * @since 3.2.0 */ protected function getCustomgiteatoken(): ?string { if ($this->add_custom_gitea_url == 2) { return $this->params->get('custom_gitea_token'); } return null; } /** * Get super power core organisation * * @return string The super power core organisation * @since 3.2.0 */ protected function getJoomlapowerscoreorganisation(): string { // the VDM default organisation is [joomla] $organisation = 'joomla'; return $this->params->get('joomla_powers_core_organisation', $organisation); } /** * Get Joomla power init repos * * @return array The init repositories on Gitea * @since 3.2.0 */ protected function getJoomlapowersinitrepos(): array { // some defaults repos we need by JCB $repos = []; $repos[$this->joomla_powers_core_organisation . '.joomla-powers'] = (object) ['owner' => $this->joomla_powers_core_organisation, 'repo' => 'joomla-powers', 'branch' => 'master']; return $repos; } /** * get temporary path * * @return string The temporary path * @since 3.2.0 */ protected function getTmppath(): string { // get the temporary path return $this->config->get('tmp_path'); } /** * Get local joomla super powers repository path * * @return string The path to the local repository * @since 3.2.0 */ protected function getLocaljoomlapowersrepositorypath(): string { $default = $this->tmp_path . '/joomla_powers'; return $this->params->get('local_joomla_powers_repository_path', $default); } /** * Get joomla power approved paths * * @return array The paths to the repositories on Gitea * @since 3.2.0 */ protected function getApprovedjoomlapaths(): array { // some defaults repos we need by JCB $approved = $this->joomla_powers_init_repos; return array_values($approved); } }