Sh3ll
OdayForums


Server : LiteSpeed
System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
User : claqxcrl ( 523)
PHP Version : 8.1.32
Disable Function : NONE
Directory :  /home/claqxcrl/anfangola.com/wp-content/plugins/matomo/plugins/WordPress/Commands/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/claqxcrl/anfangola.com/wp-content/plugins/matomo/plugins/WordPress/Commands/BuildRelease.php
<?php
/**
 * Matomo - free/libre analytics platform
 *
 * @link https://matomo.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

namespace Piwik\Plugins\WordPress\Commands;

use Piwik\Development;
use Matomo\Dependencies\Symfony\Component\Console\Input\ArrayInput;
use Piwik\Plugin\ConsoleCommand;

class BuildRelease extends ConsoleCommand
{
    protected function configure()
    {
        $this->setName('wordpress:build-release');
        $this->setDescription('Builds a release, either to a .zip or .tar.gz archive.');
        $this->addNoValueOption('zip', null, 'If supplied, a .zip archive will be created.');
        $this->addNoValueOption('tgz', null, 'If supplied, a .tgz archive will be created.');
        $this->addRequiredValueOption('name', null,
            'The name of this release, should be set to a semantic version number. If not supplied, the latest value from CHANGELOG.md is used.');
    }

    protected function doExecute(): int
    {
        if (Development::isEnabled()) {
            throw new \Exception('This command should not be run with development mode enabled.');
        }

        $input = $this->getInput();

        $version = $this->getReleaseVersion();

        $zip = $input->getOption('zip');
        $tgz = $input->getOption('tgz');
        if (!$zip && !$tgz) {
            throw new \Exception('At least one output format is required, please supply --zip OR --tgz OR both (to build both archives).');
        }

        $this->generateCoreAssets();

        $stashHash = $this->addGeneratedFilesToGit();

        if ($zip) {
            $this->generateArchive('zip', $version, $stashHash);
        }

        if ($tgz) {
            $this->generateArchive('tgz', $version, $stashHash);
        }

        return 0;
    }

    private function getReleaseVersion()
    {
        $version = $this->getInput()->getOption('name');
        if (!empty($version)) {
            return $version;
        }

        $changelog = file_get_contents(__DIR__ . '/../../../CHANGELOG.md');
        $changelog = explode("\n", $changelog);
        foreach ($changelog as $line) {
            if (preg_match('/=+\s*(\d+\.\d+\.\d+)\s*=+/', $line, $matches)) {
                $this->getOutput()->writeln("<comment>Creating a release named '{$matches[1]}'</comment>");
                return $matches[1];
            }
        }

        throw new \Exception('Failed to extract version from CHANGELOG.md');
    }

    private function generateCoreAssets()
    {
        $input = new ArrayInput([
            'command' => 'wordpress:generate-core-assets',
        ]);

        $returnCode = $this->getApplication()->doRun($input, $this->getOutput());
        if ($returnCode) {
            throw new \Exception('wordpress:generate-core-assets failed!');
        }
    }

    private function generateArchive($format, $version, $stashHash)
    {
        $pathToRepo = $this->getPathToGitRepo();
        $outputFile = $pathToRepo . "/matomo-$version.$format";

        $this->getOutput()->writeln("Generating $format archive at $outputFile...");

        $command = "git -C " . $pathToRepo . " archive --format=$format $stashHash > " . $outputFile;
        $this->executeShellCommand($command, "Failed to generate $format archive!");

        $this->getOutput()->writeln("<info>Created archive matomo-$version.$format.</info>");
    }

    private function addGeneratedFilesToGit()
    {
        $pathToRepo = $this->getPathToGitRepo();

        $command = 'git -C ' . $pathToRepo . ' add ' . plugin_dir_path(MATOMO_ANALYTICS_FILE) . 'assets/js/asset_manager_core_js.js';
        $this->executeShellCommand($command, "Could not git add generated files.");

        $command = 'git -C ' . $pathToRepo . ' stash create';
        $output = $this->executeShellCommand($command, null); // ignore error
        if (empty($output)) { // nothing different in repo
            return 'HEAD';
        }

        $output = array_map('trim', $output);
        $output = array_filter($output);

        foreach ($output as $line) {
            if (preg_match('/^[a-fA-F0-9]+$/', $line)) {
                return $line;
            }
        }

        throw new \Exception('Could not get hash from output of git stash create command. Output: ' . implode("\n", $output));
    }

    private function executeShellCommand($command, $onFailureMessage)
    {
        exec($command, $output, $result);

        if ($onFailureMessage && $result) {
            throw new \Exception($onFailureMessage . ' Output: ' . implode("\n", $output));
        }

        return $output;
    }

    private function getPathToGitRepo()
    {
        return dirname( dirname( dirname( __DIR__ ) ) );
    }
}

ZeroDay Forums Mini