@@ -175,8 +175,8 @@ discard block |
||
175 | 175 | Requirements::javascript('deploynaut/javascript/material.js'); |
176 | 176 | |
177 | 177 | // Load the buildable dependencies only if not loaded centrally. |
178 | - if (!is_dir(BASE_PATH . DIRECTORY_SEPARATOR . 'static')) { |
|
179 | - if (\Director::isDev()) { |
|
178 | + if(!is_dir(BASE_PATH.DIRECTORY_SEPARATOR.'static')) { |
|
179 | + if(\Director::isDev()) { |
|
180 | 180 | \Requirements::javascript('deploynaut/static/bundle-debug.js'); |
181 | 181 | } else { |
182 | 182 | \Requirements::javascript('deploynaut/static/bundle.js'); |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | } |
240 | 240 | |
241 | 241 | // Block framework jquery |
242 | - Requirements::block(FRAMEWORK_DIR . '/thirdparty/jquery/jquery.js'); |
|
242 | + Requirements::block(FRAMEWORK_DIR.'/thirdparty/jquery/jquery.js'); |
|
243 | 243 | |
244 | 244 | self::include_requirements(); |
245 | 245 | } |
@@ -258,7 +258,7 @@ discard block |
||
258 | 258 | * @return \SS_HTTPResponse |
259 | 259 | */ |
260 | 260 | public function index(SS_HTTPRequest $request) { |
261 | - return $this->redirect($this->Link() . 'projects/'); |
|
261 | + return $this->redirect($this->Link().'projects/'); |
|
262 | 262 | } |
263 | 263 | |
264 | 264 | /** |
@@ -418,7 +418,7 @@ discard block |
||
418 | 418 | $form->disableSecurityToken(); |
419 | 419 | $form->addExtraClass('fields-wide'); |
420 | 420 | // Tweak the action so it plays well with our fake URL structure. |
421 | - $form->setFormAction($project->Link() . '/UploadSnapshotForm'); |
|
421 | + $form->setFormAction($project->Link().'/UploadSnapshotForm'); |
|
422 | 422 | |
423 | 423 | return $form; |
424 | 424 | } |
@@ -468,7 +468,7 @@ discard block |
||
468 | 468 | $dataArchive->DataTransfers()->add($dataTransfer); |
469 | 469 | $form->saveInto($dataArchive); |
470 | 470 | $dataArchive->write(); |
471 | - $workingDir = TEMP_FOLDER . DIRECTORY_SEPARATOR . 'deploynaut-transfer-' . $dataTransfer->ID; |
|
471 | + $workingDir = TEMP_FOLDER.DIRECTORY_SEPARATOR.'deploynaut-transfer-'.$dataTransfer->ID; |
|
472 | 472 | |
473 | 473 | $cleanupFn = function() use($workingDir, $dataTransfer, $dataArchive) { |
474 | 474 | $process = new Process(sprintf('rm -rf %s', escapeshellarg($workingDir))); |
@@ -568,7 +568,7 @@ discard block |
||
568 | 568 | $form->disableSecurityToken(); |
569 | 569 | $form->addExtraClass('fields-wide'); |
570 | 570 | // Tweak the action so it plays well with our fake URL structure. |
571 | - $form->setFormAction($project->Link() . '/PostSnapshotForm'); |
|
571 | + $form->setFormAction($project->Link().'/PostSnapshotForm'); |
|
572 | 572 | |
573 | 573 | return $form; |
574 | 574 | } |
@@ -707,7 +707,7 @@ discard block |
||
707 | 707 | $branchName = $request->getVar('name'); |
708 | 708 | $branch = $project->DNBranchList()->byName($branchName); |
709 | 709 | if(!$branch) { |
710 | - return new SS_HTTPResponse("Branch '" . Convert::raw2xml($branchName) . "' not found.", 404); |
|
710 | + return new SS_HTTPResponse("Branch '".Convert::raw2xml($branchName)."' not found.", 404); |
|
711 | 711 | } |
712 | 712 | |
713 | 713 | return $this->render(array( |
@@ -843,7 +843,7 @@ discard block |
||
843 | 843 | ); |
844 | 844 | |
845 | 845 | // Tweak the action so it plays well with our fake URL structure. |
846 | - $form->setFormAction($project->Link() . '/CreateEnvironmentForm'); |
|
846 | + $form->setFormAction($project->Link().'/CreateEnvironmentForm'); |
|
847 | 847 | |
848 | 848 | return $form; |
849 | 849 | } |
@@ -876,7 +876,7 @@ discard block |
||
876 | 876 | $job->write(); |
877 | 877 | $job->start(); |
878 | 878 | |
879 | - return $this->redirect($project->Link('createenv') . '/' . $job->ID); |
|
879 | + return $this->redirect($project->Link('createenv').'/'.$job->ID); |
|
880 | 880 | } |
881 | 881 | |
882 | 882 | /** |
@@ -937,7 +937,7 @@ discard block |
||
937 | 937 | */ |
938 | 938 | public function getPlatformSpecificStrings() { |
939 | 939 | $strings = $this->config()->platform_specific_strings; |
940 | - if ($strings) { |
|
940 | + if($strings) { |
|
941 | 941 | return new ArrayList($strings); |
942 | 942 | } |
943 | 943 | } |
@@ -1002,7 +1002,7 @@ discard block |
||
1002 | 1002 | |
1003 | 1003 | $isCurrentEnvironment = false; |
1004 | 1004 | if($project && $currentEnvironment) { |
1005 | - $isCurrentEnvironment = (bool) $project->DNEnvironmentList()->find('ID', $currentEnvironment->ID); |
|
1005 | + $isCurrentEnvironment = (bool)$project->DNEnvironmentList()->find('ID', $currentEnvironment->ID); |
|
1006 | 1006 | } |
1007 | 1007 | |
1008 | 1008 | $navigation->push(array( |
@@ -1072,7 +1072,7 @@ discard block |
||
1072 | 1072 | return $body; |
1073 | 1073 | } |
1074 | 1074 | |
1075 | - $form->setFormAction($this->getRequest()->getURL() . '/DeployForm'); |
|
1075 | + $form->setFormAction($this->getRequest()->getURL().'/DeployForm'); |
|
1076 | 1076 | return $form; |
1077 | 1077 | } |
1078 | 1078 | |
@@ -1228,7 +1228,7 @@ discard block |
||
1228 | 1228 | } |
1229 | 1229 | |
1230 | 1230 | protected function applyRedeploy(SS_HTTPRequest $request, &$data) { |
1231 | - if (!$request->getVar('redeploy')) return; |
|
1231 | + if(!$request->getVar('redeploy')) return; |
|
1232 | 1232 | |
1233 | 1233 | $project = $this->getCurrentProject(); |
1234 | 1234 | if(!$project) { |
@@ -1242,12 +1242,12 @@ discard block |
||
1242 | 1242 | } |
1243 | 1243 | |
1244 | 1244 | $current = $env->CurrentBuild(); |
1245 | - if ($current && $current->exists()) { |
|
1245 | + if($current && $current->exists()) { |
|
1246 | 1246 | $data['preselect_tab'] = 3; |
1247 | 1247 | $data['preselect_sha'] = $current->SHA; |
1248 | 1248 | } else { |
1249 | 1249 | $master = $project->DNBranchList()->byName('master'); |
1250 | - if ($master) { |
|
1250 | + if($master) { |
|
1251 | 1251 | $data['preselect_tab'] = 1; |
1252 | 1252 | $data['preselect_sha'] = $master->SHA(); |
1253 | 1253 | } |
@@ -1378,7 +1378,7 @@ discard block |
||
1378 | 1378 | $deployment->getMachine()->apply('queue'); |
1379 | 1379 | |
1380 | 1380 | return json_encode(array( |
1381 | - 'url' => Director::absoluteBaseURL() . $deployment->Link() |
|
1381 | + 'url' => Director::absoluteBaseURL().$deployment->Link() |
|
1382 | 1382 | ), JSON_PRETTY_PRINT); |
1383 | 1383 | } |
1384 | 1384 | |
@@ -1482,7 +1482,7 @@ discard block |
||
1482 | 1482 | throw new LogicException("Project in URL doesn't match this deploy"); |
1483 | 1483 | } |
1484 | 1484 | |
1485 | - if (!in_array($deployment->Status, ['Queued', 'Deploying', 'Aborting'])) { |
|
1485 | + if(!in_array($deployment->Status, ['Queued', 'Deploying', 'Aborting'])) { |
|
1486 | 1486 | throw new LogicException(sprintf("Cannot abort from %s state.", $deployment->Status)); |
1487 | 1487 | } |
1488 | 1488 | |
@@ -1520,7 +1520,7 @@ discard block |
||
1520 | 1520 | ->addExtraClass('btn') |
1521 | 1521 | ) |
1522 | 1522 | ); |
1523 | - $form->setFormAction($this->getRequest()->getURL() . '/DataTransferForm'); |
|
1523 | + $form->setFormAction($this->getRequest()->getURL().'/DataTransferForm'); |
|
1524 | 1524 | |
1525 | 1525 | return $form; |
1526 | 1526 | } |
@@ -1722,7 +1722,7 @@ discard block |
||
1722 | 1722 | ->addExtraClass('btn') |
1723 | 1723 | ) |
1724 | 1724 | ); |
1725 | - $form->setFormAction($project->Link() . '/DataTransferRestoreForm'); |
|
1725 | + $form->setFormAction($project->Link().'/DataTransferRestoreForm'); |
|
1726 | 1726 | |
1727 | 1727 | return $form; |
1728 | 1728 | } |
@@ -1820,7 +1820,7 @@ discard block |
||
1820 | 1820 | ->addExtraClass('btn') |
1821 | 1821 | ) |
1822 | 1822 | ); |
1823 | - $form->setFormAction($project->Link() . '/DeleteForm'); |
|
1823 | + $form->setFormAction($project->Link().'/DeleteForm'); |
|
1824 | 1824 | |
1825 | 1825 | return $form; |
1826 | 1826 | } |
@@ -1926,7 +1926,7 @@ discard block |
||
1926 | 1926 | ->addExtraClass('btn') |
1927 | 1927 | ) |
1928 | 1928 | ); |
1929 | - $form->setFormAction($this->getCurrentProject()->Link() . '/MoveForm'); |
|
1929 | + $form->setFormAction($this->getCurrentProject()->Link().'/MoveForm'); |
|
1930 | 1930 | |
1931 | 1931 | return $form; |
1932 | 1932 | } |
@@ -2219,7 +2219,7 @@ discard block |
||
2219 | 2219 | */ |
2220 | 2220 | protected function project404Response() { |
2221 | 2221 | return new SS_HTTPResponse( |
2222 | - "Project '" . Convert::raw2xml($this->getRequest()->param('Project')) . "' not found.", |
|
2222 | + "Project '".Convert::raw2xml($this->getRequest()->param('Project'))."' not found.", |
|
2223 | 2223 | 404 |
2224 | 2224 | ); |
2225 | 2225 | } |
@@ -2229,7 +2229,7 @@ discard block |
||
2229 | 2229 | */ |
2230 | 2230 | protected function environment404Response() { |
2231 | 2231 | $envName = Convert::raw2xml($this->getRequest()->param('Environment')); |
2232 | - return new SS_HTTPResponse("Environment '" . $envName . "' not found.", 404); |
|
2232 | + return new SS_HTTPResponse("Environment '".$envName."' not found.", 404); |
|
2233 | 2233 | } |
2234 | 2234 | |
2235 | 2235 | /** |
@@ -2296,7 +2296,7 @@ discard block |
||
2296 | 2296 | public function AmbientMenu() { |
2297 | 2297 | $list = new ArrayList(); |
2298 | 2298 | |
2299 | - if (Member::currentUserID()) { |
|
2299 | + if(Member::currentUserID()) { |
|
2300 | 2300 | $list->push(new ArrayData(array( |
2301 | 2301 | 'Classes' => 'logout', |
2302 | 2302 | 'FaIcon' => 'sign-out', |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | |
20 | 20 | public function getModel($name) { |
21 | 21 | $deployment = $this->getDeployment(); |
22 | - if (!$deployment) { |
|
22 | + if(!$deployment) { |
|
23 | 23 | return []; |
24 | 24 | } |
25 | 25 | |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | public function getDeployment() { |
32 | 32 | $id = $this->request->param('Id'); |
33 | 33 | $deployment = DNDeployment::get()->byId($id); |
34 | - if (!$deployment || !$deployment->exists()) { |
|
34 | + if(!$deployment || !$deployment->exists()) { |
|
35 | 35 | return false; |
36 | 36 | } |
37 | 37 | return $deployment; |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | public function apply(SS_HTTPRequest $request) { |
41 | 41 | $this->checkSecurityToken(); |
42 | 42 | $response = $this->checkRequest(); |
43 | - if ($response instanceof SS_HTTPResponse) { |
|
43 | + if($response instanceof SS_HTTPResponse) { |
|
44 | 44 | return $response; |
45 | 45 | } |
46 | 46 | |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | public function canApply(SS_HTTPRequest $request) { |
55 | 55 | $this->checkSecurityToken(); |
56 | 56 | $response = $this->checkRequest(); |
57 | - if ($response instanceof SS_HTTPResponse) { |
|
57 | + if($response instanceof SS_HTTPResponse) { |
|
58 | 58 | return $response; |
59 | 59 | } |
60 | 60 | |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | } |
76 | 76 | |
77 | 77 | $deployment = $this->getDeployment(); |
78 | - if (!$deployment) { |
|
78 | + if(!$deployment) { |
|
79 | 79 | return new SS_HTTPResponse('Deployment not found', 404); |
80 | 80 | } |
81 | 81 | |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | |
85 | 85 | protected function getMachine() { |
86 | 86 | $deployment = $this->getDeployment(); |
87 | - if (!$deployment) { |
|
87 | + if(!$deployment) { |
|
88 | 88 | return null; |
89 | 89 | } |
90 | 90 | |
@@ -96,10 +96,10 @@ discard block |
||
96 | 96 | // It gives a chance to perform a dry-run, and reject the transition, for example |
97 | 97 | // in case the user is unauthorised. |
98 | 98 | 'finite.test_transition', |
99 | - function (Finite\Event\TransitionEvent $e) use ($project) { |
|
99 | + function(Finite\Event\TransitionEvent $e) use ($project) { |
|
100 | 100 | $code = null; |
101 | 101 | |
102 | - switch ($e->getTransition()->getName()) { |
|
102 | + switch($e->getTransition()->getName()) { |
|
103 | 103 | case 'approve': |
104 | 104 | $code = self::ALLOW_DNDEPLOYMENT_APPROVE; |
105 | 105 | break; |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | break; |
109 | 109 | } |
110 | 110 | |
111 | - if (!$code || !$project->allowed($code)) { |
|
111 | + if(!$code || !$project->allowed($code)) { |
|
112 | 112 | $e->reject(); |
113 | 113 | } |
114 | 114 | } |
@@ -58,17 +58,17 @@ |
||
58 | 58 | |
59 | 59 | protected function addHandlers($machine) { |
60 | 60 | $class = get_class($machine->getObject()); |
61 | - if (empty($this->config()->handlers[$class])) return; |
|
61 | + if(empty($this->config()->handlers[$class])) return; |
|
62 | 62 | |
63 | 63 | $transitions = $this->config()->handlers[$class]; |
64 | - foreach ($transitions as $transName => $handlers) { |
|
65 | - if (!is_array($handlers)) { |
|
64 | + foreach($transitions as $transName => $handlers) { |
|
65 | + if(!is_array($handlers)) { |
|
66 | 66 | throw new Exception(sprintf('Transition %s must be configured as an assoc array.', $transName)); |
67 | 67 | } |
68 | 68 | |
69 | - foreach ($handlers as $handlerClass => $handlerMethod) { |
|
69 | + foreach($handlers as $handlerClass => $handlerMethod) { |
|
70 | 70 | $handlerObj = Injector::inst()->get($handlerClass); |
71 | - if (!is_callable([$handlerObj, $handlerMethod])) { |
|
71 | + if(!is_callable([$handlerObj, $handlerMethod])) { |
|
72 | 72 | throw new Exception(sprintf('Handler %s is not callable on %s.', $handlerMethod, $handlerClass)); |
73 | 73 | } |
74 | 74 | $machine->getDispatcher()->addListener( |
@@ -12,7 +12,7 @@ |
||
12 | 12 | protected function sendEmailToApprover(DNDeployment $deployment) { |
13 | 13 | $deployer = $deployment->Deployer(); |
14 | 14 | $approver = $deployment->Approver(); |
15 | - if (!$approver || !$approver->exists()) { |
|
15 | + if(!$approver || !$approver->exists()) { |
|
16 | 16 | return false; |
17 | 17 | } |
18 | 18 |
@@ -4,28 +4,28 @@ |
||
4 | 4 | |
5 | 5 | public function run($request) { |
6 | 6 | $log = function($message) { |
7 | - $message = sprintf('[%s] ', date('Y-m-d H:i:s')) . $message; |
|
8 | - echo $message . PHP_EOL; |
|
7 | + $message = sprintf('[%s] ', date('Y-m-d H:i:s')).$message; |
|
8 | + echo $message.PHP_EOL; |
|
9 | 9 | }; |
10 | 10 | |
11 | - if (!Director::is_cli()) { |
|
11 | + if(!Director::is_cli()) { |
|
12 | 12 | $log('This command can only run via CLI'); |
13 | 13 | return; |
14 | 14 | } |
15 | 15 | |
16 | 16 | $columns = DB::query('SHOW COLUMNS FROM "DNDeployment"')->column(); |
17 | - if (!in_array('Status', $columns)) { |
|
17 | + if(!in_array('Status', $columns)) { |
|
18 | 18 | $log('Migration has already been run'); |
19 | 19 | return; |
20 | 20 | } |
21 | 21 | |
22 | - foreach (DB::query('SELECT "ID", "Status" FROM "DNDeployment"') as $record) { |
|
22 | + foreach(DB::query('SELECT "ID", "Status" FROM "DNDeployment"') as $record) { |
|
23 | 23 | // This record looks to be already migrated |
24 | - if (empty($record['Status'])) { |
|
24 | + if(empty($record['Status'])) { |
|
25 | 25 | continue; |
26 | 26 | } |
27 | 27 | |
28 | - switch ($record['Status']) { |
|
28 | + switch($record['Status']) { |
|
29 | 29 | case 'Queued': |
30 | 30 | DB::query(sprintf('UPDATE "DNDeployment" SET "State" = \'Queued\' WHERE "ID" = %s', $record['ID'])); |
31 | 31 | break; |