@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | * <base_url>/copyright.php after deploying the software |
21 | 21 | */ |
22 | 22 | |
23 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
23 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
24 | 24 | |
25 | 25 | // no SAML auth on this page. The API key authenticates the entity |
26 | 26 | |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | $inputRaw = file_get_contents('php://input'); |
39 | 39 | $inputDecoded = json_decode($inputRaw, TRUE); |
40 | 40 | if (!is_array($inputDecoded)) { |
41 | - $adminApi->returnError(web\lib\admin\API::ERROR_MALFORMED_REQUEST, "Unable to decode JSON POST data." . json_last_error_msg() . $inputRaw); |
|
41 | + $adminApi->returnError(web\lib\admin\API::ERROR_MALFORMED_REQUEST, "Unable to decode JSON POST data.".json_last_error_msg().$inputRaw); |
|
42 | 42 | exit(1); |
43 | 43 | } |
44 | 44 | |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | throw new Exception("A required parameter is missing, and this wasn't caught earlier?!"); |
133 | 133 | } |
134 | 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]; |
|
135 | + $URL = "https://".$_SERVER['SERVER_NAME'].dirname($_SERVER['SCRIPT_NAME'])."/action_enrollment.php?token=".array_keys($newtokens)[0]; |
|
136 | 136 | $success = ["TOKEN URL" => $URL, "TOKEN" => array_keys($newtokens)[0]]; |
137 | 137 | // done with the essentials - display in response. But if we also have an email address, send it there |
138 | 138 | $email = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_TARGETMAIL); |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | if ($found) { |
170 | 170 | $adminApi->returnSuccess([]); |
171 | 171 | } |
172 | - $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "The admin with ID $toBeDeleted is not associated to IdP " . $idp->identifier); |
|
172 | + $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "The admin with ID $toBeDeleted is not associated to IdP ".$idp->identifier); |
|
173 | 173 | break; |
174 | 174 | case web\lib\admin\API::ACTION_STATISTICS_FED: |
175 | 175 | $adminApi->returnSuccess($fed->downloadStats("array")); |
@@ -216,10 +216,10 @@ discard block |
||
216 | 216 | $outer = ""; |
217 | 217 | $profile->setAnonymousIDSupport(FALSE); |
218 | 218 | } else { |
219 | - $outer = $outer . "@"; |
|
219 | + $outer = $outer."@"; |
|
220 | 220 | $profile->setAnonymousIDSupport(TRUE); |
221 | 221 | } |
222 | - $profile->setRealm($outer . $realm); |
|
222 | + $profile->setRealm($outer.$realm); |
|
223 | 223 | } |
224 | 224 | /* const AUXATTRIB_PROFILE_TESTUSER = 'ATTRIB-PROFILE-TESTUSER'; */ |
225 | 225 | $testuser = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_PROFILE_TESTUSER); |
@@ -447,7 +447,7 @@ discard block |
||
447 | 447 | // extract relevant subset of information from cert objects |
448 | 448 | $certDetails = []; |
449 | 449 | foreach ($certs as $cert) { |
450 | - $certDetails[$cert->ca_type . ":" . $cert->serial] = ["ISSUED" => $cert->issued, "EXPIRY" => $cert->expiry, "STATUS" => $cert->status, "DEVICE" => $cert->device, "CN" => $cert->username, "ANNOTATION" => $cert->annotation]; |
|
450 | + $certDetails[$cert->ca_type.":".$cert->serial] = ["ISSUED" => $cert->issued, "EXPIRY" => $cert->expiry, "STATUS" => $cert->status, "DEVICE" => $cert->device, "CN" => $cert->username, "ANNOTATION" => $cert->annotation]; |
|
451 | 451 | } |
452 | 452 | $adminApi->returnSuccess($certDetails); |
453 | 453 | break; |
@@ -417,7 +417,7 @@ |
||
417 | 417 | $userId = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_USERID); |
418 | 418 | $userName = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_USERNAME); |
419 | 419 | $certSerial = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_CERTSERIAL); |
420 | - $certCN = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_CERTCN); |
|
420 | + $certCN = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_CERTCN); |
|
421 | 421 | if ($userId === FALSE && $userName === FALSE && $certSerial === FALSE && $certCN === FALSE) { |
422 | 422 | // we need at least one of those |
423 | 423 | $adminApi->returnError(\web\lib\admin\API::ERROR_MISSING_PARAMETER, "At least one of User ID, Username, certificate serial, or certificate CN is required."); |
@@ -84,218 +84,218 @@ discard block |
||
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)); |
|
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)); |
|
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)); |
|
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)); |
|
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)); |
|
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); |
|
112 | + $idp = $validator->existingIdP($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_INST_ID)); |
|
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 | - } |
|
195 | - foreach ($retArray as $instNumber => $oneInstData) { |
|
196 | - foreach ($oneInstData as $attribNumber => $oneAttrib) { |
|
197 | - if ($oneAttrib['name'] == "general:logo_file") { |
|
198 | - // JSON doesn't cope well with raw binary data, so b64 it |
|
199 | - $retArray[$instNumber][$attribNumber]['value'] = base64_encode($oneAttrib['value']); |
|
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)); |
|
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"]; |
|
200 | 144 | } |
201 | 145 | } |
202 | - } |
|
203 | - $adminApi->returnSuccess($retArray); |
|
204 | - break; |
|
205 | - case \web\lib\admin\API::ACTION_NEWPROF_RADIUS: |
|
206 | - // fall-through intended: both get mostly identical treatment |
|
207 | - case web\lib\admin\API::ACTION_NEWPROF_SB: |
|
208 | - try { |
|
209 | - $idp = $validator->existingIdP($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_INST_ID)); |
|
210 | - } catch (Exception $e) { |
|
211 | - $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "IdP identifier does not exist!"); |
|
212 | - exit(1); |
|
213 | - } |
|
214 | - if ($inputDecoded['ACTION'] == web\lib\admin\API::ACTION_NEWPROF_RADIUS) { |
|
215 | - $type = "RADIUS"; |
|
216 | - } else { |
|
217 | - $type = "SILVERBULLET"; |
|
218 | - } |
|
219 | - $profile = $idp->newProfile($type); |
|
220 | - if ($profile === NULL) { |
|
221 | - $adminApi->returnError(\web\lib\admin\API::ERROR_INTERNAL_ERROR, "Unable to create a new Profile, for no apparent reason. Please contact support."); |
|
222 | - exit(1); |
|
223 | - } |
|
224 | - $inputs = $adminApi->uglify($scrubbedParameters); |
|
225 | - $optionParser->processSubmittedFields($profile, $inputs["POST"], $inputs["FILES"]); |
|
226 | - if ($inputDecoded['ACTION'] == web\lib\admin\API::ACTION_NEWPROF_SB) { |
|
227 | - // auto-accept ToU? |
|
228 | - if ($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_TOU) !== FALSE) { |
|
229 | - $profile->addAttribute("hiddenprofile:tou_accepted", NULL, 1); |
|
230 | - } |
|
231 | - // we're done at this point |
|
232 | - $adminApi->returnSuccess([\web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID => $profile->identifier]); |
|
146 | + $adminApi->returnSuccess($success); |
|
233 | 147 | break; |
234 | - } |
|
235 | - if (!$profile instanceof core\ProfileRADIUS) { |
|
236 | - throw new Exception("Can't be. This is only here to convince Scrutinizer that we're really talking RADIUS."); |
|
237 | - } |
|
238 | - /* const AUXATTRIB_PROFILE_REALM = 'ATTRIB-PROFILE-REALM'; |
|
239 | - const AUXATTRIB_PROFILE_OUTERVALUE = 'ATTRIB-PROFILE-OUTERVALUE'; */ |
|
240 | - $realm = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_PROFILE_REALM); |
|
241 | - $outer = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_PROFILE_OUTERVALUE); |
|
242 | - if ($realm !== FALSE) { |
|
243 | - if ($outer === FALSE) { |
|
244 | - $outer = ""; |
|
245 | - $profile->setAnonymousIDSupport(FALSE); |
|
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)); |
|
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 | + } |
|
246 | 186 | } else { |
247 | - $outer = $outer . "@"; |
|
248 | - $profile->setAnonymousIDSupport(TRUE); |
|
187 | + try { |
|
188 | + $thisIdP = $validator->existingIdP($idpIdentifier); |
|
189 | + } catch (Exception $e) { |
|
190 | + $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "IdP identifier does not exist!"); |
|
191 | + exit(1); |
|
192 | + } |
|
193 | + $retArray[$idpIdentifier] = $thisIdP->getAttributes(); |
|
249 | 194 | } |
250 | - $profile->setRealm($outer . $realm); |
|
251 | - } |
|
252 | - /* const AUXATTRIB_PROFILE_TESTUSER = 'ATTRIB-PROFILE-TESTUSER'; */ |
|
253 | - $testuser = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_PROFILE_TESTUSER); |
|
254 | - if ($testuser !== FALSE) { |
|
255 | - $profile->setRealmCheckUser(TRUE, $testuser); |
|
256 | - } |
|
257 | - /* const AUXATTRIB_PROFILE_INPUT_HINT = 'ATTRIB-PROFILE-HINTREALM'; |
|
195 | + foreach ($retArray as $instNumber => $oneInstData) { |
|
196 | + foreach ($oneInstData as $attribNumber => $oneAttrib) { |
|
197 | + if ($oneAttrib['name'] == "general:logo_file") { |
|
198 | + // JSON doesn't cope well with raw binary data, so b64 it |
|
199 | + $retArray[$instNumber][$attribNumber]['value'] = base64_encode($oneAttrib['value']); |
|
200 | + } |
|
201 | + } |
|
202 | + } |
|
203 | + $adminApi->returnSuccess($retArray); |
|
204 | + break; |
|
205 | + case \web\lib\admin\API::ACTION_NEWPROF_RADIUS: |
|
206 | + // fall-through intended: both get mostly identical treatment |
|
207 | + case web\lib\admin\API::ACTION_NEWPROF_SB: |
|
208 | + try { |
|
209 | + $idp = $validator->existingIdP($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_INST_ID)); |
|
210 | + } catch (Exception $e) { |
|
211 | + $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "IdP identifier does not exist!"); |
|
212 | + exit(1); |
|
213 | + } |
|
214 | + if ($inputDecoded['ACTION'] == web\lib\admin\API::ACTION_NEWPROF_RADIUS) { |
|
215 | + $type = "RADIUS"; |
|
216 | + } else { |
|
217 | + $type = "SILVERBULLET"; |
|
218 | + } |
|
219 | + $profile = $idp->newProfile($type); |
|
220 | + if ($profile === NULL) { |
|
221 | + $adminApi->returnError(\web\lib\admin\API::ERROR_INTERNAL_ERROR, "Unable to create a new Profile, for no apparent reason. Please contact support."); |
|
222 | + exit(1); |
|
223 | + } |
|
224 | + $inputs = $adminApi->uglify($scrubbedParameters); |
|
225 | + $optionParser->processSubmittedFields($profile, $inputs["POST"], $inputs["FILES"]); |
|
226 | + if ($inputDecoded['ACTION'] == web\lib\admin\API::ACTION_NEWPROF_SB) { |
|
227 | + // auto-accept ToU? |
|
228 | + if ($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_TOU) !== FALSE) { |
|
229 | + $profile->addAttribute("hiddenprofile:tou_accepted", NULL, 1); |
|
230 | + } |
|
231 | + // we're done at this point |
|
232 | + $adminApi->returnSuccess([\web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID => $profile->identifier]); |
|
233 | + break; |
|
234 | + } |
|
235 | + if (!$profile instanceof core\ProfileRADIUS) { |
|
236 | + throw new Exception("Can't be. This is only here to convince Scrutinizer that we're really talking RADIUS."); |
|
237 | + } |
|
238 | + /* const AUXATTRIB_PROFILE_REALM = 'ATTRIB-PROFILE-REALM'; |
|
239 | + const AUXATTRIB_PROFILE_OUTERVALUE = 'ATTRIB-PROFILE-OUTERVALUE'; */ |
|
240 | + $realm = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_PROFILE_REALM); |
|
241 | + $outer = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_PROFILE_OUTERVALUE); |
|
242 | + if ($realm !== FALSE) { |
|
243 | + if ($outer === FALSE) { |
|
244 | + $outer = ""; |
|
245 | + $profile->setAnonymousIDSupport(FALSE); |
|
246 | + } else { |
|
247 | + $outer = $outer . "@"; |
|
248 | + $profile->setAnonymousIDSupport(TRUE); |
|
249 | + } |
|
250 | + $profile->setRealm($outer . $realm); |
|
251 | + } |
|
252 | + /* const AUXATTRIB_PROFILE_TESTUSER = 'ATTRIB-PROFILE-TESTUSER'; */ |
|
253 | + $testuser = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_PROFILE_TESTUSER); |
|
254 | + if ($testuser !== FALSE) { |
|
255 | + $profile->setRealmCheckUser(TRUE, $testuser); |
|
256 | + } |
|
257 | + /* const AUXATTRIB_PROFILE_INPUT_HINT = 'ATTRIB-PROFILE-HINTREALM'; |
|
258 | 258 | const AUXATTRIB_PROFILE_INPUT_VERIFY = 'ATTRIB-PROFILE-VERIFYREALM'; */ |
259 | - $hint = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_PROFILE_INPUT_HINT); |
|
260 | - $enforce = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_PROFILE_INPUT_VERIFY); |
|
261 | - if ($enforce !== FALSE) { |
|
262 | - $profile->setInputVerificationPreference($enforce, $hint); |
|
263 | - } |
|
264 | - /* const AUXATTRIB_PROFILE_EAPTYPE */ |
|
265 | - $iterator = 1; |
|
266 | - foreach ($scrubbedParameters as $oneParam) { |
|
267 | - if ($oneParam['NAME'] == web\lib\admin\API::AUXATTRIB_PROFILE_EAPTYPE && is_int($oneParam["VALUE"])) { |
|
268 | - $type = new \core\common\EAP($oneParam["VALUE"]); |
|
269 | - $profile->addSupportedEapMethod($type, $iterator); |
|
270 | - $iterator = $iterator + 1; |
|
259 | + $hint = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_PROFILE_INPUT_HINT); |
|
260 | + $enforce = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_PROFILE_INPUT_VERIFY); |
|
261 | + if ($enforce !== FALSE) { |
|
262 | + $profile->setInputVerificationPreference($enforce, $hint); |
|
271 | 263 | } |
272 | - } |
|
273 | - // reinstantiate $profile freshly from DB - it was updated in the process |
|
274 | - $profileFresh = new core\ProfileRADIUS($profile->identifier); |
|
275 | - $profileFresh->prepShowtime(); |
|
276 | - $adminApi->returnSuccess([\web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID => $profileFresh->identifier]); |
|
277 | - break; |
|
278 | - case web\lib\admin\API::ACTION_ENDUSER_NEW: |
|
279 | - // fall-through intentional, those two actions are doing nearly identical things |
|
280 | - case web\lib\admin\API::ACTION_ENDUSER_CHANGEEXPIRY: |
|
281 | - $prof_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID); |
|
282 | - if ($prof_id === FALSE) { |
|
283 | - exit(1); |
|
284 | - } |
|
285 | - $evaluation = $adminApi->commonSbProfileChecks($fed, $prof_id); |
|
286 | - if ($evaluation === FALSE) { |
|
287 | - exit(1); |
|
288 | - } |
|
289 | - list($idp, $profile) = $evaluation; |
|
290 | - $user = $validator->string($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_USERNAME)); |
|
291 | - $expiryRaw = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_EXPIRY); |
|
292 | - if ($expiryRaw === FALSE) { |
|
293 | - $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "The expiry date wasn't found in the request."); |
|
264 | + /* const AUXATTRIB_PROFILE_EAPTYPE */ |
|
265 | + $iterator = 1; |
|
266 | + foreach ($scrubbedParameters as $oneParam) { |
|
267 | + if ($oneParam['NAME'] == web\lib\admin\API::AUXATTRIB_PROFILE_EAPTYPE && is_int($oneParam["VALUE"])) { |
|
268 | + $type = new \core\common\EAP($oneParam["VALUE"]); |
|
269 | + $profile->addSupportedEapMethod($type, $iterator); |
|
270 | + $iterator = $iterator + 1; |
|
271 | + } |
|
272 | + } |
|
273 | + // reinstantiate $profile freshly from DB - it was updated in the process |
|
274 | + $profileFresh = new core\ProfileRADIUS($profile->identifier); |
|
275 | + $profileFresh->prepShowtime(); |
|
276 | + $adminApi->returnSuccess([\web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID => $profileFresh->identifier]); |
|
294 | 277 | break; |
295 | - } |
|
296 | - $expiry = new DateTime($expiryRaw); |
|
297 | - try { |
|
298 | - switch ($inputDecoded['ACTION']) { |
|
278 | + case web\lib\admin\API::ACTION_ENDUSER_NEW: |
|
279 | + // fall-through intentional, those two actions are doing nearly identical things |
|
280 | + case web\lib\admin\API::ACTION_ENDUSER_CHANGEEXPIRY: |
|
281 | + $prof_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID); |
|
282 | + if ($prof_id === FALSE) { |
|
283 | + exit(1); |
|
284 | + } |
|
285 | + $evaluation = $adminApi->commonSbProfileChecks($fed, $prof_id); |
|
286 | + if ($evaluation === FALSE) { |
|
287 | + exit(1); |
|
288 | + } |
|
289 | + list($idp, $profile) = $evaluation; |
|
290 | + $user = $validator->string($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_USERNAME)); |
|
291 | + $expiryRaw = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_EXPIRY); |
|
292 | + if ($expiryRaw === FALSE) { |
|
293 | + $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "The expiry date wasn't found in the request."); |
|
294 | + break; |
|
295 | + } |
|
296 | + $expiry = new DateTime($expiryRaw); |
|
297 | + try { |
|
298 | + switch ($inputDecoded['ACTION']) { |
|
299 | 299 | case web\lib\admin\API::ACTION_ENDUSER_NEW: |
300 | 300 | $retval = $profile->addUser($user, $expiry); |
301 | 301 | break; |
@@ -308,7 +308,7 @@ discard block |
||
308 | 308 | $retval = 1; // function doesn't have any failure vectors not raising an Exception and doesn't return a value |
309 | 309 | } |
310 | 310 | break; |
311 | - } |
|
311 | + } |
|
312 | 312 | } catch (Exception $e) { |
313 | 313 | $adminApi->returnError(web\lib\admin\API::ERROR_INTERNAL_ERROR, "The operation failed. Maybe a duplicate username, or malformed expiry date?"); |
314 | 314 | exit(1); |
@@ -319,25 +319,25 @@ discard block |
||
319 | 319 | } |
320 | 320 | $adminApi->returnSuccess([web\lib\admin\API::AUXATTRIB_SB_USERNAME => $user, \web\lib\admin\API::AUXATTRIB_SB_USERID => $retval]); |
321 | 321 | break; |
322 | - case \web\lib\admin\API::ACTION_ENDUSER_DEACTIVATE: |
|
323 | - // fall-through intended: both actions are very similar |
|
324 | - case \web\lib\admin\API::ACTION_TOKEN_NEW: |
|
325 | - $profile_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID); |
|
326 | - if ($profile_id === FALSE) { |
|
327 | - exit(1); |
|
328 | - } |
|
329 | - $evaluation = $adminApi->commonSbProfileChecks($fed, $profile_id); |
|
330 | - if ($evaluation === FALSE) { |
|
331 | - exit(1); |
|
332 | - } |
|
333 | - list($idp, $profile) = $evaluation; |
|
334 | - $userId = $validator->integer($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_USERID)); |
|
335 | - if ($userId === FALSE) { |
|
336 | - $adminApi->returnError(\web\lib\admin\API::ERROR_INVALID_PARAMETER, "User ID is not an integer."); |
|
337 | - exit(1); |
|
338 | - } |
|
339 | - $additionalInfo = []; |
|
340 | - switch ($inputDecoded['ACTION']) { // this is where the two differ |
|
322 | + case \web\lib\admin\API::ACTION_ENDUSER_DEACTIVATE: |
|
323 | + // fall-through intended: both actions are very similar |
|
324 | + case \web\lib\admin\API::ACTION_TOKEN_NEW: |
|
325 | + $profile_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID); |
|
326 | + if ($profile_id === FALSE) { |
|
327 | + exit(1); |
|
328 | + } |
|
329 | + $evaluation = $adminApi->commonSbProfileChecks($fed, $profile_id); |
|
330 | + if ($evaluation === FALSE) { |
|
331 | + exit(1); |
|
332 | + } |
|
333 | + list($idp, $profile) = $evaluation; |
|
334 | + $userId = $validator->integer($adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_USERID)); |
|
335 | + if ($userId === FALSE) { |
|
336 | + $adminApi->returnError(\web\lib\admin\API::ERROR_INVALID_PARAMETER, "User ID is not an integer."); |
|
337 | + exit(1); |
|
338 | + } |
|
339 | + $additionalInfo = []; |
|
340 | + switch ($inputDecoded['ACTION']) { // this is where the two differ |
|
341 | 341 | case \web\lib\admin\API::ACTION_ENDUSER_DEACTIVATE: |
342 | 342 | $result = $profile->deactivateUser($userId); |
343 | 343 | break; |
@@ -370,7 +370,7 @@ discard block |
||
370 | 370 | } |
371 | 371 | } |
372 | 372 | break; |
373 | - } |
|
373 | + } |
|
374 | 374 | |
375 | 375 | if ($result !== TRUE) { |
376 | 376 | $adminApi->returnError(\web\lib\admin\API::ERROR_INVALID_PARAMETER, "These parameters did not lead to an existing, active user."); |
@@ -378,69 +378,69 @@ discard block |
||
378 | 378 | } |
379 | 379 | $adminApi->returnSuccess($additionalInfo); |
380 | 380 | break; |
381 | - case \web\lib\admin\API::ACTION_ENDUSER_IDENTIFY: |
|
382 | - $profile_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID); |
|
383 | - if ($profile_id === FALSE) { |
|
384 | - exit(1); |
|
385 | - } |
|
386 | - $evaluation = $adminApi->commonSbProfileChecks($fed, $profile_id); |
|
387 | - if ($evaluation === FALSE) { |
|
388 | - exit(1); |
|
389 | - } |
|
390 | - list($idp, $profile) = $evaluation; |
|
391 | - $userId = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_USERID); |
|
392 | - $userName = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_USERNAME); |
|
393 | - $certSerial = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_CERTSERIAL); |
|
394 | - $certCN = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_CERTCN); |
|
395 | - if ($userId === FALSE && $userName === FALSE && $certSerial === FALSE && $certCN === FALSE) { |
|
396 | - // we need at least one of those |
|
397 | - $adminApi->returnError(\web\lib\admin\API::ERROR_MISSING_PARAMETER, "At least one of User ID, Username, certificate serial, or certificate CN is required."); |
|
398 | - break; |
|
399 | - } |
|
400 | - if ($certSerial !== FALSE) { // we got a cert serial |
|
401 | - $serial = explode(":", $certSerial); |
|
402 | - $cert = new \core\SilverbulletCertificate($serial[1], $serial[0]); |
|
381 | + case \web\lib\admin\API::ACTION_ENDUSER_IDENTIFY: |
|
382 | + $profile_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID); |
|
383 | + if ($profile_id === FALSE) { |
|
384 | + exit(1); |
|
403 | 385 | } |
404 | - if ($certCN !== FALSE) { // we got a cert CN |
|
405 | - $cert = new \core\SilverbulletCertificate($certCN); |
|
406 | - } |
|
407 | - if ($cert !== NULL) { // we found a cert; verify it and extract userId |
|
408 | - if ($cert->status == \core\SilverbulletCertificate::CERTSTATUS_INVALID) { |
|
409 | - return $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Certificate not found."); |
|
386 | + $evaluation = $adminApi->commonSbProfileChecks($fed, $profile_id); |
|
387 | + if ($evaluation === FALSE) { |
|
388 | + exit(1); |
|
410 | 389 | } |
411 | - if ($cert->profileId != $profile->identifier) { |
|
412 | - return $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Certificate does not belong to this profile."); |
|
390 | + list($idp, $profile) = $evaluation; |
|
391 | + $userId = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_USERID); |
|
392 | + $userName = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_USERNAME); |
|
393 | + $certSerial = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_CERTSERIAL); |
|
394 | + $certCN = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_CERTCN); |
|
395 | + if ($userId === FALSE && $userName === FALSE && $certSerial === FALSE && $certCN === FALSE) { |
|
396 | + // we need at least one of those |
|
397 | + $adminApi->returnError(\web\lib\admin\API::ERROR_MISSING_PARAMETER, "At least one of User ID, Username, certificate serial, or certificate CN is required."); |
|
398 | + break; |
|
413 | 399 | } |
414 | - $userId = $cert->userId; |
|
415 | - } |
|
416 | - if ($userId !== FALSE) { |
|
417 | - $userList = $profile->getUserById($userId); |
|
418 | - } |
|
419 | - if ($userName !== FALSE) { |
|
420 | - $userList = $profile->getUserByName($userName); |
|
421 | - } |
|
422 | - if (count($userList) === 1) { |
|
423 | - foreach ($userList as $oneUserId => $oneUserName) { |
|
424 | - return $adminApi->returnSuccess([web\lib\admin\API::AUXATTRIB_SB_USERNAME => $oneUserName, \web\lib\admin\API::AUXATTRIB_SB_USERID => $oneUserId]); |
|
400 | + if ($certSerial !== FALSE) { // we got a cert serial |
|
401 | + $serial = explode(":", $certSerial); |
|
402 | + $cert = new \core\SilverbulletCertificate($serial[1], $serial[0]); |
|
403 | + } |
|
404 | + if ($certCN !== FALSE) { // we got a cert CN |
|
405 | + $cert = new \core\SilverbulletCertificate($certCN); |
|
425 | 406 | } |
426 | - } |
|
427 | - $adminApi->returnError(\web\lib\admin\API::ERROR_INVALID_PARAMETER, "No matching user found in this profile."); |
|
428 | - break; |
|
429 | - case \web\lib\admin\API::ACTION_ENDUSER_LIST: |
|
430 | - // fall-through: those two are similar |
|
431 | - case \web\lib\admin\API::ACTION_TOKEN_LIST: |
|
432 | - $profile_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID); |
|
433 | - if ($profile_id === FALSE) { |
|
434 | - exit(1); |
|
435 | - } |
|
436 | - $evaluation = $adminApi->commonSbProfileChecks($fed, $profile_id); |
|
437 | - if ($evaluation === FALSE) { |
|
438 | - exit(1); |
|
439 | - } |
|
440 | - list($idp, $profile) = $evaluation; |
|
441 | - $allUsers = $profile->listAllUsers(); |
|
442 | - // this is where they differ |
|
443 | - switch ($inputDecoded['ACTION']) { |
|
407 | + if ($cert !== NULL) { // we found a cert; verify it and extract userId |
|
408 | + if ($cert->status == \core\SilverbulletCertificate::CERTSTATUS_INVALID) { |
|
409 | + return $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Certificate not found."); |
|
410 | + } |
|
411 | + if ($cert->profileId != $profile->identifier) { |
|
412 | + return $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Certificate does not belong to this profile."); |
|
413 | + } |
|
414 | + $userId = $cert->userId; |
|
415 | + } |
|
416 | + if ($userId !== FALSE) { |
|
417 | + $userList = $profile->getUserById($userId); |
|
418 | + } |
|
419 | + if ($userName !== FALSE) { |
|
420 | + $userList = $profile->getUserByName($userName); |
|
421 | + } |
|
422 | + if (count($userList) === 1) { |
|
423 | + foreach ($userList as $oneUserId => $oneUserName) { |
|
424 | + return $adminApi->returnSuccess([web\lib\admin\API::AUXATTRIB_SB_USERNAME => $oneUserName, \web\lib\admin\API::AUXATTRIB_SB_USERID => $oneUserId]); |
|
425 | + } |
|
426 | + } |
|
427 | + $adminApi->returnError(\web\lib\admin\API::ERROR_INVALID_PARAMETER, "No matching user found in this profile."); |
|
428 | + break; |
|
429 | + case \web\lib\admin\API::ACTION_ENDUSER_LIST: |
|
430 | + // fall-through: those two are similar |
|
431 | + case \web\lib\admin\API::ACTION_TOKEN_LIST: |
|
432 | + $profile_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID); |
|
433 | + if ($profile_id === FALSE) { |
|
434 | + exit(1); |
|
435 | + } |
|
436 | + $evaluation = $adminApi->commonSbProfileChecks($fed, $profile_id); |
|
437 | + if ($evaluation === FALSE) { |
|
438 | + exit(1); |
|
439 | + } |
|
440 | + list($idp, $profile) = $evaluation; |
|
441 | + $allUsers = $profile->listAllUsers(); |
|
442 | + // this is where they differ |
|
443 | + switch ($inputDecoded['ACTION']) { |
|
444 | 444 | case \web\lib\admin\API::ACTION_ENDUSER_LIST: |
445 | 445 | $adminApi->returnSuccess($allUsers); |
446 | 446 | break; |
@@ -459,105 +459,105 @@ discard block |
||
459 | 459 | $infoSet[$oneTokenObject->userId] = [\web\lib\admin\API::AUXATTRIB_TOKEN => $oneTokenObject->invitationTokenString, "STATUS" => $oneTokenObject->invitationTokenStatus]; |
460 | 460 | } |
461 | 461 | $adminApi->returnSuccess($infoSet); |
462 | - } |
|
463 | - break; |
|
464 | - case \web\lib\admin\API::ACTION_TOKEN_REVOKE: |
|
465 | - $tokenRaw = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_TOKEN); |
|
466 | - if ($tokenRaw === FALSE) { |
|
467 | - exit(1); |
|
468 | - } |
|
469 | - $token = new core\SilverbulletInvitation($tokenRaw); |
|
470 | - if ($token->invitationTokenStatus !== core\SilverbulletInvitation::SB_TOKENSTATUS_VALID && $token->invitationTokenStatus !== core\SilverbulletInvitation::SB_TOKENSTATUS_PARTIALLY_REDEEMED) { |
|
471 | - $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "This is not a currently valid token."); |
|
472 | - exit(1); |
|
473 | - } |
|
474 | - $token->revokeInvitation(); |
|
475 | - $adminApi->returnSuccess([]); |
|
476 | - break; |
|
477 | - case \web\lib\admin\API::ACTION_CERT_LIST: |
|
478 | - $prof_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID); |
|
479 | - $user_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_USERID); |
|
480 | - if ($prof_id === FALSE || !is_int($user_id)) { |
|
481 | - exit(1); |
|
482 | - } |
|
483 | - $evaluation = $adminApi->commonSbProfileChecks($fed, $prof_id); |
|
484 | - if ($evaluation === FALSE) { |
|
485 | - exit(1); |
|
486 | - } |
|
487 | - list($idp, $profile) = $evaluation; |
|
488 | - $invitations = $profile->userStatus($user_id); |
|
489 | - // now pull out cert information from the object |
|
490 | - $certs = []; |
|
491 | - foreach ($invitations as $oneInvitation) { |
|
492 | - $certs = array_merge($certs, $oneInvitation->associatedCertificates); |
|
493 | - } |
|
494 | - // extract relevant subset of information from cert objects |
|
495 | - $certDetails = []; |
|
496 | - foreach ($certs as $cert) { |
|
497 | - $certDetails[$cert->ca_type . ":" . $cert->serial] = ["ISSUED" => $cert->issued, "EXPIRY" => $cert->expiry, "STATUS" => $cert->status, "DEVICE" => $cert->device, "CN" => $cert->username, "ANNOTATION" => $cert->annotation]; |
|
498 | - } |
|
499 | - $adminApi->returnSuccess($certDetails); |
|
500 | - break; |
|
501 | - case \web\lib\admin\API::ACTION_CERT_REVOKE: |
|
502 | - $prof_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID); |
|
503 | - if ($prof_id === FALSE) { |
|
504 | - exit(1); |
|
505 | - } |
|
506 | - $evaluation = $adminApi->commonSbProfileChecks($fed, $prof_id); |
|
507 | - if ($evaluation === FALSE) { |
|
508 | - exit(1); |
|
509 | - } |
|
510 | - list($idp, $profile) = $evaluation; |
|
511 | - // tear apart the serial |
|
512 | - $serialRaw = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_CERTSERIAL); |
|
513 | - if ($serialRaw === FALSE) { |
|
514 | - exit(1); |
|
515 | - } |
|
516 | - $serial = explode(":", $serialRaw); |
|
517 | - $cert = new \core\SilverbulletCertificate($serial[1], $serial[0]); |
|
518 | - if ($cert->status == \core\SilverbulletCertificate::CERTSTATUS_INVALID) { |
|
519 | - $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Serial not found."); |
|
520 | - } |
|
521 | - if ($cert->profileId != $profile->identifier) { |
|
522 | - $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Serial does not belong to this profile."); |
|
523 | - } |
|
524 | - $cert->revokeCertificate(); |
|
525 | - $adminApi->returnSuccess([]); |
|
462 | + } |
|
526 | 463 | break; |
527 | - case \web\lib\admin\API::ACTION_CERT_ANNOTATE: |
|
528 | - $prof_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID); |
|
529 | - if ($prof_id === FALSE) { |
|
530 | - exit(1); |
|
531 | - } |
|
532 | - $evaluation = $adminApi->commonSbProfileChecks($fed, $prof_id); |
|
533 | - if ($evaluation === FALSE) { |
|
534 | - exit(1); |
|
535 | - } |
|
536 | - list($idp, $profile) = $evaluation; |
|
537 | - // tear apart the serial |
|
538 | - $serialRaw = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_CERTSERIAL); |
|
539 | - if ($serialRaw === FALSE) { |
|
540 | - exit(1); |
|
541 | - } |
|
542 | - $serial = explode(":", $serialRaw); |
|
543 | - $cert = new \core\SilverbulletCertificate($serial[1], $serial[0]); |
|
544 | - if ($cert->status == \core\SilverbulletCertificate::CERTSTATUS_INVALID) { |
|
545 | - $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Serial not found."); |
|
546 | - } |
|
547 | - if ($cert->profileId != $profile->identifier) { |
|
548 | - $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Serial does not belong to this profile."); |
|
549 | - } |
|
550 | - $annotationRaw = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_CERTANNOTATION); |
|
551 | - if ($annotationRaw === FALSE) { |
|
552 | - $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Unable to extract annotation."); |
|
464 | + case \web\lib\admin\API::ACTION_TOKEN_REVOKE: |
|
465 | + $tokenRaw = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_TOKEN); |
|
466 | + if ($tokenRaw === FALSE) { |
|
467 | + exit(1); |
|
468 | + } |
|
469 | + $token = new core\SilverbulletInvitation($tokenRaw); |
|
470 | + if ($token->invitationTokenStatus !== core\SilverbulletInvitation::SB_TOKENSTATUS_VALID && $token->invitationTokenStatus !== core\SilverbulletInvitation::SB_TOKENSTATUS_PARTIALLY_REDEEMED) { |
|
471 | + $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "This is not a currently valid token."); |
|
472 | + exit(1); |
|
473 | + } |
|
474 | + $token->revokeInvitation(); |
|
475 | + $adminApi->returnSuccess([]); |
|
553 | 476 | break; |
554 | - } |
|
555 | - $annotation = json_decode($annotationRaw, TRUE); |
|
556 | - $cert->annotate($annotation); |
|
557 | - $adminApi->returnSuccess([]); |
|
477 | + case \web\lib\admin\API::ACTION_CERT_LIST: |
|
478 | + $prof_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID); |
|
479 | + $user_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_USERID); |
|
480 | + if ($prof_id === FALSE || !is_int($user_id)) { |
|
481 | + exit(1); |
|
482 | + } |
|
483 | + $evaluation = $adminApi->commonSbProfileChecks($fed, $prof_id); |
|
484 | + if ($evaluation === FALSE) { |
|
485 | + exit(1); |
|
486 | + } |
|
487 | + list($idp, $profile) = $evaluation; |
|
488 | + $invitations = $profile->userStatus($user_id); |
|
489 | + // now pull out cert information from the object |
|
490 | + $certs = []; |
|
491 | + foreach ($invitations as $oneInvitation) { |
|
492 | + $certs = array_merge($certs, $oneInvitation->associatedCertificates); |
|
493 | + } |
|
494 | + // extract relevant subset of information from cert objects |
|
495 | + $certDetails = []; |
|
496 | + foreach ($certs as $cert) { |
|
497 | + $certDetails[$cert->ca_type . ":" . $cert->serial] = ["ISSUED" => $cert->issued, "EXPIRY" => $cert->expiry, "STATUS" => $cert->status, "DEVICE" => $cert->device, "CN" => $cert->username, "ANNOTATION" => $cert->annotation]; |
|
498 | + } |
|
499 | + $adminApi->returnSuccess($certDetails); |
|
500 | + break; |
|
501 | + case \web\lib\admin\API::ACTION_CERT_REVOKE: |
|
502 | + $prof_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID); |
|
503 | + if ($prof_id === FALSE) { |
|
504 | + exit(1); |
|
505 | + } |
|
506 | + $evaluation = $adminApi->commonSbProfileChecks($fed, $prof_id); |
|
507 | + if ($evaluation === FALSE) { |
|
508 | + exit(1); |
|
509 | + } |
|
510 | + list($idp, $profile) = $evaluation; |
|
511 | + // tear apart the serial |
|
512 | + $serialRaw = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_CERTSERIAL); |
|
513 | + if ($serialRaw === FALSE) { |
|
514 | + exit(1); |
|
515 | + } |
|
516 | + $serial = explode(":", $serialRaw); |
|
517 | + $cert = new \core\SilverbulletCertificate($serial[1], $serial[0]); |
|
518 | + if ($cert->status == \core\SilverbulletCertificate::CERTSTATUS_INVALID) { |
|
519 | + $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Serial not found."); |
|
520 | + } |
|
521 | + if ($cert->profileId != $profile->identifier) { |
|
522 | + $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Serial does not belong to this profile."); |
|
523 | + } |
|
524 | + $cert->revokeCertificate(); |
|
525 | + $adminApi->returnSuccess([]); |
|
526 | + break; |
|
527 | + case \web\lib\admin\API::ACTION_CERT_ANNOTATE: |
|
528 | + $prof_id = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_CAT_PROFILE_ID); |
|
529 | + if ($prof_id === FALSE) { |
|
530 | + exit(1); |
|
531 | + } |
|
532 | + $evaluation = $adminApi->commonSbProfileChecks($fed, $prof_id); |
|
533 | + if ($evaluation === FALSE) { |
|
534 | + exit(1); |
|
535 | + } |
|
536 | + list($idp, $profile) = $evaluation; |
|
537 | + // tear apart the serial |
|
538 | + $serialRaw = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_CERTSERIAL); |
|
539 | + if ($serialRaw === FALSE) { |
|
540 | + exit(1); |
|
541 | + } |
|
542 | + $serial = explode(":", $serialRaw); |
|
543 | + $cert = new \core\SilverbulletCertificate($serial[1], $serial[0]); |
|
544 | + if ($cert->status == \core\SilverbulletCertificate::CERTSTATUS_INVALID) { |
|
545 | + $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Serial not found."); |
|
546 | + } |
|
547 | + if ($cert->profileId != $profile->identifier) { |
|
548 | + $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Serial does not belong to this profile."); |
|
549 | + } |
|
550 | + $annotationRaw = $adminApi->firstParameterInstance($scrubbedParameters, web\lib\admin\API::AUXATTRIB_SB_CERTANNOTATION); |
|
551 | + if ($annotationRaw === FALSE) { |
|
552 | + $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_PARAMETER, "Unable to extract annotation."); |
|
553 | + break; |
|
554 | + } |
|
555 | + $annotation = json_decode($annotationRaw, TRUE); |
|
556 | + $cert->annotate($annotation); |
|
557 | + $adminApi->returnSuccess([]); |
|
558 | 558 | |
559 | - break; |
|
559 | + break; |
|
560 | 560 | |
561 | - default: |
|
562 | - $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_ACTION, "Not implemented yet."); |
|
561 | + default: |
|
562 | + $adminApi->returnError(web\lib\admin\API::ERROR_INVALID_ACTION, "Not implemented yet."); |
|
563 | 563 | } |
564 | 564 | \ No newline at end of file |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | * <base_url>/copyright.php after deploying the software |
20 | 20 | */ |
21 | 21 | |
22 | -require_once __DIR__ . "/../core/Psr4Autoloader.php"; |
|
22 | +require_once __DIR__."/../core/Psr4Autoloader.php"; |
|
23 | 23 | use core\autoloader\Psr4Autoloader; |
24 | 24 | |
25 | 25 | // instantiate the loader |
@@ -30,10 +30,10 @@ discard block |
||
30 | 30 | |
31 | 31 | // register the base directories for the namespace prefix |
32 | 32 | // include configuration |
33 | -$loader->addNamespace('config', __DIR__ ); |
|
33 | +$loader->addNamespace('config', __DIR__); |
|
34 | 34 | // include CAT/core library |
35 | -$loader->addNamespace('core', __DIR__ . "/../core"); |
|
35 | +$loader->addNamespace('core', __DIR__."/../core"); |
|
36 | 36 | // include CAT/devices library |
37 | -$loader->addNamespace('devices', __DIR__ . "/../devices"); |
|
37 | +$loader->addNamespace('devices', __DIR__."/../devices"); |
|
38 | 38 | // include CAT/web library |
39 | -$loader->addNamespace('web', __DIR__ . "/../web"); |
|
40 | 39 | \ No newline at end of file |
40 | +$loader->addNamespace('web', __DIR__."/../web"); |
|
41 | 41 | \ No newline at end of file |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | ?> |
23 | 23 | <?php |
24 | 24 | |
25 | -require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/config/_config.php"; |
|
25 | +require_once dirname(dirname(dirname(dirname(__FILE__))))."/config/_config.php"; |
|
26 | 26 | |
27 | 27 | $validator = new \web\lib\common\InputValidation(); |
28 | 28 | $idRaw = $_GET["id"] ?? ""; |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | // Set data type and caching for 30 days |
38 | 38 | $info = new finfo(); |
39 | 39 | $filetype = $info->buffer($finalBlob, FILEINFO_MIME_TYPE); |
40 | - header("Content-type: " . $filetype); |
|
40 | + header("Content-type: ".$filetype); |
|
41 | 41 | |
42 | 42 | switch ($filetype) { |
43 | 43 | case "text/rtf": // fall-through, same treatment |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | header("Cache-Control: must-revalidate"); |
55 | 55 | $offset = 60 * 60 * 24 * 30; |
56 | 56 | // gmdate can't possibly fail, because it operates on time() and an integer offset |
57 | - $ExpStr = "Expires: " . /** @scrutinizer ignore-type */ gmdate("D, d M Y H:i:s", time() + $offset) . " GMT"; |
|
57 | + $ExpStr = "Expires: "./** @scrutinizer ignore-type */ gmdate("D, d M Y H:i:s", time() + $offset)." GMT"; |
|
58 | 58 | header($ExpStr); |
59 | 59 | // Print out the image |
60 | 60 | echo $finalBlob; |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | $find = array_keys($displayNames, $input, TRUE); |
148 | 148 | |
149 | 149 | if (count($find) == 0) { // this is an error! throw an Exception |
150 | - throw new \Exception("The translation of an option name was requested, but the option is not known to the system: " . htmlentities($input)); |
|
150 | + throw new \Exception("The translation of an option name was requested, but the option is not known to the system: ".htmlentities($input)); |
|
151 | 151 | } |
152 | 152 | \core\common\Entity::outOfThePotatoes(); |
153 | 153 | return $find[0]; |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | |
169 | 169 | foreach ($optionlist as $option) { |
170 | 170 | $type = $optioninfo->optionType($option['name']); |
171 | - if (preg_match('/^' . $class . '/', $option['name']) && $option['level'] == "$level") { |
|
171 | + if (preg_match('/^'.$class.'/', $option['name']) && $option['level'] == "$level") { |
|
172 | 172 | // all non-multilang attribs get this assignment ... |
173 | 173 | $language = ""; |
174 | 174 | $content = $option['value']; |
@@ -186,19 +186,19 @@ discard block |
||
186 | 186 | $locationMarkers[] = $coords; |
187 | 187 | break; |
188 | 188 | case "file": |
189 | - $retval .= "<tr><td>" . $this->displayName($option['name']) . "</td><td>$language</td><td>"; |
|
189 | + $retval .= "<tr><td>".$this->displayName($option['name'])."</td><td>$language</td><td>"; |
|
190 | 190 | switch ($option['name']) { |
191 | 191 | case "general:logo_file": |
192 | 192 | case "fed:logo_file": |
193 | - $retval .= $this->previewImageinHTML('ROWID-' . $option['level'] . '-' . $option['row']); |
|
193 | + $retval .= $this->previewImageinHTML('ROWID-'.$option['level'].'-'.$option['row']); |
|
194 | 194 | break; |
195 | 195 | case "eap:ca_file": |
196 | 196 | // fall-through intended: display both the same way |
197 | 197 | case "fed:minted_ca_file": |
198 | - $retval .= $this->previewCAinHTML('ROWID-' . $option['level'] . '-' . $option['row']); |
|
198 | + $retval .= $this->previewCAinHTML('ROWID-'.$option['level'].'-'.$option['row']); |
|
199 | 199 | break; |
200 | 200 | case "support:info_file": |
201 | - $retval .= $this->previewInfoFileinHTML('ROWID-' . $option['level'] . '-' . $option['row']); |
|
201 | + $retval .= $this->previewInfoFileinHTML('ROWID-'.$option['level'].'-'.$option['row']); |
|
202 | 202 | break; |
203 | 203 | default: |
204 | 204 | } |
@@ -208,10 +208,10 @@ discard block |
||
208 | 208 | // do not display the option at all; it gets auto-set by the ProfileSilverbullet constructor and doesn't have to be seen |
209 | 209 | break; |
210 | 210 | } |
211 | - $retval .= "<tr><td>" . $this->displayName($option['name']) . "</td><td>$language</td><td><strong>" . ($content == "on" ? _("on") : _("off") ) . "</strong></td></tr>"; |
|
211 | + $retval .= "<tr><td>".$this->displayName($option['name'])."</td><td>$language</td><td><strong>".($content == "on" ? _("on") : _("off"))."</strong></td></tr>"; |
|
212 | 212 | break; |
213 | 213 | default: |
214 | - $retval .= "<tr><td>" . $this->displayName($option['name']) . "</td><td>$language</td><td><strong>$content</strong></td></tr>"; |
|
214 | + $retval .= "<tr><td>".$this->displayName($option['name'])."</td><td>$language</td><td><strong>$content</strong></td></tr>"; |
|
215 | 215 | } |
216 | 216 | } |
217 | 217 | } |
@@ -220,11 +220,11 @@ discard block |
||
220 | 220 | $locationCount = 0; |
221 | 221 | foreach ($locationMarkers as $g) { |
222 | 222 | $locationCount++; |
223 | - $marker .= '<marker name="' . $locationCount . '" lat="' . $g['lat'] . '" lng="' . $g['lon'] . '" />'; |
|
223 | + $marker .= '<marker name="'.$locationCount.'" lat="'.$g['lat'].'" lng="'.$g['lon'].'" />'; |
|
224 | 224 | } |
225 | 225 | $marker .= '<\/markers>'; // some validator says this should be escaped |
226 | 226 | $jMarker = json_encode($locationMarkers); |
227 | - $retval .= '<tr><td><script>markers=\'' . $marker . '\'; jmarkers = \'' . $jMarker . '\';</script></td><td></td><td></td></tr>'; |
|
227 | + $retval .= '<tr><td><script>markers=\''.$marker.'\'; jmarkers = \''.$jMarker.'\';</script></td><td></td><td></td></tr>'; |
|
228 | 228 | } |
229 | 229 | \core\common\Entity::outOfThePotatoes(); |
230 | 230 | return $retval; |
@@ -240,11 +240,11 @@ discard block |
||
240 | 240 | \core\common\Entity::intoThePotatoes(); |
241 | 241 | $idpoptions = $myInst->getAttributes(); |
242 | 242 | $retval = "<div class='infobox'> |
243 | - <h2>" . sprintf(_("General %s details"), $this->nomenclatureInst) . "</h2> |
|
243 | + <h2>" . sprintf(_("General %s details"), $this->nomenclatureInst)."</h2> |
|
244 | 244 | <table> |
245 | 245 | <tr> |
246 | 246 | <td> |
247 | - " . _("Country:") . " |
|
247 | + " . _("Country:")." |
|
248 | 248 | </td> |
249 | 249 | <td> |
250 | 250 | </td> |
@@ -254,16 +254,16 @@ discard block |
||
254 | 254 | $retval .= $myFed->name; |
255 | 255 | $retval .= "</strong> |
256 | 256 | </td> |
257 | - </tr>" . $this->infoblock($idpoptions, "general", "IdP") . " |
|
257 | + </tr>" . $this->infoblock($idpoptions, "general", "IdP")." |
|
258 | 258 | </table> |
259 | 259 | </div>"; |
260 | 260 | |
261 | 261 | $blocks = [["support", _("Global Helpdesk Details")], ["media", _("Media Properties")]]; |
262 | 262 | foreach ($blocks as $block) { |
263 | 263 | $retval .= "<div class='infobox'> |
264 | - <h2>" . $block[1] . "</h2> |
|
264 | + <h2>" . $block[1]."</h2> |
|
265 | 265 | <table>" . |
266 | - $this->infoblock($idpoptions, $block[0], "IdP") . |
|
266 | + $this->infoblock($idpoptions, $block[0], "IdP"). |
|
267 | 267 | "</table> |
268 | 268 | </div>"; |
269 | 269 | } |
@@ -278,12 +278,12 @@ discard block |
||
278 | 278 | */ |
279 | 279 | private function displaySize(int $number) { |
280 | 280 | if ($number > 1024 * 1024) { |
281 | - return round($number / 1024 / 1024, 2) . " MiB"; |
|
281 | + return round($number / 1024 / 1024, 2)." MiB"; |
|
282 | 282 | } |
283 | 283 | if ($number > 1024) { |
284 | - return round($number / 1024, 2) . " KiB"; |
|
284 | + return round($number / 1024, 2)." KiB"; |
|
285 | 285 | } |
286 | - return $number . " B"; |
|
286 | + return $number." B"; |
|
287 | 287 | } |
288 | 288 | |
289 | 289 | /** |
@@ -337,7 +337,7 @@ discard block |
||
337 | 337 | $ref = $validator->databaseReference($cAReference); |
338 | 338 | $rawResult = UIElements::getBlobFromDB($ref['table'], $ref['rowindex'], FALSE); |
339 | 339 | if (is_bool($rawResult)) { // we didn't actually get a CA! |
340 | - $retval = "<div class='ca-summary'>" . _("There was an error while retrieving the certificate from the database!") . "</div>"; |
|
340 | + $retval = "<div class='ca-summary'>"._("There was an error while retrieving the certificate from the database!")."</div>"; |
|
341 | 341 | \core\common\Entity::outOfThePotatoes(); |
342 | 342 | return $retval; |
343 | 343 | } |
@@ -353,13 +353,13 @@ discard block |
||
353 | 353 | |
354 | 354 | $details['name'] = preg_replace('/(.)\/(.)/', "$1<br/>$2", $details['name']); |
355 | 355 | $details['name'] = preg_replace('/\//', "", $details['name']); |
356 | - $certstatus = ( $details['root'] == 1 ? "R" : "I"); |
|
356 | + $certstatus = ($details['root'] == 1 ? "R" : "I"); |
|
357 | 357 | if ($details['ca'] == 0 && $details['root'] != 1) { |
358 | - $retval = "<div class='ca-summary' style='background-color:red'><div style='position:absolute; right: 0px; width:20px; height:20px; background-color:maroon; border-radius:10px; text-align: center;'><div style='padding-top:3px; font-weight:bold; color:#ffffff;'>S</div></div>" . _("This is a <strong>SERVER</strong> certificate!") . "<br/>" . $details['name'] . "</div>"; |
|
358 | + $retval = "<div class='ca-summary' style='background-color:red'><div style='position:absolute; right: 0px; width:20px; height:20px; background-color:maroon; border-radius:10px; text-align: center;'><div style='padding-top:3px; font-weight:bold; color:#ffffff;'>S</div></div>"._("This is a <strong>SERVER</strong> certificate!")."<br/>".$details['name']."</div>"; |
|
359 | 359 | \core\common\Entity::outOfThePotatoes(); |
360 | 360 | return $retval; |
361 | 361 | } |
362 | - $retval = "<div class='ca-summary' ><div style='position:absolute; right: 0px; width:20px; height:20px; background-color:#0000ff; border-radius:10px; text-align: center;'><div style='padding-top:3px; font-weight:bold; color:#ffffff;'>$certstatus</div></div>" . $details['name'] . "</div>"; |
|
362 | + $retval = "<div class='ca-summary' ><div style='position:absolute; right: 0px; width:20px; height:20px; background-color:#0000ff; border-radius:10px; text-align: center;'><div style='padding-top:3px; font-weight:bold; color:#ffffff;'>$certstatus</div></div>".$details['name']."</div>"; |
|
363 | 363 | \core\common\Entity::outOfThePotatoes(); |
364 | 364 | return $retval; |
365 | 365 | } |
@@ -372,7 +372,7 @@ discard block |
||
372 | 372 | */ |
373 | 373 | public function previewImageinHTML($imageReference) { |
374 | 374 | \core\common\Entity::intoThePotatoes(); |
375 | - $retval = "<img style='max-width:150px' src='inc/filepreview.php?id=" . $imageReference . "' alt='" . _("Preview of logo file") . "'/>"; |
|
375 | + $retval = "<img style='max-width:150px' src='inc/filepreview.php?id=".$imageReference."' alt='"._("Preview of logo file")."'/>"; |
|
376 | 376 | \core\common\Entity::outOfThePotatoes(); |
377 | 377 | return $retval; |
378 | 378 | } |
@@ -389,13 +389,13 @@ discard block |
||
389 | 389 | $ref = $validator->databaseReference($fileReference); |
390 | 390 | $fileBlob = UIElements::getBlobFromDB($ref['table'], $ref['rowindex'], FALSE); |
391 | 391 | if (is_bool($fileBlob)) { // we didn't actually get a file! |
392 | - $retval = "<div class='ca-summary'>" . _("There was an error while retrieving the file from the database!") . "</div>"; |
|
392 | + $retval = "<div class='ca-summary'>"._("There was an error while retrieving the file from the database!")."</div>"; |
|
393 | 393 | \core\common\Entity::outOfThePotatoes(); |
394 | 394 | return $retval; |
395 | 395 | } |
396 | 396 | $decodedFileBlob = base64_decode($fileBlob); |
397 | 397 | $fileinfo = new \finfo(); |
398 | - $retval = "<div class='ca-summary'>" . _("File exists") . " (" . $fileinfo->buffer($decodedFileBlob, FILEINFO_MIME_TYPE) . ", " . $this->displaySize(strlen($decodedFileBlob)) . ")<br/><a href='inc/filepreview.php?id=$fileReference'>" . _("Preview") . "</a></div>"; |
|
398 | + $retval = "<div class='ca-summary'>"._("File exists")." (".$fileinfo->buffer($decodedFileBlob, FILEINFO_MIME_TYPE).", ".$this->displaySize(strlen($decodedFileBlob)).")<br/><a href='inc/filepreview.php?id=$fileReference'>"._("Preview")."</a></div>"; |
|
399 | 399 | \core\common\Entity::outOfThePotatoes(); |
400 | 400 | return $retval; |
401 | 401 | } |
@@ -423,7 +423,7 @@ discard block |
||
423 | 423 | $retval .= "<tr><td>"; |
424 | 424 | } |
425 | 425 | $finalCaption = ($caption !== NULL ? $caption : $uiMessages[$level]['text']); |
426 | - $retval .= "<img class='icon' src='" . $uiMessages[$level]['icon'] . "' alt='" . $finalCaption . "' title='" . $finalCaption . "'/>"; |
|
426 | + $retval .= "<img class='icon' src='".$uiMessages[$level]['icon']."' alt='".$finalCaption."' title='".$finalCaption."'/>"; |
|
427 | 427 | if (!$omittabletags) { |
428 | 428 | $retval .= "</td><td>"; |
429 | 429 | } |
@@ -505,8 +505,8 @@ discard block |
||
505 | 505 | return ""; |
506 | 506 | } |
507 | 507 | |
508 | - $loggerInstance->debug(4, "Consortium logo is at: " . ROOT . "/web/resources/images/consortium_logo_large.png"); |
|
509 | - $logogd = imagecreatefrompng(ROOT . "/web/resources/images/consortium_logo_large.png"); |
|
508 | + $loggerInstance->debug(4, "Consortium logo is at: ".ROOT."/web/resources/images/consortium_logo_large.png"); |
|
509 | + $logogd = imagecreatefrompng(ROOT."/web/resources/images/consortium_logo_large.png"); |
|
510 | 510 | if ($logogd === FALSE) { // consortium logo is bogus; don't do anything |
511 | 511 | return ""; |
512 | 512 | } |
@@ -532,7 +532,7 @@ discard block |
||
532 | 532 | imagecolorallocate($whiteimage, 255, 255, 255); |
533 | 533 | // also make sure the initial placement is a multitude of 12; otherwise "two half" symbols might be affected |
534 | 534 | $targetplacementx = (int) ($symbolsize * round(($sizeinput[0] / 2 - ($targetwidth - $symbolsize + 1) / 2) / $symbolsize)); |
535 | - $targetplacementy = (int) ($symbolsize * round(($sizeinput[1] / 2 - ($targetheight - $symbolsize + 1 ) / 2) / $symbolsize)); |
|
535 | + $targetplacementy = (int) ($symbolsize * round(($sizeinput[1] / 2 - ($targetheight - $symbolsize + 1) / 2) / $symbolsize)); |
|
536 | 536 | imagecopyresized($inputgd, $whiteimage, $targetplacementx - $symbolsize, $targetplacementy - $symbolsize, 0, 0, $targetwidth + 2 * $symbolsize, $targetheight + 2 * $symbolsize, $targetwidth + 2 * $symbolsize, $targetheight + 2 * $symbolsize); |
537 | 537 | imagecopyresized($inputgd, $logogd, $targetplacementx, $targetplacementy, 0, 0, $targetwidth, $targetheight, $sizelogo[0], $sizelogo[1]); |
538 | 538 | ob_start(); |
@@ -579,9 +579,9 @@ discard block |
||
579 | 579 | $message = "Your configuration appears to be fine."; |
580 | 580 | break; |
581 | 581 | default: |
582 | - throw new Exception("The result code level " . $test->test_result['global'] . " is not defined!"); |
|
582 | + throw new Exception("The result code level ".$test->test_result['global']." is not defined!"); |
|
583 | 583 | } |
584 | - $out .= $this->boxFlexible($test->test_result['global'], "<br><strong>Test Summary</strong><br>" . $message . "<br>See below for details<br><hr>"); |
|
584 | + $out .= $this->boxFlexible($test->test_result['global'], "<br><strong>Test Summary</strong><br>".$message."<br>See below for details<br><hr>"); |
|
585 | 585 | foreach ($test->out as $testValue) { |
586 | 586 | foreach ($testValue as $o) { |
587 | 587 | $out .= $this->boxFlexible($o['level'], $o['message']); |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | exec("openssl ocsp -reqin $derFilePath -req_text", $output, $retval); |
98 | 98 | |
99 | 99 | if ($retval !== 0) { |
100 | - throw new Exception("openssl ocsp returned a non-zero return code. The DER data is probably bogus. B64 representation of DER data is: " . base64_encode($ocspRequestDer)); |
|
100 | + throw new Exception("openssl ocsp returned a non-zero return code. The DER data is probably bogus. B64 representation of DER data is: ".base64_encode($ocspRequestDer)); |
|
101 | 101 | } |
102 | 102 | if ($output === NULL) { // this can't really happen, but makes Scrutinizer happier |
103 | 103 | $output = []; |
@@ -127,14 +127,14 @@ discard block |
||
127 | 127 | * back (if we have it). |
128 | 128 | */ |
129 | 129 | if (strcasecmp($nameHash, OUR_NAME_HASH) != 0 || strcasecmp($keyHash, OUR_KEY_HASH) != 0) { |
130 | - throw new Exception("The request is about a different Issuer name / public key. Expected vs. actual name hash: " . OUR_NAME_HASH . " / $nameHash, " . OUR_KEY_HASH . " / $keyHash"); |
|
130 | + throw new Exception("The request is about a different Issuer name / public key. Expected vs. actual name hash: ".OUR_NAME_HASH." / $nameHash, ".OUR_KEY_HASH." / $keyHash"); |
|
131 | 131 | } |
132 | -error_log("base64-encoded request: " . base64_encode($ocspRequestDer)); |
|
132 | +error_log("base64-encoded request: ".base64_encode($ocspRequestDer)); |
|
133 | 133 | |
134 | -$response = fopen(__DIR__ . "/statements/" . $serialHex . ".der", "r"); |
|
134 | +$response = fopen(__DIR__."/statements/".$serialHex.".der", "r"); |
|
135 | 135 | if ($response === FALSE) { // not found |
136 | 136 | // first lets load the unauthorised response, which is the default reply |
137 | - $unauthResponse = fopen(__DIR__ . "/statements/UNAUTHORIZED.der", "r"); |
|
137 | + $unauthResponse = fopen(__DIR__."/statements/UNAUTHORIZED.der", "r"); |
|
138 | 138 | if ($unauthResponse === FALSE) { |
139 | 139 | throw new Exception("Unable to open our canned UNAUTHORIZED response!"); |
140 | 140 | } |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | |
177 | 177 | $responseContent = fread($response, 1000000); |
178 | 178 | fclose($response); |
179 | -error_log("base64-encoded response: " . base64_encode($responseContent)); |
|
179 | +error_log("base64-encoded response: ".base64_encode($responseContent)); |
|
180 | 180 | header('Content-Type: application/ocsp-response'); |
181 | -header('Content-Length: ' . strlen($responseContent)); |
|
181 | +header('Content-Length: '.strlen($responseContent)); |
|
182 | 182 | echo $responseContent; |
@@ -49,14 +49,14 @@ |
||
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) { |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | ?> |
31 | 31 | <?php |
32 | 32 | |
33 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
33 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
34 | 34 | |
35 | 35 | $auth = new \web\lib\admin\Authentication(); |
36 | 36 | $deco = new \web\lib\admin\PageDecoration(); |
@@ -41,11 +41,11 @@ discard block |
||
41 | 41 | $auth->authenticate(); |
42 | 42 | |
43 | 43 | if (!isset($_GET['token'])) { |
44 | - $elements->errorPage(_("Error creating new IdP binding!"),_("This page needs to be called with a valid invitation token!")); |
|
44 | + $elements->errorPage(_("Error creating new IdP binding!"), _("This page needs to be called with a valid invitation token!")); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | if (\config\ConfAssistant::CONSORTIUM['selfservice_registration'] === NULL && $_GET['token'] == "SELF-REGISTER") { |
48 | - $elements->errorPage(_("Error creating new IdP binding!"),_("You tried to register in self-service, but this deployment does not allow self-service!")); |
|
48 | + $elements->errorPage(_("Error creating new IdP binding!"), _("You tried to register in self-service, but this deployment does not allow self-service!")); |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | switch ($_GET['token']) { |
@@ -55,22 +55,22 @@ discard block |
||
55 | 55 | $federation = \config\ConfAssistant::CONSORTIUM['selfservice_registration']; |
56 | 56 | break; |
57 | 57 | default: |
58 | - $token = $validator->token(filter_input(INPUT_GET,'token',FILTER_SANITIZE_STRING)); |
|
58 | + $token = $validator->token(filter_input(INPUT_GET, 'token', FILTER_SANITIZE_STRING)); |
|
59 | 59 | $checkval = $usermgmt->checkTokenValidity($token); |
60 | 60 | } |
61 | 61 | |
62 | 62 | if ($checkval < 0) { |
63 | 63 | echo $deco->pageheader(_("Error creating new IdP binding!"), "ADMIN-IDP"); |
64 | - echo "<h1>" . _("Error creating new IdP binding!") . "</h1>"; |
|
64 | + echo "<h1>"._("Error creating new IdP binding!")."</h1>"; |
|
65 | 65 | switch ($checkval) { |
66 | 66 | case \core\UserManagement::TOKENSTATUS_FAIL_ALREADYCONSUMED: |
67 | - echo "<p>" . sprintf(_("Sorry... this token has already been used. The %s is already created. If you got the invitation from a mailing list, probably someone else used it before you."), $elements->nomenclatureInst) . "</p>"; |
|
67 | + echo "<p>".sprintf(_("Sorry... this token has already been used. The %s is already created. If you got the invitation from a mailing list, probably someone else used it before you."), $elements->nomenclatureInst)."</p>"; |
|
68 | 68 | break; |
69 | 69 | case \core\UserManagement::TOKENSTATUS_FAIL_EXPIRED: |
70 | - echo "<p>" . sprintf(_("Sorry... this token has expired. Invitation tokens are valid for 24 hours. The %s administrator can create a new one for you."), $elements->nomenclatureFed) . "</p>"; |
|
70 | + echo "<p>".sprintf(_("Sorry... this token has expired. Invitation tokens are valid for 24 hours. The %s administrator can create a new one for you."), $elements->nomenclatureFed)."</p>"; |
|
71 | 71 | break; |
72 | 72 | default: |
73 | - echo "<p>" . _("Sorry... you have come to the enrollment page without a valid token. Are you a nasty person? If not, you should go to <a href='overview_user.php'>your profile page</a> instead.") . "</p>"; |
|
73 | + echo "<p>"._("Sorry... you have come to the enrollment page without a valid token. Are you a nasty person? If not, you should go to <a href='overview_user.php'>your profile page</a> instead.")."</p>"; |
|
74 | 74 | } |
75 | 75 | echo $deco->footer(); |
76 | 76 | throw new Exception("Terminating because something is wrong with the token we received."); |
@@ -85,12 +85,12 @@ discard block |
||
85 | 85 | case "SELF-REGISTER": |
86 | 86 | $fed = new \core\Federation($federation); |
87 | 87 | $newidp = new \core\IdP($fed->newIdP(core\IdP::TYPE_IDPSP, $user, "FED", "SELFSERVICE")); |
88 | - $loggerInstance->writeAudit($user, "MOD", "IdP " . $newidp->identifier . " - selfservice registration"); |
|
88 | + $loggerInstance->writeAudit($user, "MOD", "IdP ".$newidp->identifier." - selfservice registration"); |
|
89 | 89 | break; |
90 | 90 | default: |
91 | 91 | $newidp = $usermgmt->createIdPFromToken($token, $user); |
92 | 92 | $usermgmt->invalidateToken($token); |
93 | - $loggerInstance->writeAudit($user, "MOD", "IdP " . $newidp->identifier . " - Token used and invalidated"); |
|
93 | + $loggerInstance->writeAudit($user, "MOD", "IdP ".$newidp->identifier." - Token used and invalidated"); |
|
94 | 94 | break; |
95 | 95 | } |
96 | 96 |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | * <base_url>/copyright.php after deploying the software |
20 | 20 | */ |
21 | 21 | |
22 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
22 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
23 | 23 | |
24 | 24 | $loggerInstance = new \core\common\Logging(); |
25 | 25 | $deco = new \web\lib\admin\PageDecoration(); |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | |
30 | 30 | $user = new \core\User($_SESSION['user']); |
31 | 31 | if (!isset($_POST['submitbutton']) || $_POST['submitbutton'] != web\lib\common\FormElements::BUTTON_SAVE) { // what are we supposed to do? |
32 | - echo "<p>" . _("The page was called with insufficient data. Please report this as an error.") . "</p>"; |
|
32 | + echo "<p>"._("The page was called with insufficient data. Please report this as an error.")."</p>"; |
|
33 | 33 | echo $deco->footer(); |
34 | 34 | exit(0); |
35 | 35 | } |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | if (isset($_POST['option'])) { |
47 | 47 | foreach ($_POST['option'] as $opt_id => $optname) { |
48 | 48 | if ($optname == "user:fedadmin") { |
49 | - echo "Security violation: user tried to make himself " . \config\ConfAssistant::CONSORTIUM['nomenclature_federation'] . " administrator!"; |
|
49 | + echo "Security violation: user tried to make himself ".\config\ConfAssistant::CONSORTIUM['nomenclature_federation']." administrator!"; |
|
50 | 50 | exit(1); |
51 | 51 | } |
52 | 52 | } |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | */ |
21 | 21 | ?> |
22 | 22 | <?php |
23 | -require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/config/_config.php"; |
|
23 | +require_once dirname(dirname(dirname(dirname(__FILE__))))."/config/_config.php"; |
|
24 | 24 | |
25 | 25 | $auth = new \web\lib\admin\Authentication(); |
26 | 26 | $languageInstance = new \core\common\Language(); |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | $ownermgmt = new \core\UserManagement(); |
83 | 83 | $ownermgmt->addAdminToIdp($my_inst, $_SESSION['user']); |
84 | 84 | } else { |
85 | - echo "Fatal Error: you wanted to take control over an " . \config\ConfAssistant::CONSORTIUM['nomenclature_institution'] . ", but are not a " . \config\ConfAssistant::CONSORTIUM['nomenclature_federation'] . " operator!"; |
|
85 | + echo "Fatal Error: you wanted to take control over an ".\config\ConfAssistant::CONSORTIUM['nomenclature_institution'].", but are not a ".\config\ConfAssistant::CONSORTIUM['nomenclature_federation']." operator!"; |
|
86 | 86 | exit(1); |
87 | 87 | } |
88 | 88 | break; |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | default: |
119 | 119 | throw new Exception("Error: unknown encryption status of invitation!?!"); |
120 | 120 | } |
121 | - echo $uiElements->boxRemark(ngettext("The invitation email was sent successfully.", "All invitation emails were sent successfully.", $counter) . " " . $cryptText, _("Sent successfully.")); |
|
121 | + echo $uiElements->boxRemark(ngettext("The invitation email was sent successfully.", "All invitation emails were sent successfully.", $counter)." ".$cryptText, _("Sent successfully.")); |
|
122 | 122 | break; |
123 | 123 | case "FAILURE": |
124 | 124 | echo $uiElements->boxError(_("No invitation email could be sent!"), _("Sending failure!")); |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | default: |
139 | 139 | throw new Exception("Error: unknown encryption status of invitation!?!"); |
140 | 140 | } |
141 | - echo $uiElements->boxWarning(sprintf(_("Some invitation emails were sent successfully (%s in total), the others failed."), $counter) . " " . $cryptText, _("Partial success.")); |
|
141 | + echo $uiElements->boxWarning(sprintf(_("Some invitation emails were sent successfully (%s in total), the others failed."), $counter)." ".$cryptText, _("Partial success.")); |
|
142 | 142 | break; |
143 | 143 | case "INVALIDSYNTAX": |
144 | 144 | echo $uiElements->boxError(_("The invitation email address was malformed, no invitation was sent!"), _("The invitation email address was malformed, no invitation was sent!")); |
@@ -186,9 +186,9 @@ discard block |
||
186 | 186 | |
187 | 187 | echo "</td> |
188 | 188 | <td> |
189 | - <form action='inc/manageAdmins.inc.php?inst_id=" . $my_inst->identifier . "' method='post' " . ( $oneowner['ID'] != $_SESSION['user'] ? "onsubmit='popupRedirectWindow(this); return false;'" : "" ) . " accept-charset='UTF-8'> |
|
190 | - <input type='hidden' name='admin_id' value='" . $oneowner['ID'] . "'></input> |
|
191 | - <button type='submit' name='submitbutton' class='delete' value='" . web\lib\common\FormElements::BUTTON_DELETE . "'>" . _("Delete Administrator") . "</button> |
|
189 | + <form action='inc/manageAdmins.inc.php?inst_id=" . $my_inst->identifier."' method='post' ".($oneowner['ID'] != $_SESSION['user'] ? "onsubmit='popupRedirectWindow(this); return false;'" : "")." accept-charset='UTF-8'> |
|
190 | + <input type='hidden' name='admin_id' value='" . $oneowner['ID']."'></input> |
|
191 | + <button type='submit' name='submitbutton' class='delete' value='" . web\lib\common\FormElements::BUTTON_DELETE."'>"._("Delete Administrator")."</button> |
|
192 | 192 | </form> |
193 | 193 | </td> |
194 | 194 | </tr>"; |
@@ -202,10 +202,10 @@ discard block |
||
202 | 202 | $loggerInstance = new \core\common\Logging(); |
203 | 203 | $loggerInstance->debug(4, "Displaying pending invitations for $my_inst->identifier.\n"); |
204 | 204 | if (count($pending_invites) > 0) { |
205 | - echo "<strong>" . _("Pending invitations for this IdP") . "</strong>"; |
|
205 | + echo "<strong>"._("Pending invitations for this IdP")."</strong>"; |
|
206 | 206 | echo "<table>"; |
207 | 207 | foreach ($pending_invites as $invitee) { |
208 | - echo "<tr><td>" . $invitee['mail'] . "</td><td>".sprintf(_("(expires %s)"), $invitee['expiry'])."</td></tr>"; |
|
208 | + echo "<tr><td>".$invitee['mail']."</td><td>".sprintf(_("(expires %s)"), $invitee['expiry'])."</td></tr>"; |
|
209 | 209 | } |
210 | 210 | echo "</table>"; |
211 | 211 | } |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | |
228 | 228 | if (!$is_admin_himself) { |
229 | 229 | echo "<form action='inc/manageAdmins.inc.php?inst_id=$my_inst->identifier' method='post' onsubmit='popupRedirectWindow(this); return false;' accept-charset='UTF-8'> |
230 | - <button type='submit' name='submitbutton' value='" . web\lib\common\FormElements::BUTTON_TAKECONTROL . "'>" . sprintf(_("Take control of this %s"), $uiElements->nomenclatureInst) . "</button> |
|
230 | + <button type='submit' name='submitbutton' value='".web\lib\common\FormElements::BUTTON_TAKECONTROL."'>".sprintf(_("Take control of this %s"), $uiElements->nomenclatureInst)."</button> |
|
231 | 231 | </form>"; |
232 | 232 | } |
233 | 233 | } |
@@ -62,7 +62,7 @@ |
||
62 | 62 | they are from the same user group. You are not allowed to share them to an unlimited |
63 | 63 | audience (e.g. on a publicly accessible web server).</li> |
64 | 64 | <li>If You are an eduroam Identity Provider administrator, you are allowed to download and pass on the Installers to |
65 | -your own <?php echo \config\ConfAssistant::CONSORTIUM['nomenclature_institution'];?> end users, e.g. on the support web pages of your <?php echo \config\ConfAssistant::CONSORTIUM['nomenclature_institution'];?>, on Welcome Package CDs or USB sticks, etc.</li> |
|
65 | +your own <?php echo \config\ConfAssistant::CONSORTIUM['nomenclature_institution']; ?> end users, e.g. on the support web pages of your <?php echo \config\ConfAssistant::CONSORTIUM['nomenclature_institution']; ?>, on Welcome Package CDs or USB sticks, etc.</li> |
|
66 | 66 | <li>If You are a third-party not affiliated with eduroam, you are only allowed to download and pass on |
67 | 67 | the Metadata and/or the Installers after having received written permission by the eduroam Operations team.</li> |
68 | 68 | </ul> |