Commit 3c7069f7 authored by Franco Fichtner's avatar Franco Fichtner

mvc: style sweep

parent 2bc8e64b
...@@ -155,7 +155,6 @@ $di->set('router', function () { ...@@ -155,7 +155,6 @@ $di->set('router', function () {
"action" => 2, "action" => 2,
"params" => 3 "params" => 3
)); ));
} }
$router->handle(); $router->handle();
......
...@@ -144,7 +144,6 @@ $di->set('router', function () { ...@@ -144,7 +144,6 @@ $di->set('router', function () {
"action" => 2, "action" => 2,
"params" => 3 "params" => 3
)); ));
} }
$router->handle(); $router->handle();
......
<?php <?php
/** /**
* Copyright (C) 2016 Deciso B.V. * Copyright (C) 2016 Deciso B.V.
* *
...@@ -52,7 +53,7 @@ class NetworkinsightController extends ApiControllerBase ...@@ -52,7 +53,7 @@ class NetworkinsightController extends ApiControllerBase
* @param string $field field name to aggregate * @param string $field field name to aggregate
* @return array timeseries * @return array timeseries
*/ */
public function timeserieAction( public function timeserieAction(
$provider = null, $provider = null,
$measure = null, $measure = null,
$from_date = null, $from_date = null,
...@@ -74,9 +75,14 @@ class NetworkinsightController extends ApiControllerBase ...@@ -74,9 +75,14 @@ class NetworkinsightController extends ApiControllerBase
if ($this->request->isGet()) { if ($this->request->isGet()) {
$backend = new Backend(); $backend = new Backend();
// request current data // request current data
$response = $backend->configdRun("netflow aggregate fetch {$provider} {$from_date} {$to_date} {$resolution} {$field}"); // $response = $backend->configdRun(
"netflow aggregate fetch {$provider} {$from_date} {$to_date} {$resolution} {$field}"
);
// for test, request random data // for test, request random data
//$response = $backend->configdRun("netflow aggregate fetch {$provider} {$from_date} {$to_date} {$resolution} {$field} em0,in~em0,out~em1,in~em1,out~em2,in~em2,out~em3,in~em3,out"); // //$response = $backend->configdRun(
// "netflow aggregate fetch {$provider} {$from_date} {$to_date} {$resolution} {$field} " .
// "em0,in~em0,out~em1,in~em1,out~em2,in~em2,out~em3,in~em3,out"
//);
$graph_data = json_decode($response, true); $graph_data = json_decode($response, true);
if ($graph_data != null) { if ($graph_data != null) {
ksort($graph_data); ksort($graph_data);
...@@ -121,7 +127,7 @@ class NetworkinsightController extends ApiControllerBase ...@@ -121,7 +127,7 @@ class NetworkinsightController extends ApiControllerBase
* @param string $max_hits maximum number of results * @param string $max_hits maximum number of results
* @return array timeseries * @return array timeseries
*/ */
public function topAction( public function topAction(
$provider = null, $provider = null,
$from_date = null, $from_date = null,
$to_date = null, $to_date = null,
...@@ -208,7 +214,7 @@ class NetworkinsightController extends ApiControllerBase ...@@ -208,7 +214,7 @@ class NetworkinsightController extends ApiControllerBase
public function getProtocolsAction() public function getProtocolsAction()
{ {
$result = array(); $result = array();
foreach (explode ("\n", file_get_contents('/etc/protocols')) as $line) { foreach (explode("\n", file_get_contents('/etc/protocols')) as $line) {
if (strlen($line) > 1 && $line[0] != '#') { if (strlen($line) > 1 && $line[0] != '#') {
$parts = preg_split('/\s+/', $line); $parts = preg_split('/\s+/', $line);
if (count($parts) >= 4) { if (count($parts) >= 4) {
...@@ -225,7 +231,7 @@ class NetworkinsightController extends ApiControllerBase ...@@ -225,7 +231,7 @@ class NetworkinsightController extends ApiControllerBase
public function getServicesAction() public function getServicesAction()
{ {
$result = array(); $result = array();
foreach (explode ("\n", file_get_contents('/etc/services')) as $line) { foreach (explode("\n", file_get_contents('/etc/services')) as $line) {
if (strlen($line) > 1 && $line[0] != '#') { if (strlen($line) > 1 && $line[0] != '#') {
// there a few ports which have different names for different protocols, but to not overcomplicate // there a few ports which have different names for different protocols, but to not overcomplicate
// things here, we ignore those exceptions. // things here, we ignore those exceptions.
...@@ -247,7 +253,7 @@ class NetworkinsightController extends ApiControllerBase ...@@ -247,7 +253,7 @@ class NetworkinsightController extends ApiControllerBase
* @param string $resolution resolution in seconds * @param string $resolution resolution in seconds
* @return string csv output * @return string csv output
*/ */
public function exportAction( public function exportAction(
$provider = null, $provider = null,
$from_date = null, $from_date = null,
$to_date = null, $to_date = null,
...@@ -255,9 +261,9 @@ class NetworkinsightController extends ApiControllerBase ...@@ -255,9 +261,9 @@ class NetworkinsightController extends ApiControllerBase
) { ) {
$this->response->setContentType('application/CSV', 'UTF-8'); $this->response->setContentType('application/CSV', 'UTF-8');
$this->response->setHeader( $this->response->setHeader(
'Content-Disposition:', 'Content-Disposition:',
"Attachment; filename=\"" . $provider . ".csv\"" "Attachment; filename=\"" . $provider . ".csv\""
); );
if ($this->request->isGet()) { if ($this->request->isGet()) {
$backend = new Backend(); $backend = new Backend();
$configd_cmd = "netflow aggregate export {$provider} {$from_date} {$to_date} {$resolution}" ; $configd_cmd = "netflow aggregate export {$provider} {$from_date} {$to_date} {$resolution}" ;
......
...@@ -71,7 +71,6 @@ class SystemhealthController extends ApiControllerBase ...@@ -71,7 +71,6 @@ class SystemhealthController extends ApiControllerBase
"recorded_time" => ($step * (int)$value->pdp_per_row) * "recorded_time" => ($step * (int)$value->pdp_per_row) *
($this->countRows($value) - $firstValue_rowNumber) ($this->countRows($value) - $firstValue_rowNumber)
]); ]);
} }
} }
return ($info); return ($info);
...@@ -224,7 +223,6 @@ class SystemhealthController extends ApiControllerBase ...@@ -224,7 +223,6 @@ class SystemhealthController extends ApiControllerBase
$last = $rra_info[0]["firstValue_timestamp"]; $last = $rra_info[0]["firstValue_timestamp"];
$first = $rra_info[$last_rra_key]["firstValue_timestamp"] + $rra_info[$last_rra_key]["recorded_time"] - $first = $rra_info[$last_rra_key]["firstValue_timestamp"] + $rra_info[$last_rra_key]["recorded_time"] -
$rra_info[$last_rra_key]["full_step"]; $rra_info[$last_rra_key]["full_step"];
} else { } else {
$first = 0; $first = 0;
$last = 0; $last = 0;
...@@ -370,7 +368,6 @@ class SystemhealthController extends ApiControllerBase ...@@ -370,7 +368,6 @@ class SystemhealthController extends ApiControllerBase
$skip_nan = true; $skip_nan = true;
$condensed_row_values[$count_values][$column_counter] = "NaN"; $condensed_row_values[$count_values][$column_counter] = "NaN";
} elseif ($skip_nan == false) { } elseif ($skip_nan == false) {
if ($archValue["type"] == "overview") { if ($archValue["type"] == "overview") {
// overwrite this values and skip averaging, looks better for overview // overwrite this values and skip averaging, looks better for overview
...@@ -424,12 +421,9 @@ class SystemhealthController extends ApiControllerBase ...@@ -424,12 +421,9 @@ class SystemhealthController extends ApiControllerBase
} }
} }
$rowCount++; $rowCount++;
} }
} }
} }
} }
$key_counter++; $key_counter++;
...@@ -555,7 +549,6 @@ class SystemhealthController extends ApiControllerBase ...@@ -555,7 +549,6 @@ class SystemhealthController extends ApiControllerBase
if (trim((string)$xml->rra[$count]->cf) != "AVERAGE") { if (trim((string)$xml->rra[$count]->cf) != "AVERAGE") {
unset($xml->rra[$count]); unset($xml->rra[$count]);
} }
} }
$data_sets_full = $this->getDataSetInfo($xml); // get dataSet information to include in answer $data_sets_full = $this->getDataSetInfo($xml); // get dataSet information to include in answer
......
...@@ -166,7 +166,6 @@ class ServiceController extends ApiControllerBase ...@@ -166,7 +166,6 @@ class ServiceController extends ApiControllerBase
} else { } else {
$status = "error generating ids template (".$bckresult.")"; $status = "error generating ids template (".$bckresult.")";
} }
} }
return array("status" => $status); return array("status" => $status);
} }
......
...@@ -85,7 +85,6 @@ class SettingsController extends ApiControllerBase ...@@ -85,7 +85,6 @@ class SettingsController extends ApiControllerBase
$cnf->save(); $cnf->save();
$result["result"] = "saved"; $result["result"] = "saved";
} }
} }
return $result; return $result;
......
...@@ -171,7 +171,6 @@ class Radius implements IAuthConnector ...@@ -171,7 +171,6 @@ class Radius implements IAuthConnector
break; break;
default: default:
syslog(LOG_ERR, "Unexpected return value:$radius\n"); syslog(LOG_ERR, "Unexpected return value:$radius\n");
} }
radius_close($radius); radius_close($radius);
} }
...@@ -240,7 +239,6 @@ class Radius implements IAuthConnector ...@@ -240,7 +239,6 @@ class Radius implements IAuthConnector
break; break;
default: default:
syslog(LOG_ERR, "Unexpected return value:$radius\n"); syslog(LOG_ERR, "Unexpected return value:$radius\n");
} }
radius_close($radius); radius_close($radius);
} }
...@@ -310,7 +308,6 @@ class Radius implements IAuthConnector ...@@ -310,7 +308,6 @@ class Radius implements IAuthConnector
break; break;
default: default:
syslog(LOG_ERR, "Unexpected return value:$radius\n"); syslog(LOG_ERR, "Unexpected return value:$radius\n");
} }
radius_close($radius); radius_close($radius);
} }
...@@ -388,7 +385,6 @@ class Radius implements IAuthConnector ...@@ -388,7 +385,6 @@ class Radius implements IAuthConnector
default: default:
break; break;
} }
} }
return true; return true;
break; break;
......
...@@ -119,7 +119,6 @@ class Backend ...@@ -119,7 +119,6 @@ class Backend
$this->getLogger()->error("Timeout (".$timeout.") executing : ".$event); $this->getLogger()->error("Timeout (".$timeout.") executing : ".$event);
return null; return null;
} }
} }
return str_replace($endOfStream, "", $resp); return str_replace($endOfStream, "", $resp);
......
...@@ -189,7 +189,6 @@ abstract class BaseModel ...@@ -189,7 +189,6 @@ abstract class BaseModel
// add object as child to this node // add object as child to this node
$internal_data->addChildNode($xmlNode->getName(), $fieldObject); $internal_data->addChildNode($xmlNode->getName(), $fieldObject);
} }
} }
} }
...@@ -401,7 +400,6 @@ abstract class BaseModel ...@@ -401,7 +400,6 @@ abstract class BaseModel
} else { } else {
$target_node = $target_node->xpath($str_parts[$i])[0]; $target_node = $target_node->xpath($str_parts[$i])[0];
} }
} }
} }
...@@ -466,7 +464,6 @@ abstract class BaseModel ...@@ -466,7 +464,6 @@ abstract class BaseModel
} else { } else {
return null; return null;
} }
} }
return $node; return $node;
} }
......
...@@ -499,8 +499,6 @@ abstract class BaseField ...@@ -499,8 +499,6 @@ abstract class BaseField
foreach ($this->getAttributes() as $AttrKey => $AttrValue) { foreach ($this->getAttributes() as $AttrKey => $AttrValue) {
$subnode->addAttribute($AttrKey, $AttrValue); $subnode->addAttribute($AttrKey, $AttrValue);
} }
} }
foreach ($this->__items as $key => $FieldNode) { foreach ($this->__items as $key => $FieldNode) {
......
...@@ -127,7 +127,6 @@ class ACL ...@@ -127,7 +127,6 @@ class ACL
$this->ACLtags[$aclID] = $aclPayload; $this->ACLtags[$aclID] = $aclPayload;
} }
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment