| @@ -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) { | 
| @@ -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 | 
| @@ -205,70 +205,70 @@ discard block | ||
| 205 | 205 | </div> | 
| 206 | 206 | <?php | 
| 207 | 207 | break; | 
| 208 | - case "core\ProfileRADIUS": | |
| 209 | - ?> | |
| 210 | - <div style='padding-bottom:20px;'> | |
| 208 | + case "core\ProfileRADIUS": | |
| 209 | + ?> | |
| 210 | + <div style='padding-bottom:20px;'> | |
| 211 | 211 | <?php $profile_name = $profile_list->name; ?> | 
| 212 | -                            <h2 style='overflow:auto; display:inline; padding-bottom: 10px;'><?php printf(_("Profile: %s"), $profile_name); ?></h2> | |
| 212 | +                                <h2 style='overflow:auto; display:inline; padding-bottom: 10px;'><?php printf(_("Profile: %s"), $profile_name); ?></h2> | |
| 213 | 213 | <?php | 
| 214 | - // see if there are any profile-level overrides | |
| 215 | - $attribs = $profile_list->getAttributes(); | |
| 216 | - // write things into a buffer; we need some function calls to determine | |
| 217 | - // readiness - but want to display it before! | |
| 218 | - $has_overrides = FALSE; | |
| 219 | -                            foreach ($attribs as $attrib) { | |
| 220 | -                                if ($attrib['level'] == \core\Options::LEVEL_PROFILE && !preg_match("/^(internal:|profile:name|profile:description|eap:)/", $attrib['name'])) { | |
| 221 | - $has_overrides = TRUE; | |
| 214 | + // see if there are any profile-level overrides | |
| 215 | + $attribs = $profile_list->getAttributes(); | |
| 216 | + // write things into a buffer; we need some function calls to determine | |
| 217 | + // readiness - but want to display it before! | |
| 218 | + $has_overrides = FALSE; | |
| 219 | +                                foreach ($attribs as $attrib) { | |
| 220 | +                                    if ($attrib['level'] == \core\Options::LEVEL_PROFILE && !preg_match("/^(internal:|profile:name|profile:description|eap:)/", $attrib['name'])) { | |
| 221 | + $has_overrides = TRUE; | |
| 222 | + } | |
| 222 | 223 | } | 
| 223 | - } | |
| 224 | -                            $buffer_eaptypediv = "<div style='margin-bottom:40px; float:left;'>" . _("<strong>EAP Types</strong> (in order of preference):") . "<br/>"; | |
| 225 | - $typelist = $profile_list->getEapMethodsinOrderOfPreference(); | |
| 226 | - $allcomplete = TRUE; | |
| 227 | -                            foreach ($typelist as $eaptype) { | |
| 228 | - $buffer_eaptypediv .= $eaptype->getPrintableRep(); | |
| 229 | - $completeness = $profile_list->isEapTypeDefinitionComplete($eaptype); | |
| 230 | -                                if ($completeness === true) { | |
| 231 | -                                    $buffer_eaptypediv .= " <div class='acceptable'>" . _("OK") . "</div>"; | |
| 232 | -                                } else { | |
| 233 | - $buffer_eaptypediv .= " <div class='notacceptable'>"; | |
| 234 | -                                    $buffer_eaptypediv .= _("Information needed!"); | |
| 235 | -                                    if (is_array($completeness)) { | |
| 236 | - $buffer_eaptypediv .= "<ul style='margin:1px'>"; | |
| 237 | -                                        foreach ($completeness as $missing_attrib) { | |
| 238 | - $buffer_eaptypediv .= "<li>" . $uiElements->displayName($missing_attrib) . "</li>"; | |
| 224 | +                                $buffer_eaptypediv = "<div style='margin-bottom:40px; float:left;'>" . _("<strong>EAP Types</strong> (in order of preference):") . "<br/>"; | |
| 225 | + $typelist = $profile_list->getEapMethodsinOrderOfPreference(); | |
| 226 | + $allcomplete = TRUE; | |
| 227 | +                                foreach ($typelist as $eaptype) { | |
| 228 | + $buffer_eaptypediv .= $eaptype->getPrintableRep(); | |
| 229 | + $completeness = $profile_list->isEapTypeDefinitionComplete($eaptype); | |
| 230 | +                                    if ($completeness === true) { | |
| 231 | +                                        $buffer_eaptypediv .= " <div class='acceptable'>" . _("OK") . "</div>"; | |
| 232 | +                                    } else { | |
| 233 | + $buffer_eaptypediv .= " <div class='notacceptable'>"; | |
| 234 | +                                        $buffer_eaptypediv .= _("Information needed!"); | |
| 235 | +                                        if (is_array($completeness)) { | |
| 236 | + $buffer_eaptypediv .= "<ul style='margin:1px'>"; | |
| 237 | +                                            foreach ($completeness as $missing_attrib) { | |
| 238 | + $buffer_eaptypediv .= "<li>" . $uiElements->displayName($missing_attrib) . "</li>"; | |
| 239 | + } | |
| 240 | + $buffer_eaptypediv .= "</ul>"; | |
| 239 | 241 | } | 
| 240 | - $buffer_eaptypediv .= "</ul>"; | |
| 242 | + $buffer_eaptypediv .= "</div>"; | |
| 243 | + $allcomplete = FALSE; | |
| 241 | 244 | } | 
| 242 | - $buffer_eaptypediv .= "</div>"; | |
| 243 | - $allcomplete = FALSE; | |
| 244 | - } | |
| 245 | - $attribs = $profile_list->getAttributes(); | |
| 246 | - $justOnce = FALSE; | |
| 247 | -                                foreach ($attribs as $attrib) { | |
| 248 | -                                    if ($attrib['level'] == \core\Options::LEVEL_METHOD && !preg_match("/^internal:/", $attrib['name']) && !$justOnce) { | |
| 249 | - $justOnce = TRUE; | |
| 250 | -                                        $buffer_eaptypediv .= "<img src='../resources/images/icons/Letter-E-blue-icon.png' alt='" . _("Options on EAP Method/Device level are in effect.") . "'>"; | |
| 245 | + $attribs = $profile_list->getAttributes(); | |
| 246 | + $justOnce = FALSE; | |
| 247 | +                                    foreach ($attribs as $attrib) { | |
| 248 | +                                        if ($attrib['level'] == \core\Options::LEVEL_METHOD && !preg_match("/^internal:/", $attrib['name']) && !$justOnce) { | |
| 249 | + $justOnce = TRUE; | |
| 250 | +                                            $buffer_eaptypediv .= "<img src='../resources/images/icons/Letter-E-blue-icon.png' alt='" . _("Options on EAP Method/Device level are in effect.") . "'>"; | |
| 251 | + } | |
| 251 | 252 | } | 
| 253 | + $buffer_eaptypediv .= "<br/>"; | |
| 252 | 254 | } | 
| 253 | - $buffer_eaptypediv .= "<br/>"; | |
| 254 | - } | |
| 255 | - $buffer_eaptypediv .= "</div>"; | |
| 255 | + $buffer_eaptypediv .= "</div>"; | |
| 256 | 256 | |
| 257 | - $buffer_headline = "<span style='float:right;'>"; | |
| 258 | - $readiness = $profile_list->readinessLevel(); | |
| 259 | -                            if ($has_overrides) { | |
| 260 | -                                $buffer_headline .= $uiElements->boxRemark("", _("Option override on profile level is in effect."), TRUE); | |
| 261 | - } | |
| 262 | -                            if (!$allcomplete) { | |
| 263 | -                                $buffer_headline .= $uiElements->boxError("", _("The information in this profile is incomplete."), TRUE); | |
| 264 | - } | |
| 265 | -                            switch ($readiness) { | |
| 257 | + $buffer_headline = "<span style='float:right;'>"; | |
| 258 | + $readiness = $profile_list->readinessLevel(); | |
| 259 | +                                if ($has_overrides) { | |
| 260 | +                                    $buffer_headline .= $uiElements->boxRemark("", _("Option override on profile level is in effect."), TRUE); | |
| 261 | + } | |
| 262 | +                                if (!$allcomplete) { | |
| 263 | +                                    $buffer_headline .= $uiElements->boxError("", _("The information in this profile is incomplete."), TRUE); | |
| 264 | + } | |
| 265 | +                                switch ($readiness) { | |
| 266 | 266 | case core\AbstractProfile::READINESS_LEVEL_SHOWTIME: | 
| 267 | 267 |                                      $buffer_headline .= $uiElements->boxOkay("", _("This profile is shown on the user download interface."), TRUE); | 
| 268 | 268 | break; | 
| 269 | 269 | case core\AbstractProfile::READINESS_LEVEL_SUFFICIENTCONFIG: | 
| 270 | 270 |                                      $buffer_headline .= $uiElements->boxWarning("", sprintf(_("This profile is NOT shown on the user download interface, even though we have enough information to show. To enable the profile, add the attribute \"%s\" and tick the corresponding box."), $uiElements->displayName("profile:production")), TRUE); | 
| 271 | - } | |
| 271 | + } | |
| 272 | 272 | |
| 273 | 273 | $buffer_headline .= "</span></div>"; | 
| 274 | 274 | |
| @@ -351,8 +351,8 @@ discard block | ||
| 351 | 351 | </div> | 
| 352 | 352 | <?php | 
| 353 | 353 | break; | 
| 354 | - default: | |
| 355 | -                        throw new Exception("We were asked to operate on something that is neither a RADIUS nor Silverbullet profile!"); | |
| 354 | + default: | |
| 355 | +                            throw new Exception("We were asked to operate on something that is neither a RADIUS nor Silverbullet profile!"); | |
| 356 | 356 | } | 
| 357 | 357 | ?> | 
| 358 | 358 | <!-- dummy width to keep a little distance --> | 
| @@ -98,98 +98,98 @@ | ||
| 98 | 98 | } | 
| 99 | 99 | |
| 100 | 100 |  switch ($operationMode) { | 
| 101 | - case OPERATION_MODE_EDIT: | |
| 102 | - $idp = $validator->existingIdP($_GET['inst_id']); | |
| 103 | - // editing IdPs is done from within the popup. When we're done, send the | |
| 104 | - // user back to the popup (append the result of the operation later) | |
| 105 | - $redirectDestination = "manageAdmins.inc.php?inst_id=" . $idp->identifier . "&"; | |
| 106 | -        if (count($validAddresses) == 0) { | |
| 107 | -            header("Location: $redirectDestination" . "invitation=INVALIDSYNTAX"); | |
| 108 | - exit(1); | |
| 109 | - } | |
| 110 | - // is the user primary admin of this IdP? | |
| 111 | - $is_owner = $idp->isPrimaryOwner($_SESSION['user']); | |
| 112 | - // check if he is (also) federation admin for the federation this IdP is in. His invitations have more blessing then. | |
| 113 | - $fedadmin = $userObject->isFederationAdmin($idp->federation); | |
| 114 | - // check if he is either one, if not, complain | |
| 115 | -        if (!$is_owner && !$fedadmin) { | |
| 116 | -            echo "<p>" . sprintf(_("Something's wrong... you are a %s admin, but not for the %s the requested %s belongs to!"), $uiElements->nomenclatureFed, $uiElements->nomenclatureFed, $uiElements->nomenclatureParticipant) . "</p>"; | |
| 117 | - exit(1); | |
| 118 | - } | |
| 101 | + case OPERATION_MODE_EDIT: | |
| 102 | + $idp = $validator->existingIdP($_GET['inst_id']); | |
| 103 | + // editing IdPs is done from within the popup. When we're done, send the | |
| 104 | + // user back to the popup (append the result of the operation later) | |
| 105 | + $redirectDestination = "manageAdmins.inc.php?inst_id=" . $idp->identifier . "&"; | |
| 106 | +            if (count($validAddresses) == 0) { | |
| 107 | +                header("Location: $redirectDestination" . "invitation=INVALIDSYNTAX"); | |
| 108 | + exit(1); | |
| 109 | + } | |
| 110 | + // is the user primary admin of this IdP? | |
| 111 | + $is_owner = $idp->isPrimaryOwner($_SESSION['user']); | |
| 112 | + // check if he is (also) federation admin for the federation this IdP is in. His invitations have more blessing then. | |
| 113 | + $fedadmin = $userObject->isFederationAdmin($idp->federation); | |
| 114 | + // check if he is either one, if not, complain | |
| 115 | +            if (!$is_owner && !$fedadmin) { | |
| 116 | +                echo "<p>" . sprintf(_("Something's wrong... you are a %s admin, but not for the %s the requested %s belongs to!"), $uiElements->nomenclatureFed, $uiElements->nomenclatureFed, $uiElements->nomenclatureParticipant) . "</p>"; | |
| 117 | + exit(1); | |
| 118 | + } | |
| 119 | 119 | |
| 120 | - $prettyprintname = $idp->name; | |
| 121 | - $newtokens = $mgmt->createTokens($fedadmin, $validAddresses, $idp); | |
| 122 | -        $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP " . $idp->identifier . " - Token created for " . implode(",", $validAddresses)); | |
| 123 | - $introtext = "CO-ADMIN"; | |
| 124 | - $participant_type = $idp->type; | |
| 125 | - break; | |
| 126 | - case OPERATION_MODE_NEWUNLINKED: | |
| 127 | - $redirectDestination = "../overview_federation.php?"; | |
| 128 | -        if (count($validAddresses) == 0) { | |
| 129 | -            header("Location: $redirectDestination"."invitation=INVALIDSYNTAX"); | |
| 130 | - exit(1); | |
| 131 | - } | |
| 132 | - // run an input check and conversion of the raw inputs... just in case | |
| 133 | - $newinstname = $validator->string($_POST['name']); | |
| 134 | - $newcountry = $validator->string($_POST['country']); | |
| 135 | - $participant_type = $validator->partType($_POST['participant_type']); | |
| 136 | - $new_idp_authorized_fedadmin = $userObject->isFederationAdmin($newcountry); | |
| 137 | -        if ($new_idp_authorized_fedadmin !== TRUE) { | |
| 138 | -            throw new Exception("Something's wrong... you want to create a new " . $uiElements->nomenclatureParticipant . ", but are not a " . $uiElements->nomenclatureFed . " admin for the " . $uiElements->nomenclatureFed . " it should be in!"); | |
| 139 | - } | |
| 140 | - $federation = $validator->existingFederation($newcountry); | |
| 141 | - $prettyprintname = $newinstname; | |
| 142 | - $introtext = "NEW-FED"; | |
| 143 | - // send the user back to his federation overview page, append the result of the operation later | |
| 144 | - // do the token creation magic | |
| 145 | - $newtokens = $mgmt->createTokens(TRUE, $validAddresses, $newinstname, 0, $newcountry, $participant_type); | |
| 146 | -        $loggerInstance->writeAudit($_SESSION['user'], "NEW", "ORG FUTURE  - Token created for $participant_type " . implode(",", $validAddresses)); | |
| 147 | - break; | |
| 148 | - case OPERATION_MODE_NEWFROMDB: | |
| 149 | - $redirectDestination = "../overview_federation.php?"; | |
| 150 | -        if (count($validAddresses) == 0) { | |
| 151 | -            header("Location: $redirectDestination"."invitation=INVALIDSYNTAX"); | |
| 152 | - exit(1); | |
| 153 | - } | |
| 154 | - // a real external DB entry was submitted and all the required parameters are there | |
| 155 | - $newexternalid = $validator->string($_POST['externals']); | |
| 156 | - $extinfo = $catInstance->getExternalDBEntityDetails($newexternalid); | |
| 157 | - $new_idp_authorized_fedadmin = $userObject->isFederationAdmin($extinfo['country']); | |
| 158 | -        if ($new_idp_authorized_fedadmin !== TRUE) { | |
| 159 | -            throw new Exception("Something's wrong... you want to create a new " . $uiElements->nomenclatureParticipant . ", but are not a " . $uiElements->nomenclatureFed . " admin for the " . $uiElements->nomenclatureFed . " it should be in!"); | |
| 160 | - } | |
| 161 | - $federation = $validator->existingFederation($extinfo['country']); | |
| 162 | - $newcountry = $extinfo['country']; | |
| 163 | - // see if the inst name is defined in the currently set language; if not, pick its English name; if N/A, pick the last in the list | |
| 164 | - $prettyprintname = ""; | |
| 165 | -        foreach ($extinfo['names'] as $lang => $name) { | |
| 166 | -            if ($lang == $languageInstance->getLang()) { | |
| 167 | - $prettyprintname = $name; | |
| 120 | + $prettyprintname = $idp->name; | |
| 121 | + $newtokens = $mgmt->createTokens($fedadmin, $validAddresses, $idp); | |
| 122 | +            $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP " . $idp->identifier . " - Token created for " . implode(",", $validAddresses)); | |
| 123 | + $introtext = "CO-ADMIN"; | |
| 124 | + $participant_type = $idp->type; | |
| 125 | + break; | |
| 126 | + case OPERATION_MODE_NEWUNLINKED: | |
| 127 | + $redirectDestination = "../overview_federation.php?"; | |
| 128 | +            if (count($validAddresses) == 0) { | |
| 129 | +                header("Location: $redirectDestination"."invitation=INVALIDSYNTAX"); | |
| 130 | + exit(1); | |
| 168 | 131 | } | 
| 169 | - } | |
| 170 | -        if ($prettyprintname == "" && isset($extinfo['names']['en'])) { | |
| 171 | - $prettyprintname = $extinfo['names']['en']; | |
| 172 | - } | |
| 173 | -        if ($prettyprintname == "") { | |
| 174 | -            foreach ($extinfo['names'] as $name) { | |
| 175 | - $prettyprintname = $name; | |
| 132 | + // run an input check and conversion of the raw inputs... just in case | |
| 133 | + $newinstname = $validator->string($_POST['name']); | |
| 134 | + $newcountry = $validator->string($_POST['country']); | |
| 135 | + $participant_type = $validator->partType($_POST['participant_type']); | |
| 136 | + $new_idp_authorized_fedadmin = $userObject->isFederationAdmin($newcountry); | |
| 137 | +            if ($new_idp_authorized_fedadmin !== TRUE) { | |
| 138 | +                throw new Exception("Something's wrong... you want to create a new " . $uiElements->nomenclatureParticipant . ", but are not a " . $uiElements->nomenclatureFed . " admin for the " . $uiElements->nomenclatureFed . " it should be in!"); | |
| 176 | 139 | } | 
| 177 | - } | |
| 178 | - $participant_type = $extinfo['type']; | |
| 179 | - // fill the rest of the text | |
| 180 | - $introtext = "EXISTING-FED"; | |
| 181 | - // do the token creation magic | |
| 182 | - $newtokens = $mgmt->createTokens(TRUE, $validAddresses, $prettyprintname, $newexternalid); | |
| 183 | -        $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP FUTURE  - Token created for " . implode(",", $validAddresses)); | |
| 184 | - break; | |
| 185 | - default: // includes OPERATION_MODE_INVALID | |
| 186 | - // second param is TRUE, so the variable *will* contain a string | |
| 187 | - // i.e. ignore Scrutinizer type warning later | |
| 188 | - $wrongcontent = print_r($_POST, TRUE); | |
| 189 | - echo "<pre>Wrong parameters in POST: | |
| 140 | + $federation = $validator->existingFederation($newcountry); | |
| 141 | + $prettyprintname = $newinstname; | |
| 142 | + $introtext = "NEW-FED"; | |
| 143 | + // send the user back to his federation overview page, append the result of the operation later | |
| 144 | + // do the token creation magic | |
| 145 | + $newtokens = $mgmt->createTokens(TRUE, $validAddresses, $newinstname, 0, $newcountry, $participant_type); | |
| 146 | +            $loggerInstance->writeAudit($_SESSION['user'], "NEW", "ORG FUTURE  - Token created for $participant_type " . implode(",", $validAddresses)); | |
| 147 | + break; | |
| 148 | + case OPERATION_MODE_NEWFROMDB: | |
| 149 | + $redirectDestination = "../overview_federation.php?"; | |
| 150 | +            if (count($validAddresses) == 0) { | |
| 151 | +                header("Location: $redirectDestination"."invitation=INVALIDSYNTAX"); | |
| 152 | + exit(1); | |
| 153 | + } | |
| 154 | + // a real external DB entry was submitted and all the required parameters are there | |
| 155 | + $newexternalid = $validator->string($_POST['externals']); | |
| 156 | + $extinfo = $catInstance->getExternalDBEntityDetails($newexternalid); | |
| 157 | + $new_idp_authorized_fedadmin = $userObject->isFederationAdmin($extinfo['country']); | |
| 158 | +            if ($new_idp_authorized_fedadmin !== TRUE) { | |
| 159 | +                throw new Exception("Something's wrong... you want to create a new " . $uiElements->nomenclatureParticipant . ", but are not a " . $uiElements->nomenclatureFed . " admin for the " . $uiElements->nomenclatureFed . " it should be in!"); | |
| 160 | + } | |
| 161 | + $federation = $validator->existingFederation($extinfo['country']); | |
| 162 | + $newcountry = $extinfo['country']; | |
| 163 | + // see if the inst name is defined in the currently set language; if not, pick its English name; if N/A, pick the last in the list | |
| 164 | + $prettyprintname = ""; | |
| 165 | +            foreach ($extinfo['names'] as $lang => $name) { | |
| 166 | +                if ($lang == $languageInstance->getLang()) { | |
| 167 | + $prettyprintname = $name; | |
| 168 | + } | |
| 169 | + } | |
| 170 | +            if ($prettyprintname == "" && isset($extinfo['names']['en'])) { | |
| 171 | + $prettyprintname = $extinfo['names']['en']; | |
| 172 | + } | |
| 173 | +            if ($prettyprintname == "") { | |
| 174 | +                foreach ($extinfo['names'] as $name) { | |
| 175 | + $prettyprintname = $name; | |
| 176 | + } | |
| 177 | + } | |
| 178 | + $participant_type = $extinfo['type']; | |
| 179 | + // fill the rest of the text | |
| 180 | + $introtext = "EXISTING-FED"; | |
| 181 | + // do the token creation magic | |
| 182 | + $newtokens = $mgmt->createTokens(TRUE, $validAddresses, $prettyprintname, $newexternalid); | |
| 183 | +            $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP FUTURE  - Token created for " . implode(",", $validAddresses)); | |
| 184 | + break; | |
| 185 | + default: // includes OPERATION_MODE_INVALID | |
| 186 | + // second param is TRUE, so the variable *will* contain a string | |
| 187 | + // i.e. ignore Scrutinizer type warning later | |
| 188 | + $wrongcontent = print_r($_POST, TRUE); | |
| 189 | + echo "<pre>Wrong parameters in POST: | |
| 190 | 190 | " . htmlspecialchars(/** @scrutinizer ignore-type */ $wrongcontent) . " | 
| 191 | 191 | </pre>"; | 
| 192 | - exit(1); | |
| 192 | + exit(1); | |
| 193 | 193 | } | 
| 194 | 194 | |
| 195 | 195 | // send, and invalidate the token immediately if the mail could not be sent! |