|
| 1 | +<?php |
| 2 | +/************************************************************************ |
| 3 | + * Copyright 2023 Adobe |
| 4 | + * All Rights Reserved. |
| 5 | + * |
| 6 | + * NOTICE: All information contained herein is, and remains |
| 7 | + * the property of Adobe and its suppliers, if any. The intellectual |
| 8 | + * and technical concepts contained herein are proprietary to Adobe |
| 9 | + * and its suppliers and are protected by all applicable intellectual |
| 10 | + * property laws, including trade secret and copyright laws. |
| 11 | + * Dissemination of this information or reproduction of this material |
| 12 | + * is strictly forbidden unless prior written permission is obtained |
| 13 | + * from Adobe. |
| 14 | + * ************************************************************************ |
| 15 | + */ |
| 16 | +declare(strict_types=1); |
| 17 | + |
| 18 | +namespace Magento\MagentoCloud\Step\Build; |
| 19 | + |
| 20 | +use Magento\MagentoCloud\Filesystem\Driver\File; |
| 21 | +use Magento\MagentoCloud\Filesystem\DirectoryList; |
| 22 | +use Magento\MagentoCloud\Step\StepInterface; |
| 23 | +use Psr\Log\LoggerInterface; |
| 24 | + |
| 25 | +/** |
| 26 | + * Clear the mounted directories on the local filesystem before mounting the remote filesystem. |
| 27 | + * |
| 28 | + * This prevents warning messages that the mounted directories are not empty. |
| 29 | + * |
| 30 | + * {@inheritdoc} |
| 31 | + */ |
| 32 | +class ClearMountedDirectories implements StepInterface |
| 33 | +{ |
| 34 | + /** @var LoggerInterface */ |
| 35 | + private $logger; |
| 36 | + |
| 37 | + /** @var File */ |
| 38 | + private $file; |
| 39 | + |
| 40 | + /** @var DirectoryList */ |
| 41 | + private $directoryList; |
| 42 | + |
| 43 | + public function __construct( |
| 44 | + LoggerInterface $logger, |
| 45 | + File $file, |
| 46 | + DirectoryList $directoryList |
| 47 | + ) { |
| 48 | + $this->logger = $logger; |
| 49 | + $this->file = $file; |
| 50 | + $this->directoryList = $directoryList; |
| 51 | + } |
| 52 | + |
| 53 | + /** |
| 54 | + * {@inheritDoc} |
| 55 | + */ |
| 56 | + public function execute() |
| 57 | + { |
| 58 | + foreach ($this->directoryList->getMountPoints() as $mount) { |
| 59 | + if ($this->file->isExists($mount) === false) { |
| 60 | + continue; |
| 61 | + } |
| 62 | + $this->logger->info(sprintf('Clearing the %s path of all files and folders', $mount)); |
| 63 | + $this->file->clearDirectory($mount); |
| 64 | + } |
| 65 | + } |
| 66 | +} |
0 commit comments