@@ -27,7 +27,7 @@ |
||
27 | 27 | ?> |
28 | 28 | |
29 | 29 | <?php |
30 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
30 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
31 | 31 | |
32 | 32 | $deco = new \web\lib\admin\PageDecoration(); |
33 | 33 | $validator = new \web\lib\common\InputValidation(); |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | ?> |
30 | 30 | |
31 | 31 | <?php |
32 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
32 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
33 | 33 | |
34 | 34 | $deco = new \web\lib\admin\PageDecoration(); |
35 | 35 | $validator = new \web\lib\common\InputValidation(); |
@@ -101,13 +101,13 @@ discard block |
||
101 | 101 | } |
102 | 102 | } |
103 | 103 | |
104 | -$newProfileName = $validator->string($_POST['new_profile'], true); |
|
104 | +$newProfileName = $validator->string($_POST['new_profile'], true); |
|
105 | 105 | $origProfileName = $validator->string($_POST['orig_profile_name'], true); |
106 | 106 | $handle = \core\DBConnection::handle("INST"); |
107 | 107 | |
108 | 108 | $result = runSelect($my_profile->identifier, $fields, 'profile', $handle); |
109 | 109 | $row = $result->fetch_assoc(); |
110 | -$row['showtime']= 0; |
|
110 | +$row['showtime'] = 0; |
|
111 | 111 | $row['preference'] = 1000; |
112 | 112 | copyRow($row, $fields, 'profile', $handle); |
113 | 113 | $newProfileId = $handle->lastID(); |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | \core\common\Entity::intoThePotatoes(); |
138 | 138 | $wizard = new \web\lib\admin\Wizard($wizardMode); |
139 | 139 | $retval = "<fieldset class='option_container_map'> |
140 | - <legend><strong>" . _("Location") . "</strong></legend>"; |
|
140 | + <legend><strong>" . _("Location")."</strong></legend>"; |
|
141 | 141 | $retval .= $wizard->displayHelp("location"); |
142 | 142 | if ($additional) { |
143 | 143 | $retval .= _("You can enter an <strong>additional</strong> location here. You can see the already defined locations in the 'General Information' field."); |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | */ |
155 | 155 | protected function htmlPostEdit($allowDirectInput) { |
156 | 156 | \core\common\Entity::intoThePotatoes(); |
157 | - $retval = "<br/>" . _("Latitude:") . " <input style='width:80px' name='geo_lat' id='geo_lat' " .($allowDirectInput ? "": "readonly"). ">" . _("Longitude:") . " <input name='geo_long' id='geo_long' style='width:80px' " .($allowDirectInput ? "": "readonly"). "></fieldset>"; |
|
157 | + $retval = "<br/>"._("Latitude:")." <input style='width:80px' name='geo_lat' id='geo_lat' ".($allowDirectInput ? "" : "readonly").">"._("Longitude:")." <input name='geo_long' id='geo_long' style='width:80px' ".($allowDirectInput ? "" : "readonly")."></fieldset>"; |
|
158 | 158 | \core\common\Entity::outOfThePotatoes(); |
159 | 159 | return $retval; |
160 | 160 | } |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | * License: see the web/copyright.inc.php file in the file structure or |
20 | 20 | * <base_url>/copyright.php after deploying the software |
21 | 21 | */ |
22 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
22 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
23 | 23 | $languageInstance = new \core\common\Language(); |
24 | 24 | $languageInstance->setTextDomain("diagnostics"); |
25 | 25 | $loggerInstance = new \core\common\Logging(); |
@@ -63,47 +63,47 @@ discard block |
||
63 | 63 | $select = "<div id='sp_abuse_problem'> |
64 | 64 | <select style='margin-left: 0px;' id='select_sp_problem'>"; |
65 | 65 | foreach ($sp_problem as $pname => $pdesc) { |
66 | - $select = $select . "<option value='$pname'>$pdesc</option>\n"; |
|
66 | + $select = $select."<option value='$pname'>$pdesc</option>\n"; |
|
67 | 67 | } |
68 | - $select = $select . "</select></div>"; |
|
68 | + $select = $select."</select></div>"; |
|
69 | 69 | $res = " |
70 | 70 | <input type='hidden' name='token' id='token' value=''> |
71 | 71 | <input type='hidden' name='tests_result' id='tests_result' value=''> |
72 | 72 | <table id='sp_questions'> |
73 | 73 | <tr id='sp_problem_selector'> |
74 | - <td>" . _("Select your problem") . "</td> |
|
74 | + <td>" . _("Select your problem")."</td> |
|
75 | 75 | <td>$select</td> |
76 | 76 | </tr> |
77 | 77 | <tr> |
78 | - <td>" . _("What is the realm of the IdP in question?") . "</td> |
|
78 | + <td>"._("What is the realm of the IdP in question?")."</td> |
|
79 | 79 | <td> |
80 | 80 | <input type='text' name='admin_realm' id='admin_realm' value='$realmFromURL'> |
81 | - <button class='diag_button' id='realm_in_db_admin' style='display: none;' accesskey='R' type='button'>" . |
|
82 | - _("Check this realm") . |
|
81 | + <button class='diag_button' id='realm_in_db_admin' style='display: none;' accesskey='R' type='button'>". |
|
82 | + _("Check this realm"). |
|
83 | 83 | "</button> |
84 | 84 | <div id='tests_info_area'></div> |
85 | 85 | </td> |
86 | 86 | </tr> |
87 | 87 | <tr id='outer_user_row' class='hidden_row'> |
88 | - <td>" . _("Do you prefer to use a specific outer identity for diagnostics test?") . "</td> |
|
88 | + <td>" . _("Do you prefer to use a specific outer identity for diagnostics test?")."</td> |
|
89 | 89 | <td> <input type='text' name='outer_user' id='outer_user' value=''><span id='outer_user_realm'></span> |
90 | 90 | </tr> |
91 | 91 | <tr class='hidden_row'> |
92 | - <td>" . _("What is the authentication timestamp of the user session in question?") . "</td> |
|
92 | + <td>" . _("What is the authentication timestamp of the user session in question?")."</td> |
|
93 | 93 | <td><input type='text' id='timestamp' name='timestamp'> |
94 | 94 | <div id='datepicker'></div> |
95 | 95 | </td> |
96 | 96 | </tr> |
97 | 97 | <tr class='hidden_row'> |
98 | - <td>" . _("What is the MAC address of the user session in question?") . "</td> |
|
98 | + <td>" . _("What is the MAC address of the user session in question?")."</td> |
|
99 | 99 | <td><input type='text' id='mac' name='mac'></td> |
100 | 100 | </tr> |
101 | 101 | <tr class='hidden_row'> |
102 | - <td>" . _("Additional comments") . "</td> |
|
102 | + <td>" . _("Additional comments")."</td> |
|
103 | 103 | <td><textarea id='freetext' name='freetext' cols='60' rows='5'></textarea></td> |
104 | 104 | </tr> |
105 | 105 | <tr class='hidden_row'> |
106 | - <td>" . _("Please specify an email address on which the IdP can contact you") . "</td> |
|
106 | + <td>" . _("Please specify an email address on which the IdP can contact you")."</td> |
|
107 | 107 | <td><input type='text' id='email' name='email'></td> |
108 | 108 | </tr> |
109 | 109 | <tr> |
@@ -111,82 +111,82 @@ discard block |
||
111 | 111 | <td></td> |
112 | 112 | </tr> |
113 | 113 | <tr class='hidden_row' id='send_query_to_idp'> |
114 | - <td>" . _("Now you can send your query") . "</td> |
|
115 | - <td><button type='submit' class='diag_button' id='submit_idp_query' name='go'>" . _("Send") . "</button></td> |
|
114 | + <td>" . _("Now you can send your query")."</td> |
|
115 | + <td><button type='submit' class='diag_button' id='submit_idp_query' name='go'>" . _("Send")."</button></td> |
|
116 | 116 | </tr> |
117 | 117 | </table>"; |
118 | - $res = $res . $javascript; |
|
118 | + $res = $res.$javascript; |
|
119 | 119 | } |
120 | 120 | if ($queryType == 'idp') { |
121 | 121 | $select = "<div id='idp_reported_problem' style='display:;'> |
122 | 122 | <select style='margin-left:0px;' id='select_idp_problem'>"; |
123 | 123 | foreach ($idp_problem as $pname => $pdesc) { |
124 | - $select = $select . "<option value='$pname'>$pdesc</option>\n"; |
|
124 | + $select = $select."<option value='$pname'>$pdesc</option>\n"; |
|
125 | 125 | } |
126 | - $select = $select . "</select></div>"; |
|
126 | + $select = $select."</select></div>"; |
|
127 | 127 | $res = " |
128 | 128 | <table id='idp_questions'> |
129 | 129 | <tr> |
130 | - <td>" . _("Select your problem") . "</td> |
|
130 | + <td>" . _("Select your problem")."</td> |
|
131 | 131 | <td>$select</td> |
132 | 132 | </tr> |
133 | 133 | <tr> |
134 | - <td>" . _("Identify the SP by one of following means") . "</td> |
|
134 | + <td>"._("Identify the SP by one of following means")."</td> |
|
135 | 135 | <td></td> |
136 | 136 | </tr> |
137 | 137 | <tr id='by_opname'> |
138 | - <td>" . _("SP Operator-Name attribute") . "</td> |
|
138 | + <td>" . _("SP Operator-Name attribute")."</td> |
|
139 | 139 | <td><input type='text' id='opname' name='opname' value=''></td> |
140 | 140 | </tr> |
141 | 141 | <tr id='spmanually'> |
142 | - <td>" . _("Select the SP manually:") . "</td> |
|
142 | + <td>" . _("Select the SP manually:")."</td> |
|
143 | 143 | <td> |
144 | 144 | <div id='select_asp_country'><a href='' id='asp_countries_list'> |
145 | - <span id='opnameselect'>" . _("click to select country and organisation") . "</a></span> |
|
145 | + <span id='opnameselect'>" . _("click to select country and organisation")."</a></span> |
|
146 | 146 | </div> |
147 | 147 | <div id='select_asp_area'></div> |
148 | 148 | </td> |
149 | 149 | </tr> |
150 | 150 | <tr id='asp_desc' style='display: none;'> |
151 | - <td>" . _("or") . ' ' . _("at least describe the SP location") . "</td> |
|
151 | + <td>" . _("or").' '._("at least describe the SP location")."</td> |
|
152 | 152 | <td><input type='text' id='asp_location' name='asp_location' value=''></td> |
153 | 153 | </tr> |
154 | 154 | <tr> |
155 | - <td>" . _("What is the outer ID of the user session in question?") . "</td> |
|
155 | + <td>" . _("What is the outer ID of the user session in question?")."</td> |
|
156 | 156 | <td><input type='text' id='outer_id' name='outer_id' value=''></td> |
157 | 157 | </tr> |
158 | 158 | <tr> |
159 | - <td>" . _("What is the authentication timestamp of the user session in question?") . "</td> |
|
159 | + <td>" . _("What is the authentication timestamp of the user session in question?")."</td> |
|
160 | 160 | <td> |
161 | 161 | <input type='text' id='timestamp' name='timestamp'> |
162 | 162 | <div id='datepicker'></div> |
163 | 163 | </td> |
164 | 164 | </tr> |
165 | 165 | <tr> |
166 | - <td>" . _("What is the MAC address of the user session in question?") . "</td> |
|
166 | + <td>" . _("What is the MAC address of the user session in question?")."</td> |
|
167 | 167 | <td><input type='text' id='mac' name='mac'></td> |
168 | 168 | </tr> |
169 | 169 | <tr> |
170 | - <td>" . _("Additional comments about the problem") . "</td> |
|
170 | + <td>" . _("Additional comments about the problem")."</td> |
|
171 | 171 | <td><textarea id='freetext' name='freetext' cols='60' rows='5'></textarea></td> |
172 | 172 | </tr> |
173 | 173 | <tr> |
174 | - <td>" . _("Do you have any contact details by which the user wishes to be contacted by the SP?") . "</td> |
|
174 | + <td>" . _("Do you have any contact details by which the user wishes to be contacted by the SP?")."</td> |
|
175 | 175 | <td><textarea id='c_details' name='c_details' cols='60' rows='5'></textarea></td> |
176 | 176 | </tr> |
177 | 177 | <tr> |
178 | - <td>" . _("Please specify an email address on which the SP can contact you") . "</td> |
|
178 | + <td>" . _("Please specify an email address on which the SP can contact you")."</td> |
|
179 | 179 | <td><input type='text' id='email' name='email'></td> |
180 | 180 | </tr> |
181 | 181 | <tr class='hidden_row' id='send_query_to_sp'> |
182 | - <td>" . _("Now you can send your query") . "</td> |
|
183 | - <td><button type='submit' class='diag_button' id='submit_sp_query' name='go'>" . _("Send") . "</button></td> |
|
182 | + <td>" . _("Now you can send your query")."</td> |
|
183 | + <td><button type='submit' class='diag_button' id='submit_sp_query' name='go'>" . _("Send")."</button></td> |
|
184 | 184 | </tr> |
185 | 185 | </table>"; |
186 | - $res = $res . $javascript; |
|
186 | + $res = $res.$javascript; |
|
187 | 187 | } |
188 | 188 | if ($queryType == 'idp_send' || $queryType == 'sp_send') { |
189 | - include_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
189 | + include_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
190 | 190 | $cat = new \core\CAT(); |
191 | 191 | $returnArray = array(); |
192 | 192 | if (count((array) $o) > 0) { |
@@ -195,8 +195,8 @@ discard block |
||
195 | 195 | switch ($key) { |
196 | 196 | case 'realm': |
197 | 197 | $pos = strpos($value, '@'); |
198 | - if ($pos !== FALSE ) { |
|
199 | - $value = substr($value, $pos+1); |
|
198 | + if ($pos !== FALSE) { |
|
199 | + $value = substr($value, $pos + 1); |
|
200 | 200 | } |
201 | 201 | case 'email': |
202 | 202 | $returnArray[$key] = filter_var($value, FILTER_VALIDATE_EMAIL); |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | $mail = \core\common\OutsideComm::mailHandle(); |
238 | 238 | $emails = ['[email protected]']; |
239 | 239 | //$emails = explode(',', $returnArray['idpcontact']); |
240 | - $mail->FromName = \config\Master::APPEARANCE['productname'] . " Notification System"; |
|
240 | + $mail->FromName = \config\Master::APPEARANCE['productname']." Notification System"; |
|
241 | 241 | foreach ($emails as $email) { |
242 | 242 | $mail->addAddress($email); |
243 | 243 | } |
@@ -247,11 +247,11 @@ discard block |
||
247 | 247 | } else { |
248 | 248 | $link = 'http://'; |
249 | 249 | } |
250 | - $link .= $_SERVER['SERVER_NAME'] . \core\CAT::getRootUrlPath() . '/diag/show_realmcheck.php?token=' . $returnArray['token']; |
|
250 | + $link .= $_SERVER['SERVER_NAME'].\core\CAT::getRootUrlPath().'/diag/show_realmcheck.php?token='.$returnArray['token']; |
|
251 | 251 | $returnArray['testurl'] = $link; |
252 | 252 | $mail->Subject = _('Suspected a technical problem with the IdP'); |
253 | - $txt = _("We suspect a technical problem with the IdP handling the realm") . ' ' . |
|
254 | - $returnArray['realm'] . ".\n"; |
|
253 | + $txt = _("We suspect a technical problem with the IdP handling the realm").' '. |
|
254 | + $returnArray['realm'].".\n"; |
|
255 | 255 | $txt .= _("The CAT diagnostic test was run for this realm during reporting.\n"); |
256 | 256 | $txt .= _("The overall result was "); |
257 | 257 | if ($returnArray['tests_result'] == 0) { |
@@ -259,15 +259,15 @@ discard block |
||
259 | 259 | } else { |
260 | 260 | $txt .= _("failure"); |
261 | 261 | } |
262 | - $txt .= ".\n" . _("To see details go to "); |
|
262 | + $txt .= ".\n"._("To see details go to "); |
|
263 | 263 | $txt .= "$link\n\n"; |
264 | - $txt .= _("The reported problem details are as follows") . "\n"; |
|
265 | - $txt .= _("timestamp") . ": " . $returnArray['timestamp'] . "\n"; |
|
266 | - $txt .= _("client MAC address") . ": " . $returnArray['mac'] . "\n"; |
|
264 | + $txt .= _("The reported problem details are as follows")."\n"; |
|
265 | + $txt .= _("timestamp").": ".$returnArray['timestamp']."\n"; |
|
266 | + $txt .= _("client MAC address").": ".$returnArray['mac']."\n"; |
|
267 | 267 | if ($returnArray['freetext']) { |
268 | - $txt .= _("additional comments") . ': ' . $returnArray['freetext'] . "\n"; |
|
268 | + $txt .= _("additional comments").': '.$returnArray['freetext']."\n"; |
|
269 | 269 | } |
270 | - $txt .= "\n" . _("You can contact the incident reporter at") . ' ' . $returnArray['email']; |
|
270 | + $txt .= "\n"._("You can contact the incident reporter at").' '.$returnArray['email']; |
|
271 | 271 | |
272 | 272 | $mail->Body = $txt; |
273 | 273 | $sent = $mail->send(); |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | $telepath = new \core\diag\Telepath($givenRealm); |
109 | 109 | $outerUser = $telepath->getOuter(); |
110 | 110 | } |
111 | - $testsuite = new \core\diag\RADIUSTests($givenRealm, $outerUser . '@' . $givenRealm); |
|
111 | + $testsuite = new \core\diag\RADIUSTests($givenRealm, $outerUser.'@'.$givenRealm); |
|
112 | 112 | |
113 | 113 | $naptr = $rfc7585suite->relevantNAPTR(); |
114 | 114 | if ($naptr != \core\diag\RADIUSTests::RETVAL_NOTCONFIGURED && $naptr > 0) { |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | $json_data = json_encode($returnArray); |
207 | 207 | |
208 | 208 | if ($token) { |
209 | - $loggerInstance->debug(4, 'JSON data written to ' .$jsonDir.'/'.$token); |
|
209 | + $loggerInstance->debug(4, 'JSON data written to '.$jsonDir.'/'.$token); |
|
210 | 210 | file_put_contents($jsonDir.'/'.$token.'/realm', $json_data); |
211 | 211 | } |
212 | 212 | header("Content-type: application/json; utf-8"); |
@@ -332,7 +332,7 @@ discard block |
||
332 | 332 | // for now (no OpenRoaming client certs available) only run server-side tests |
333 | 333 | foreach ($listOfIPs as $oneIP) { |
334 | 334 | $connectionResult = $connectionTests->cApathCheck($oneIP); |
335 | - if ($connectionResult != \core\diag\AbstractTest::RETVAL_OK || ( isset($connectionTests->TLS_CA_checks_result['cert_oddity']) && count($connectionTests->TLS_CA_checks_result['cert_oddity']) > 0)) { |
|
335 | + if ($connectionResult != \core\diag\AbstractTest::RETVAL_OK || (isset($connectionTests->TLS_CA_checks_result['cert_oddity']) && count($connectionTests->TLS_CA_checks_result['cert_oddity']) > 0)) { |
|
336 | 336 | $allHostsOkay = FALSE; |
337 | 337 | } else { |
338 | 338 | $oneHostOkay = TRUE; |
@@ -486,7 +486,7 @@ discard block |
||
486 | 486 | // which is different from the outer username we put into installers |
487 | 487 | return $this->getAttributes("internal:checkuser_value")[0]['value']."@".$realm; |
488 | 488 | } |
489 | - if (count($this->getAttributes("internal:use_anon_outer")) > 0 && $this->getAttributes("internal:anon_local_value")[0]['value'] != NULL ) { |
|
489 | + if (count($this->getAttributes("internal:use_anon_outer")) > 0 && $this->getAttributes("internal:anon_local_value")[0]['value'] != NULL) { |
|
490 | 490 | // no special check username, but there is an anon outer ID for |
491 | 491 | // installers - so let's use that one |
492 | 492 | return $this->getAttributes("internal:anon_local_value")[0]['value']."@".$realm; |
@@ -642,7 +642,7 @@ discard block |
||
642 | 642 | } |
643 | 643 | |
644 | 644 | $monthlyList = []; |
645 | - $monthly = $this->frontendHandle->exec("SELECT downloads_user,device_id FROM downloads_history WHERE profile_id=? AND stat_date=DATE_FORMAT(NOW(),'%Y-%m-01')", "i", $this->identifier); |
|
645 | + $monthly = $this->frontendHandle->exec("SELECT downloads_user,device_id FROM downloads_history WHERE profile_id=? AND stat_date=DATE_FORMAT(NOW(),'%Y-%m-01')", "i", $this->identifier); |
|
646 | 646 | while ($statsQuery = mysqli_fetch_object(/** @scrutinizer ignore-type */ $monthly)) { |
647 | 647 | $monthlyList[$statsQuery->device_id] = $statsQuery->downloads_user; |
648 | 648 | } |
@@ -654,7 +654,7 @@ discard block |
||
654 | 654 | } |
655 | 655 | |
656 | 656 | \core\common\Entity::intoThePotatoes(); |
657 | - ksort($finalarray, SORT_STRING|SORT_FLAG_CASE); |
|
657 | + ksort($finalarray, SORT_STRING | SORT_FLAG_CASE); |
|
658 | 658 | \core\common\Entity::outOfThePotatoes(); |
659 | 659 | return $finalarray; |
660 | 660 | } |
@@ -964,7 +964,7 @@ discard block |
||
964 | 964 | $profileStatus = self::CERT_STATUS_NONE; |
965 | 965 | foreach ($rows as $row) { |
966 | 966 | $encodedCert = $row[0]; |
967 | - $tm = $x509->processCertificate(base64_decode($encodedCert))['full_details']['validTo_time_t']- time(); |
|
967 | + $tm = $x509->processCertificate(base64_decode($encodedCert))['full_details']['validTo_time_t'] - time(); |
|
968 | 968 | if ($tm < \config\ConfAssistant::CERT_WARNINGS['expiry_critical']) { |
969 | 969 | $certStatus = self::CERT_STATUS_ERROR; |
970 | 970 | } elseif ($tm < \config\ConfAssistant::CERT_WARNINGS['expiry_warning']) { |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | */ |
27 | 27 | ?> |
28 | 28 | <?php |
29 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
29 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
30 | 30 | |
31 | 31 | $auth = new \web\lib\admin\Authentication(); |
32 | 32 | $deco = new \web\lib\admin\PageDecoration(); |
@@ -82,9 +82,9 @@ discard block |
||
82 | 82 | echo '<br/>'; |
83 | 83 | echo _("In the 'Timestamp' column we show last update time."); |
84 | 84 | echo '<p/>'; |
85 | - echo _('To check eduroam database specification see') . |
|
86 | - ' <a target="_blank" href="https://monitor.eduroam.org/eduroam-database/v2/docs/eduroam-database-ver30112021.pdf">' . |
|
87 | - _('this document') . '</a>.<p/>'; |
|
85 | + echo _('To check eduroam database specification see'). |
|
86 | + ' <a target="_blank" href="https://monitor.eduroam.org/eduroam-database/v2/docs/eduroam-database-ver30112021.pdf">'. |
|
87 | + _('this document').'</a>.<p/>'; |
|
88 | 88 | echo _('If you cannot find your institution on this list it means that this institiution is not present in your upstream data.'); |
89 | 89 | echo '<p/>'; |
90 | 90 | $allAuthorizedFeds = $user->getAttributes("user:fedadmin"); |
@@ -93,11 +93,11 @@ discard block |
||
93 | 93 | ?> |
94 | 94 | |
95 | 95 | <select name="INST-list" id="INST-list"> |
96 | - <option value=""><?php echo _('---PLEASE CHOOSE---');?></option> |
|
96 | + <option value=""><?php echo _('---PLEASE CHOOSE---'); ?></option> |
|
97 | 97 | <?php |
98 | 98 | $instdata = array(); |
99 | 99 | foreach ($extInsts as $iid => $oneInst) { |
100 | - print '<option value="' . $iid . '">' . $oneInst['name'] . '</option>'; |
|
100 | + print '<option value="'.$iid.'">'.$oneInst['name'].'</option>'; |
|
101 | 101 | $instdata[$iid] = array(); |
102 | 102 | $instdata[$iid]['name'] = $oneInst['name']; |
103 | 103 | $instdata[$iid]['type'] = _('no data'); |
@@ -111,22 +111,22 @@ discard block |
||
111 | 111 | $contactdata = ''; |
112 | 112 | foreach ($oneInst['contacts'] as $oneContact) { |
113 | 113 | if ($contactdata != '') { |
114 | - $contactdata = $contactdata . '<br>'; |
|
114 | + $contactdata = $contactdata.'<br>'; |
|
115 | 115 | } |
116 | 116 | if ($oneContact['name']) { |
117 | - $contactdata = $contactdata . $oneContact['name']; |
|
117 | + $contactdata = $contactdata.$oneContact['name']; |
|
118 | 118 | } |
119 | 119 | if ($contactdata != '') { |
120 | - $contactdata = $contactdata . '<br>'; |
|
120 | + $contactdata = $contactdata.'<br>'; |
|
121 | 121 | } |
122 | 122 | if ($oneContact['mail']) { |
123 | - $contactdata = $contactdata . $oneContact['mail']; |
|
123 | + $contactdata = $contactdata.$oneContact['mail']; |
|
124 | 124 | } |
125 | 125 | if ($contactdata != '') { |
126 | - $contactdata = $contactdata . '<br>'; |
|
126 | + $contactdata = $contactdata.'<br>'; |
|
127 | 127 | } |
128 | 128 | if ($oneContact['phone']) { |
129 | - $contactdata = $contactdata . $oneContact['phone']; |
|
129 | + $contactdata = $contactdata.$oneContact['phone']; |
|
130 | 130 | } |
131 | 131 | } |
132 | 132 | if ($contactdata == '') { |
@@ -145,11 +145,11 @@ discard block |
||
145 | 145 | var instts = []; |
146 | 146 | <?php |
147 | 147 | foreach (array_keys($instdata) as $iid) { |
148 | - echo "instservers['" . $iid . "']='" . $instdata[$iid]['servers']. "';\n"; |
|
149 | - echo "instname['" . $iid . "']='" . $instdata[$iid]['name']. "';\n"; |
|
150 | - echo "insttype['" . $iid . "']='" . $instdata[$iid]['type']. "';\n"; |
|
151 | - echo "instcontact['" . $iid . "']='" . $instdata[$iid]['contacts']. "';\n"; |
|
152 | - echo "instts['" . $iid . "']='" . $instdata[$iid]['ts']. "';\n"; |
|
148 | + echo "instservers['".$iid."']='".$instdata[$iid]['servers']."';\n"; |
|
149 | + echo "instname['".$iid."']='".$instdata[$iid]['name']."';\n"; |
|
150 | + echo "insttype['".$iid."']='".$instdata[$iid]['type']."';\n"; |
|
151 | + echo "instcontact['".$iid."']='".$instdata[$iid]['contacts']."';\n"; |
|
152 | + echo "instts['".$iid."']='".$instdata[$iid]['ts']."';\n"; |
|
153 | 153 | } |
154 | 154 | ?> |
155 | 155 | $(document).ready(function(){ |
@@ -171,18 +171,18 @@ discard block |
||
171 | 171 | <div id="instdata_area"> |
172 | 172 | <table> |
173 | 173 | <tr><th align="left" width="350"> |
174 | - <?php echo _('Name');?> |
|
174 | + <?php echo _('Name'); ?> |
|
175 | 175 | </th><th align="left" width="100"> |
176 | - <?php echo _('Type');?> |
|
176 | + <?php echo _('Type'); ?> |
|
177 | 177 | </th> |
178 | 178 | <th align="left" width="200"> |
179 | - <?php echo _('Servers');?> |
|
179 | + <?php echo _('Servers'); ?> |
|
180 | 180 | </th> |
181 | 181 | <th align="left" width="200"> |
182 | - <?php echo _('Contact data');?> |
|
182 | + <?php echo _('Contact data'); ?> |
|
183 | 183 | </th> |
184 | 184 | <th align="left" width="100"> |
185 | - <?php echo _('Timestamp');?> |
|
185 | + <?php echo _('Timestamp'); ?> |
|
186 | 186 | </th> |
187 | 187 | </tr> |
188 | 188 | <tr id="toshow"></tr> |
@@ -35,10 +35,10 @@ discard block |
||
35 | 35 | public function __construct() |
36 | 36 | { |
37 | 37 | |
38 | - if ( \config\ConfAssistant::eduPKI['testing'] === true ) { |
|
39 | - $this->locationRaCert = ROOT . "/config/SilverbulletClientCerts/edupki-test-ra.pem"; |
|
40 | - $this->locationRaKey = ROOT . "/config/SilverbulletClientCerts/edupki-test-ra.clearkey"; |
|
41 | - $this->locationWebRoot = ROOT . "/config/SilverbulletClientCerts/eduPKI-webserver-root.pem"; |
|
38 | + if (\config\ConfAssistant::eduPKI['testing'] === true) { |
|
39 | + $this->locationRaCert = ROOT."/config/SilverbulletClientCerts/edupki-test-ra.pem"; |
|
40 | + $this->locationRaKey = ROOT."/config/SilverbulletClientCerts/edupki-test-ra.clearkey"; |
|
41 | + $this->locationWebRoot = ROOT."/config/SilverbulletClientCerts/eduPKI-webserver-root.pem"; |
|
42 | 42 | $this->eduPkiRaId = 700; |
43 | 43 | $this->eduPkiCertProfileBoth = "Radius Server SOAP"; |
44 | 44 | $this->eduPkiCertProfileIdp = "Radius Server SOAP"; |
@@ -47,9 +47,9 @@ discard block |
||
47 | 47 | $this->eduPkiEndpointPublic = "https://pki.edupki.org/edupki-test-ca/cgi-bin/pub/soap?wsdl=1"; |
48 | 48 | $this->eduPkiEndpointRa = "https://ra.edupki.org/edupki-test-ca/cgi-bin/ra/soap?wsdl=1"; |
49 | 49 | } else { |
50 | - $this->locationRaCert = ROOT . "/config/SilverbulletClientCerts/edupki-prod-ra.pem"; |
|
51 | - $this->locationRaKey = ROOT . "/config/SilverbulletClientCerts/edupki-prod-ra.clearkey"; |
|
52 | - $this->locationWebRoot = ROOT . "/config/SilverbulletClientCerts/eduPKI-webserver-root.pem"; |
|
50 | + $this->locationRaCert = ROOT."/config/SilverbulletClientCerts/edupki-prod-ra.pem"; |
|
51 | + $this->locationRaKey = ROOT."/config/SilverbulletClientCerts/edupki-prod-ra.clearkey"; |
|
52 | + $this->locationWebRoot = ROOT."/config/SilverbulletClientCerts/eduPKI-webserver-root.pem"; |
|
53 | 53 | $this->eduPkiRaId = 100; |
54 | 54 | $this->eduPkiCertProfileBoth = "eduroam IdP and SP"; |
55 | 55 | $this->eduPkiCertProfileIdp = "eduroam IdP"; |
@@ -63,13 +63,13 @@ discard block |
||
63 | 63 | parent::__construct(); |
64 | 64 | |
65 | 65 | if (stat($this->locationRaCert) === FALSE) { |
66 | - throw new Exception("RA operator PEM file not found: " . $this->locationRaCert); |
|
66 | + throw new Exception("RA operator PEM file not found: ".$this->locationRaCert); |
|
67 | 67 | } |
68 | 68 | if (stat($this->locationRaKey) === FALSE) { |
69 | - throw new Exception("RA operator private key file not found: " . $this->locationRaKey); |
|
69 | + throw new Exception("RA operator private key file not found: ".$this->locationRaKey); |
|
70 | 70 | } |
71 | 71 | if (stat($this->locationWebRoot) === FALSE) { |
72 | - throw new Exception("CA website root CA file not found: " . $this->locationWebRoot); |
|
72 | + throw new Exception("CA website root CA file not found: ".$this->locationWebRoot); |
|
73 | 73 | } |
74 | 74 | } |
75 | 75 | |
@@ -136,26 +136,26 @@ discard block |
||
136 | 136 | throw new Exception("Unexpected policies requested."); |
137 | 137 | } |
138 | 138 | $altArray = [# Array mit den Subject Alternative Names |
139 | - "email:" . $csr["USERMAIL"] |
|
139 | + "email:".$csr["USERMAIL"] |
|
140 | 140 | ]; |
141 | 141 | foreach ($csr["ALTNAMES"] as $oneAltName) { |
142 | 142 | if (!empty($oneAltName) && preg_match('/(?=^.{1,254}$)(^(?:(?!\d|-)[a-z0-9\-]{1,63}(?<!-)\.)+(?:[a-z]{2,})$)/i', $oneAltName) > 0) { |
143 | - $altArray[] = "DNS:" . $oneAltName; |
|
143 | + $altArray[] = "DNS:".$oneAltName; |
|
144 | 144 | } else { |
145 | - $altArray[] = "IP:" . $oneAltName; |
|
145 | + $altArray[] = "IP:".$oneAltName; |
|
146 | 146 | } |
147 | 147 | } |
148 | 148 | $soapPub = $this->initEduPKISoapSession("PUBLIC"); |
149 | 149 | $this->loggerInstance->debug(5, "FIRST ACTUAL SOAP REQUEST (Public, newRequest)!\n"); |
150 | - $this->loggerInstance->debug(5, "PARAM_1: " . $this->eduPkiRaId . "\n"); |
|
151 | - $this->loggerInstance->debug(5, "PARAM_2: " . $csr["CSR_STRING"] . "\n"); |
|
150 | + $this->loggerInstance->debug(5, "PARAM_1: ".$this->eduPkiRaId."\n"); |
|
151 | + $this->loggerInstance->debug(5, "PARAM_2: ".$csr["CSR_STRING"]."\n"); |
|
152 | 152 | $this->loggerInstance->debug(5, "PARAM_3: "); |
153 | 153 | $this->loggerInstance->debug(5, $altArray); |
154 | - $this->loggerInstance->debug(5, "PARAM_4: " . $profile . "\n"); |
|
155 | - $this->loggerInstance->debug(5, "PARAM_5: " . sha1("notused") . "\n"); |
|
156 | - $this->loggerInstance->debug(5, "PARAM_6: " . $csr["USERNAME"] . "\n"); |
|
157 | - $this->loggerInstance->debug(5, "PARAM_7: " . $csr["USERMAIL"] . "\n"); |
|
158 | - $this->loggerInstance->debug(5, "PARAM_8: " . ProfileSilverbullet::PRODUCTNAME . "\n"); |
|
154 | + $this->loggerInstance->debug(5, "PARAM_4: ".$profile."\n"); |
|
155 | + $this->loggerInstance->debug(5, "PARAM_5: ".sha1("notused")."\n"); |
|
156 | + $this->loggerInstance->debug(5, "PARAM_6: ".$csr["USERNAME"]."\n"); |
|
157 | + $this->loggerInstance->debug(5, "PARAM_7: ".$csr["USERMAIL"]."\n"); |
|
158 | + $this->loggerInstance->debug(5, "PARAM_8: ".ProfileSilverbullet::PRODUCTNAME."\n"); |
|
159 | 159 | $this->loggerInstance->debug(5, "PARAM_9: false\n"); |
160 | 160 | $soapNewRequest = $soapPub->newRequest( |
161 | 161 | $this->eduPkiRaId, # RA-ID |
@@ -177,11 +177,11 @@ discard block |
||
177 | 177 | } catch (Exception $e) { |
178 | 178 | // PHP 7.1 can do this much better |
179 | 179 | if (is_soap_fault($e)) { |
180 | - throw new Exception("Error when sending SOAP request: " . "{$e->faultcode}: { |
|
180 | + throw new Exception("Error when sending SOAP request: "."{$e->faultcode}: { |
|
181 | 181 | $e->faultstring |
182 | 182 | }\n"); |
183 | 183 | } |
184 | - throw new Exception("Something odd happened while doing the SOAP request:" . $e->getMessage()); |
|
184 | + throw new Exception("Something odd happened while doing the SOAP request:".$e->getMessage()); |
|
185 | 185 | } |
186 | 186 | try { |
187 | 187 | $soap = $this->initEduPKISoapSession("RA"); |
@@ -213,7 +213,7 @@ discard block |
||
213 | 213 | // for obnoxious reasons, we have to dump the request into a file and let pkcs7_sign read from the file |
214 | 214 | // rather than just using the string. Grr. |
215 | 215 | $tempdir = \core\common\Entity::createTemporaryDirectory("test"); |
216 | - file_put_contents($tempdir['dir'] . "/content.txt", $soapCleartext); |
|
216 | + file_put_contents($tempdir['dir']."/content.txt", $soapCleartext); |
|
217 | 217 | // retrieve our RA cert from filesystem |
218 | 218 | // the RA certificates are not needed right now because we |
219 | 219 | // have resorted to S/MIME signatures with openssl command-line |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | // sign the data, using cmdline because openssl_pkcs7_sign produces strange results |
226 | 226 | // -binary didn't help, nor switch -md to sha1 sha256 or sha512 |
227 | 227 | $this->loggerInstance->debug(2, "Actual content to be signed is this:\n $soapCleartext\n"); |
228 | - $execCmd = \config\Master::PATHS['openssl'] . " smime -sign -binary -in " . $tempdir['dir'] . "/content.txt -out " . $tempdir['dir'] . "/signature.txt -outform pem -inkey " . $this->locationRaKey . " -signer " . $this->locationRaCert; |
|
228 | + $execCmd = \config\Master::PATHS['openssl']." smime -sign -binary -in ".$tempdir['dir']."/content.txt -out ".$tempdir['dir']."/signature.txt -outform pem -inkey ".$this->locationRaKey." -signer ".$this->locationRaCert; |
|
229 | 229 | $this->loggerInstance->debug(2, "Calling openssl smime with following cmdline: $execCmd\n"); |
230 | 230 | $output = []; |
231 | 231 | $return = 999; |
@@ -234,21 +234,21 @@ discard block |
||
234 | 234 | throw new Exception("Non-zero return value from openssl smime!"); |
235 | 235 | } |
236 | 236 | // and get the signature blob back from the filesystem |
237 | - $detachedSig = trim(file_get_contents($tempdir['dir'] . "/signature.txt")); |
|
237 | + $detachedSig = trim(file_get_contents($tempdir['dir']."/signature.txt")); |
|
238 | 238 | $this->loggerInstance->debug(5, "Request for server approveRequest has parameters:\n"); |
239 | - $this->loggerInstance->debug(5, $soapReqnum . "\n"); |
|
240 | - $this->loggerInstance->debug(5, $soapCleartext . "\n"); // PHP magically encodes this as base64 while sending! |
|
241 | - $this->loggerInstance->debug(5, $detachedSig . "\n"); |
|
239 | + $this->loggerInstance->debug(5, $soapReqnum."\n"); |
|
240 | + $this->loggerInstance->debug(5, $soapCleartext."\n"); // PHP magically encodes this as base64 while sending! |
|
241 | + $this->loggerInstance->debug(5, $detachedSig."\n"); |
|
242 | 242 | $soapIssueCert = $soap->approveRequest($soapReqnum, $soapCleartext, $detachedSig); |
243 | - $this->loggerInstance->debug(5, "approveRequest Request was: \n" . $soap->__getLastRequest()); |
|
244 | - $this->loggerInstance->debug(5, "approveRequest Response was: \n" . $soap->__getLastResponse()); |
|
243 | + $this->loggerInstance->debug(5, "approveRequest Request was: \n".$soap->__getLastRequest()); |
|
244 | + $this->loggerInstance->debug(5, "approveRequest Response was: \n".$soap->__getLastResponse()); |
|
245 | 245 | if ($soapIssueCert === FALSE) { |
246 | 246 | throw new Exception("The locally approved request was NOT processed by the CA."); |
247 | 247 | } |
248 | 248 | } catch (SoapFault $e) { |
249 | - throw new Exception("SoapFault: Error when sending or receiving SOAP message: " . "{$e->faultcode}: {$e->faultname}: {$e->faultstring}: {$e->faultactor}: {$e->detail}: {$e->headerfault}\n"); |
|
249 | + throw new Exception("SoapFault: Error when sending or receiving SOAP message: "."{$e->faultcode}: {$e->faultname}: {$e->faultstring}: {$e->faultactor}: {$e->detail}: {$e->headerfault}\n"); |
|
250 | 250 | } catch (Exception $e) { |
251 | - throw new Exception("Exception: Something odd happened between the SOAP requests:" . $e->getMessage()); |
|
251 | + throw new Exception("Exception: Something odd happened between the SOAP requests:".$e->getMessage()); |
|
252 | 252 | } |
253 | 253 | return $soapReqnum; |
254 | 254 | } |
@@ -300,9 +300,9 @@ discard block |
||
300 | 300 | throw new Exception("CAInfo has no root certificate for us!"); |
301 | 301 | } |
302 | 302 | } catch (SoapFault $e) { |
303 | - throw new Exception("SoapFault: Error when sending or receiving SOAP message: " . "{$e->faultcode}: {$e->faultname}: {$e->faultstring}: {$e->faultactor}: {$e->detail}: {$e->headerfault}\n"); |
|
303 | + throw new Exception("SoapFault: Error when sending or receiving SOAP message: "."{$e->faultcode}: {$e->faultname}: {$e->faultstring}: {$e->faultactor}: {$e->detail}: {$e->headerfault}\n"); |
|
304 | 304 | } catch (Exception $e) { |
305 | - throw new Exception("Exception: Something odd happened between the SOAP requests:" . $e->getMessage()); |
|
305 | + throw new Exception("Exception: Something odd happened between the SOAP requests:".$e->getMessage()); |
|
306 | 306 | } |
307 | 307 | return [ |
308 | 308 | "CERT" => openssl_x509_read($parsedCert['pem']), |
@@ -335,12 +335,12 @@ discard block |
||
335 | 335 | // for obnoxious reasons, we have to dump the request into a file and let pkcs7_sign read from the file |
336 | 336 | // rather than just using the string. Grr. |
337 | 337 | $tempdir = \core\common\Entity::createTemporaryDirectory("test"); |
338 | - file_put_contents($tempdir['dir'] . "/content.txt", $soapRawRevRequest); |
|
338 | + file_put_contents($tempdir['dir']."/content.txt", $soapRawRevRequest); |
|
339 | 339 | // retrieve our RA cert from filesystem |
340 | 340 | // sign the data, using cmdline because openssl_pkcs7_sign produces strange results |
341 | 341 | // -binary didn't help, nor switch -md to sha1 sha256 or sha512 |
342 | 342 | $this->loggerInstance->debug(5, "Actual content to be signed is this:\n$soapRawRevRequest\n"); |
343 | - $execCmd = \config\Master::PATHS['openssl'] . " smime -sign -binary -in " . $tempdir['dir'] . "/content.txt -out " . $tempdir['dir'] . "/signature.txt -outform pem -inkey " . $this->locationRaKey . " -signer " . $this->locationRaCert; |
|
343 | + $execCmd = \config\Master::PATHS['openssl']." smime -sign -binary -in ".$tempdir['dir']."/content.txt -out ".$tempdir['dir']."/signature.txt -outform pem -inkey ".$this->locationRaKey." -signer ".$this->locationRaCert; |
|
344 | 344 | $this->loggerInstance->debug(2, "Calling openssl smime with following cmdline: $execCmd\n"); |
345 | 345 | $output = []; |
346 | 346 | $return = 999; |
@@ -349,7 +349,7 @@ discard block |
||
349 | 349 | throw new Exception("Non-zero return value from openssl smime!"); |
350 | 350 | } |
351 | 351 | // and get the signature blob back from the filesystem |
352 | - $detachedSig = trim(file_get_contents($tempdir['dir'] . "/signature.txt")); |
|
352 | + $detachedSig = trim(file_get_contents($tempdir['dir']."/signature.txt")); |
|
353 | 353 | $soapIssueRev = $soap->approveRevocationRequest($soapRevocationSerial, $soapRawRevRequest, $detachedSig); |
354 | 354 | if ($soapIssueRev === FALSE) { |
355 | 355 | throw new Exception("The locally approved revocation request was NOT processed by the CA."); |
@@ -357,9 +357,9 @@ discard block |
||
357 | 357 | } catch (Exception $e) { |
358 | 358 | // PHP 7.1 can do this much better |
359 | 359 | if (is_soap_fault($e)) { |
360 | - throw new Exception("Error when sending SOAP request: " . "{$e->faultcode}: {$e->faultstring}\n"); |
|
360 | + throw new Exception("Error when sending SOAP request: "."{$e->faultcode}: {$e->faultstring}\n"); |
|
361 | 361 | } |
362 | - throw new Exception("Something odd happened while doing the SOAP request:" . $e->getMessage()); |
|
362 | + throw new Exception("Something odd happened while doing the SOAP request:".$e->getMessage()); |
|
363 | 363 | } |
364 | 364 | } |
365 | 365 | |
@@ -459,9 +459,9 @@ discard block |
||
459 | 459 | */ |
460 | 460 | public function soapToXmlInteger($x) |
461 | 461 | { |
462 | - return '<' . $x[0] . '>' |
|
462 | + return '<'.$x[0].'>' |
|
463 | 463 | . htmlentities($x[1], ENT_NOQUOTES | ENT_XML1) |
464 | - . '</' . $x[0] . '>'; |
|
464 | + . '</'.$x[0].'>'; |
|
465 | 465 | } |
466 | 466 | |
467 | 467 | /** |
@@ -480,9 +480,9 @@ discard block |
||
480 | 480 | // dump private key into directory |
481 | 481 | $outstring = ""; |
482 | 482 | openssl_pkey_export($privateKey, $outstring); |
483 | - file_put_contents($tempdir . "/pkey.pem", $outstring); |
|
483 | + file_put_contents($tempdir."/pkey.pem", $outstring); |
|
484 | 484 | // PHP can only do one DC in the Subject. But we need three. |
485 | - $execCmd = \config\Master::PATHS['openssl'] . " req -new -sha256 -key $tempdir/pkey.pem -out $tempdir/request.csr -subj /DC=test/DC=test/DC=eduroam/C=$fed/O=" . \config\ConfAssistant::CONSORTIUM['name'] . "/OU=$fed/CN=$username/emailAddress=$username"; |
|
485 | + $execCmd = \config\Master::PATHS['openssl']." req -new -sha256 -key $tempdir/pkey.pem -out $tempdir/request.csr -subj /DC=test/DC=test/DC=eduroam/C=$fed/O=".\config\ConfAssistant::CONSORTIUM['name']."/OU=$fed/CN=$username/emailAddress=$username"; |
|
486 | 486 | $this->loggerInstance->debug(2, "Calling openssl req with following cmdline: $execCmd\n"); |
487 | 487 | $output = []; |
488 | 488 | $return = 999; |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | */ |
28 | 28 | ?> |
29 | 29 | <?php |
30 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
30 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
31 | 31 | |
32 | 32 | $deco = new \web\lib\admin\PageDecoration(); |
33 | 33 | $validator = new \web\lib\common\InputValidation(); |
@@ -41,10 +41,10 @@ discard block |
||
41 | 41 | ( $_POST['consortium'] == "OpenRoaming" && count($myfed->getAttributes("fed:openroaming")) > 0 ) |
42 | 42 | ) |
43 | 43 | ) {*/ |
44 | - if (isset($_POST['consortium']) && $_POST['consortium'] == "eduroam") |
|
44 | + if (isset($_POST['consortium']) && $_POST['consortium'] == "eduroam") |
|
45 | 45 | { |
46 | 46 | $deployment = $my_inst->newDeployment(\core\AbstractDeployment::DEPLOYMENTTYPE_MANAGED, $_POST['consortium']); |
47 | - header("Location: overview_org.php?inst_id=" . $my_inst->identifier . '#profilebox_' . $deployment->identifier); |
|
47 | + header("Location: overview_org.php?inst_id=".$my_inst->identifier.'#profilebox_'.$deployment->identifier); |
|
48 | 48 | exit(0); |
49 | 49 | } else { |
50 | 50 | throw new Exception("Desired consortium for Managed SP needs to be specified, and allowed!"); |
@@ -101,19 +101,19 @@ discard block |
||
101 | 101 | if (isset($_POST['agreement']) && $_POST['agreement'] == "true") { |
102 | 102 | $deployment->addAttribute("hiddenmanagedsp:tou_accepted", NULL, 1); |
103 | 103 | } |
104 | - header("Location: overview_org.php?inst_id=" . $my_inst->identifier . '#profilebox_' . $deployment->identifier); |
|
104 | + header("Location: overview_org.php?inst_id=".$my_inst->identifier.'#profilebox_'.$deployment->identifier); |
|
105 | 105 | exit(0); |
106 | 106 | case web\lib\common\FormElements::BUTTON_DELETE: |
107 | 107 | $response = $deployment->setRADIUSconfig(); |
108 | 108 | if (in_array('OK', $response)) { |
109 | 109 | $deployment->deactivate(); |
110 | 110 | } |
111 | - header("Location: overview_org.php?inst_id=" . $my_inst->identifier . '&' . urldecode(http_build_query($response)) . '#profilebox_' . |
|
111 | + header("Location: overview_org.php?inst_id=".$my_inst->identifier.'&'.urldecode(http_build_query($response)).'#profilebox_'. |
|
112 | 112 | $deployment->identifier); |
113 | 113 | exit(0); |
114 | 114 | case web\lib\common\FormElements::BUTTON_REMOVESP: |
115 | 115 | $deployment->remove(); |
116 | - header("Location: overview_org.php?inst_id=" . $my_inst->identifier); |
|
116 | + header("Location: overview_org.php?inst_id=".$my_inst->identifier); |
|
117 | 117 | exit(0); |
118 | 118 | case web\lib\common\FormElements::BUTTON_RENEWTLS: |
119 | 119 | $data = openssl_x509_parse($deployment->radsec_cert); |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | $torevoke = implode('#', $certdata); |
125 | 125 | $response = $deployment->setRADIUSconfig(0, 0, $torevoke); |
126 | 126 | $deployment->renewtls(); |
127 | - header("Location: overview_org.php?inst_id=" . $my_inst->identifier . '#profilebox_' . $deployment->identifier); |
|
127 | + header("Location: overview_org.php?inst_id=".$my_inst->identifier.'#profilebox_'.$deployment->identifier); |
|
128 | 128 | exit(0); |
129 | 129 | case web\lib\common\FormElements::BUTTON_ACTIVATE: |
130 | 130 | if (count($deployment->getAttributes("hiddenmanagedsp:tou_accepted")) > 0) { |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | if (in_array('OK', $response)) { |
133 | 133 | $deployment->activate(); |
134 | 134 | } |
135 | - header("Location: overview_org.php?inst_id=" . $my_inst->identifier . '&' . urldecode(http_build_query($response)) . '#profilebox_' . $deployment->identifier); |
|
135 | + header("Location: overview_org.php?inst_id=".$my_inst->identifier.'&'.urldecode(http_build_query($response)).'#profilebox_'.$deployment->identifier); |
|
136 | 136 | exit(0); |
137 | 137 | } else { |
138 | 138 | throw new Exception("Activate button pushed without acknowledged ToUs!"); |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | } else { |
162 | 162 | $response = ['NOOP', 'NOOP']; |
163 | 163 | } |
164 | - header("Location: overview_org.php?inst_id=" . $my_inst->identifier . '&' . urldecode(http_build_query($response)) . '#profilebox_' . $deployment->identifier); |
|
164 | + header("Location: overview_org.php?inst_id=".$my_inst->identifier.'&'.urldecode(http_build_query($response)).'#profilebox_'.$deployment->identifier); |
|
165 | 165 | exit(0); |
166 | 166 | default: |
167 | 167 | throw new Exception("Unknown button action requested!"); |
@@ -170,10 +170,10 @@ discard block |
||
170 | 170 | if (isset($_POST['command'])) { |
171 | 171 | switch ($_POST['command']) { |
172 | 172 | case web\lib\common\FormElements::BUTTON_CLOSE: |
173 | - header("Location: overview_org.php?inst_id=" . $my_inst->identifier) . '#profilebox_' . $deployment->identifier; |
|
173 | + header("Location: overview_org.php?inst_id=".$my_inst->identifier).'#profilebox_'.$deployment->identifier; |
|
174 | 174 | exit(0); |
175 | 175 | default: |
176 | - header("Location: overview_org.php?inst_id=" . $my_inst->identifier . '#profilebox_' . $deployment->identifier); |
|
176 | + header("Location: overview_org.php?inst_id=".$my_inst->identifier.'#profilebox_'.$deployment->identifier); |
|
177 | 177 | exit(0); |
178 | 178 | } |
179 | 179 | } |
@@ -200,7 +200,7 @@ discard block |
||
200 | 200 | echo $uiElements->instLevelInfoBoxes($my_inst); |
201 | 201 | $deploymentOptions = $deployment->getAttributes(); |
202 | 202 | echo "<form enctype='multipart/form-data' action='edit_hotspot.php?inst_id=$my_inst->identifier&deployment_id=$deployment->identifier' method='post' accept-charset='UTF-8'> |
203 | - <input type='hidden' name='MAX_FILE_SIZE' value='" . \config\Master::MAX_UPLOAD_SIZE . "'>"; |
|
203 | + <input type='hidden' name='MAX_FILE_SIZE' value='".\config\Master::MAX_UPLOAD_SIZE."'>"; |
|
204 | 204 | $optionDisplay = new \web\lib\admin\OptionDisplay($deploymentOptions, \core\Options::LEVEL_PROFILE); |
205 | 205 | ?> |
206 | 206 | <fieldset class='option_container' id='managedsp_override'> |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | <!-- input for VLAN identifier for home users--> |
235 | 235 | <td> |
236 | 236 | <span id='vlan_label'> |
237 | - <?php echo sprintf(_("VLAN tag for own users%s:"), ($vlan === NULL ? "" : " " . _("(unset with '0')"))); ?> |
|
237 | + <?php echo sprintf(_("VLAN tag for own users%s:"), ($vlan === NULL ? "" : " "._("(unset with '0')"))); ?> |
|
238 | 238 | </span> |
239 | 239 | </td> |
240 | 240 | <td> |
@@ -254,7 +254,7 @@ discard block |
||
254 | 254 | </fieldset> |
255 | 255 | |
256 | 256 | <?php |
257 | - echo "<p><button type='submit' name='submitbutton' value='" . web\lib\common\FormElements::BUTTON_SAVE . "'>" . _("Save data") . "</button><button type='button' class='delete' name='abortbutton' value='abort' onclick='javascript:window.location = \"overview_org.php?inst_id=$my_inst->identifier\"'>" . _("Discard changes") . "</button></p></form>"; |
|
257 | + echo "<p><button type='submit' name='submitbutton' value='".web\lib\common\FormElements::BUTTON_SAVE."'>"._("Save data")."</button><button type='button' class='delete' name='abortbutton' value='abort' onclick='javascript:window.location = \"overview_org.php?inst_id=$my_inst->identifier\"'>"._("Discard changes")."</button></p></form>"; |
|
258 | 258 | echo $deco->footer(); |
259 | 259 | |
260 | 260 | |
261 | 261 | \ No newline at end of file |