-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Most of Second PR #2
base: master
Are you sure you want to change the base?
Changes from all commits
70ec60f
dc83e42
7c7bc11
9e5aedb
7631253
9e2da6b
2bff0b3
8e4e020
aa876ae
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,265 @@ | ||
package com.auth0.msg; | ||
|
||
import com.auth0.jwt.JWT; | ||
import com.auth0.jwt.JWTCreator; | ||
import com.auth0.jwt.algorithms.Algorithm; | ||
import com.auth0.jwt.exceptions.JWTDecodeException; | ||
import com.fasterxml.jackson.core.JsonGenerationException; | ||
import com.fasterxml.jackson.core.JsonProcessingException; | ||
import com.fasterxml.jackson.databind.JsonMappingException; | ||
import com.fasterxml.jackson.databind.ObjectMapper; | ||
import org.apache.commons.codec.binary.Base64; | ||
import org.apache.commons.codec.binary.StringUtils; | ||
|
||
import java.io.IOException; | ||
import java.lang.reflect.Array; | ||
import java.net.MalformedURLException; | ||
import java.nio.charset.StandardCharsets; | ||
import java.util.*; | ||
|
||
|
||
/** | ||
* This abstract class provides basic processing of messages | ||
*/ | ||
public abstract class AbstractMessage implements Message { | ||
private Map<String, Object> claims; | ||
private Map<String, Object> header; | ||
private String input; | ||
private Error error = null; | ||
private boolean verified = false; | ||
protected ObjectMapper mapper = new ObjectMapper(); | ||
|
||
protected AbstractMessage() { | ||
this(Collections.<String, Object>emptyMap()); | ||
} | ||
|
||
protected AbstractMessage(Map<String, Object> claims) { | ||
this.claims = claims; | ||
} | ||
|
||
/** | ||
* @param input the urlEncoded String representation of a message | ||
*/ | ||
public void fromUrlEncoded(String input) throws MalformedURLException, IOException, InvalidClaimException { | ||
this.reset(); | ||
this.input = input; | ||
String msgJson = StringUtils.newStringUtf8(Base64.decodeBase64(input)); | ||
AbstractMessage msg = mapper.readValue(msgJson, this.getClass()); | ||
this.claims = msg.getClaims(); | ||
} | ||
|
||
/** | ||
* Takes the claims of this instance of the AbstractMessage class and serializes them | ||
* to an urlEncoded string | ||
* | ||
* @return an urlEncoded string | ||
*/ | ||
public String toUrlEncoded() throws SerializationException, JsonProcessingException { | ||
String jsonMsg = mapper.writeValueAsString(this); | ||
String urlEncodedMsg = Base64.encodeBase64URLSafeString(jsonMsg.getBytes(StandardCharsets.UTF_8)); | ||
return urlEncodedMsg; | ||
} | ||
|
||
/** | ||
* Logic to extract from the JSON string the values | ||
* @param input The JSON String representation of a message | ||
*/ | ||
public void fromJson(String input) throws InvalidClaimException { | ||
this.reset(); | ||
this.input = input; | ||
try { | ||
AbstractMessage msg = mapper.readValue(input, this.getClass()); | ||
this.claims = msg.getClaims(); | ||
System.out.println(this.claims); | ||
} catch (JsonGenerationException e) { | ||
e.printStackTrace(); | ||
} catch (JsonMappingException e) { | ||
e.printStackTrace(); | ||
} catch (IOException e) { | ||
e.printStackTrace(); | ||
} | ||
} | ||
|
||
/** | ||
* Takes the claims of this instance of the AbstractMessage class and serializes them | ||
* to a json string | ||
* | ||
* @return a JSON String representation in the form of a hashMap mapping string -> string | ||
*/ | ||
public String toJson() throws SerializationException, JsonProcessingException { | ||
String jsonMsg = mapper.writeValueAsString(this); | ||
if (this.error != null) { | ||
throw new SerializationException("Error present cannot serialize message"); | ||
} | ||
return jsonMsg; | ||
} | ||
|
||
/** | ||
* @param input the jwt String representation of a message | ||
*/ | ||
public void fromJwt(String input) throws IOException { | ||
this.reset(); | ||
this.input = input; | ||
String[] parts = MessageUtil.splitToken(input); | ||
String headerJson; | ||
String payloadJson; | ||
try { | ||
headerJson = StringUtils.newStringUtf8(Base64.decodeBase64(parts[0])); | ||
payloadJson = StringUtils.newStringUtf8(Base64.decodeBase64(parts[1])); | ||
} catch (NullPointerException e) { | ||
throw new JWTDecodeException("The UTF-8 Charset isn't initialized.", e); | ||
} | ||
this.header = mapper.readValue(headerJson, Map.class); | ||
this.claims = mapper.readValue(payloadJson, Map.class); | ||
} | ||
|
||
/** | ||
* Serialize the content of this instance (the claims map) into a jwt string | ||
* @param algorithm the algorithm to use in signing the JWT | ||
* @return a jwt String | ||
* @throws InvalidClaimException | ||
*/ | ||
public String toJwt(Algorithm algorithm) throws | ||
JsonProcessingException, SerializationException { | ||
header.put("alg", algorithm.getName()); | ||
header.put("typ", "JWT"); | ||
String signingKeyId = algorithm.getSigningKeyId(); | ||
if (signingKeyId != null) { | ||
header.put("kid", signingKeyId); | ||
} | ||
JWTCreator.Builder newBuilder = JWT.create().withHeader(this.header); | ||
for (String claimName: claims.keySet()){ | ||
// TODO this needs to be extended for all claim types | ||
Object value = claims.get(claimName); | ||
if (value instanceof Boolean) { | ||
newBuilder.withClaim(claimName, (Boolean) value); | ||
} else if (value instanceof String) { | ||
newBuilder.withClaim(claimName, (String) value); | ||
} else if (value instanceof Date) { | ||
newBuilder.withClaim(claimName, (Date) value); | ||
} else if (value instanceof Long) { | ||
newBuilder.withClaim(claimName, (Long) value); | ||
} | ||
} | ||
return newBuilder.sign(algorithm); | ||
} | ||
|
||
/** | ||
* verify that the required claims are present | ||
* @return whether the verification passed | ||
*/ | ||
protected boolean verify() throws InvalidClaimException { | ||
//This method will set error if verification fails | ||
List<String> errorMessages = new ArrayList<String>(); | ||
StringBuilder errorSB = new StringBuilder(); | ||
|
||
List<String> reqClaims = getRequiredClaims(); | ||
if (reqClaims != null && this.claims.isEmpty()){ | ||
errorMessages.add("Not all of the required claims for this message type are present"); | ||
} else { | ||
if (reqClaims != null) { | ||
for (String req : reqClaims) { | ||
if (!claims.containsKey(req)) { | ||
errorSB.append(" " + req); | ||
} | ||
} | ||
if (errorSB.length() != 0) { | ||
errorMessages.add("Message is missing required claims:" + errorSB.toString()); | ||
} | ||
} | ||
|
||
errorSB = new StringBuilder(); | ||
|
||
for (String claimName : claims.keySet()) { | ||
// if knownClaim, validate claim | ||
if (ClaimsValidator.isKnownClaim(claimName)) { | ||
try { | ||
ClaimsValidator.validate(claimName, claims.get(claimName), fetchMessageType()); | ||
} catch (com.auth0.jwt.exceptions.InvalidClaimException e) { | ||
errorMessages.add(claimName + "is an invalid claim. "); | ||
} | ||
} else { | ||
if (!allowCustomClaims()) { | ||
claims.remove(claimName); | ||
} | ||
} | ||
} | ||
|
||
} | ||
|
||
if (!errorMessages.isEmpty()) { | ||
for (String err : errorMessages) { | ||
errorSB.append(err); | ||
} | ||
this.error = new Error(errorMessages); | ||
throw new InvalidClaimException(errorSB.toString()); | ||
} | ||
return false; | ||
} | ||
|
||
/** | ||
* @return Boolean whether this message subclass allows for custom claims | ||
*/ | ||
public abstract boolean allowCustomClaims(); | ||
|
||
/** | ||
* @return Error an object representing the error status of claims verification | ||
*/ | ||
public Error getError() { | ||
return error; | ||
} | ||
|
||
/** | ||
* @return List of the list of claims for this messsage | ||
*/ | ||
public Map<String, Object> getClaims() throws InvalidClaimException { | ||
verify(); | ||
return this.claims; | ||
} | ||
|
||
/** | ||
* @return List of the list of standard optional claims for this messsage type | ||
*/ | ||
protected List<String> getOptionalClaims(){ | ||
return Collections.emptyList(); | ||
} | ||
|
||
/** | ||
* add the claim to this instance of message | ||
* @param name the name of the claim | ||
* @param value the value of the claim to add to this instance of Message | ||
*/ | ||
public void addClaim(String name, Object value) { | ||
this.claims.put(name, value); | ||
} | ||
|
||
/** | ||
* @return List of the list of standard required claims for this messsage type | ||
*/ | ||
abstract protected List<String> getRequiredClaims(); | ||
|
||
protected void reset(){ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. where are you using this method? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the deserialization methods |
||
this.input = null; | ||
this.claims = null; | ||
this.error = null; | ||
this.verified = false; | ||
} | ||
|
||
/** | ||
* @return enum Name of the message subtype | ||
*/ | ||
abstract protected MessageType fetchMessageType(); | ||
|
||
/** | ||
* @return boolean for whether there is an error in verification | ||
*/ | ||
public boolean hasError(){ | ||
return this.error != null; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
//Override to return user friendly value | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please provide a good implementation of toString |
||
return super.toString(); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.auth0.msg; | ||
|
||
/** | ||
* This enum specifies the encryption and signing algorithm type | ||
*/ | ||
public enum AlgorithmEnum { | ||
RS256, | ||
RS384, | ||
RS512, | ||
HS256, | ||
HS384, | ||
HS512, | ||
ES256; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
package com.auth0.msg; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. package name is a problem everywhere There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. TODO |
||
|
||
import com.fasterxml.jackson.annotation.JsonCreator; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.fasterxml.jackson.databind.annotation.JsonDeserialize; | ||
|
||
import java.util.Collections; | ||
import java.util.List; | ||
import java.util.Map; | ||
|
||
public class Claim { | ||
public String name; | ||
|
||
@JsonProperty("map") | ||
@JsonDeserialize(keyUsing = ClaimDeserializer.class) | ||
public Map<MessageType, List<Object>> allowedValues; | ||
public ClaimType type; | ||
|
||
public Claim(String name) { | ||
this(name, Collections.<MessageType, List<Object>>emptyMap(), null); | ||
} | ||
|
||
public Claim(String name, ClaimType type) { | ||
this(name, Collections.<MessageType, List<Object>>emptyMap(), type); | ||
} | ||
|
||
@JsonCreator | ||
public Claim(String name, Map<MessageType, List<Object>> allowedValues, ClaimType type) { | ||
this.name = name; | ||
this.allowedValues = allowedValues; | ||
this.type = type; | ||
} | ||
|
||
public ClaimType getType() { | ||
return type; | ||
} | ||
|
||
public void setType(ClaimType type) { | ||
this.type = type; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
|
||
public Map<MessageType, List<Object>> getAllowedValues() { | ||
return allowedValues; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return this.name; | ||
} | ||
|
||
//hashCode() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please override equals and hashcode as you are going to use this class as key There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. TODO |
||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package com.auth0.msg; | ||
|
||
import com.fasterxml.jackson.core.JsonProcessingException; | ||
import com.fasterxml.jackson.databind.DeserializationContext; | ||
import com.fasterxml.jackson.databind.KeyDeserializer; | ||
|
||
import java.io.IOException; | ||
|
||
public class ClaimDeserializer extends KeyDeserializer { | ||
|
||
@Override | ||
public Claim deserializeKey (String key, DeserializationContext ctxt) throws IOException, JsonProcessingException { | ||
return new Claim(key); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package com.auth0.msg; | ||
|
||
import java.lang.reflect.Array; | ||
import java.util.Arrays; | ||
import java.util.Date; | ||
import java.util.List; | ||
|
||
/** | ||
* This enum specifies the claims and their allowed values to enable validation of messages | ||
*/ | ||
public enum ClaimType { | ||
BOOLEAN("Boolean", Boolean.class), | ||
STRING("String", String.class), | ||
INT("Int", Integer.class), | ||
LIST("List", List.class), | ||
ARRAY("Array", Array.class), | ||
DATE("Date", Date.class), | ||
LONG("Long", Long.class), | ||
ID_TOKEN("ID_Token", IDToken.class); | ||
// TODO There are potentially other claim types that have not been included | ||
|
||
private final String type; | ||
private final Class classType; | ||
ClaimType(String type, Class classType) { | ||
this.type = type; | ||
this.classType = classType; | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You haven't refactored for package name?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO