Passed
Push — release_2_1 ( c5a9af...7447ed )
by Tomasz
29:40
created
web/admin/action_enrollment.php 1 patch
Switch Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -49,14 +49,14 @@
 block discarded – undo
49 49
 }
50 50
 
51 51
 switch ($_GET['token']) {
52
-    case "SELF-REGISTER":
53
-        $token = "SELF-REGISTER";
54
-        $checkval = \core\UserManagement::TOKENSTATUS_OK_NEW;
55
-        $federation = \config\ConfAssistant::CONSORTIUM['selfservice_registration'];
56
-        break;
57
-    default:
58
-        $token = $validator->token(filter_input(INPUT_GET,'token',FILTER_SANITIZE_STRING));
59
-        $checkval = $usermgmt->checkTokenValidity($token);
52
+        case "SELF-REGISTER":
53
+            $token = "SELF-REGISTER";
54
+            $checkval = \core\UserManagement::TOKENSTATUS_OK_NEW;
55
+            $federation = \config\ConfAssistant::CONSORTIUM['selfservice_registration'];
56
+            break;
57
+        default:
58
+            $token = $validator->token(filter_input(INPUT_GET,'token',FILTER_SANITIZE_STRING));
59
+            $checkval = $usermgmt->checkTokenValidity($token);
60 60
 }
61 61
 
62 62
 if ($checkval < 0) {
Please login to merge, or discard this patch.
web/admin/inc/sendinvite.inc.php 1 patch
Switch Indentation   +87 added lines, -87 removed lines patch added patch discarded remove patch
@@ -98,98 +98,98 @@
 block discarded – undo
98 98
 }
99 99
 
100 100
 switch ($operationMode) {
101
-    case OPERATION_MODE_EDIT:
102
-        $idp = $validator->existingIdP($_GET['inst_id']);
103
-        // editing IdPs is done from within the popup. When we're done, send the 
104
-        // user back to the popup (append the result of the operation later)
105
-        $redirectDestination = "manageAdmins.inc.php?inst_id=" . $idp->identifier . "&";
106
-        if (count($validAddresses) == 0) {
107
-            header("Location: $redirectDestination" . "invitation=INVALIDSYNTAX");
108
-            exit(1);
109
-        }
110
-        // is the user primary admin of this IdP?
111
-        $is_owner = $idp->isPrimaryOwner($_SESSION['user']);
112
-        // check if he is (also) federation admin for the federation this IdP is in. His invitations have more blessing then.
113
-        $fedadmin = $userObject->isFederationAdmin($idp->federation);
114
-        // check if he is either one, if not, complain
115
-        if (!$is_owner && !$fedadmin) {
116
-            echo "<p>" . sprintf(_("Something's wrong... you are a %s admin, but not for the %s the requested %s belongs to!"), $uiElements->nomenclatureFed, $uiElements->nomenclatureFed, $uiElements->nomenclatureParticipant) . "</p>";
117
-            exit(1);
118
-        }
101
+        case OPERATION_MODE_EDIT:
102
+            $idp = $validator->existingIdP($_GET['inst_id']);
103
+            // editing IdPs is done from within the popup. When we're done, send the 
104
+            // user back to the popup (append the result of the operation later)
105
+            $redirectDestination = "manageAdmins.inc.php?inst_id=" . $idp->identifier . "&";
106
+            if (count($validAddresses) == 0) {
107
+                header("Location: $redirectDestination" . "invitation=INVALIDSYNTAX");
108
+                exit(1);
109
+            }
110
+            // is the user primary admin of this IdP?
111
+            $is_owner = $idp->isPrimaryOwner($_SESSION['user']);
112
+            // check if he is (also) federation admin for the federation this IdP is in. His invitations have more blessing then.
113
+            $fedadmin = $userObject->isFederationAdmin($idp->federation);
114
+            // check if he is either one, if not, complain
115
+            if (!$is_owner && !$fedadmin) {
116
+                echo "<p>" . sprintf(_("Something's wrong... you are a %s admin, but not for the %s the requested %s belongs to!"), $uiElements->nomenclatureFed, $uiElements->nomenclatureFed, $uiElements->nomenclatureParticipant) . "</p>";
117
+                exit(1);
118
+            }
119 119
 
120
-        $prettyprintname = $idp->name;
121
-        $newtokens = $mgmt->createTokens($fedadmin, $validAddresses, $idp);
122
-        $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP " . $idp->identifier . " - Token created for " . implode(",", $validAddresses));
123
-        $introtext = "CO-ADMIN";
124
-        $participant_type = $idp->type;
125
-        break;
126
-    case OPERATION_MODE_NEWUNLINKED:
127
-        $redirectDestination = "../overview_federation.php?";
128
-        if (count($validAddresses) == 0) {
129
-            header("Location: $redirectDestination"."invitation=INVALIDSYNTAX");
130
-            exit(1);
131
-        }
132
-        // run an input check and conversion of the raw inputs... just in case
133
-        $newinstname = $validator->string($_POST['name']);
134
-        $newcountry = $validator->string($_POST['country']);
135
-        $participant_type = $validator->partType($_POST['participant_type']);
136
-        $new_idp_authorized_fedadmin = $userObject->isFederationAdmin($newcountry);
137
-        if ($new_idp_authorized_fedadmin !== TRUE) {
138
-            throw new Exception("Something's wrong... you want to create a new " . $uiElements->nomenclatureParticipant . ", but are not a " . $uiElements->nomenclatureFed . " admin for the " . $uiElements->nomenclatureFed . " it should be in!");
139
-        }
140
-        $federation = $validator->existingFederation($newcountry);
141
-        $prettyprintname = $newinstname;
142
-        $introtext = "NEW-FED";
143
-        // send the user back to his federation overview page, append the result of the operation later
144
-        // do the token creation magic
145
-        $newtokens = $mgmt->createTokens(TRUE, $validAddresses, $newinstname, 0, $newcountry, $participant_type);
146
-        $loggerInstance->writeAudit($_SESSION['user'], "NEW", "ORG FUTURE  - Token created for $participant_type " . implode(",", $validAddresses));
147
-        break;
148
-    case OPERATION_MODE_NEWFROMDB:
149
-        $redirectDestination = "../overview_federation.php?";
150
-        if (count($validAddresses) == 0) {
151
-            header("Location: $redirectDestination"."invitation=INVALIDSYNTAX");
152
-            exit(1);
153
-        }
154
-        // a real external DB entry was submitted and all the required parameters are there
155
-        $newexternalid = $validator->string($_POST['externals']);
156
-        $extinfo = $catInstance->getExternalDBEntityDetails($newexternalid);
157
-        $new_idp_authorized_fedadmin = $userObject->isFederationAdmin($extinfo['country']);
158
-        if ($new_idp_authorized_fedadmin !== TRUE) {
159
-            throw new Exception("Something's wrong... you want to create a new " . $uiElements->nomenclatureParticipant . ", but are not a " . $uiElements->nomenclatureFed . " admin for the " . $uiElements->nomenclatureFed . " it should be in!");
160
-        }
161
-        $federation = $validator->existingFederation($extinfo['country']);
162
-        $newcountry = $extinfo['country'];
163
-        // see if the inst name is defined in the currently set language; if not, pick its English name; if N/A, pick the last in the list
164
-        $prettyprintname = "";
165
-        foreach ($extinfo['names'] as $lang => $name) {
166
-            if ($lang == $languageInstance->getLang()) {
167
-                $prettyprintname = $name;
120
+            $prettyprintname = $idp->name;
121
+            $newtokens = $mgmt->createTokens($fedadmin, $validAddresses, $idp);
122
+            $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP " . $idp->identifier . " - Token created for " . implode(",", $validAddresses));
123
+            $introtext = "CO-ADMIN";
124
+            $participant_type = $idp->type;
125
+            break;
126
+        case OPERATION_MODE_NEWUNLINKED:
127
+            $redirectDestination = "../overview_federation.php?";
128
+            if (count($validAddresses) == 0) {
129
+                header("Location: $redirectDestination"."invitation=INVALIDSYNTAX");
130
+                exit(1);
168 131
             }
169
-        }
170
-        if ($prettyprintname == "" && isset($extinfo['names']['en'])) {
171
-            $prettyprintname = $extinfo['names']['en'];
172
-        }
173
-        if ($prettyprintname == "") {
174
-            foreach ($extinfo['names'] as $name) {
175
-                $prettyprintname = $name;
132
+            // run an input check and conversion of the raw inputs... just in case
133
+            $newinstname = $validator->string($_POST['name']);
134
+            $newcountry = $validator->string($_POST['country']);
135
+            $participant_type = $validator->partType($_POST['participant_type']);
136
+            $new_idp_authorized_fedadmin = $userObject->isFederationAdmin($newcountry);
137
+            if ($new_idp_authorized_fedadmin !== TRUE) {
138
+                throw new Exception("Something's wrong... you want to create a new " . $uiElements->nomenclatureParticipant . ", but are not a " . $uiElements->nomenclatureFed . " admin for the " . $uiElements->nomenclatureFed . " it should be in!");
176 139
             }
177
-        }
178
-        $participant_type = $extinfo['type'];
179
-        // fill the rest of the text
180
-        $introtext = "EXISTING-FED";
181
-        // do the token creation magic
182
-        $newtokens = $mgmt->createTokens(TRUE, $validAddresses, $prettyprintname, $newexternalid);
183
-        $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP FUTURE  - Token created for " . implode(",", $validAddresses));
184
-        break;
185
-    default: // includes OPERATION_MODE_INVALID
186
-        // second param is TRUE, so the variable *will* contain a string
187
-        // i.e. ignore Scrutinizer type warning later
188
-        $wrongcontent = print_r($_POST, TRUE);
189
-        echo "<pre>Wrong parameters in POST:
140
+            $federation = $validator->existingFederation($newcountry);
141
+            $prettyprintname = $newinstname;
142
+            $introtext = "NEW-FED";
143
+            // send the user back to his federation overview page, append the result of the operation later
144
+            // do the token creation magic
145
+            $newtokens = $mgmt->createTokens(TRUE, $validAddresses, $newinstname, 0, $newcountry, $participant_type);
146
+            $loggerInstance->writeAudit($_SESSION['user'], "NEW", "ORG FUTURE  - Token created for $participant_type " . implode(",", $validAddresses));
147
+            break;
148
+        case OPERATION_MODE_NEWFROMDB:
149
+            $redirectDestination = "../overview_federation.php?";
150
+            if (count($validAddresses) == 0) {
151
+                header("Location: $redirectDestination"."invitation=INVALIDSYNTAX");
152
+                exit(1);
153
+            }
154
+            // a real external DB entry was submitted and all the required parameters are there
155
+            $newexternalid = $validator->string($_POST['externals']);
156
+            $extinfo = $catInstance->getExternalDBEntityDetails($newexternalid);
157
+            $new_idp_authorized_fedadmin = $userObject->isFederationAdmin($extinfo['country']);
158
+            if ($new_idp_authorized_fedadmin !== TRUE) {
159
+                throw new Exception("Something's wrong... you want to create a new " . $uiElements->nomenclatureParticipant . ", but are not a " . $uiElements->nomenclatureFed . " admin for the " . $uiElements->nomenclatureFed . " it should be in!");
160
+            }
161
+            $federation = $validator->existingFederation($extinfo['country']);
162
+            $newcountry = $extinfo['country'];
163
+            // see if the inst name is defined in the currently set language; if not, pick its English name; if N/A, pick the last in the list
164
+            $prettyprintname = "";
165
+            foreach ($extinfo['names'] as $lang => $name) {
166
+                if ($lang == $languageInstance->getLang()) {
167
+                    $prettyprintname = $name;
168
+                }
169
+            }
170
+            if ($prettyprintname == "" && isset($extinfo['names']['en'])) {
171
+                $prettyprintname = $extinfo['names']['en'];
172
+            }
173
+            if ($prettyprintname == "") {
174
+                foreach ($extinfo['names'] as $name) {
175
+                    $prettyprintname = $name;
176
+                }
177
+            }
178
+            $participant_type = $extinfo['type'];
179
+            // fill the rest of the text
180
+            $introtext = "EXISTING-FED";
181
+            // do the token creation magic
182
+            $newtokens = $mgmt->createTokens(TRUE, $validAddresses, $prettyprintname, $newexternalid);
183
+            $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP FUTURE  - Token created for " . implode(",", $validAddresses));
184
+            break;
185
+        default: // includes OPERATION_MODE_INVALID
186
+            // second param is TRUE, so the variable *will* contain a string
187
+            // i.e. ignore Scrutinizer type warning later
188
+            $wrongcontent = print_r($_POST, TRUE);
189
+            echo "<pre>Wrong parameters in POST:
190 190
 " . htmlspecialchars(/** @scrutinizer ignore-type */ $wrongcontent) . "
191 191
 </pre>";
192
-        exit(1);
192
+            exit(1);
193 193
 }
194 194
 
195 195
 // send, and invalidate the token immediately if the mail could not be sent!
Please login to merge, or discard this patch.
web/admin/edit_hotspot.php 1 patch
Switch Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -156,12 +156,12 @@
 block discarded – undo
156 156
     }
157 157
     if (isset($_POST['command'])) {
158 158
         switch ($_POST['command']) {
159
-        case web\lib\common\FormElements::BUTTON_CLOSE:
160
-            header("Location: overview_org.php?inst_id=" . $my_inst->identifier);
161
-            exit(0);
162
-        default:
163
-            header("Location: overview_org.php?inst_id=" . $my_inst->identifier);
164
-            exit(0);
159
+            case web\lib\common\FormElements::BUTTON_CLOSE:
160
+                header("Location: overview_org.php?inst_id=" . $my_inst->identifier);
161
+                exit(0);
162
+            default:
163
+                header("Location: overview_org.php?inst_id=" . $my_inst->identifier);
164
+                exit(0);
165 165
         }
166 166
     }
167 167
     $vlan = $deployment->getAttributes("managedsp:vlan")[0]['value'] ?? NULL;
Please login to merge, or discard this patch.
web/admin/API.php 1 patch
Switch Indentation   +400 added lines, -400 removed lines patch added patch discarded remove patch
@@ -84,231 +84,231 @@  discard block
 block discarded – undo
84 84
 }
85 85
 
86 86
 switch ($inputDecoded['ACTION']) {
87
-    case web\lib\admin\API::ACTION_NEWINST:
88
-        // create the inst, no admin, no attributes
89
-        $typeRaw = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_INSTTYPE);
90
-        if ($typeRaw === FALSE) {
91
-            throw new Exception("We did not receive a valid participant type!");
92
-        }
93
-        $type = $validator->partType($typeRaw);
94
-        $idp = new \core\IdP($fed->newIdP($type, "PENDING", "API"));
95
-        // now add all submitted attributes
96
-        $inputs = $adminApi->uglify($scrubbedParameters);
97
-        $optionParser->processSubmittedFields($idp, $inputs["POST"], $inputs["FILES"]);
98
-        $adminApi->returnSuccess([web\lib\admin\API::AUXATTRIB_CAT_INST_ID => $idp->identifier]);
99
-        break;
100
-    case web\lib\admin\API::ACTION_DELINST:
101
-        try {
102
-            $idp = $validator->existingIdP($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_INST_ID), NULL, $fed);
103
-        } catch (Exception $e) {
104
-            $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "IdP identifier does not exist!");
105
-            exit(1);
106
-        }
107
-        $idp->destroy();
108
-        $adminApi->returnSuccess([]);
109
-        break;
110
-    case web\lib\admin\API::ACTION_ADMIN_LIST:
111
-        try {
112
-            $idp = $validator->existingIdP($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_INST_ID), NULL, $fed);
113
-        } catch (Exception $e) {
114
-            $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "IdP identifier does not exist!");
115
-            exit(1);
116
-        }
117
-        $adminApi->returnSuccess($idp->listOwners());
118
-        break;
119
-    case web\lib\admin\API::ACTION_ADMIN_ADD:
120
-        // IdP in question
121
-        try {
122
-            $idp = $validator->existingIdP($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_INST_ID), NULL, $fed);
123
-        } catch (Exception $e) {
124
-            $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "IdP identifier does not exist!");
125
-            exit(1);
126
-        }
127
-        // here is the token
128
-        $mgmt = new core\UserManagement();
129
-        // we know we have an admin ID but scrutinizer wants this checked more explicitly
130
-        $admin = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_ADMINID);
131
-        if ($admin === FALSE) {
132
-            throw new Exception("A required parameter is missing, and this wasn't caught earlier?!");
133
-        }
134
-        $newtokens = $mgmt->createTokens(true, [$admin], $idp);
135
-        $URL = "https://" . $_SERVER['SERVER_NAME'] . dirname($_SERVER['SCRIPT_NAME']) . "/action_enrollment.php?token=" . array_keys($newtokens)[0];
136
-        $success = ["TOKEN URL" => $URL, "TOKEN" => array_keys($newtokens)[0]];
137
-        // done with the essentials - display in response. But if we also have an email address, send it there
138
-        $email = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_TARGETMAIL);
139
-        if ($email !== FALSE) {
140
-            $sent = \core\common\OutsideComm::adminInvitationMail($email, "EXISTING-FED", array_keys($newtokens)[0], $idp->name, $fed, $idp->type);
141
-            $success["EMAIL SENT"] = $sent["SENT"];
142
-            if ($sent["SENT"] === TRUE) {
143
-                $success["EMAIL TRANSPORT SECURE"] = $sent["TRANSPORT"];
87
+        case web\lib\admin\API::ACTION_NEWINST:
88
+            // create the inst, no admin, no attributes
89
+            $typeRaw = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_INSTTYPE);
90
+            if ($typeRaw === FALSE) {
91
+                throw new Exception("We did not receive a valid participant type!");
144 92
             }
145
-        }
146
-        $adminApi->returnSuccess($success);
147
-        break;
148
-    case web\lib\admin\API::ACTION_ADMIN_DEL:
149
-        // IdP in question
150
-        try {
151
-            $idp = $validator->existingIdP($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_INST_ID), NULL, $fed);
152
-        } catch (Exception $e) {
153
-            $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "IdP identifier does not exist!");
154
-            exit(1);
155
-        }
156
-        $currentAdmins = $idp->listOwners();
157
-        $toBeDeleted = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_ADMINID);
158
-        if ($toBeDeleted === FALSE) {
159
-            throw new Exception("A required parameter is missing, and this wasn't caught earlier?!");
160
-        }
161
-        $found = FALSE;
162
-        foreach ($currentAdmins as $oneAdmin) {
163
-            if ($oneAdmin['MAIL'] == $toBeDeleted) {
164
-                $found = TRUE;
165
-                $mgmt = new core\UserManagement();
166
-                $mgmt->removeAdminFromIdP($idp, $oneAdmin['ID']);
93
+            $type = $validator->partType($typeRaw);
94
+            $idp = new \core\IdP($fed->newIdP($type, "PENDING", "API"));
95
+            // now add all submitted attributes
96
+            $inputs = $adminApi->uglify($scrubbedParameters);
97
+            $optionParser->processSubmittedFields($idp, $inputs["POST"], $inputs["FILES"]);
98
+            $adminApi->returnSuccess([web\lib\admin\API::AUXATTRIB_CAT_INST_ID => $idp->identifier]);
99
+            break;
100
+        case web\lib\admin\API::ACTION_DELINST:
101
+            try {
102
+                $idp = $validator->existingIdP($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_INST_ID), NULL, $fed);
103
+            } catch (Exception $e) {
104
+                $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "IdP identifier does not exist!");
105
+                exit(1);
167 106
             }
168
-        }
169
-        if ($found) {
107
+            $idp->destroy();
170 108
             $adminApi->returnSuccess([]);
171
-        }
172
-        $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "The admin with ID $toBeDeleted is not associated to IdP " . $idp->identifier);
173
-        break;
174
-    case web\lib\admin\API::ACTION_STATISTICS_FED:
175
-        $adminApi->returnSuccess($fed->downloadStats("array"));
176
-        break;
177
-    case \web\lib\admin\API::ACTION_FEDERATION_LISTIDP:
178
-        $retArray = [];
179
-        $idpIdentifier = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_INST_ID);
180
-        if ($idpIdentifier === FALSE) {
181
-            $allIdPs = $fed->listIdentityProviders(0);
182
-            foreach ($allIdPs as $instanceId => $oneIdP) {
183
-                $theIdP = $oneIdP["instance"];
184
-                $retArray[$instanceId] = $theIdP->getAttributes();
185
-            }
186
-        } else {
109
+            break;
110
+        case web\lib\admin\API::ACTION_ADMIN_LIST:
187 111
             try {
188
-                $thisIdP = $validator->existingIdP($idpIdentifier, NULL, $fed);
112
+                $idp = $validator->existingIdP($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_INST_ID), NULL, $fed);
189 113
             } catch (Exception $e) {
190 114
                 $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "IdP identifier does not exist!");
191 115
                 exit(1);
192 116
             }
193
-            $retArray[$idpIdentifier] = $thisIdP->getAttributes();
194
-            foreach ($thisIdP->listProfiles() as $oneProfile) {
195
-                $retArray[$idpIdentifier]["PROFILES"][$oneProfile->identifier] = $oneProfile->getAttributes();
117
+            $adminApi->returnSuccess($idp->listOwners());
118
+            break;
119
+        case web\lib\admin\API::ACTION_ADMIN_ADD:
120
+            // IdP in question
121
+            try {
122
+                $idp = $validator->existingIdP($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_INST_ID), NULL, $fed);
123
+            } catch (Exception $e) {
124
+                $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "IdP identifier does not exist!");
125
+                exit(1);
196 126
             }
197
-        }
198
-        foreach ($retArray as $instNumber => $oneInstData) {
199
-            foreach ($oneInstData as $attribNumber => $oneAttrib) {
200
-                if ($oneAttrib['name'] == "general:logo_file") {
201
-                    // JSON doesn't cope well with raw binary data, so b64 it
202
-                    $retArray[$instNumber][$attribNumber]['value'] = base64_encode($oneAttrib['value']);
127
+            // here is the token
128
+            $mgmt = new core\UserManagement();
129
+            // we know we have an admin ID but scrutinizer wants this checked more explicitly
130
+            $admin = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_ADMINID);
131
+            if ($admin === FALSE) {
132
+                throw new Exception("A required parameter is missing, and this wasn't caught earlier?!");
133
+            }
134
+            $newtokens = $mgmt->createTokens(true, [$admin], $idp);
135
+            $URL = "https://" . $_SERVER['SERVER_NAME'] . dirname($_SERVER['SCRIPT_NAME']) . "/action_enrollment.php?token=" . array_keys($newtokens)[0];
136
+            $success = ["TOKEN URL" => $URL, "TOKEN" => array_keys($newtokens)[0]];
137
+            // done with the essentials - display in response. But if we also have an email address, send it there
138
+            $email = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_TARGETMAIL);
139
+            if ($email !== FALSE) {
140
+                $sent = \core\common\OutsideComm::adminInvitationMail($email, "EXISTING-FED", array_keys($newtokens)[0], $idp->name, $fed, $idp->type);
141
+                $success["EMAIL SENT"] = $sent["SENT"];
142
+                if ($sent["SENT"] === TRUE) {
143
+                    $success["EMAIL TRANSPORT SECURE"] = $sent["TRANSPORT"];
144
+                }
145
+            }
146
+            $adminApi->returnSuccess($success);
147
+            break;
148
+        case web\lib\admin\API::ACTION_ADMIN_DEL:
149
+            // IdP in question
150
+            try {
151
+                $idp = $validator->existingIdP($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_INST_ID), NULL, $fed);
152
+            } catch (Exception $e) {
153
+                $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "IdP identifier does not exist!");
154
+                exit(1);
155
+            }
156
+            $currentAdmins = $idp->listOwners();
157
+            $toBeDeleted = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_ADMINID);
158
+            if ($toBeDeleted === FALSE) {
159
+                throw new Exception("A required parameter is missing, and this wasn't caught earlier?!");
160
+            }
161
+            $found = FALSE;
162
+            foreach ($currentAdmins as $oneAdmin) {
163
+                if ($oneAdmin['MAIL'] == $toBeDeleted) {
164
+                    $found = TRUE;
165
+                    $mgmt = new core\UserManagement();
166
+                    $mgmt->removeAdminFromIdP($idp, $oneAdmin['ID']);
167
+                }
168
+            }
169
+            if ($found) {
170
+                $adminApi->returnSuccess([]);
171
+            }
172
+            $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "The admin with ID $toBeDeleted is not associated to IdP " . $idp->identifier);
173
+            break;
174
+        case web\lib\admin\API::ACTION_STATISTICS_FED:
175
+            $adminApi->returnSuccess($fed->downloadStats("array"));
176
+            break;
177
+        case \web\lib\admin\API::ACTION_FEDERATION_LISTIDP:
178
+            $retArray = [];
179
+            $idpIdentifier = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_INST_ID);
180
+            if ($idpIdentifier === FALSE) {
181
+                $allIdPs = $fed->listIdentityProviders(0);
182
+                foreach ($allIdPs as $instanceId => $oneIdP) {
183
+                    $theIdP = $oneIdP["instance"];
184
+                    $retArray[$instanceId] = $theIdP->getAttributes();
185
+                }
186
+            } else {
187
+                try {
188
+                    $thisIdP = $validator->existingIdP($idpIdentifier, NULL, $fed);
189
+                } catch (Exception $e) {
190
+                    $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "IdP identifier does not exist!");
191
+                    exit(1);
203 192
                 }
204
-                if ($attribNumber == "PROFILES") {
205
-                    // scan for included fed:logo_file and b64 escape it, t2oo
206
-                    foreach ($oneAttrib as $profileNumber => $profileContent) {
207
-                            foreach ($profileContent as $oneProfileIterator => $oneProfileContent) {
208
-                                    if ($oneProfileContent['name'] == "fed:logo_file" || $oneProfileContent['name'] == "general:logo_file" || $oneProfileContent['name'] == "eap:ca_file") {
209
-                                            $retArray[$instNumber]["PROFILES"][$profileNumber][$oneProfileIterator]['value'] = base64_encode($oneProfileContent['value']);
210
-                                    }
211
-                            }
193
+                $retArray[$idpIdentifier] = $thisIdP->getAttributes();
194
+                foreach ($thisIdP->listProfiles() as $oneProfile) {
195
+                    $retArray[$idpIdentifier]["PROFILES"][$oneProfile->identifier] = $oneProfile->getAttributes();
196
+                }
197
+            }
198
+            foreach ($retArray as $instNumber => $oneInstData) {
199
+                foreach ($oneInstData as $attribNumber => $oneAttrib) {
200
+                    if ($oneAttrib['name'] == "general:logo_file") {
201
+                        // JSON doesn't cope well with raw binary data, so b64 it
202
+                        $retArray[$instNumber][$attribNumber]['value'] = base64_encode($oneAttrib['value']);
203
+                    }
204
+                    if ($attribNumber == "PROFILES") {
205
+                        // scan for included fed:logo_file and b64 escape it, t2oo
206
+                        foreach ($oneAttrib as $profileNumber => $profileContent) {
207
+                                foreach ($profileContent as $oneProfileIterator => $oneProfileContent) {
208
+                                        if ($oneProfileContent['name'] == "fed:logo_file" || $oneProfileContent['name'] == "general:logo_file" || $oneProfileContent['name'] == "eap:ca_file") {
209
+                                                $retArray[$instNumber]["PROFILES"][$profileNumber][$oneProfileIterator]['value'] = base64_encode($oneProfileContent['value']);
210
+                                        }
211
+                                }
212
+                        }
212 213
                     }
213 214
                 }
214 215
             }
215
-        }
216
-        $adminApi->returnSuccess($retArray);
217
-        break;
218
-    case \web\lib\admin\API::ACTION_NEWPROF_RADIUS:
219
-    // fall-through intended: both get mostly identical treatment
220
-    case web\lib\admin\API::ACTION_NEWPROF_SB:
221
-        try {
222
-            $idp = $validator->existingIdP($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_INST_ID), NULL, $fed);
223
-        } catch (Exception $e) {
224
-            $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "IdP identifier does not exist!");
225
-            exit(1);
226
-        }
227
-        if ($inputDecoded['ACTION'] == web\lib\admin\API::ACTION_NEWPROF_RADIUS) {
228
-            $type = "RADIUS";
229
-        } else {
230
-            $type = "SILVERBULLET";
231
-        }
232
-        $profile = $idp->newProfile($type);
233
-        if ($profile === NULL) {
234
-            $adminApi->returnError(\web\lib\admin\API::ERROR_INTERNAL_ERROR, "Unable to create a new Profile, for no apparent reason. Please contact support.");
235
-            exit(1);
236
-        }
237
-        $inputs = $adminApi->uglify($scrubbedParameters);
238
-        $optionParser->processSubmittedFields($profile, $inputs["POST"], $inputs["FILES"]);
239
-        if ($inputDecoded['ACTION'] == web\lib\admin\API::ACTION_NEWPROF_SB) {
240
-            // auto-accept ToU?
241
-            if ($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_TOU) !== FALSE) {
242
-                $profile->addAttribute("hiddenprofile:tou_accepted", NULL, 1);
243
-            }
244
-            // we're done at this point
245
-            $adminApi->returnSuccess([\web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID => $profile->identifier]);
216
+            $adminApi->returnSuccess($retArray);
246 217
             break;
247
-        }
248
-        if (!$profile instanceof core\ProfileRADIUS) {
249
-            throw new Exception("Can't be. This is only here to convince Scrutinizer that we're really talking RADIUS.");
250
-        }
251
-        /* const AUXATTRIB_PROFILE_REALM = 'ATTRIB-PROFILE-REALM';
252
-          const AUXATTRIB_PROFILE_OUTERVALUE = 'ATTRIB-PROFILE-OUTERVALUE'; */
253
-        $realm = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_PROFILE_REALM);
254
-        $outer = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_PROFILE_OUTERVALUE);
255
-        if ($realm !== FALSE) {
256
-            if ($outer === FALSE) {
257
-                $outer = "";
258
-                $profile->setAnonymousIDSupport(FALSE);
218
+        case \web\lib\admin\API::ACTION_NEWPROF_RADIUS:
219
+        // fall-through intended: both get mostly identical treatment
220
+        case web\lib\admin\API::ACTION_NEWPROF_SB:
221
+            try {
222
+                $idp = $validator->existingIdP($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_INST_ID), NULL, $fed);
223
+            } catch (Exception $e) {
224
+                $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "IdP identifier does not exist!");
225
+                exit(1);
226
+            }
227
+            if ($inputDecoded['ACTION'] == web\lib\admin\API::ACTION_NEWPROF_RADIUS) {
228
+                $type = "RADIUS";
259 229
             } else {
260
-                $outer = $outer . "@";
261
-                $profile->setAnonymousIDSupport(TRUE);
230
+                $type = "SILVERBULLET";
262 231
             }
263
-            $profile->setRealm($outer . $realm);
264
-        }
265
-        /* const AUXATTRIB_PROFILE_TESTUSER = 'ATTRIB-PROFILE-TESTUSER'; */
266
-        $testuser = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_PROFILE_TESTUSER);
267
-        if ($testuser !== FALSE) {
268
-            $profile->setRealmCheckUser(TRUE, $testuser);
269
-        }
270
-        /* const AUXATTRIB_PROFILE_INPUT_HINT = 'ATTRIB-PROFILE-HINTREALM';
232
+            $profile = $idp->newProfile($type);
233
+            if ($profile === NULL) {
234
+                $adminApi->returnError(\web\lib\admin\API::ERROR_INTERNAL_ERROR, "Unable to create a new Profile, for no apparent reason. Please contact support.");
235
+                exit(1);
236
+            }
237
+            $inputs = $adminApi->uglify($scrubbedParameters);
238
+            $optionParser->processSubmittedFields($profile, $inputs["POST"], $inputs["FILES"]);
239
+            if ($inputDecoded['ACTION'] == web\lib\admin\API::ACTION_NEWPROF_SB) {
240
+                // auto-accept ToU?
241
+                if ($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_TOU) !== FALSE) {
242
+                    $profile->addAttribute("hiddenprofile:tou_accepted", NULL, 1);
243
+                }
244
+                // we're done at this point
245
+                $adminApi->returnSuccess([\web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID => $profile->identifier]);
246
+                break;
247
+            }
248
+            if (!$profile instanceof core\ProfileRADIUS) {
249
+                throw new Exception("Can't be. This is only here to convince Scrutinizer that we're really talking RADIUS.");
250
+            }
251
+            /* const AUXATTRIB_PROFILE_REALM = 'ATTRIB-PROFILE-REALM';
252
+          const AUXATTRIB_PROFILE_OUTERVALUE = 'ATTRIB-PROFILE-OUTERVALUE'; */
253
+            $realm = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_PROFILE_REALM);
254
+            $outer = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_PROFILE_OUTERVALUE);
255
+            if ($realm !== FALSE) {
256
+                if ($outer === FALSE) {
257
+                    $outer = "";
258
+                    $profile->setAnonymousIDSupport(FALSE);
259
+                } else {
260
+                    $outer = $outer . "@";
261
+                    $profile->setAnonymousIDSupport(TRUE);
262
+                }
263
+                $profile->setRealm($outer . $realm);
264
+            }
265
+            /* const AUXATTRIB_PROFILE_TESTUSER = 'ATTRIB-PROFILE-TESTUSER'; */
266
+            $testuser = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_PROFILE_TESTUSER);
267
+            if ($testuser !== FALSE) {
268
+                $profile->setRealmCheckUser(TRUE, $testuser);
269
+            }
270
+            /* const AUXATTRIB_PROFILE_INPUT_HINT = 'ATTRIB-PROFILE-HINTREALM';
271 271
           const AUXATTRIB_PROFILE_INPUT_VERIFY = 'ATTRIB-PROFILE-VERIFYREALM'; */
272
-        $hint = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_PROFILE_INPUT_HINT);
273
-        $enforce = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_PROFILE_INPUT_VERIFY);
274
-        if ($enforce !== FALSE) {
275
-            $profile->setInputVerificationPreference($enforce, $hint);
276
-        }
277
-        /* const AUXATTRIB_PROFILE_EAPTYPE */
278
-        $iterator = 1;
279
-        foreach ($scrubbedParameters as $oneParam) {
280
-            if ($oneParam['NAME'] == web\lib\admin\API::AUXATTRIB_PROFILE_EAPTYPE && is_int($oneParam["VALUE"])) {
281
-                $type = new \core\common\EAP($oneParam["VALUE"]);
282
-                $profile->addSupportedEapMethod($type, $iterator);
283
-                $iterator = $iterator + 1;
272
+            $hint = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_PROFILE_INPUT_HINT);
273
+            $enforce = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_PROFILE_INPUT_VERIFY);
274
+            if ($enforce !== FALSE) {
275
+                $profile->setInputVerificationPreference($enforce, $hint);
284 276
             }
285
-        }
286
-        // reinstantiate $profile freshly from DB - it was updated in the process
287
-        $profileFresh = new core\ProfileRADIUS($profile->identifier);
288
-        $profileFresh->prepShowtime();
289
-        $adminApi->returnSuccess([\web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID => $profileFresh->identifier]);
290
-        break;
291
-    case web\lib\admin\API::ACTION_ENDUSER_NEW:
292
-    // fall-through intentional, those two actions are doing nearly identical things
293
-    case web\lib\admin\API::ACTION_ENDUSER_CHANGEEXPIRY:
294
-        $prof_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID);
295
-        if ($prof_id === FALSE) {
296
-            exit(1);
297
-        }
298
-        $evaluation = $adminApi->commonSbProfileChecks($fed, $prof_id);
299
-        if ($evaluation === FALSE) {
300
-            exit(1);
301
-        }
302
-        list($idp, $profile) = $evaluation;
303
-        $user = $validator->string($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_USERNAME));
304
-        $expiryRaw = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_EXPIRY);
305
-        if ($expiryRaw === FALSE) {
306
-            $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "The expiry date wasn't found in the request.");
277
+            /* const AUXATTRIB_PROFILE_EAPTYPE */
278
+            $iterator = 1;
279
+            foreach ($scrubbedParameters as $oneParam) {
280
+                if ($oneParam['NAME'] == web\lib\admin\API::AUXATTRIB_PROFILE_EAPTYPE && is_int($oneParam["VALUE"])) {
281
+                    $type = new \core\common\EAP($oneParam["VALUE"]);
282
+                    $profile->addSupportedEapMethod($type, $iterator);
283
+                    $iterator = $iterator + 1;
284
+                }
285
+            }
286
+            // reinstantiate $profile freshly from DB - it was updated in the process
287
+            $profileFresh = new core\ProfileRADIUS($profile->identifier);
288
+            $profileFresh->prepShowtime();
289
+            $adminApi->returnSuccess([\web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID => $profileFresh->identifier]);
307 290
             break;
308
-        }
309
-        $expiry = new DateTime($expiryRaw);
310
-        try {
311
-            switch ($inputDecoded['ACTION']) {
291
+        case web\lib\admin\API::ACTION_ENDUSER_NEW:
292
+        // fall-through intentional, those two actions are doing nearly identical things
293
+        case web\lib\admin\API::ACTION_ENDUSER_CHANGEEXPIRY:
294
+            $prof_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID);
295
+            if ($prof_id === FALSE) {
296
+                exit(1);
297
+            }
298
+            $evaluation = $adminApi->commonSbProfileChecks($fed, $prof_id);
299
+            if ($evaluation === FALSE) {
300
+                exit(1);
301
+            }
302
+            list($idp, $profile) = $evaluation;
303
+            $user = $validator->string($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_USERNAME));
304
+            $expiryRaw = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_EXPIRY);
305
+            if ($expiryRaw === FALSE) {
306
+                $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "The expiry date wasn't found in the request.");
307
+                break;
308
+            }
309
+            $expiry = new DateTime($expiryRaw);
310
+            try {
311
+                switch ($inputDecoded['ACTION']) {
312 312
                 case web\lib\admin\API::ACTION_ENDUSER_NEW:
313 313
                     $retval = $profile->addUser($user, $expiry);
314 314
                     break;
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
                         $retval = 1; // function doesn't have any failure vectors not raising an Exception and doesn't return a value
322 322
                     }
323 323
                     break;
324
-            }
324
+                }
325 325
         } catch (Exception $e) {
326 326
             $adminApi->returnError(web\lib\admin\API::ERROR_INTERNAL_ERROR, "The operation failed. Maybe a duplicate username, or malformed expiry date?");
327 327
             exit(1);
@@ -332,25 +332,25 @@  discard block
 block discarded – undo
332 332
         }
333 333
         $adminApi->returnSuccess([web\lib\admin\API::AUXATTRIB_SB_USERNAME => $user, \web\lib\admin\API::AUXATTRIB_SB_USERID => $retval]);
334 334
         break;
335
-    case \web\lib\admin\API::ACTION_ENDUSER_DEACTIVATE:
336
-    // fall-through intended: both actions are very similar
337
-    case \web\lib\admin\API::ACTION_TOKEN_NEW:
338
-        $profile_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID);
339
-        if ($profile_id === FALSE) {
340
-            exit(1);
341
-        }
342
-        $evaluation = $adminApi->commonSbProfileChecks($fed, $profile_id);
343
-        if ($evaluation === FALSE) {
344
-            exit(1);
345
-        }
346
-        list($idp, $profile) = $evaluation;
347
-        $userId = $validator->integer($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_USERID));
348
-        if ($userId === FALSE) {
349
-            $adminApi->returnError(\web\lib\admin\API::ERROR_INVALID_PARAMETER, "User ID is not an integer.");
350
-            exit(1);
351
-        }
352
-        $additionalInfo = [];
353
-        switch ($inputDecoded['ACTION']) { // this is where the two differ
335
+        case \web\lib\admin\API::ACTION_ENDUSER_DEACTIVATE:
336
+        // fall-through intended: both actions are very similar
337
+        case \web\lib\admin\API::ACTION_TOKEN_NEW:
338
+            $profile_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID);
339
+            if ($profile_id === FALSE) {
340
+                exit(1);
341
+            }
342
+            $evaluation = $adminApi->commonSbProfileChecks($fed, $profile_id);
343
+            if ($evaluation === FALSE) {
344
+                exit(1);
345
+            }
346
+            list($idp, $profile) = $evaluation;
347
+            $userId = $validator->integer($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_USERID));
348
+            if ($userId === FALSE) {
349
+                $adminApi->returnError(\web\lib\admin\API::ERROR_INVALID_PARAMETER, "User ID is not an integer.");
350
+                exit(1);
351
+            }
352
+            $additionalInfo = [];
353
+            switch ($inputDecoded['ACTION']) { // this is where the two differ
354 354
             case \web\lib\admin\API::ACTION_ENDUSER_DEACTIVATE:
355 355
                 $result = $profile->deactivateUser($userId);
356 356
                 break;
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
                     }
384 384
                 }
385 385
                 break;
386
-        }
386
+            }
387 387
 
388 388
         if ($result !== TRUE) {
389 389
             $adminApi->returnError(\web\lib\admin\API::ERROR_INVALID_PARAMETER, "These parameters did not lead to an existing, active user.");
@@ -391,69 +391,69 @@  discard block
 block discarded – undo
391 391
         }
392 392
         $adminApi->returnSuccess($additionalInfo);
393 393
         break;
394
-    case \web\lib\admin\API::ACTION_ENDUSER_IDENTIFY:
395
-        $profile_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID);
396
-        if ($profile_id === FALSE) {
397
-            exit(1);
398
-        }
399
-        $evaluation = $adminApi->commonSbProfileChecks($fed, $profile_id);
400
-        if ($evaluation === FALSE) {
401
-            exit(1);
402
-        }
403
-        list($idp, $profile) = $evaluation;
404
-        $userId = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_USERID);
405
-        $userName = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_USERNAME);
406
-        $certSerial = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_CERTSERIAL);
407
-		$certCN = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_CERTCN);
408
-        if ($userId === FALSE && $userName === FALSE && $certSerial === FALSE && $certCN === FALSE) {
409
-            // we need at least one of those
410
-            $adminApi->returnError(\web\lib\admin\API::ERROR_MISSING_PARAMETER, "At least one of User ID, Username, certificate serial, or certificate CN is required.");
411
-            break;
412
-        }
413
-        if ($certSerial !== FALSE) { // we got a cert serial
414
-            $serial = explode(":", $certSerial);
415
-            $cert = new \core\SilverbulletCertificate($serial[1], $serial[0]);
394
+        case \web\lib\admin\API::ACTION_ENDUSER_IDENTIFY:
395
+            $profile_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID);
396
+            if ($profile_id === FALSE) {
397
+                exit(1);
416 398
             }
417
-        if ($certCN !== FALSE) { // we got a cert CN
418
-            $cert = new \core\SilverbulletCertificate($certCN);
419
-        }
420
-        if ($cert !== NULL) { // we found a cert; verify it and extract userId
421
-            if ($cert->status == \core\SilverbulletCertificate::CERTSTATUS_INVALID) {
422
-                return $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Certificate not found.");
399
+            $evaluation = $adminApi->commonSbProfileChecks($fed, $profile_id);
400
+            if ($evaluation === FALSE) {
401
+                exit(1);
423 402
             }
424
-            if ($cert->profileId != $profile->identifier) {
425
-                return $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Certificate does not belong to this profile.");
403
+            list($idp, $profile) = $evaluation;
404
+            $userId = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_USERID);
405
+            $userName = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_USERNAME);
406
+            $certSerial = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_CERTSERIAL);
407
+		    $certCN = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_CERTCN);
408
+            if ($userId === FALSE && $userName === FALSE && $certSerial === FALSE && $certCN === FALSE) {
409
+                // we need at least one of those
410
+                $adminApi->returnError(\web\lib\admin\API::ERROR_MISSING_PARAMETER, "At least one of User ID, Username, certificate serial, or certificate CN is required.");
411
+                break;
426 412
             }
427
-            $userId = $cert->userId;
428
-        }
429
-        if ($userId !== FALSE) {
430
-            $userList = $profile->getUserById($userId);
431
-        }
432
-        if ($userName !== FALSE) {
433
-            $userList = $profile->getUserByName($userName);
434
-        }
435
-        if (count($userList) === 1) {
436
-            foreach ($userList as $oneUserId => $oneUserName) {
437
-                return $adminApi->returnSuccess([web\lib\admin\API::AUXATTRIB_SB_USERNAME => $oneUserName, \web\lib\admin\API::AUXATTRIB_SB_USERID => $oneUserId]);
413
+            if ($certSerial !== FALSE) { // we got a cert serial
414
+                $serial = explode(":", $certSerial);
415
+                $cert = new \core\SilverbulletCertificate($serial[1], $serial[0]);
416
+                }
417
+            if ($certCN !== FALSE) { // we got a cert CN
418
+                $cert = new \core\SilverbulletCertificate($certCN);
438 419
             }
439
-        }
440
-        $adminApi->returnError(\web\lib\admin\API::ERROR_INVALID_PARAMETER, "No matching user found in this profile.");
441
-        break;
442
-    case \web\lib\admin\API::ACTION_ENDUSER_LIST:
443
-    // fall-through: those two are similar
444
-    case \web\lib\admin\API::ACTION_TOKEN_LIST:
445
-        $profile_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID);
446
-        if ($profile_id === FALSE) {
447
-            exit(1);
448
-        }
449
-        $evaluation = $adminApi->commonSbProfileChecks($fed, $profile_id);
450
-        if ($evaluation === FALSE) {
451
-            exit(1);
452
-        }
453
-        list($idp, $profile) = $evaluation;
454
-        $allUsers = $profile->listAllUsers();
455
-        // this is where they differ
456
-        switch ($inputDecoded['ACTION']) {
420
+            if ($cert !== NULL) { // we found a cert; verify it and extract userId
421
+                if ($cert->status == \core\SilverbulletCertificate::CERTSTATUS_INVALID) {
422
+                    return $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Certificate not found.");
423
+                }
424
+                if ($cert->profileId != $profile->identifier) {
425
+                    return $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Certificate does not belong to this profile.");
426
+                }
427
+                $userId = $cert->userId;
428
+            }
429
+            if ($userId !== FALSE) {
430
+                $userList = $profile->getUserById($userId);
431
+            }
432
+            if ($userName !== FALSE) {
433
+                $userList = $profile->getUserByName($userName);
434
+            }
435
+            if (count($userList) === 1) {
436
+                foreach ($userList as $oneUserId => $oneUserName) {
437
+                    return $adminApi->returnSuccess([web\lib\admin\API::AUXATTRIB_SB_USERNAME => $oneUserName, \web\lib\admin\API::AUXATTRIB_SB_USERID => $oneUserId]);
438
+                }
439
+            }
440
+            $adminApi->returnError(\web\lib\admin\API::ERROR_INVALID_PARAMETER, "No matching user found in this profile.");
441
+            break;
442
+        case \web\lib\admin\API::ACTION_ENDUSER_LIST:
443
+        // fall-through: those two are similar
444
+        case \web\lib\admin\API::ACTION_TOKEN_LIST:
445
+            $profile_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID);
446
+            if ($profile_id === FALSE) {
447
+                exit(1);
448
+            }
449
+            $evaluation = $adminApi->commonSbProfileChecks($fed, $profile_id);
450
+            if ($evaluation === FALSE) {
451
+                exit(1);
452
+            }
453
+            list($idp, $profile) = $evaluation;
454
+            $allUsers = $profile->listAllUsers();
455
+            // this is where they differ
456
+            switch ($inputDecoded['ACTION']) {
457 457
             case \web\lib\admin\API::ACTION_ENDUSER_LIST:
458 458
                 $adminApi->returnSuccess($allUsers);
459 459
                 break;
@@ -472,123 +472,123 @@  discard block
 block discarded – undo
472 472
                     $infoSet[$oneTokenObject->userId] = [\web\lib\admin\API::AUXATTRIB_TOKEN => $oneTokenObject->invitationTokenString, "STATUS" => $oneTokenObject->invitationTokenStatus];
473 473
                 }
474 474
                 $adminApi->returnSuccess($infoSet);
475
-        }
476
-        break;
477
-    case \web\lib\admin\API::ACTION_TOKEN_REVOKE:
478
-        $tokenRaw = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_TOKEN);
479
-        if ($tokenRaw === FALSE) {
480
-            exit(1);
481
-        }
482
-        $token = new core\SilverbulletInvitation($tokenRaw);
483
-        if ($token->invitationTokenStatus !== core\SilverbulletInvitation::SB_TOKENSTATUS_VALID && $token->invitationTokenStatus !== core\SilverbulletInvitation::SB_TOKENSTATUS_PARTIALLY_REDEEMED) {
484
-            $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "This is not a currently valid token.");
485
-            exit(1);
486
-        }
487
-        $token->revokeInvitation();
488
-        $adminApi->returnSuccess([]);
489
-        break;
490
-    case \web\lib\admin\API::ACTION_CERT_LIST:
491
-        $prof_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID);
492
-        $user_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_USERID);
493
-        if ($prof_id === FALSE || !is_int($user_id)) {
494
-            exit(1);
495
-        }
496
-        $evaluation = $adminApi->commonSbProfileChecks($fed, $prof_id);
497
-        if ($evaluation === FALSE) {
498
-            exit(1);
499
-        }
500
-        list($idp, $profile) = $evaluation;
501
-        $invitations = $profile->userStatus($user_id);
502
-        // now pull out cert information from the object
503
-        $certs = [];
504
-        foreach ($invitations as $oneInvitation) {
505
-            $certs = array_merge($certs, $oneInvitation->associatedCertificates);
506
-        }
507
-        // extract relevant subset of information from cert objects
508
-        $certDetails = [];
509
-        foreach ($certs as $cert) {
510
-            $certDetails[$cert->ca_type . ":" . $cert->serial] = ["ISSUED" => $cert->issued, "EXPIRY" => $cert->expiry, "STATUS" => $cert->status, "DEVICE" => $cert->device, "CN" => $cert->username, "ANNOTATION" => $cert->annotation];
511
-        }
512
-        $adminApi->returnSuccess($certDetails);
513
-        break;
514
-    case \web\lib\admin\API::ACTION_CERT_REVOKE:
515
-        $prof_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID);
516
-        if ($prof_id === FALSE) {
517
-            exit(1);
518
-        }
519
-        $evaluation = $adminApi->commonSbProfileChecks($fed, $prof_id);
520
-        if ($evaluation === FALSE) {
521
-            exit(1);
522
-        }
523
-        list($idp, $profile) = $evaluation;
524
-        // tear apart the serial
525
-        $serialRaw = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_CERTSERIAL);
526
-        if ($serialRaw === FALSE) {
527
-            exit(1);
528
-        }
529
-        $serial = explode(":", $serialRaw);
530
-        $cert = new \core\SilverbulletCertificate($serial[1], $serial[0]);
531
-        if ($cert->status == \core\SilverbulletCertificate::CERTSTATUS_INVALID) {
532
-            $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Serial not found.");
533
-        }
534
-        if ($cert->profileId != $profile->identifier) {
535
-            $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Serial does not belong to this profile.");
536
-        }
537
-        $cert->revokeCertificate();
538
-        $adminApi->returnSuccess([]);
475
+            }
539 476
         break;
540
-    case \web\lib\admin\API::ACTION_CERT_ANNOTATE:
541
-        $prof_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID);
542
-        if ($prof_id === FALSE) {
543
-            exit(1);
544
-        }
545
-        $evaluation = $adminApi->commonSbProfileChecks($fed, $prof_id);
546
-        if ($evaluation === FALSE) {
547
-            exit(1);
548
-        }
549
-        list($idp, $profile) = $evaluation;
550
-        // tear apart the serial
551
-        $serialRaw = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_CERTSERIAL);
552
-        if ($serialRaw === FALSE) {
553
-            exit(1);
554
-        }
555
-        $serial = explode(":", $serialRaw);
556
-        $cert = new \core\SilverbulletCertificate($serial[1], $serial[0]);
557
-        if ($cert->status == \core\SilverbulletCertificate::CERTSTATUS_INVALID) {
558
-            $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Serial not found.");
559
-        }
560
-        if ($cert->profileId != $profile->identifier) {
561
-            $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Serial does not belong to this profile.");
562
-        }
563
-        $annotationRaw = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_CERTANNOTATION);
564
-        if ($annotationRaw === FALSE) {
565
-            $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Unable to extract annotation.");
477
+        case \web\lib\admin\API::ACTION_TOKEN_REVOKE:
478
+            $tokenRaw = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_TOKEN);
479
+            if ($tokenRaw === FALSE) {
480
+                exit(1);
481
+            }
482
+            $token = new core\SilverbulletInvitation($tokenRaw);
483
+            if ($token->invitationTokenStatus !== core\SilverbulletInvitation::SB_TOKENSTATUS_VALID && $token->invitationTokenStatus !== core\SilverbulletInvitation::SB_TOKENSTATUS_PARTIALLY_REDEEMED) {
484
+                $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "This is not a currently valid token.");
485
+                exit(1);
486
+            }
487
+            $token->revokeInvitation();
488
+            $adminApi->returnSuccess([]);
566 489
             break;
567
-        }
568
-        $annotation = json_decode($annotationRaw, TRUE);
569
-        $cert->annotate($annotation);
570
-        $adminApi->returnSuccess([]);
571
-
572
-        break;
573
-    case web\lib\admin\API::ACTION_STATISTICS_INST:
574
-        $retArray = [];
575
-        $idpIdentifier = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_INST_ID);
576
-        if ($idpIdentifier === FALSE) {
577
-            throw new Exception("A required parameter is missing, and this wasn't caught earlier?!");
578
-        } else {
579
-            try {
580
-                $thisIdP = $validator->existingIdP($idpIdentifier, NULL, $fed);
581
-            } catch (Exception $e) {
582
-                $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "IdP identifier does not exist!");
490
+        case \web\lib\admin\API::ACTION_CERT_LIST:
491
+            $prof_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID);
492
+            $user_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_USERID);
493
+            if ($prof_id === FALSE || !is_int($user_id)) {
583 494
                 exit(1);
584 495
             }
585
-            $retArray[$idpIdentifier] = [];
586
-            foreach ($thisIdP->listProfiles() as $oneProfile) {
587
-                $retArray[$idpIdentifier][$oneProfile->identifier] = $oneProfile->getUserDownloadStats();
496
+            $evaluation = $adminApi->commonSbProfileChecks($fed, $prof_id);
497
+            if ($evaluation === FALSE) {
498
+                exit(1);
588 499
             }
589
-        }
590
-        $adminApi->returnSuccess($retArray);
591
-        break;
592
-    default:
593
-        $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_ACTION, "Not implemented yet.");
500
+            list($idp, $profile) = $evaluation;
501
+            $invitations = $profile->userStatus($user_id);
502
+            // now pull out cert information from the object
503
+            $certs = [];
504
+            foreach ($invitations as $oneInvitation) {
505
+                $certs = array_merge($certs, $oneInvitation->associatedCertificates);
506
+            }
507
+            // extract relevant subset of information from cert objects
508
+            $certDetails = [];
509
+            foreach ($certs as $cert) {
510
+                $certDetails[$cert->ca_type . ":" . $cert->serial] = ["ISSUED" => $cert->issued, "EXPIRY" => $cert->expiry, "STATUS" => $cert->status, "DEVICE" => $cert->device, "CN" => $cert->username, "ANNOTATION" => $cert->annotation];
511
+            }
512
+            $adminApi->returnSuccess($certDetails);
513
+            break;
514
+        case \web\lib\admin\API::ACTION_CERT_REVOKE:
515
+            $prof_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID);
516
+            if ($prof_id === FALSE) {
517
+                exit(1);
518
+            }
519
+            $evaluation = $adminApi->commonSbProfileChecks($fed, $prof_id);
520
+            if ($evaluation === FALSE) {
521
+                exit(1);
522
+            }
523
+            list($idp, $profile) = $evaluation;
524
+            // tear apart the serial
525
+            $serialRaw = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_CERTSERIAL);
526
+            if ($serialRaw === FALSE) {
527
+                exit(1);
528
+            }
529
+            $serial = explode(":", $serialRaw);
530
+            $cert = new \core\SilverbulletCertificate($serial[1], $serial[0]);
531
+            if ($cert->status == \core\SilverbulletCertificate::CERTSTATUS_INVALID) {
532
+                $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Serial not found.");
533
+            }
534
+            if ($cert->profileId != $profile->identifier) {
535
+                $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Serial does not belong to this profile.");
536
+            }
537
+            $cert->revokeCertificate();
538
+            $adminApi->returnSuccess([]);
539
+            break;
540
+        case \web\lib\admin\API::ACTION_CERT_ANNOTATE:
541
+            $prof_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID);
542
+            if ($prof_id === FALSE) {
543
+                exit(1);
544
+            }
545
+            $evaluation = $adminApi->commonSbProfileChecks($fed, $prof_id);
546
+            if ($evaluation === FALSE) {
547
+                exit(1);
548
+            }
549
+            list($idp, $profile) = $evaluation;
550
+            // tear apart the serial
551
+            $serialRaw = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_CERTSERIAL);
552
+            if ($serialRaw === FALSE) {
553
+                exit(1);
554
+            }
555
+            $serial = explode(":", $serialRaw);
556
+            $cert = new \core\SilverbulletCertificate($serial[1], $serial[0]);
557
+            if ($cert->status == \core\SilverbulletCertificate::CERTSTATUS_INVALID) {
558
+                $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Serial not found.");
559
+            }
560
+            if ($cert->profileId != $profile->identifier) {
561
+                $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Serial does not belong to this profile.");
562
+            }
563
+            $annotationRaw = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_CERTANNOTATION);
564
+            if ($annotationRaw === FALSE) {
565
+                $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Unable to extract annotation.");
566
+                break;
567
+            }
568
+            $annotation = json_decode($annotationRaw, TRUE);
569
+            $cert->annotate($annotation);
570
+            $adminApi->returnSuccess([]);
571
+
572
+            break;
573
+        case web\lib\admin\API::ACTION_STATISTICS_INST:
574
+            $retArray = [];
575
+            $idpIdentifier = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_INST_ID);
576
+            if ($idpIdentifier === FALSE) {
577
+                throw new Exception("A required parameter is missing, and this wasn't caught earlier?!");
578
+            } else {
579
+                try {
580
+                    $thisIdP = $validator->existingIdP($idpIdentifier, NULL, $fed);
581
+                } catch (Exception $e) {
582
+                    $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "IdP identifier does not exist!");
583
+                    exit(1);
584
+                }
585
+                $retArray[$idpIdentifier] = [];
586
+                foreach ($thisIdP->listProfiles() as $oneProfile) {
587
+                    $retArray[$idpIdentifier][$oneProfile->identifier] = $oneProfile->getUserDownloadStats();
588
+                }
589
+            }
590
+            $adminApi->returnSuccess($retArray);
591
+            break;
592
+        default:
593
+            $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_ACTION, "Not implemented yet.");
594 594
 }
595 595
\ No newline at end of file
Please login to merge, or discard this patch.
web/admin/edit_profile_result.php 1 patch
Switch Indentation   +268 added lines, -268 removed lines patch added patch discarded remove patch
@@ -40,80 +40,80 @@  discard block
 block discarded – undo
40 40
 }
41 41
 
42 42
 switch ($_POST['submitbutton']) {
43
-    case web\lib\common\FormElements::BUTTON_DELETE:
44
-        if (!isset($_GET['profile_id'])) {
45
-            throw new Exception("Can only delete a profile that exists and is named!");
46
-        }
47
-        $profileToBeDel = $validator->existingProfile($_GET['profile_id'], $my_inst->identifier);
48
-        $profileToBeDel->destroy();
49
-        $loggerInstance->writeAudit($_SESSION['user'], "DEL", "Profile " . $profileToBeDel->identifier);
50
-        header("Location: overview_org.php?inst_id=$my_inst->identifier");
51
-        exit;
52
-    case web\lib\common\FormElements::BUTTON_SAVE:
53
-        if (isset($_GET['profile_id'])) {
54
-            $profile = $validator->existingProfile($_GET['profile_id'], $my_inst->identifier);
55
-            echo $deco->pageheader(sprintf(_("%s: Edit Profile - Result"), \config\Master::APPEARANCE['productname']), "ADMIN-IDP");
56
-        } else {
57
-            $profile = $my_inst->newProfile(core\AbstractProfile::PROFILETYPE_RADIUS);
58
-            $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP " . $my_inst->identifier . " - Profile created");
59
-            echo $deco->pageheader(sprintf(_("%s: Profile wizard (step 3 completed)"), \config\Master::APPEARANCE['productname']), "ADMIN-IDP");
60
-        }
61
-        if (!$profile instanceof \core\ProfileRADIUS) {
62
-            throw new Exception("This page should only be called to submit RADIUS Profile information!");
63
-        }
64
-// extended input checks
65
-        $realm = FALSE;
66
-        if (isset($_POST['realm']) && $_POST['realm'] != "") {
67
-            $realm = $validator->realm(filter_input(INPUT_POST, 'realm', FILTER_SANITIZE_STRING));
68
-        }
43
+        case web\lib\common\FormElements::BUTTON_DELETE:
44
+            if (!isset($_GET['profile_id'])) {
45
+                throw new Exception("Can only delete a profile that exists and is named!");
46
+            }
47
+            $profileToBeDel = $validator->existingProfile($_GET['profile_id'], $my_inst->identifier);
48
+            $profileToBeDel->destroy();
49
+            $loggerInstance->writeAudit($_SESSION['user'], "DEL", "Profile " . $profileToBeDel->identifier);
50
+            header("Location: overview_org.php?inst_id=$my_inst->identifier");
51
+            exit;
52
+        case web\lib\common\FormElements::BUTTON_SAVE:
53
+            if (isset($_GET['profile_id'])) {
54
+                $profile = $validator->existingProfile($_GET['profile_id'], $my_inst->identifier);
55
+                echo $deco->pageheader(sprintf(_("%s: Edit Profile - Result"), \config\Master::APPEARANCE['productname']), "ADMIN-IDP");
56
+            } else {
57
+                $profile = $my_inst->newProfile(core\AbstractProfile::PROFILETYPE_RADIUS);
58
+                $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP " . $my_inst->identifier . " - Profile created");
59
+                echo $deco->pageheader(sprintf(_("%s: Profile wizard (step 3 completed)"), \config\Master::APPEARANCE['productname']), "ADMIN-IDP");
60
+            }
61
+            if (!$profile instanceof \core\ProfileRADIUS) {
62
+                throw new Exception("This page should only be called to submit RADIUS Profile information!");
63
+            }
64
+    // extended input checks
65
+            $realm = FALSE;
66
+            if (isset($_POST['realm']) && $_POST['realm'] != "") {
67
+                $realm = $validator->realm(filter_input(INPUT_POST, 'realm', FILTER_SANITIZE_STRING));
68
+            }
69 69
 
70
-        $anon = FALSE;
71
-        if (isset($_POST['anon_support'])) {
72
-            $anon = $validator->boolean($_POST['anon_support']);
73
-        }
70
+            $anon = FALSE;
71
+            if (isset($_POST['anon_support'])) {
72
+                $anon = $validator->boolean($_POST['anon_support']);
73
+            }
74 74
 
75
-        $anonLocal = "anonymous";
76
-        if (isset($_POST['anon_local'])) {
77
-            $anonLocal = $validator->string(filter_input(INPUT_POST, 'anon_local', FILTER_SANITIZE_STRING));
78
-        } else { // get the old anon outer id from DB. People don't appreciate "forgetting" it when unchecking anon id
79
-            $local = $profile->getAttributes("internal:anon_local_value");
80
-            if (isset($local[0])) {
81
-                $anonLocal = $local[0]['value'];
75
+            $anonLocal = "anonymous";
76
+            if (isset($_POST['anon_local'])) {
77
+                $anonLocal = $validator->string(filter_input(INPUT_POST, 'anon_local', FILTER_SANITIZE_STRING));
78
+            } else { // get the old anon outer id from DB. People don't appreciate "forgetting" it when unchecking anon id
79
+                $local = $profile->getAttributes("internal:anon_local_value");
80
+                if (isset($local[0])) {
81
+                    $anonLocal = $local[0]['value'];
82
+                }
82 83
             }
83
-        }
84 84
 
85
-        $checkuser = FALSE;
86
-        if (isset($_POST['checkuser_support'])) {
87
-            $checkuser = $validator->boolean($_POST['checkuser_support']);
88
-        }
85
+            $checkuser = FALSE;
86
+            if (isset($_POST['checkuser_support'])) {
87
+                $checkuser = $validator->boolean($_POST['checkuser_support']);
88
+            }
89 89
 
90
-        $checkuser_name1 = "anonymous";
91
-        if (isset($_POST['checkuser_local'])) {
92
-            $checkuser_name1 = $validator->string($_POST['checkuser_local']);
93
-        } else { // get the old value from profile settings. People don't appreciate "forgetting" it when unchecking
94
-            $checkuser_name1 = $profile->getAttributes("internal:checkuser_value")[0]['value'];
95
-        }
96
-// it's a RADIUS username; and it's displayed later on. Be sure it contains no
97
-// "interesting" HTML characters before further processing
98
-        $checkuser_name = htmlentities($checkuser_name1);
90
+            $checkuser_name1 = "anonymous";
91
+            if (isset($_POST['checkuser_local'])) {
92
+                $checkuser_name1 = $validator->string($_POST['checkuser_local']);
93
+            } else { // get the old value from profile settings. People don't appreciate "forgetting" it when unchecking
94
+                $checkuser_name1 = $profile->getAttributes("internal:checkuser_value")[0]['value'];
95
+            }
96
+    // it's a RADIUS username; and it's displayed later on. Be sure it contains no
97
+    // "interesting" HTML characters before further processing
98
+            $checkuser_name = htmlentities($checkuser_name1);
99 99
 
100
-        $verify = FALSE;
101
-        $hint = FALSE;
102
-        $redirect = FALSE;
103
-        if (isset($_POST['verify_support'])) {
104
-            $verify = $validator->boolean($_POST['verify_support']);
105
-        }
106
-        if (isset($_POST['hint_support'])) {
107
-            $hint = $validator->boolean($_POST['hint_support']);
108
-        }
109
-        if (isset($_POST['redirect'])) {
110
-            $redirect = $validator->boolean($_POST['redirect']);
111
-        }
112
-        ?>
113
-        <h1><?php
114
-            $tablecaption = _("Submitted attributes for this profile");
115
-            echo $tablecaption;
116
-            ?></h1>
100
+            $verify = FALSE;
101
+            $hint = FALSE;
102
+            $redirect = FALSE;
103
+            if (isset($_POST['verify_support'])) {
104
+                $verify = $validator->boolean($_POST['verify_support']);
105
+            }
106
+            if (isset($_POST['hint_support'])) {
107
+                $hint = $validator->boolean($_POST['hint_support']);
108
+            }
109
+            if (isset($_POST['redirect'])) {
110
+                $redirect = $validator->boolean($_POST['redirect']);
111
+            }
112
+            ?>
113
+            <h1><?php
114
+                $tablecaption = _("Submitted attributes for this profile");
115
+                echo $tablecaption;
116
+                ?></h1>
117 117
         <table>
118 118
             <caption><?php echo $tablecaption; ?></caption>
119 119
             <tr>
@@ -121,245 +121,245 @@  discard block
 block discarded – undo
121 121
                 <th class="wai-invisible" scope="col"><?php echo _("Details"); ?></th>
122 122
             </tr>
123 123
             <?php
124
-            $uiElements = new web\lib\admin\UIElements();
125
-            // set realm info, if submitted
126
-            if ($realm !== FALSE) {
127
-                $profile->setRealm($anonLocal . "@" . $realm);
128
-                echo $uiElements->boxOkay(sprintf(_("Realm: <strong>%s</strong>"), $realm));
129
-            } else {
130
-                $profile->setRealm("");
131
-            }
132
-            // set anon ID, if submitted
133
-            if ($anon !== FALSE) {
134
-                if ($realm === FALSE) {
135
-                    echo $uiElements->boxError(_("Anonymous Outer Identities cannot be turned on: realm is missing!"));
124
+                $uiElements = new web\lib\admin\UIElements();
125
+                // set realm info, if submitted
126
+                if ($realm !== FALSE) {
127
+                    $profile->setRealm($anonLocal . "@" . $realm);
128
+                    echo $uiElements->boxOkay(sprintf(_("Realm: <strong>%s</strong>"), $realm));
136 129
                 } else {
137
-                    $profile->setAnonymousIDSupport(true);
138
-                    echo $uiElements->boxOkay(sprintf(_("Anonymous Identity support is <strong>%s</strong>, the anonymous outer identity is <strong>%s</strong>"), _("ON"), $profile->realm));
130
+                    $profile->setRealm("");
139 131
                 }
140
-            } else {
141
-                $profile->setAnonymousIDSupport(false);
142
-                echo $uiElements->boxOkay(sprintf(_("Anonymous Identity support is <strong>%s</strong>"), _("OFF")));
143
-                if ($verify === FALSE) { // no anon outer ID, and no realm suffix verification? Bad idea!
144
-                    echo $uiElements->boxWarning(_("Without Anonymous Identity, the actual username will be used as outer identity and be the basis for request routing. For that to work, the username must have a correct realm suffix. Yet, realm suffix verification has been turned OFF. Supplicants will not verify that usernames contain a realm, and errors such as username 'johndoe' which will not work in roaming scenarios will not be prohibited. Consider checking the box 'Enforce realm suffix in username'!"));
145
-                }
146
-            }
147
-
148
-            if ($checkuser !== FALSE) {
149
-                if ($realm === FALSE) {
150
-                    echo $uiElements->boxError(_("Realm check username cannot be configured: realm is missing!"));
132
+                // set anon ID, if submitted
133
+                if ($anon !== FALSE) {
134
+                    if ($realm === FALSE) {
135
+                        echo $uiElements->boxError(_("Anonymous Outer Identities cannot be turned on: realm is missing!"));
136
+                    } else {
137
+                        $profile->setAnonymousIDSupport(true);
138
+                        echo $uiElements->boxOkay(sprintf(_("Anonymous Identity support is <strong>%s</strong>, the anonymous outer identity is <strong>%s</strong>"), _("ON"), $profile->realm));
139
+                    }
151 140
                 } else {
152
-                    $profile->setRealmcheckUser(true, $checkuser_name);
153
-                    echo $uiElements->boxOkay(sprintf(_("Special username for realm check is <strong>%s</strong>, the value is <strong>%s</strong>"), _("ON"), $checkuser_name . "@" . $realm));
141
+                    $profile->setAnonymousIDSupport(false);
142
+                    echo $uiElements->boxOkay(sprintf(_("Anonymous Identity support is <strong>%s</strong>"), _("OFF")));
143
+                    if ($verify === FALSE) { // no anon outer ID, and no realm suffix verification? Bad idea!
144
+                        echo $uiElements->boxWarning(_("Without Anonymous Identity, the actual username will be used as outer identity and be the basis for request routing. For that to work, the username must have a correct realm suffix. Yet, realm suffix verification has been turned OFF. Supplicants will not verify that usernames contain a realm, and errors such as username 'johndoe' which will not work in roaming scenarios will not be prohibited. Consider checking the box 'Enforce realm suffix in username'!"));
145
+                    }
154 146
                 }
155
-            } else {
156
-                $profile->setRealmCheckUser(false);
157
-                echo $uiElements->boxOkay(_("No special username for realm checks is configured."));
158
-            }
159 147
 
160
-            if ($verify !== FALSE) {
161
-                $profile->setInputVerificationPreference($verify, $hint);
162
-                $extratext = "";
163
-                if (!empty($realm)) {
164
-                    if ($hint !== FALSE) {
165
-                        $extratext = " " . sprintf(_("The realm portion MUST be exactly '...@%s'."), $realm);
148
+                if ($checkuser !== FALSE) {
149
+                    if ($realm === FALSE) {
150
+                        echo $uiElements->boxError(_("Realm check username cannot be configured: realm is missing!"));
166 151
                     } else {
167
-                        $extratext = " " . sprintf(_("The realm portion MUST end with '%s' but sub-realms of it are allowed (i.e. 'user@%s' and 'user@<...>.%s' are both acceptable)."), $realm, $realm, $realm);
152
+                        $profile->setRealmcheckUser(true, $checkuser_name);
153
+                        echo $uiElements->boxOkay(sprintf(_("Special username for realm check is <strong>%s</strong>, the value is <strong>%s</strong>"), _("ON"), $checkuser_name . "@" . $realm));
168 154
                     }
155
+                } else {
156
+                    $profile->setRealmCheckUser(false);
157
+                    echo $uiElements->boxOkay(_("No special username for realm checks is configured."));
169 158
                 }
170
-                echo $uiElements->boxOkay(_("Where possible, supplicants will verify that username inputs contain a syntactically correct realm.") . $extratext);
171
-            } else {
172
-                $profile->setInputVerificationPreference(false, false);
173
-            }
174
-
175
-            echo $optionParser->processSubmittedFields($profile, $_POST, $_FILES);
176 159
 
177
-            if ($redirect !== FALSE) {
178
-                if (!isset($_POST['redirect_target']) || $_POST['redirect_target'] == "") {
179
-                    echo $uiElements->boxError(_("Redirection can't be activated - you did not specify a target location!"));
180
-                } elseif (!preg_match("/^(http|https):\/\//", $_POST['redirect_target'])) {
181
-                    echo $uiElements->boxError(_("Redirection can't be activated - the target needs to be a complete URL starting with http:// or https:// !"));
182
-                } else {
183
-                    $profile->addAttribute("device-specific:redirect", 'C', $_POST['redirect_target']);
184
-                    // check if there is a device-level redirect which effectively disables profile-level redirect, and warn if so
185
-                    $redirects = $profile->getAttributes("device-specific:redirect");
186
-                    $deviceSpecificFound = FALSE;
187
-                    foreach ($redirects as $oneRedirect) {
188
-                        if ($oneRedirect["level"] == \core\Options::LEVEL_METHOD) {
189
-                            $deviceSpecificFound = TRUE;
160
+                if ($verify !== FALSE) {
161
+                    $profile->setInputVerificationPreference($verify, $hint);
162
+                    $extratext = "";
163
+                    if (!empty($realm)) {
164
+                        if ($hint !== FALSE) {
165
+                            $extratext = " " . sprintf(_("The realm portion MUST be exactly '...@%s'."), $realm);
166
+                        } else {
167
+                            $extratext = " " . sprintf(_("The realm portion MUST end with '%s' but sub-realms of it are allowed (i.e. 'user@%s' and 'user@<...>.%s' are both acceptable)."), $realm, $realm, $realm);
190 168
                         }
191 169
                     }
192
-                    if ($deviceSpecificFound) {
193
-                        echo $uiElements->boxWarning(sprintf(_("Redirection set to <strong>%s</strong>, but will be ignored due to existing device-level redirect."), htmlspecialchars($_POST['redirect_target'])));
194
-                    } else {
195
-                        echo $uiElements->boxOkay(sprintf(_("Redirection set to <strong>%s</strong>"), htmlspecialchars($_POST['redirect_target'])));
196
-                    }
170
+                    echo $uiElements->boxOkay(_("Where possible, supplicants will verify that username inputs contain a syntactically correct realm.") . $extratext);
171
+                } else {
172
+                    $profile->setInputVerificationPreference(false, false);
197 173
                 }
198
-            } else {
199
-                echo $uiElements->boxOkay(_("Redirection is <strong>OFF</strong>"));
200
-            }
201 174
 
202
-            $loggerInstance->writeAudit($_SESSION['user'], "MOD", "Profile " . $profile->identifier . " - attributes changed");
203
-            // reload the profile to ingest new CA and server names if any; before checking EAP completeness
204
-            $reloadedProfileNr1 = \core\ProfileFactory::instantiate($profile->identifier);
205
-            foreach (\core\common\EAP::listKnownEAPTypes() as $a) {
206
-                if ($a->getIntegerRep() == \core\common\EAP::INTEGER_SILVERBULLET) { // do not allow adding silverbullet via the backdoor
207
-                    continue;
208
-                }
209
-                if (isset($_POST[$a->getPrintableRep()]) && isset($_POST[$a->getPrintableRep() . "-priority"]) && is_numeric($_POST[$a->getPrintableRep() . "-priority"])) {
210
-                    $priority = (int) $_POST[$a->getPrintableRep() . "-priority"];
211
-                    // add EAP type to profile as requested, but ...
212
-                    $reloadedProfileNr1->addSupportedEapMethod($a, $priority);
213
-                    $loggerInstance->writeAudit($_SESSION['user'], "MOD", "Profile " . $reloadedProfileNr1->identifier . " - supported EAP types changed");
214
-                    // see if we can enable the EAP type, or if info is missing
215
-                    $eapcompleteness = $reloadedProfileNr1->isEapTypeDefinitionComplete($a);
216
-                    if ($eapcompleteness === true) {
217
-                        echo $uiElements->boxOkay(_("Supported EAP Type: ") . "<strong>" . $a->getPrintableRep() . "</strong>");
175
+                echo $optionParser->processSubmittedFields($profile, $_POST, $_FILES);
176
+
177
+                if ($redirect !== FALSE) {
178
+                    if (!isset($_POST['redirect_target']) || $_POST['redirect_target'] == "") {
179
+                        echo $uiElements->boxError(_("Redirection can't be activated - you did not specify a target location!"));
180
+                    } elseif (!preg_match("/^(http|https):\/\//", $_POST['redirect_target'])) {
181
+                        echo $uiElements->boxError(_("Redirection can't be activated - the target needs to be a complete URL starting with http:// or https:// !"));
218 182
                     } else {
219
-                        $warntext = "";
220
-                        if (is_array($eapcompleteness)) {
221
-                            foreach ($eapcompleteness as $item) {
222
-                                $warntext .= "<strong>" . $uiElements->displayName($item) . "</strong> ";
183
+                        $profile->addAttribute("device-specific:redirect", 'C', $_POST['redirect_target']);
184
+                        // check if there is a device-level redirect which effectively disables profile-level redirect, and warn if so
185
+                        $redirects = $profile->getAttributes("device-specific:redirect");
186
+                        $deviceSpecificFound = FALSE;
187
+                        foreach ($redirects as $oneRedirect) {
188
+                            if ($oneRedirect["level"] == \core\Options::LEVEL_METHOD) {
189
+                                $deviceSpecificFound = TRUE;
223 190
                             }
224 191
                         }
225
-                        echo $uiElements->boxWarning(sprintf(_("Supported EAP Type: <strong>%s</strong> is missing required information %s !"), $a->getPrintableRep(), $warntext) . "<br/>" . _("The EAP type was added to the profile, but you need to complete the missing information before we can produce installers for you."));
192
+                        if ($deviceSpecificFound) {
193
+                            echo $uiElements->boxWarning(sprintf(_("Redirection set to <strong>%s</strong>, but will be ignored due to existing device-level redirect."), htmlspecialchars($_POST['redirect_target'])));
194
+                        } else {
195
+                            echo $uiElements->boxOkay(sprintf(_("Redirection set to <strong>%s</strong>"), htmlspecialchars($_POST['redirect_target'])));
196
+                        }
226 197
                     }
198
+                } else {
199
+                    echo $uiElements->boxOkay(_("Redirection is <strong>OFF</strong>"));
227 200
                 }
228
-            }
229
-            // re-instantiate $profile again, we need to do final checks on the
230
-            // full set of new information
231
-            $reloadedProfileNr2 = \core\ProfileFactory::instantiate($profile->identifier);
232
-            $significantChanges = \core\AbstractProfile::significantChanges($profile, $reloadedProfileNr2);
233
-            if (count($significantChanges) > 0) {
234
-                $myInstOriginal = new \core\IdP($profile->institution);
235
-                // send a notification/alert mail to someone we know is in charge
236
-                $text = _("To whom it may concern,") . "\n\n";
237
-                /// were made to the *Identity Provider* *LU* / integer number of IdP / (previously known as) Name
238
-                $text .= sprintf(_("significant changes were made to a RADIUS deployment profile of the %s %s / %s / '%s'."), $ui->nomenclatureIdP, strtoupper($myInstOriginal->federation), $myInstOriginal->identifier, $myInstOriginal->name) . "\n\n";
239
-                if (isset($significantChanges[\core\AbstractProfile::CA_CLASH_ADDED])) {
240
-                    $text .= _("WARNING! A new trusted root CA was added, and it has the exact same name as a previously existing root CA. This may (but does not necessarily) mean that this is an attempt to insert an unauthorised trust root by disguising as the genuine one. The details are below:") . "\n\n";
241
-                    $text .= $significantChanges[\core\AbstractProfile::CA_CLASH_ADDED] . "\n\n";
242
-                }
243
-                if (isset($significantChanges[\core\AbstractProfile::CA_ADDED])) {
244
-                    $text .= _("A new trusted root CA was added. The details are below:") . "\n\n";
245
-                    $text .= $significantChanges[\core\AbstractProfile::CA_ADDED] . "\n\n";
246
-                }
247
-                if (isset($significantChanges[\core\AbstractProfile::SERVERNAME_ADDED])) {
248
-                    $text .= _("A new acceptable server name for the authentication server was added. The details are below:") . "\n\n";
249
-                    $text .= $significantChanges[\core\AbstractProfile::SERVERNAME_ADDED] . "\n\n";
201
+
202
+                $loggerInstance->writeAudit($_SESSION['user'], "MOD", "Profile " . $profile->identifier . " - attributes changed");
203
+                // reload the profile to ingest new CA and server names if any; before checking EAP completeness
204
+                $reloadedProfileNr1 = \core\ProfileFactory::instantiate($profile->identifier);
205
+                foreach (\core\common\EAP::listKnownEAPTypes() as $a) {
206
+                    if ($a->getIntegerRep() == \core\common\EAP::INTEGER_SILVERBULLET) { // do not allow adding silverbullet via the backdoor
207
+                        continue;
208
+                    }
209
+                    if (isset($_POST[$a->getPrintableRep()]) && isset($_POST[$a->getPrintableRep() . "-priority"]) && is_numeric($_POST[$a->getPrintableRep() . "-priority"])) {
210
+                        $priority = (int) $_POST[$a->getPrintableRep() . "-priority"];
211
+                        // add EAP type to profile as requested, but ...
212
+                        $reloadedProfileNr1->addSupportedEapMethod($a, $priority);
213
+                        $loggerInstance->writeAudit($_SESSION['user'], "MOD", "Profile " . $reloadedProfileNr1->identifier . " - supported EAP types changed");
214
+                        // see if we can enable the EAP type, or if info is missing
215
+                        $eapcompleteness = $reloadedProfileNr1->isEapTypeDefinitionComplete($a);
216
+                        if ($eapcompleteness === true) {
217
+                            echo $uiElements->boxOkay(_("Supported EAP Type: ") . "<strong>" . $a->getPrintableRep() . "</strong>");
218
+                        } else {
219
+                            $warntext = "";
220
+                            if (is_array($eapcompleteness)) {
221
+                                foreach ($eapcompleteness as $item) {
222
+                                    $warntext .= "<strong>" . $uiElements->displayName($item) . "</strong> ";
223
+                                }
224
+                            }
225
+                            echo $uiElements->boxWarning(sprintf(_("Supported EAP Type: <strong>%s</strong> is missing required information %s !"), $a->getPrintableRep(), $warntext) . "<br/>" . _("The EAP type was added to the profile, but you need to complete the missing information before we can produce installers for you."));
226
+                        }
227
+                    }
250 228
                 }
251
-                $text .= _("This mail is merely a cross-check because these changes can be security-relevant. If the change was expected, you do not need to take any action.") . "\n\n";
252
-                $text .= _("Greetings, ") . "\n\n" . \config\Master::APPEARANCE['productname_long'];
253
-                // (currently, send hard-wired to NRO - future: for linked insts, check eduroam DBv2 and send to registered admins directly)
254
-                $fed = new core\Federation($myInstOriginal->federation);
255
-                $loggerInstance->debug(2, $myInstOriginal->federation, "FED: ", "\n");
256
-                foreach ($fed->listFederationAdmins() as $id) {
257
-                    $user = new core\User($id);
258
-                    $mailaddr = $user->getAttributes("user:email")[0]['value'];
259
-                    $loggerInstance->debug(2, $mailaddr, "FED MAIL: ", "\n");
260
-                    $user->sendMailToUser(sprintf(_("%s: Significant Changes made to %s"), \config\Master::APPEARANCE['productname'], $ui->nomenclatureIdP), $text);
229
+                // re-instantiate $profile again, we need to do final checks on the
230
+                // full set of new information
231
+                $reloadedProfileNr2 = \core\ProfileFactory::instantiate($profile->identifier);
232
+                $significantChanges = \core\AbstractProfile::significantChanges($profile, $reloadedProfileNr2);
233
+                if (count($significantChanges) > 0) {
234
+                    $myInstOriginal = new \core\IdP($profile->institution);
235
+                    // send a notification/alert mail to someone we know is in charge
236
+                    $text = _("To whom it may concern,") . "\n\n";
237
+                    /// were made to the *Identity Provider* *LU* / integer number of IdP / (previously known as) Name
238
+                    $text .= sprintf(_("significant changes were made to a RADIUS deployment profile of the %s %s / %s / '%s'."), $ui->nomenclatureIdP, strtoupper($myInstOriginal->federation), $myInstOriginal->identifier, $myInstOriginal->name) . "\n\n";
239
+                    if (isset($significantChanges[\core\AbstractProfile::CA_CLASH_ADDED])) {
240
+                        $text .= _("WARNING! A new trusted root CA was added, and it has the exact same name as a previously existing root CA. This may (but does not necessarily) mean that this is an attempt to insert an unauthorised trust root by disguising as the genuine one. The details are below:") . "\n\n";
241
+                        $text .= $significantChanges[\core\AbstractProfile::CA_CLASH_ADDED] . "\n\n";
242
+                    }
243
+                    if (isset($significantChanges[\core\AbstractProfile::CA_ADDED])) {
244
+                        $text .= _("A new trusted root CA was added. The details are below:") . "\n\n";
245
+                        $text .= $significantChanges[\core\AbstractProfile::CA_ADDED] . "\n\n";
246
+                    }
247
+                    if (isset($significantChanges[\core\AbstractProfile::SERVERNAME_ADDED])) {
248
+                        $text .= _("A new acceptable server name for the authentication server was added. The details are below:") . "\n\n";
249
+                        $text .= $significantChanges[\core\AbstractProfile::SERVERNAME_ADDED] . "\n\n";
250
+                    }
251
+                    $text .= _("This mail is merely a cross-check because these changes can be security-relevant. If the change was expected, you do not need to take any action.") . "\n\n";
252
+                    $text .= _("Greetings, ") . "\n\n" . \config\Master::APPEARANCE['productname_long'];
253
+                    // (currently, send hard-wired to NRO - future: for linked insts, check eduroam DBv2 and send to registered admins directly)
254
+                    $fed = new core\Federation($myInstOriginal->federation);
255
+                    $loggerInstance->debug(2, $myInstOriginal->federation, "FED: ", "\n");
256
+                    foreach ($fed->listFederationAdmins() as $id) {
257
+                        $user = new core\User($id);
258
+                        $mailaddr = $user->getAttributes("user:email")[0]['value'];
259
+                        $loggerInstance->debug(2, $mailaddr, "FED MAIL: ", "\n");
260
+                        $user->sendMailToUser(sprintf(_("%s: Significant Changes made to %s"), \config\Master::APPEARANCE['productname'], $ui->nomenclatureIdP), $text);
261
+                    }
261 262
                 }
262
-            }
263
-            $reloadedProfileNr2->prepShowtime();
263
+                $reloadedProfileNr2->prepShowtime();
264 264
 
265
-            // do OpenRoaming initial diagnostic checks
266
-            // numbers correspond to RFC7585Tests::OVERALL_LEVEL
267
-            $resultLevel = \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_NO;
268
-            if (sizeof($reloadedProfileNr2->getAttributes("media:openroaming")) > 0) {
269
-                $resultLevel = \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_GOOD; // assume all is well, degrade if we have concrete findings to suggest otherwise
270
-                $tag = "aaa+auth:radius.tls.tcp";
271
-                // do we know the realm at all? Notice if not.
272
-                if (!isset($reloadedProfileNr2->getAttributes("internal:realm")[0]['value'])) {
273
-                    echo $uiElements->boxRemark(_("The profile information does not include the realm, so no DNS checks for OpenRoaming can be executed."));
274
-                    $resultLevel = min([$resultLevel, \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_NOTE]);
265
+                // do OpenRoaming initial diagnostic checks
266
+                // numbers correspond to RFC7585Tests::OVERALL_LEVEL
267
+                $resultLevel = \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_NO;
268
+                if (sizeof($reloadedProfileNr2->getAttributes("media:openroaming")) > 0) {
269
+                    $resultLevel = \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_GOOD; // assume all is well, degrade if we have concrete findings to suggest otherwise
270
+                    $tag = "aaa+auth:radius.tls.tcp";
271
+                    // do we know the realm at all? Notice if not.
272
+                    if (!isset($reloadedProfileNr2->getAttributes("internal:realm")[0]['value'])) {
273
+                        echo $uiElements->boxRemark(_("The profile information does not include the realm, so no DNS checks for OpenRoaming can be executed."));
274
+                        $resultLevel = min([$resultLevel, \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_NOTE]);
275 275
                     
276
-                } else {
277
-                    $dnsChecks = new \core\diag\RFC7585Tests($reloadedProfileNr2->getAttributes("internal:realm")[0]['value'], $tag);
278
-                    $relevantNaptrRecords = $dnsChecks->relevantNAPTR();
279
-                    if ($relevantNaptrRecords <= 0) {
280
-                        echo $uiElements->boxError(_("There is no relevant DNS NAPTR record ($tag) for this realm. OpenRoaming will not work."));
281
-                        $resultLevel = min([$resultLevel, \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_ERROR]);
282 276
                     } else {
283
-                        $recordCompliance = $dnsChecks->relevantNAPTRcompliance();
284
-                        if ($recordCompliance != core\diag\AbstractTest::RETVAL_OK) {
285
-                            echo $uiElements->boxWarning(_("The DNS NAPTR record ($tag) for this realm is not syntax conform. OpenRoaming will likely not work."));
286
-                            $resultLevel = min([$resultLevel, \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_WARN]);
287
-                        }
288
-                        $fed = new \core\Federation($my_inst->federation);
289
-                        // check if target is the expected one, if set by NRO
290
-                        $hasCustomTarget = $fed->getAttributes("fed:openroaming_customtarget");
291
-                        if (sizeof($hasCustomTarget) > 0) {
292
-                            foreach ($dnsChecks->NAPTR_records as $orpointer) {
293
-                                if ($orpointer["replacement"] != $hasCustomTarget[0]['value']) {
294
-                                    echo $uiElements->boxRemark(_("The SRV target of an OpenRoaming NAPTR record is unexpected."));
295
-                                    $resultLevel = min([$resultLevel, \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_NOTE]);
277
+                        $dnsChecks = new \core\diag\RFC7585Tests($reloadedProfileNr2->getAttributes("internal:realm")[0]['value'], $tag);
278
+                        $relevantNaptrRecords = $dnsChecks->relevantNAPTR();
279
+                        if ($relevantNaptrRecords <= 0) {
280
+                            echo $uiElements->boxError(_("There is no relevant DNS NAPTR record ($tag) for this realm. OpenRoaming will not work."));
281
+                            $resultLevel = min([$resultLevel, \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_ERROR]);
282
+                        } else {
283
+                            $recordCompliance = $dnsChecks->relevantNAPTRcompliance();
284
+                            if ($recordCompliance != core\diag\AbstractTest::RETVAL_OK) {
285
+                                echo $uiElements->boxWarning(_("The DNS NAPTR record ($tag) for this realm is not syntax conform. OpenRoaming will likely not work."));
286
+                                $resultLevel = min([$resultLevel, \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_WARN]);
287
+                            }
288
+                            $fed = new \core\Federation($my_inst->federation);
289
+                            // check if target is the expected one, if set by NRO
290
+                            $hasCustomTarget = $fed->getAttributes("fed:openroaming_customtarget");
291
+                            if (sizeof($hasCustomTarget) > 0) {
292
+                                foreach ($dnsChecks->NAPTR_records as $orpointer) {
293
+                                    if ($orpointer["replacement"] != $hasCustomTarget[0]['value']) {
294
+                                        echo $uiElements->boxRemark(_("The SRV target of an OpenRoaming NAPTR record is unexpected."));
295
+                                        $resultLevel = min([$resultLevel, \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_NOTE]);
296
+                                    }
296 297
                                 }
297 298
                             }
298
-                        }
299
-                        $srvResolution = $dnsChecks->relevantNAPTRsrvResolution();
300
-                        $hostnameResolution = $dnsChecks->relevantNAPTRhostnameResolution();
299
+                            $srvResolution = $dnsChecks->relevantNAPTRsrvResolution();
300
+                            $hostnameResolution = $dnsChecks->relevantNAPTRhostnameResolution();
301 301
 
302
-                        if ($srvResolution <= 0) {
303
-                            echo $uiElements->boxError(_("The DNS SRV target for NAPTR $tag does not resolve. OpenRoaming will not work."));
304
-                            $resultLevel = min([$resultLevel, \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_ERROR]);
305
-                        } elseif ($hostnameResolution <= 0) {
306
-                            echo $uiElements->boxError(_("The DNS hostnames in the SRV records do not resolve to actual host IPs. OpenRoaming will not work."));
307
-                            $resultLevel = min([$resultLevel, \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_ERROR]);
308
-                        }
309
-                        // connect to all IPs we found and see if they are really an OpenRoaming server
310
-                        $allHostsOkay = TRUE;
311
-                        $oneHostOkay = FALSE;
312
-                        $testCandidates = [];
313
-                        foreach ($dnsChecks->NAPTR_hostname_records as $oneServer) {
314
-                            $testCandidates[$oneServer['hostname']][] = ($oneServer['family'] == "IPv4" ? $oneServer['IP'] : "[" . $oneServer['IP'] . "]") . ":" . $oneServer['port'];
315
-                        }
316
-                        foreach ($testCandidates as $oneHost => $listOfIPs) {
317
-                            $connectionTests = new core\diag\RFC6614Tests(array_values($listOfIPs), $oneHost, "openroaming");
318
-                            // for now (no OpenRoaming client certs available) only run server-side tests
319
-                            foreach ($listOfIPs as $oneIP) {
320
-                                $connectionResult = $connectionTests->cApathCheck($oneIP);
321
-                                if ($connectionResult != core\diag\AbstractTest::RETVAL_OK || ( isset($connectionTests->TLS_CA_checks_result['cert_oddity']) && count($connectionTests->TLS_CA_checks_result['cert_oddity']) > 0)) {
322
-                                    $allHostsOkay = FALSE;
323
-                                } else {
324
-                                    $oneHostOkay = TRUE;
302
+                            if ($srvResolution <= 0) {
303
+                                echo $uiElements->boxError(_("The DNS SRV target for NAPTR $tag does not resolve. OpenRoaming will not work."));
304
+                                $resultLevel = min([$resultLevel, \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_ERROR]);
305
+                            } elseif ($hostnameResolution <= 0) {
306
+                                echo $uiElements->boxError(_("The DNS hostnames in the SRV records do not resolve to actual host IPs. OpenRoaming will not work."));
307
+                                $resultLevel = min([$resultLevel, \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_ERROR]);
308
+                            }
309
+                            // connect to all IPs we found and see if they are really an OpenRoaming server
310
+                            $allHostsOkay = TRUE;
311
+                            $oneHostOkay = FALSE;
312
+                            $testCandidates = [];
313
+                            foreach ($dnsChecks->NAPTR_hostname_records as $oneServer) {
314
+                                $testCandidates[$oneServer['hostname']][] = ($oneServer['family'] == "IPv4" ? $oneServer['IP'] : "[" . $oneServer['IP'] . "]") . ":" . $oneServer['port'];
315
+                            }
316
+                            foreach ($testCandidates as $oneHost => $listOfIPs) {
317
+                                $connectionTests = new core\diag\RFC6614Tests(array_values($listOfIPs), $oneHost, "openroaming");
318
+                                // for now (no OpenRoaming client certs available) only run server-side tests
319
+                                foreach ($listOfIPs as $oneIP) {
320
+                                    $connectionResult = $connectionTests->cApathCheck($oneIP);
321
+                                    if ($connectionResult != core\diag\AbstractTest::RETVAL_OK || ( isset($connectionTests->TLS_CA_checks_result['cert_oddity']) && count($connectionTests->TLS_CA_checks_result['cert_oddity']) > 0)) {
322
+                                        $allHostsOkay = FALSE;
323
+                                    } else {
324
+                                        $oneHostOkay = TRUE;
325
+                                    }
325 326
                                 }
326 327
                             }
327
-                        }
328
-                        if (!$allHostsOkay) {
329
-                            if (!$oneHostOkay) {
330
-                                echo $uiElements->boxError(_("When connecting to the discovered OpenRoaming endpoints, they all had errors. OpenRoaming will likely not work."));
331
-                                $resultLevel = min([$resultLevel, \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_ERROR]);
332
-                            } else {
333
-                                echo $uiElements->boxWarning(_("When connecting to the discovered OpenRoaming endpoints, only a subset of endpoints had no errors."));
334
-                                $resultLevel = min([$resultLevel, \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_WARN]);
328
+                            if (!$allHostsOkay) {
329
+                                if (!$oneHostOkay) {
330
+                                    echo $uiElements->boxError(_("When connecting to the discovered OpenRoaming endpoints, they all had errors. OpenRoaming will likely not work."));
331
+                                    $resultLevel = min([$resultLevel, \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_ERROR]);
332
+                                } else {
333
+                                    echo $uiElements->boxWarning(_("When connecting to the discovered OpenRoaming endpoints, only a subset of endpoints had no errors."));
334
+                                    $resultLevel = min([$resultLevel, \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_WARN]);
335
+                                }
335 336
                             }
336 337
                         }
337 338
                     }
338
-                }
339 339
 
340
-                if (!$dnsChecks->allResponsesSecure) {
341
-                    echo $uiElements->boxWarning(_("At least one DNS response was NOT secured using DNSSEC. OpenRoaming ANPs may refuse to connect to the endpoint."));
342
-                    $resultLevel = min([$resultLevel, \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_WARN]);
340
+                    if (!$dnsChecks->allResponsesSecure) {
341
+                        echo $uiElements->boxWarning(_("At least one DNS response was NOT secured using DNSSEC. OpenRoaming ANPs may refuse to connect to the endpoint."));
342
+                        $resultLevel = min([$resultLevel, \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_WARN]);
343
+                    }
344
+                    if ($resultLevel == \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_GOOD) {
345
+                        echo $uiElements->boxOkay(_("Initial diagnostics regarding the DNS part of OpenRoaming (including DNSSEC) were successful."));
346
+                    }                
343 347
                 }
344
-                if ($resultLevel == \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_GOOD) {
345
-                    echo $uiElements->boxOkay(_("Initial diagnostics regarding the DNS part of OpenRoaming (including DNSSEC) were successful."));
346
-                }                
347
-            }
348
-            $reloadedProfileNr2->setOpenRoamingReadinessInfo($resultLevel);
349
-            ?>
348
+                $reloadedProfileNr2->setOpenRoamingReadinessInfo($resultLevel);
349
+                ?>
350 350
         </table>
351 351
         <br/>
352 352
         <form method='post' action='overview_org.php?inst_id=<?php echo $my_inst->identifier; ?>' accept-charset='UTF-8'>
353 353
             <button type='submit'><?php echo _("Continue to dashboard"); ?></button>
354 354
         </form>
355 355
         <?php
356
-        if (count($reloadedProfileNr2->getEapMethodsinOrderOfPreference(1)) > 0) {
357
-            echo "<form method='post' action='overview_installers.php?inst_id=$my_inst->identifier&profile_id=$reloadedProfileNr2->identifier' accept-charset='UTF-8'>
356
+            if (count($reloadedProfileNr2->getEapMethodsinOrderOfPreference(1)) > 0) {
357
+                echo "<form method='post' action='overview_installers.php?inst_id=$my_inst->identifier&profile_id=$reloadedProfileNr2->identifier' accept-charset='UTF-8'>
358 358
         <button type='submit'>" . _("Continue to Installer Fine-Tuning and Download") . "</button>
359 359
     </form>";
360
-        }
361
-        echo $deco->footer();
362
-        break;
363
-    default:
364
-        throw new Exception("Unknown submit value received.");
360
+            }
361
+            echo $deco->footer();
362
+            break;
363
+        default:
364
+            throw new Exception("Unknown submit value received.");
365 365
 }
Please login to merge, or discard this patch.