com.nimbusds.openid.connect.sdk.assurance.request.VerifiedClaimsSetRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oauth2-oidc-sdk Show documentation
Show all versions of oauth2-oidc-sdk Show documentation
OAuth 2.0 SDK with OpenID Connection extensions for developing client
and server applications.
/*
* oauth2-oidc-sdk
*
* Copyright 2012-2020, Connect2id Ltd and contributors.
*
* Licensed 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 com.nimbusds.openid.connect.sdk.assurance.request;
import java.util.Collection;
import net.jcip.annotations.Immutable;
import net.minidev.json.JSONObject;
import com.nimbusds.langtag.LangTag;
import com.nimbusds.oauth2.sdk.ParseException;
import com.nimbusds.oauth2.sdk.util.JSONObjectUtils;
import com.nimbusds.oauth2.sdk.util.MapUtils;
import com.nimbusds.openid.connect.sdk.assurance.claims.VerifiedClaimsSet;
import com.nimbusds.openid.connect.sdk.claims.ClaimsSetRequest;
/**
* OpenID Connect verified claims set request, intended to represent the
* {@code verified_claims} sub-element within a {@code userinfo} or
* {@code id_token} element in a
* {@link com.nimbusds.openid.connect.sdk.OIDCClaimsRequest claims} request
* parameter.
*
* Example:
*
*
* {
* "verification": {
* "trust_framework": "eidas_ial"
* },
* "claims":{
* "given_name": null,
* "family_name": null,
* "birthdate": null
* }
* }
*
*
* Related specifications:
*
*
* - OpenID Connect Core 1.0, section 5.5.
*
- OpenID Connect for Identity Assurance 1.0, section 6.
*
*/
@Immutable
public class VerifiedClaimsSetRequest extends ClaimsSetRequest {
/**
* The verification element.
*/
private final VerificationSpec verification;
/**
* Creates a new OpenID Connect verified claims set request specifying
* the default {@link MinimalVerificationSpec minimal verification}
* and no claims.
*/
public VerifiedClaimsSetRequest() {
super();
verification = new MinimalVerificationSpec();
}
/**
* Creates a new OpenID Connect verified claims set request.
*
* @param entries The requested entries. Must not be
* {@code null}.
* @param verification The {@code verification} element. Must not be
* {@code null}.
*/
public VerifiedClaimsSetRequest(final Collection entries,
final VerificationSpec verification) {
super(entries);
if (verification == null) {
throw new IllegalArgumentException("The verification element must not be null");
}
this.verification = verification;
}
/**
* Gets the {@code verification} element.
*
* @return The {@code verification} element, {@code null} if not
* specified.
*/
public VerificationSpec getVerification() {
return verification;
}
/**
* Sets the {@code verification} element.
*
* @param verification The {@code verification} element. Must not be
* {@code null}.
*
* @return The updated verified claims set request.
*/
public VerifiedClaimsSetRequest withVerification(final VerificationSpec verification) {
return new VerifiedClaimsSetRequest(getEntries(), verification);
}
@Override
public VerifiedClaimsSetRequest add(final String claimName) {
ClaimsSetRequest csr = add(new Entry(claimName));
return new VerifiedClaimsSetRequest(csr.getEntries(), getVerification());
}
@Override
public VerifiedClaimsSetRequest add(final Entry entry) {
ClaimsSetRequest csr = super.add(entry);
return new VerifiedClaimsSetRequest(csr.getEntries(), getVerification());
}
@Override
public VerifiedClaimsSetRequest delete(final String claimName, final LangTag langTag) {
ClaimsSetRequest csr = super.delete(claimName, langTag);
return new VerifiedClaimsSetRequest(csr.getEntries(), getVerification());
}
@Override
public VerifiedClaimsSetRequest delete(final String claimName) {
ClaimsSetRequest csr = super.delete(claimName);
return new VerifiedClaimsSetRequest(csr.getEntries(), getVerification());
}
/**
* Returns the JSON object representation of this verified claims set
* request.
*
* Example:
*
*
* {
* "verification": {
* "trust_framework": "eidas"
* },
* "claims":{
* "given_name": null,
* "family_name": null,
* "birthdate": null
* }
* }
*
*
* @return The JSON object.
*/
@Override
public JSONObject toJSONObject() {
JSONObject o = new JSONObject();
o.put(VerifiedClaimsSet.VERIFICATION_ELEMENT, getVerification().toJSONObject());
JSONObject claims = super.toJSONObject();
if (MapUtils.isEmpty(claims)) {
throw new IllegalStateException("Empty verified claims object");
}
o.put(VerifiedClaimsSet.CLAIMS_ELEMENT, claims);
return o;
}
/**
* Parses an OpenID Connect verified claims set request from the
* specified JSON object representation.
*
* Example:
*
*
* {
* "verification": {
* "trust_framework": "eidas"
* },
* "claims":{
* "given_name": null,
* "family_name": null,
* "birthdate": null
* }
* }
*
*
* @param jsonObject The JSON object to parse. Must not be
* {@code null}.
*
* @return The verified claims set request.
*
* @throws ParseException If parsing failed.
*/
public static VerifiedClaimsSetRequest parse(final JSONObject jsonObject)
throws ParseException {
MinimalVerificationSpec verification = MinimalVerificationSpec.parse(
JSONObjectUtils.getJSONObject(jsonObject, VerifiedClaimsSet.VERIFICATION_ELEMENT)
);
JSONObject claimsJSONObject = JSONObjectUtils.getJSONObject(jsonObject, VerifiedClaimsSet.CLAIMS_ELEMENT, new JSONObject());
if (claimsJSONObject.isEmpty()) {
throw new ParseException("Empty verified claims object");
}
return new VerifiedClaimsSetRequest(
ClaimsSetRequest.parse(claimsJSONObject).getEntries(),
verification
);
}
/**
* Parses an OpenID Connect verified claims set request from the
* specified JSON object string representation.
*
* Example:
*
*
* {
* "verification": {
* "trust_framework": "eidas"
* },
* "claims":{
* "given_name": null,
* "family_name": null,
* "birthdate": null
* }
* }
*
*
* @param json The JSON object string to parse. Must not be
* {@code null}.
*
* @return The verified claims set request.
*
* @throws ParseException If parsing failed.
*/
public static VerifiedClaimsSetRequest parse(final String json)
throws ParseException {
return parse(JSONObjectUtils.parse(json));
}
}