Esempio n. 1
0
 /**
  * Open the config file.
  *
  * @param InputInterface $input
  * @param OutputInterface $output
  * @return int|null|void
  */
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     $this->output = $output;
     $output->writeln('<info>Editing scripts.json</info>');
     $command = 'open ' . $this->app->getScriptsConfig(env('APP_ENV'));
     $this->passthru($command);
 }
Esempio n. 2
0
 public function __construct(Mersey $mersey, $config)
 {
     $this->mersey = $mersey;
     $this->name = $config->name;
     $this->root = $config->root;
     $localScripts = isset($config->scripts) ? $this->loadScripts($config->scripts) : collect();
     $this->scripts = collect(array_merge($localScripts->toArray(), $this->mersey->getGlobalScripts()));
 }
 /**
  * Run the ping test.
  *
  * @param InputInterface $input
  * @param OutputInterface $output
  * @return int|null|void
  */
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     $table = new Table($output);
     $table->setHeaders(array('Server', 'Alias', 'Ping'));
     $servers = $this->app->getServers();
     $progress = new ProgressBar($output, $servers->count());
     $output->writeln('Checking server availability');
     $progress->start();
     foreach ($servers as $server) {
         $table->addRow($this->getPingRowData($server));
         $progress->advance();
     }
     $progress->finish();
     $output->writeln('');
     $table->render();
 }
Esempio n. 4
0
 /**
  * Create new server.
  *
  * @param InputInterface $input
  * @param OutputInterface $output
  * @return int|null|void
  */
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     $this->questionHelper = $this->getHelper('question');
     $this->output = $output;
     $this->input = $input;
     $this->configFile = $this->app->getServersConfig(env('APP_ENV'));
     $config = collect($this->app->loadServerConfig(env('APP_ENV')));
     $usedNames = $config->pluck('name');
     $required = function ($answer) {
         if (empty(trim($answer))) {
             throw new \Exception('You must define something.');
         }
         return $answer;
     };
     $serverDetails = [];
     $serverDetails['name'] = strtolower($this->askQuestion('Server name/alias (what you will type into the command line)', null, $required));
     if (in_array($serverDetails['name'], $usedNames->toArray())) {
         $question = sprintf("'%s' is already defined. Would you like to overwrite it? (y/N)", $serverDetails['name']);
         if (!$this->askConfirmQuestion($question, 'error')) {
             $output->writeln('Aborted server definition.');
             return 0;
         }
         $config = $config->reject(function ($item) use($serverDetails) {
             return $item['name'] == $serverDetails['name'];
         });
     }
     $defaultDisplayName = ucfirst($serverDetails['name']) . ' Server';
     $question = "Server display name (default: {$defaultDisplayName})";
     $serverDetails['displayName'] = $this->askQuestion($question, $defaultDisplayName);
     $serverDetails['username'] = $this->askQuestion('SSH username', null, $required);
     $serverDetails['hostname'] = $this->askQuestion('Hostname (IP address or Domain name)', null, $required);
     if ($this->askConfirmQuestion('Required information defined. Add some optional settings? (y/N)')) {
         $serverDetails['sshKey'] = $this->askQuestion('SSH key location (default: ~/.ssh/id_rsa)');
         $serverDetails['port'] = (int) $this->askQuestion('SSH port (default: 22)');
     }
     $addProjects = $this->askConfirmQuestion('Define a project? (y/N)');
     while ($addProjects) {
         $project = [];
         $project['name'] = $this->askQuestion('Project name?');
         $project['root'] = $this->askQuestion('Path to project root?');
         $output->writeln(sprintf('<comment>The project \'%s\' has been defined.</comment>', $project['name']));
         $addScripts = $this->askConfirmQuestion(sprintf('Add some scripts to the project? (y/N)'));
         while ($addScripts) {
             $script = [];
             $script['name'] = $this->askQuestion('Script name?', null, $required);
             $description = ucfirst($script['name']) . ' script.';
             $question = sprintf('Script description (default: %s)', $description);
             $script['description'] = $this->askQuestion($question, $description);
             $script['command'] = $this->askQuestion('Script command?', null, $required);
             $output->writeln('<comment>Script defined.</comment>');
             $project['scripts'][] = $script;
             $addScripts = $this->askConfirmQuestion(sprintf('Add another script? (y/N)'));
         }
         $serverDetails['projects'][] = $project;
         $addProjects = $this->askConfirmQuestion('Define another project? (y/N)');
     }
     $config->push(array_filter($serverDetails));
     $this->app->updateConfig($this->configFile, $config->toArray());
     $output->writeln('<comment>Server created. You can access it by running:</comment> mersey ' . $serverDetails['name']);
     return 0;
 }