io.smallrye.jwt.auth.cdi.CommonJwtProducer Maven / Gradle / Ivy
/*
* Copyright 2019 Red Hat, Inc, and individual 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 io.smallrye.jwt.auth.cdi;
import java.lang.annotation.Annotation;
import java.util.Optional;
import jakarta.enterprise.context.RequestScoped;
import jakarta.enterprise.inject.spi.InjectionPoint;
import jakarta.inject.Inject;
import jakarta.json.JsonValue;
import org.eclipse.microprofile.jwt.Claim;
import org.eclipse.microprofile.jwt.Claims;
import org.eclipse.microprofile.jwt.JsonWebToken;
import io.smallrye.jwt.JsonUtils;
/**
* A class that tracks the current validated MP-JWT and associated JsonWebToken via a thread
* local to provide a @RequestScoped JsonWebToken producer method.
*
* It also provides utility methods for access the current JsonWebToken claim values.
*/
@RequestScoped
public class CommonJwtProducer {
@Inject
JsonWebToken currentToken;
/**
* Return the indicated claim value as a JsonValue
*
* @param ip - injection point of the claim
* @return a JsonValue wrapper
*/
public JsonValue generalJsonValueProducer(InjectionPoint ip) {
String name = getName(ip);
Object value = getValue(name, false);
return JsonUtils.wrapValue(value);
}
public T getValue(String name, boolean isOptional) {
if (currentToken == null) {
CDILogging.log.getValue(name);
return null;
}
Optional claimValue = currentToken.claim(name);
if (!isOptional && !claimValue.isPresent()) {
CDILogging.log.failedToFindClaim(name);
}
CDILogging.log.getValueResult(name, isOptional, claimValue);
return claimValue.orElse(null);
}
public String getName(InjectionPoint ip) {
String name = null;
for (Annotation ann : ip.getQualifiers()) {
if (ann instanceof Claim) {
Claim claim = (Claim) ann;
name = claim.standard() == Claims.UNKNOWN ? claim.value() : claim.standard().name();
}
}
return name;
}
}