Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 33
0.00% covered (danger)
0.00%
0 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
Copier
0.00% covered (danger)
0.00%
0 / 33
0.00% covered (danger)
0.00%
0 / 3
110
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
2
 prepareTarget
0.00% covered (danger)
0.00%
0 / 11
0.00% covered (danger)
0.00%
0 / 1
30
 copy
0.00% covered (danger)
0.00%
0 / 18
0.00% covered (danger)
0.00%
0 / 1
20
1<?php
2/**
3 * Prepares the destination by deleting any files about to be copied.
4 * Copies the files.
5 *
6 * TODO: Exclude files list.
7 *
8 * @author CoenJacobs
9 * @author BrianHenryIE
10 *
11 * @license MIT
12 */
13
14namespace BrianHenryIE\Strauss\Pipeline;
15
16use BrianHenryIE\Strauss\Composer\Extra\StraussConfig;
17use BrianHenryIE\Strauss\Files\DiscoveredFiles;
18use BrianHenryIE\Strauss\Files\File;
19use BrianHenryIE\Strauss\Helpers\FileSystem;
20use League\Flysystem\FilesystemException;
21use League\Flysystem\FilesystemOperator;
22use Psr\Log\LoggerAwareTrait;
23use Psr\Log\LoggerInterface;
24use Symfony\Component\Console\Output\OutputInterface;
25
26class Copier
27{
28    use LoggerAwareTrait;
29
30    protected DiscoveredFiles $files;
31
32    protected FileSystem $filesystem;
33
34    protected StraussConfig $config;
35
36    protected OutputInterface $output;
37
38    /**
39     * Copier constructor.
40     *
41     * @param DiscoveredFiles $files
42     * @param StraussConfig $config
43     */
44    public function __construct(
45        DiscoveredFiles $files,
46        StraussConfig $config,
47        FileSystem $filesystem,
48        LoggerInterface $logger
49    ) {
50        $this->files = $files;
51        $this->config = $config;
52        $this->logger = $logger;
53        $this->filesystem = $filesystem;
54    }
55    
56    /**
57     * If the target dir does not exist, create it.
58     * If it already exists, delete any files we're about to copy.
59     *
60     * @return void
61     * @throws FilesystemException
62     */
63    public function prepareTarget(): void
64    {
65        if (! $this->filesystem->directoryExists($this->config->getTargetDirectory())) {
66            $this->logger->info('Creating directory at ' . $this->config->getTargetDirectory());
67            $this->filesystem->createDirectory($this->config->getTargetDirectory());
68        }
69
70        foreach ($this->files->getFiles() as $file) {
71            if (!$file->isDoCopy()) {
72                $this->logger->debug('Skipping ' . $file->getSourcePath());
73                continue;
74            }
75
76            $targetAbsoluteFilepath = $file->getAbsoluteTargetPath();
77
78            if ($this->filesystem->fileExists($targetAbsoluteFilepath)) {
79                $this->logger->info('Deleting existing destination file at ' . $targetAbsoluteFilepath);
80                $this->filesystem->delete($targetAbsoluteFilepath);
81            }
82        }
83    }
84
85    /**
86     * @throws FilesystemException
87     */
88    public function copy(): void
89    {
90        $this->logger->notice('Copying files');
91
92        /**
93         * @var File $file
94         */
95        foreach ($this->files->getFiles() as $file) {
96            if (!$file->isDoCopy()) {
97                $this->logger->debug('Skipping ' . $file->getSourcePath());
98                continue;
99            }
100
101            $sourceAbsoluteFilepath = $file->getSourcePath();
102            $targetAbsolutePath = $file->getAbsoluteTargetPath();
103
104            if ($this->filesystem->directoryExists($sourceAbsoluteFilepath)) {
105                $this->logger->info(sprintf(
106                    'Creating directory at %s',
107                    $file->getAbsoluteTargetPath()
108                ));
109                $this->filesystem->createDirectory($targetAbsolutePath);
110            } else {
111                $this->logger->info(sprintf(
112                    'Copying file to %s',
113                    $file->getAbsoluteTargetPath()
114                ));
115                $this->filesystem->copy($sourceAbsoluteFilepath, $targetAbsolutePath);
116            }
117        }
118    }
119}