1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
/* |
6
|
|
|
* This file is part of the composer-link plugin. |
7
|
|
|
* |
8
|
|
|
* Copyright (c) 2021-2022 Sander Visser <[email protected]>. |
9
|
|
|
* |
10
|
|
|
* For the full copyright and license information, please view the LICENSE.md |
11
|
|
|
* file that was distributed with this source code. |
12
|
|
|
* |
13
|
|
|
* @link https://github.com/SanderSander/composer-link |
14
|
|
|
*/ |
15
|
|
|
|
16
|
|
|
namespace ComposerLink\Commands; |
17
|
|
|
|
18
|
|
|
use ComposerLink\LinkedPackage; |
19
|
|
|
use ComposerLink\PathHelper; |
20
|
|
|
use Symfony\Component\Console\Input\InputArgument; |
21
|
|
|
use Symfony\Component\Console\Input\InputInterface; |
22
|
|
|
use Symfony\Component\Console\Input\InputOption; |
23
|
|
|
use Symfony\Component\Console\Output\OutputInterface; |
24
|
|
|
|
25
|
|
|
class LinkCommand extends Command |
26
|
|
|
{ |
27
|
|
|
protected function configure(): void |
28
|
|
|
{ |
29
|
|
|
$this->setName('link'); |
30
|
|
|
$this->setDescription('Link a package to a local directory'); |
31
|
|
|
$this->addArgument('path', InputArgument::REQUIRED, 'The path of the package'); |
32
|
|
|
$this->addOption( |
33
|
|
|
'only-installed', |
34
|
|
|
null, |
35
|
|
|
InputOption::VALUE_NEGATABLE, |
36
|
|
|
'Link only installed packages', |
37
|
|
|
); |
38
|
|
|
} |
39
|
|
|
|
40
|
|
|
/** |
41
|
|
|
* {@inheritdoc} |
42
|
|
|
*/ |
43
|
|
|
protected function execute(InputInterface $input, OutputInterface $output): int |
44
|
|
|
{ |
45
|
|
|
$paths = $this->getPaths($input); |
46
|
|
|
|
47
|
|
|
foreach ($paths as $path) { |
48
|
|
|
$package = $this->getPackage($path, $output); |
49
|
|
|
|
50
|
|
|
if (is_null($package)) { |
51
|
|
|
continue; |
52
|
|
|
} |
53
|
|
|
|
54
|
|
|
if ($input->getOption('only-installed') === true && is_null($package->getOriginalPackage())) { |
55
|
|
|
continue; |
56
|
|
|
} |
57
|
|
|
|
58
|
|
|
$this->plugin->getRepository()->store($package); |
59
|
|
|
$this->plugin->getLinkManager()->linkPackage($package); |
60
|
|
|
|
61
|
|
|
// Could be optimized, but for now we persist every package, |
62
|
|
|
// so we know what we have done when a package fails |
63
|
|
|
$this->plugin->getRepository()->persist(); |
64
|
|
|
} |
65
|
|
|
|
66
|
|
|
return 0; |
67
|
|
|
} |
68
|
|
|
|
69
|
|
|
/** |
70
|
|
|
* @return PathHelper[] |
71
|
|
|
*/ |
72
|
|
|
protected function getPaths(InputInterface $input): array |
73
|
|
|
{ |
74
|
|
|
$helper = new PathHelper($input->getArgument('path')); |
75
|
|
|
|
76
|
|
|
// When run in global we should transform path to absolute path |
77
|
|
|
if ($this->plugin->isGlobal()) { |
78
|
|
|
/** @var string $working */ |
79
|
|
|
$working = $this->getApplication()->getInitialWorkingDirectory(); |
80
|
|
|
$helper = $helper->toAbsolutePath($working); |
81
|
|
|
} |
82
|
|
|
|
83
|
|
|
return $helper->isWildCard() ? $helper->getPathsFromWildcard() : [$helper]; |
84
|
|
|
} |
85
|
|
|
|
86
|
|
|
protected function getPackage(PathHelper $helper, OutputInterface $output): ?LinkedPackage |
87
|
|
|
{ |
88
|
|
|
$linkedPackage = $this->plugin->getPackageFactory()->fromPath($helper->getNormalizedPath()); |
89
|
|
|
$repository = $this->plugin->getRepository(); |
90
|
|
|
|
91
|
|
|
if (!is_null($repository->findByPath($helper->getNormalizedPath()))) { |
92
|
|
|
$output->writeln( |
93
|
|
|
sprintf('<warning>Package in path "%s" already linked</warning>', $helper->getNormalizedPath()) |
94
|
|
|
); |
95
|
|
|
|
96
|
|
|
return null; |
97
|
|
|
} |
98
|
|
|
|
99
|
|
|
$currentLinked = $repository->findByName($linkedPackage->getName()); |
100
|
|
|
if (!is_null($currentLinked)) { |
101
|
|
|
$output->writeln( |
102
|
|
|
sprintf( |
103
|
|
|
'<warning>Package "%s" already linked from path "%s"</warning>', |
104
|
|
|
$linkedPackage->getName(), |
105
|
|
|
$currentLinked->getPath() |
106
|
|
|
) |
107
|
|
|
); |
108
|
|
|
|
109
|
|
|
return null; |
110
|
|
|
} |
111
|
|
|
|
112
|
|
|
return $linkedPackage; |
113
|
|
|
} |
114
|
|
|
} |
115
|
|
|
|