Skip to content

Commit

Permalink
Merge pull request #10430 from Seldaek/add_links
Browse files Browse the repository at this point in the history
Add links to repo to show/outdated commands package lists
  • Loading branch information
Seldaek committed Jan 5, 2022
2 parents f7ce907 + f9d61c0 commit b96c419
Show file tree
Hide file tree
Showing 7 changed files with 78 additions and 8 deletions.
13 changes: 11 additions & 2 deletions src/Composer/Command/ConfigCommand.php
Expand Up @@ -904,10 +904,19 @@ protected function listConfiguration(array $contents, array $rawContents, Output
if ($showSource) {
$source = ' (' . $this->config->getSourceOfValue($k . $key) . ')';
}

if (null !== $k && 0 === strpos($k, 'repositories')) {
$link = 'https://getcomposer.org/doc/05-repositories.md';
} else {
$id = Preg::replace('{\..*$}', '', $k === '' || $k === null ? (string) $key : $k);
$id = Preg::replace('{[^a-z0-9]}i', '-', strtolower(trim($id)));
$id = Preg::replace('{-+}', '-', $id);
$link = 'https://getcomposer.org/doc/06-config.md#' . $id;
}
if (is_string($rawVal) && $rawVal != $value) {
$io->write('[<comment>' . $k . $key . '</comment>] <info>' . $rawVal . ' (' . $value . ')</info>' . $source, true, IOInterface::QUIET);
$io->write('[<fg=yellow;href=' . $link .'>' . $k . $key . '</>] <info>' . $rawVal . ' (' . $value . ')</info>' . $source, true, IOInterface::QUIET);
} else {
$io->write('[<comment>' . $k . $key . '</comment>] <info>' . $value . '</info>' . $source, true, IOInterface::QUIET);
$io->write('[<fg=yellow;href=' . $link .'>' . $k . $key . '</>] <info>' . $value . '</info>' . $source, true, IOInterface::QUIET);
}
}
}
Expand Down
3 changes: 2 additions & 1 deletion src/Composer/Command/FundCommand.php
Expand Up @@ -19,6 +19,7 @@
use Composer\Pcre\Preg;
use Composer\Repository\CompositeRepository;
use Composer\Semver\Constraint\MatchAllConstraint;
use Symfony\Component\Console\Formatter\OutputFormatter;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
Expand Down Expand Up @@ -116,7 +117,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
$prev = $line;
}

$io->write(sprintf(' %s', $url));
$io->write(sprintf(' <href=%s>%s</>', OutputFormatter::escape($url), $url));
}
}

Expand Down
11 changes: 10 additions & 1 deletion src/Composer/Command/LicensesCommand.php
Expand Up @@ -18,6 +18,8 @@
use Composer\Plugin\PluginEvents;
use Composer\Package\PackageInterface;
use Composer\Repository\RepositoryInterface;
use Composer\Util\PackageInfo;
use Symfony\Component\Console\Formatter\OutputFormatter;
use Symfony\Component\Console\Helper\Table;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
Expand Down Expand Up @@ -89,8 +91,15 @@ protected function execute(InputInterface $input, OutputInterface $output)
$tableStyle->setCellRowContentFormat('%s ');
$table->setHeaders(array('Name', 'Version', 'License'));
foreach ($packages as $package) {
$link = PackageInfo::getViewSourceOrHomepageUrl($package);
if ($link !== null) {
$name = '<href='.OutputFormatter::escape($link).'>'.$package->getPrettyName().'</>';
} else {
$name = $package->getPrettyName();
}

$table->addRow(array(
$package->getPrettyName(),
$name,
$package->getFullPrettyVersion(),
implode(', ', $package instanceof CompletePackageInterface ? $package->getLicense() : array()) ?: 'none',
));
Expand Down
8 changes: 7 additions & 1 deletion src/Composer/Command/SearchCommand.php
Expand Up @@ -14,6 +14,7 @@

use Composer\Factory;
use Composer\Json\JsonFile;
use Symfony\Component\Console\Formatter\OutputFormatter;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputOption;
Expand Down Expand Up @@ -113,7 +114,12 @@ protected function execute(InputInterface $input, OutputInterface $output)
$description = substr($description, 0, $remaining - 3) . '...';
}

$io->write(str_pad($result['name'], $nameLength, ' ') . $warning . $description);
$link = $result['url'] ?? null;
if ($link !== null) {
$io->write('<href='.OutputFormatter::escape($link).'>'.$result['name'].'</>'. str_repeat(' ', $nameLength - strlen($result['name'])) . $warning . $description);
} else {
$io->write(str_pad($result['name'], $nameLength, ' ') . $warning . $description);
}
}
} elseif ($format === 'json') {
$io->write(JsonFile::encode($results));
Expand Down
16 changes: 14 additions & 2 deletions src/Composer/Command/ShowCommand.php
Expand Up @@ -40,6 +40,8 @@
use Composer\Semver\Constraint\ConstraintInterface;
use Composer\Semver\Semver;
use Composer\Spdx\SpdxLicenses;
use Composer\Util\PackageInfo;
use Symfony\Component\Console\Formatter\OutputFormatter;
use Symfony\Component\Console\Formatter\OutputFormatterStyle;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
Expand Down Expand Up @@ -326,6 +328,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
}

// list packages
/** @var array<string, array<string, string|CompletePackageInterface>> $packages */
$packages = array();
$packageFilterRegex = null;
if (null !== $packageFilter) {
Expand Down Expand Up @@ -437,6 +440,10 @@ protected function execute(InputInterface $input, OutputInterface $output)
}

$packageViewData['name'] = $package->getPrettyName();
if ($format !== 'json' || true !== $input->getOption('name-only')) {
$packageViewData['homepage'] = $package instanceof CompletePackageInterface ? $package->getHomepage() : null;
$packageViewData['source'] = PackageInfo::getViewSourceUrl($package);
}
$nameLength = max($nameLength, strlen($package->getPrettyName()));
if ($writeVersion) {
$packageViewData['version'] = $package->getFullPrettyVersion();
Expand Down Expand Up @@ -528,11 +535,16 @@ protected function execute(InputInterface $input, OutputInterface $output)
}

foreach ($packages as $package) {
$io->write($indent . str_pad($package['name'], $nameLength, ' '), false);
$link = $package['source'] ?? $package['homepage'] ?? '';
if ($link !== '') {
$io->write($indent . '<href='.OutputFormatter::escape($link).'>'.$package['name'].'</>'. str_repeat(' ', $nameLength - strlen($package['name'])), false);
} else {
$io->write($indent . str_pad($package['name'], $nameLength, ' '), false);
}
if (isset($package['version']) && $writeVersion) {
$io->write(' ' . str_pad($package['version'], $versionLength, ' '), false);
}
if (isset($package['latest']) && $writeLatest) {
if (isset($package['latest']) && isset($package['latest-status']) && $writeLatest) {
$latestVersion = $package['latest'];
$updateStatus = $package['latest-status'];
$style = $this->updateStatusToVersionStyle($updateStatus);
Expand Down
2 changes: 1 addition & 1 deletion src/Composer/Repository/RepositoryInterface.php
Expand Up @@ -91,7 +91,7 @@ public function loadPackages(array $packageNameMap, array $acceptableStabilities
* @param string $type The type of package to search for. Defaults to all types of packages
*
* @return array[] an array of array('name' => '...', 'description' => '...'|null, 'abandoned' => 'string'|true|unset) For SEARCH_VENDOR the name will be in "vendor" form
* @phpstan-return list<array{name: string, description: ?string, abandoned?: string|true}>
* @phpstan-return list<array{name: string, description: ?string, abandoned?: string|true, url?: string}>
*/
public function search($query, $mode = 0, $type = null);

Expand Down
33 changes: 33 additions & 0 deletions src/Composer/Util/PackageInfo.php
@@ -0,0 +1,33 @@
<?php

/*
* This file is part of Composer.
*
* (c) Nils Adermann <naderman@naderman.de>
* Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Composer\Util;

use Composer\Package\CompletePackageInterface;
use Composer\Package\PackageInterface;

class PackageInfo
{
public static function getViewSourceUrl(PackageInterface $package): ?string
{
if ($package instanceof CompletePackageInterface && isset($package->getSupport()['source'])) {
return $package->getSupport()['source'];
}

return $package->getSourceUrl();
}

public static function getViewSourceOrHomepageUrl(PackageInterface $package): ?string
{
return self::getViewSourceUrl($package) ?? ($package instanceof CompletePackageInterface ? $package->getHomepage() : null);
}
}

0 comments on commit b96c419

Please sign in to comment.