From 47b154758e789e75ec597d88540cdb7f4e352225 Mon Sep 17 00:00:00 2001 From: Fbenas Date: Tue, 22 Aug 2017 01:07:51 +0100 Subject: Make sure we write the nginx conf --- src/Filesystem/CreateFile.php | 13 ++++++++++++- src/Nginx/Restart.php | 21 +++++++++++++++++++++ src/Script/Command/Site/Create.php | 5 +++-- 3 files changed, 36 insertions(+), 3 deletions(-) create mode 100644 src/Nginx/Restart.php (limited to 'src') diff --git a/src/Filesystem/CreateFile.php b/src/Filesystem/CreateFile.php index 08ba0db..93c66a6 100644 --- a/src/Filesystem/CreateFile.php +++ b/src/Filesystem/CreateFile.php @@ -18,16 +18,22 @@ class CreateFile protected $filename; + protected $contents; + /** * Check if the file already exists * * @param string $filename * @author Phil Burton */ - public function __construct(string $filename) + public function __construct(string $filename, $contents = false) { $this->filename = $filename; + if ($contents) { + $this->contents = $contents; + } + if (!is_writable(dirname($filename))) { throw new \Exception('Cannot create ' . $this->thing . ' at: ' . $filename); } @@ -45,5 +51,10 @@ class CreateFile public function execute() { touch($this->filename); + + $contents = $this->contents; + if ($contents) { + file_put_contents($this->filename, $contents); + } } } diff --git a/src/Nginx/Restart.php b/src/Nginx/Restart.php new file mode 100644 index 0000000..cd150be --- /dev/null +++ b/src/Nginx/Restart.php @@ -0,0 +1,21 @@ + + */ +class Restart +{ + /** + * Create the new file + * + * @author Phil Burton + */ + public function restart() + { + + } +} diff --git a/src/Script/Command/Site/Create.php b/src/Script/Command/Site/Create.php index c7936fd..81df87e 100644 --- a/src/Script/Command/Site/Create.php +++ b/src/Script/Command/Site/Create.php @@ -52,7 +52,7 @@ class Create extends SyCommand */ protected function execute(InputInterface $input, OutputInterface $output) { - $taskCount = 6; + $taskCount = 9; $name = $input->getArgument('name'); $domain = $input->getArgument('domain'); @@ -83,7 +83,8 @@ class Create extends SyCommand ); $tasks['Creating nginx config file'] = new \App\Filesystem\CreateFile( - CONFIG_ROOT . $name . '.conf' + CONFIG_ROOT . $name . '.conf', + include_once(DIPPER_ROOT . 'nginx/stub.php') ); } catch (\Exception $e) { $output->writeln(''); -- cgit v1.2.3