/* * Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * WSO2 Inc. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except * in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.wso2.carbon.identity.oauth.common; import org.apache.commons.lang.StringUtils; import org.apache.oltu.oauth2.common.OAuth; import org.apache.oltu.oauth2.common.error.OAuthError; import org.apache.oltu.oauth2.common.exception.OAuthProblemException; import org.apache.oltu.oauth2.common.validators.AbstractValidator; import javax.servlet.http.HttpServletRequest; public class IDTokenResponseValidator extends AbstractValidator<HttpServletRequest> { public IDTokenResponseValidator() { requiredParams.add(OAuth.OAUTH_RESPONSE_TYPE); requiredParams.add(OAuth.OAUTH_CLIENT_ID); requiredParams.add(OAuth.OAUTH_REDIRECT_URI); } public void validateRequiredParameters(HttpServletRequest request) throws OAuthProblemException { super.validateRequiredParameters(request); String nonce = request.getParameter("nonce"); if(StringUtils.isBlank(nonce)){ throw OAuthProblemException.error(OAuthError.TokenResponse.INVALID_REQUEST) .description("\'response_type\' contains \'id_token\'; but \'nonce\' parameter not found"); } } @Override public void validateMethod(HttpServletRequest request) throws OAuthProblemException { String method = request.getMethod(); if (!OAuth.HttpMethod.GET.equals(method) && !OAuth.HttpMethod.POST.equals(method)) { throw OAuthProblemException.error(OAuthError.CodeResponse.INVALID_REQUEST) .description("Method not correct."); } } @Override public void validateContentType(HttpServletRequest request) throws OAuthProblemException { } }