|
| 1 | +package graphql.scalars.id; |
| 2 | + |
| 3 | +import graphql.Internal; |
| 4 | +import graphql.language.StringValue; |
| 5 | +import graphql.language.Value; |
| 6 | +import graphql.schema.Coercing; |
| 7 | +import graphql.schema.CoercingParseLiteralException; |
| 8 | +import graphql.schema.CoercingParseValueException; |
| 9 | +import graphql.schema.CoercingSerializeException; |
| 10 | +import graphql.schema.GraphQLScalarType; |
| 11 | + |
| 12 | +import java.util.UUID; |
| 13 | + |
| 14 | +import static graphql.scalars.util.Kit.typeName; |
| 15 | + |
| 16 | +/** |
| 17 | + * Access this via {@link graphql.scalars.ExtendedScalars#UUID} |
| 18 | + */ |
| 19 | +@Internal |
| 20 | +public class UUIDScalar { |
| 21 | + |
| 22 | + public static GraphQLScalarType INSTANCE; |
| 23 | + |
| 24 | + static { |
| 25 | + Coercing<UUID, String> coercing = new Coercing<UUID, String>() { |
| 26 | + @Override |
| 27 | + public String serialize(Object input) throws CoercingSerializeException { |
| 28 | + if (input instanceof String) { |
| 29 | + try { |
| 30 | + return (UUID.fromString((String) input)).toString(); |
| 31 | + } catch (IllegalArgumentException ex) { |
| 32 | + throw new CoercingSerializeException( |
| 33 | + "Expected a UUID value that can be converted : '" + ex.getMessage() + "'." |
| 34 | + ); |
| 35 | + } |
| 36 | + } else if (input instanceof UUID) { |
| 37 | + return input.toString(); |
| 38 | + } else { |
| 39 | + throw new CoercingSerializeException( |
| 40 | + "Expected something we can convert to 'java.util.UUID' but was '" + typeName(input) + "'." |
| 41 | + ); |
| 42 | + } |
| 43 | + } |
| 44 | + |
| 45 | + @Override |
| 46 | + public UUID parseValue(Object input) throws CoercingParseValueException { |
| 47 | + if (input instanceof String) { |
| 48 | + try { |
| 49 | + return UUID.fromString((String) input); |
| 50 | + } catch (IllegalArgumentException ex) { |
| 51 | + throw new CoercingParseValueException( |
| 52 | + "Expected a 'String' of UUID type but was '" + typeName(input) + "'." |
| 53 | + ); |
| 54 | + } |
| 55 | + } else if (input instanceof UUID) { |
| 56 | + return (UUID) input; |
| 57 | + } else { |
| 58 | + throw new CoercingParseValueException( |
| 59 | + "Expected a 'String' or 'UUID' type but was '" + typeName(input) + "'." |
| 60 | + ); |
| 61 | + } |
| 62 | + } |
| 63 | + |
| 64 | + @Override |
| 65 | + public UUID parseLiteral(Object input) throws CoercingParseLiteralException { |
| 66 | + if (!(input instanceof StringValue)) { |
| 67 | + throw new CoercingParseLiteralException( |
| 68 | + "Expected a 'java.util.UUID' AST type object but was '" + typeName(input) + "'." |
| 69 | + ); |
| 70 | + } |
| 71 | + try { |
| 72 | + return UUID.fromString(((StringValue) input).getValue()); |
| 73 | + } catch (IllegalArgumentException ex) { |
| 74 | + throw new CoercingParseLiteralException( |
| 75 | + "Expected something that we can convert to a UUID but was invalid" |
| 76 | + ); |
| 77 | + } |
| 78 | + } |
| 79 | + |
| 80 | + @Override |
| 81 | + public Value valueToLiteral(Object input) { |
| 82 | + return Coercing.super.valueToLiteral(input); |
| 83 | + } |
| 84 | + }; |
| 85 | + |
| 86 | + |
| 87 | + INSTANCE = GraphQLScalarType.newScalar() |
| 88 | + .name("UUID") |
| 89 | + .description("A universally unique identifier compliant UUID Scalar") |
| 90 | + .coercing(coercing) |
| 91 | + .build(); |
| 92 | + |
| 93 | + } |
| 94 | + |
| 95 | +} |
0 commit comments