diff --git a/src/Deploy/Strategy/AbstractStrategy.php b/src/Deploy/Strategy/AbstractStrategy.php new file mode 100644 index 0000000..83412ac --- /dev/null +++ b/src/Deploy/Strategy/AbstractStrategy.php @@ -0,0 +1,42 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Mage\Deploy\Strategy; + +use Mage\Runtime\Exception\RuntimeException; +use Mage\Runtime\Runtime; + +abstract class AbstractStrategy implements StrategyInterface +{ + /** + * @var Runtime + */ + protected $runtime; + + /** + * @param Runtime $runtime + */ + public function setRuntime(Runtime $runtime) + { + $this->runtime = $runtime; + } + + /** + * Check the runtime stage is correct + * @param $stage + * @throws RuntimeException + */ + protected function checkStage($stage) + { + if ($this->runtime->getStage() !== $stage) { + throw new RuntimeException(sprintf('Invalid stage, got "%s" but expected "%"', $this->runtime->getStage(), $stage)); + } + } +} \ No newline at end of file diff --git a/src/Deploy/Strategy/ReleasesStrategy.php b/src/Deploy/Strategy/ReleasesStrategy.php index ec34118..307a87a 100644 --- a/src/Deploy/Strategy/ReleasesStrategy.php +++ b/src/Deploy/Strategy/ReleasesStrategy.php @@ -10,7 +10,6 @@ namespace Mage\Deploy\Strategy; -use Mage\Runtime\Exception\RuntimeException; use Mage\Runtime\Runtime; /** @@ -18,23 +17,13 @@ use Mage\Runtime\Runtime; * * @author Andrés Montañez */ -class ReleasesStrategy implements StrategyInterface +class ReleasesStrategy extends AbstractStrategy { - /** - * @var Runtime - */ - protected $runtime; - public function getName() { return 'Releases'; } - public function setRuntime(Runtime $runtime) - { - $this->runtime = $runtime; - } - public function getPreDeployTasks() { $this->checkStage(Runtime::PRE_DEPLOY); @@ -106,17 +95,4 @@ class ReleasesStrategy implements StrategyInterface return $tasks; } - - /** - * Check the runtime stage is correct - * - * @param $stage - * @throws RuntimeException - */ - private function checkStage($stage) - { - if ($this->runtime->getStage() !== $stage) { - throw new RuntimeException(sprintf('Invalid stage, got "%s" but expected "%"', $this->runtime->getStage(), $stage)); - } - } } diff --git a/src/Deploy/Strategy/RsyncStrategy.php b/src/Deploy/Strategy/RsyncStrategy.php index 499a6f6..9751884 100644 --- a/src/Deploy/Strategy/RsyncStrategy.php +++ b/src/Deploy/Strategy/RsyncStrategy.php @@ -10,7 +10,6 @@ namespace Mage\Deploy\Strategy; -use Mage\Runtime\Exception\RuntimeException; use Mage\Runtime\Runtime; /** @@ -18,23 +17,13 @@ use Mage\Runtime\Runtime; * * @author Andrés Montañez */ -class RsyncStrategy implements StrategyInterface +class RsyncStrategy extends AbstractStrategy { - /** - * @var Runtime - */ - protected $runtime; - public function getName() { return 'Rsync'; } - public function setRuntime(Runtime $runtime) - { - $this->runtime = $runtime; - } - public function getPreDeployTasks() { $this->checkStage(Runtime::PRE_DEPLOY); @@ -80,17 +69,4 @@ class RsyncStrategy implements StrategyInterface return $tasks; } - - /** - * Check the runtime stage is correct - * - * @param $stage - * @throws RuntimeException - */ - private function checkStage($stage) - { - if ($this->runtime->getStage() !== $stage) { - throw new RuntimeException(sprintf('Invalid stage, got "%s" but expected "%"', $this->runtime->getStage(), $stage)); - } - } }