Пример #1
0
 protected function getRows(\Aws\Result $changeSetResult)
 {
     $rows = [];
     foreach ($changeSetResult->search('Changes[]') as $change) {
         $resourceChange = $change['ResourceChange'];
         $rows[] = [$this->decorateChangesetAction($resourceChange['Action']), $resourceChange['LogicalResourceId'], isset($resourceChange['PhysicalResourceId']) ? $resourceChange['PhysicalResourceId'] : '', $resourceChange['ResourceType'], isset($resourceChange['Replacement']) ? Decorator::decorateChangesetReplacement($resourceChange['Replacement']) : ''];
     }
     return $rows;
 }
Пример #2
0
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     $nameFilter = $input->getOption('nameFilter');
     $statusFilter = $input->getOption('statusFilter');
     $stacks = $this->getStackFactory()->getStacksFromApi(false, $nameFilter, $statusFilter);
     $rows = [];
     foreach ($stacks as $stackName => $stack) {
         /* @var $stack Stack */
         $rows[] = [$stackName, Decorator::decorateStatus($stack->getStatus())];
     }
     $table = new Table($output);
     $table->setHeaders(['Name', 'Status'])->setRows($rows);
     $table->render();
 }
Пример #3
0
 public function renderEvents(array $events)
 {
     $detailedLog = [];
     $rows = [];
     foreach ($events as $eventId => $event) {
         if (!in_array($eventId, $this->printedEventIds)) {
             $this->printedEventIds[] = $eventId;
             $rows[] = [Decorator::decorateStatus($event['Status']), $event['ResourceType'], $event['LogicalResourceId'], wordwrap($event['ResourceStatusReason'], 40, "\n")];
             $detailedLog = $this->getDetailedLogFromResourceStatusReason($event['ResourceStatusReason']) ?: $detailedLog;
         }
     }
     $this->setRows($rows);
     parent::render();
     if (count($detailedLog)) {
         $this->printLogMessages($detailedLog);
     }
 }
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     $nameFilter = $input->getOption('nameFilter');
     $stacks = $this->getStackFactory()->getStacksFromApi(false, $nameFilter);
     $error = false;
     $data = [];
     foreach ($stacks as $stackName => $stack) {
         /* @var $stack Stack */
         $this->dependencyTracker->reset();
         $tmp = [];
         $tmp['stackName'] = $stackName;
         $tmp['status'] = Helper\Decorator::decorateStatus($stack->getStatus());
         $tmp['blueprintName'] = '';
         $tmp['parameters'] = '';
         $tmp['template'] = '';
         $diff = new Diff($output);
         try {
             $blueprint = $this->blueprintFactory->getBlueprintByStack($stack);
             $env = $stack->getUsedEnvVars();
             $diff->setStack($stack);
             $diff->setBlueprint($blueprint);
             $tmp['blueprintName'] = '<fg=green>' . $blueprint->getName() . '</>';
             if (count($env)) {
                 $tmp['blueprintName'] .= "\n" . wordwrap(Div::assocArrayToString($stack->getUsedEnvVars()), 80, "\n");
             }
             $tmp = array_merge($tmp, $diff->compare());
             if (isset($tmp['error']) && $tmp['error'] === true) {
                 $error = true;
             }
         } catch (BlueprintReferenceNotFoundException $e) {
             $tmp['blueprintName'] = '-';
             $tmp['parameters'] = '<fg=red>not found</>';
             $tmp['template'] = '<fg=red>not found</>';
             $error = true;
         } catch (BlueprintNotFoundException $e) {
             $tmp['blueprintName'] = '<fg=red>Not found: ' . $e->getBlueprintName() . '</>';
             $tmp['parameters'] = '<fg=red>not found</>';
             $tmp['template'] = '<fg=red>not found</>';
             $error = true;
         } catch (\Exception $e) {
             $tmp['blueprintName'] = '<fg=red>Exception: ' . $e->getMessage() . '</>';
             $tmp['parameters'] = '<fg=red>exception</>';
             $tmp['template'] = '<fg=red>exception</>';
             $error = true;
         }
         if (isset($tmp['error'])) {
             // so the column doesn't show on in the output table
             unset($tmp['error']);
         }
         $data[] = $tmp;
     }
     $output->writeln('');
     $table = new Table($output);
     $table->setHeaders(['Stack', 'Status', 'Blueprint', 'Parameters', 'Template']);
     $table->setRows($data);
     $table->render();
     $output->writeln('');
     $output->writeln("-> Run this to show a diff for a specific stack:");
     $output->writeln("{$GLOBALS['argv'][0]} stack:diff <stackName>");
     $output->writeln('');
     $output->writeln("-> Run this to update a live stack:");
     $output->writeln("{$GLOBALS['argv'][0]} blueprint:deploy -o <blueprintName>");
     $output->writeln('');
     return $error === true ? 1 : 0;
 }