File DeploymentManaged.php
has 381 lines of code (exceeds 250 allowed). Consider refactoring. Open
<?php
/*
* *****************************************************************************
* Contributions to this work were made on behalf of the GÉANT project, a
Method __construct
has 67 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function __construct($idpObject, $deploymentIdRaw, $consortium = 'eduroam')
{
parent::__construct($idpObject, $deploymentIdRaw); // we now have access to our INST database handle and logging
$this->entityOptionTable = "deployment_option";
$this->entityIdColumn = "deployment_id";
Function setRADIUSconfig
has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring. Open
public function setRADIUSconfig($onlyone = 0, $notify = 0)
{
$remove = ($this->status == \core\AbstractDeployment::INACTIVE) ? 0 : 1;
$toPost = ($onlyone ? array($onlyone => '') : array(1 => '', 2 => ''));
$toPostTemplate = 'instid=' . $this->institution . '&deploymentid=' . $this->identifier . '&secret=' . $this->secret . '&country=' . $this->getAttributes("internal:country")[0]['value'] . '&';
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function findGoodServerLocation
has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring. Open
private function findGoodServerLocation($adminLocation, $federation, $blacklistedServers)
{
// find a server near him (list of all servers with capacity, ordered by distance)
// first, if there is a pool of servers specifically for this federation, prefer it
// only check the consortium pool group we want to attach to
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function __construct
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
public function __construct($idpObject, $deploymentIdRaw, $consortium = 'eduroam')
{
parent::__construct($idpObject, $deploymentIdRaw); // we now have access to our INST database handle and logging
$this->entityOptionTable = "deployment_option";
$this->entityIdColumn = "deployment_id";
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method setRADIUSconfig
has 33 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function setRADIUSconfig($onlyone = 0, $notify = 0)
{
$remove = ($this->status == \core\AbstractDeployment::INACTIVE) ? 0 : 1;
$toPost = ($onlyone ? array($onlyone => '') : array(1 => '', 2 => ''));
$toPostTemplate = 'instid=' . $this->institution . '&deploymentid=' . $this->identifier . '&secret=' . $this->secret . '&country=' . $this->getAttributes("internal:country")[0]['value'] . '&';
Method findGoodServerLocation
has 30 lines of code (exceeds 25 allowed). Consider refactoring. Open
private function findGoodServerLocation($adminLocation, $federation, $blacklistedServers)
{
// find a server near him (list of all servers with capacity, ordered by distance)
// first, if there is a pool of servers specifically for this federation, prefer it
// only check the consortium pool group we want to attach to
Method sendMailtoAdmin
has 30 lines of code (exceeds 25 allowed). Consider refactoring. Open
private function sendMailtoAdmin($remove, $response, $status)
{
$txt = '';
if ($status == 'OK') {
$txt = $remove ? _('Profile deactivation succeeded') : _('Profile activation/modification succeeded');
Function sendMailtoAdmin
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
private function sendMailtoAdmin($remove, $response, $status)
{
$txt = '';
if ($status == 'OK') {
$txt = $remove ? _('Profile deactivation succeeded') : _('Profile activation/modification succeeded');
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method initialise
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
private function initialise()
{
// find out where the admin is located approximately
$ourLocation = ['lon' => 0, 'lat' => 0];
$geoip = DeviceLocation::locateDevice();
Method sendToRADIUS
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
private function sendToRADIUS(int $idx, $post)
{
$hostname = "radius_hostname_$idx";
$ch = curl_init("http://" . $this->$hostname);
Function initialise
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
private function initialise()
{
// find out where the admin is located approximately
$ourLocation = ['lon' => 0, 'lat' => 0];
$geoip = DeviceLocation::locateDevice();
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function getAllRealms
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
private function getAllRealms()
{
$idp = new IdP($this->institution);
$allProfiles = $idp->listProfiles(TRUE);
$allRealms = [];
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function checkRADIUSHostandConfigDaemon
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function checkRADIUSHostandConfigDaemon()
{
$res = array();
if ($this->radius_status_1 == \core\AbstractDeployment::RADIUS_FAILURE) {
$res[1] = $this->checkURL(1);
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"