zhaojs
2023-07-04 c4c902e6983e9fe796a8361978ce68ebc621412b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
 
namespace think\composer;
 
use Composer\Package\PackageInterface;
use Composer\Repository\InstalledRepositoryInterface;
use InvalidArgumentException;
 
class ThinkFramework extends LibraryInstaller
{
    public function install(InstalledRepositoryInterface $repo, PackageInterface $package)
    {
        return parent::install($repo, $package)->then(function () use ($package) {
            if ($this->composer->getPackage()
                               ->getType() == 'project' && $package->getInstallationSource() != 'source') {
                //remove tests dir
                $this->filesystem->removeDirectory($this->getInstallPath($package) . DIRECTORY_SEPARATOR . 'tests');
            }
        });
    }
 
    /**
     * {@inheritDoc}
     */
    public function getInstallPath(PackageInterface $package)
    {
        if ('topthink/framework' !== $package->getPrettyName()) {
            throw new InvalidArgumentException('Unable to install this library!');
        }
 
        if ($this->composer->getPackage()->getType() !== 'project') {
            return parent::getInstallPath($package);
        }
 
        if ($this->composer->getPackage()) {
            $extra = $this->composer->getPackage()->getExtra();
            if (!empty($extra['think-path'])) {
                return $extra['think-path'];
            }
        }
 
        return 'thinkphp';
    }
 
    public function update(InstalledRepositoryInterface $repo, PackageInterface $initial, PackageInterface $target)
    {
        return parent::update($repo, $initial, $target)->then(function () use ($target) {
            if ($this->composer->getPackage()->getType() == 'project' && $target->getInstallationSource() != 'source') {
                //remove tests dir
                $this->filesystem->removeDirectory($this->getInstallPath($target) . DIRECTORY_SEPARATOR . 'tests');
            }
        });
    }
 
    /**
     * {@inheritDoc}
     */
    public function supports($packageType)
    {
        return 'think-framework' === $packageType;
    }
}