-
Notifications
You must be signed in to change notification settings - Fork 356
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
centralize errors #364
centralize errors #364
Changes from 2 commits
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,100 @@ | ||
<?php | ||
|
||
namespace JsonSchema; | ||
|
||
class ConstraintError extends \MabeEnum\Enum | ||
{ | ||
const ADDITIONAL_ITEMS = 'additionalItems'; | ||
const ADDITIONAL_PROPERTIES = 'additionalProp'; | ||
const ALL_OF = 'allOf'; | ||
const ANY_OF = 'anyOf'; | ||
const DEPENDENCIES = 'dependencies'; | ||
const DISALLOW = 'disallow'; | ||
const DIVISIBLE_BY = 'divisibleBy'; | ||
const ENUM = 'enum'; | ||
const EXCLUSIVE_MINIMUM = 'exclusiveMinimum'; | ||
const EXCLUSIVE_MAXIMUM = 'exclusiveMaximum'; | ||
const FORMAT_COLOR = 'colorFormat'; | ||
const FORMAT_DATE = 'dateFormat'; | ||
const FORMAT_DATE_TIME = 'dateTimeFormat'; | ||
const FORMAT_DATE_UTC = 'dateUtcFormat'; | ||
const FORMAT_EMAIL = 'emailFormat'; | ||
const FORMAT_HOSTNAME = 'styleHostName'; | ||
const FORMAT_IP = 'ipFormat'; | ||
const FORMAT_PHONE = 'phoneFormat'; | ||
const FORMAT_REGEX= 'regexFormat'; | ||
const FORMAT_STYLE = 'styleFormat'; | ||
const FORMAT_TIME = 'timeFormat'; | ||
const FORMAT_URL = 'urlFormat'; | ||
const LENGTH_MAX = 'maxLength'; | ||
const LENGTH_MIN = 'minLength'; | ||
const MAXIMUM = 'maximum'; | ||
const MIN_ITEMS = 'minItems'; | ||
const MINIMUM = 'minimum'; | ||
const MISSING_MAXIMUM = 'missingMaximum'; | ||
const MISSING_MINIMUM = 'missingMinimum'; | ||
const MAX_ITEMS = 'maxItems'; | ||
const MULTIPLE_OF = 'multipleOf'; | ||
const NOT = 'not'; | ||
const ONE_OF = 'oneOf'; | ||
const REQUIRED = 'required'; | ||
const REQUIRED_D3 = 'selfRequired'; | ||
const REQUIRES = 'requires'; | ||
const PATTERN = 'pattern'; | ||
const PREGEX_INVALID = 'pregrex'; | ||
const PROPERTIES_MIN = 'minProperties'; | ||
const PROPERTIES_MAX = 'maxProperties'; | ||
const TYPE = 'type'; | ||
const UNIQUE_ITEMS = 'uniqueItems'; | ||
|
||
public function getMessage() | ||
{ | ||
$name = $this->getValue(); | ||
static $messages = array( | ||
self::ADDITIONAL_ITEMS => 'The item %s[%s] is not defined and the definition does not allow additional items', | ||
self::ADDITIONAL_PROPERTIES => 'The property %s is not defined and the definition does not allow additional properties', | ||
self::ALL_OF => 'Failed to match all schemas', | ||
self::ANY_OF => 'Failed to match at least one schema', | ||
self::DEPENDENCIES => '%s depends on %s, which is missing', | ||
self::DISALLOW => 'Disallowed value was matched', | ||
self::DIVISIBLE_BY => 'Is not divisible by %d', | ||
self::ENUM => 'Does not have a value in the enumeration %s', | ||
self::EXCLUSIVE_MINIMUM => 'Must have a minimum value greater than %d', | ||
self::EXCLUSIVE_MAXIMUM => 'Must have a maximum value less than %d', | ||
self::FORMAT_COLOR => 'Invalid color', | ||
self::FORMAT_DATE => 'Invalid date %s, expected format YYYY-MM-DD', | ||
self::FORMAT_DATE_TIME => 'Invalid date-time %s, expected format YYYY-MM-DDThh:mm:ssZ or YYYY-MM-DDThh:mm:ss+hh:mm', | ||
self::FORMAT_DATE_UTC => 'Invalid time %s, expected integer of milliseconds since Epoch', | ||
self::FORMAT_EMAIL => 'Invalid email', | ||
self::FORMAT_HOSTNAME => 'Invalid hostname', | ||
self::FORMAT_IP => 'Invalid IP address', | ||
self::FORMAT_PHONE => 'Invalid phone number', | ||
self::FORMAT_REGEX=> 'Invalid regex format %s', | ||
self::FORMAT_STYLE => 'Invalid style', | ||
self::FORMAT_TIME => 'Invalid time %s, expected format hh:mm:ss', | ||
self::FORMAT_URL => 'Invalid URL format', | ||
self::LENGTH_MAX => 'Must be at most %d characters long', | ||
self::LENGTH_MIN => 'Must be at least %d characters long', | ||
self::MAX_ITEMS => 'There must be a maximum of %d items in the array', | ||
self::MAXIMUM => 'Must have a maximum value less than or equal to %d', | ||
self::MIN_ITEMS => 'There must be a minimum of %d items in the array', | ||
self::MINIMUM => 'Must have a minimum value greater than or equal to %d', | ||
self::MISSING_MAXIMUM => 'Use of exclusiveMaximum requires presence of maximum', | ||
self::MISSING_MINIMUM => 'Use of exclusiveMinimum requires presence of minimum', | ||
self::MULTIPLE_OF => 'Must be a multiple of %d', | ||
self::NOT => 'Matched a schema which it should not', | ||
self::ONE_OF => 'Failed to match exactly one schema', | ||
self::REQUIRED => 'The property %s is required', | ||
self::REQUIRED_D3 => 'Is missing and it is required', | ||
self::REQUIRES => 'The presence of the property %s requires that %s also be present', | ||
self::PATTERN => 'Does not match the regex pattern %s', | ||
self::PREGEX_INVALID => 'The pattern %s is invalid', | ||
self::PROPERTIES_MIN => 'Must contain a minimum of %d properties', | ||
self::PROPERTIES_MAX => 'Must contain no more than %d properties', | ||
self::TYPE => '%s value found, but %s is required', | ||
self::UNIQUE_ITEMS => 'There are no duplicates allowed in the array' | ||
); | ||
|
||
return isset($messages[$name]) ? $messages[$name] : "Unknown Error: $name"; | ||
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 unknown error should probably be in the error table with everything else - it seems neater, and there's nothing special about it to warrant being defined separately. 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. Hmm, tricky. It's a good thought, but then I need to figure out how to add an error for the error (so it can be localized, as well). I started working on it but I wound up with a huge blob of messy code, and it seems like a more elegant approach would be for 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. What's wrong with something like this? No reason for it to get complicated. return isset($messages[$name]) ? $messages[$name] : $messages[self:UNKNOWN_ERROR]; 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. Although if you want to do the exception thing, that's a perfectly workable approach too. 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. After thinking about it for a bit, I think that maybe throwing an UnknownErrorException and letting the user deal with it (rather than catching it) is a good idea. That way it'll cause the unit tests to fail if we ever throw a nonexistent error, and assuming we did things properly and the new code has test coverage, we should catch it before the changes ship, because Travis will be screaming at us about it. |
||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
|
||
namespace JsonSchema\Constraints; | ||
|
||
use JsonSchema\ConstraintError; | ||
use JsonSchema\Entity\JsonPointer; | ||
use JsonSchema\Exception\ValidationException; | ||
|
||
|
@@ -36,23 +37,28 @@ public function __construct(Factory $factory = null) | |
$this->factory = $factory ?: new Factory(); | ||
} | ||
|
||
public function addError(JsonPointer $path = null, $message, $constraint = '', array $more = null) | ||
public function addError(JsonPointer $path = null, ConstraintError $constraint = null, array $more = array()) | ||
{ | ||
$error = array( | ||
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. Rather than sticking with the array format, why not roll all this into the 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.
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. As mentioned in the other comment, 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. I would quite like a class, but I can also see where you're coming from here too - I think we had quite different visions for how the errors should eventually end up working. May I think on this a bit? I like what you're doing here, but I would like to see if I can think of a way to integrate the two approaches, as I see no reason why they can't work together. Would you consider accepting a PR on your PR branch? 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. I was not trying to solve the error system, here. You are still welcome to do that. I was only trying to get localizers unstuck. Why don't we just evaluate this PR in light of that goal, merge it into 6.0 if it accomplishes what it sets out to do, and then you can revamp the error system in another PR all you like and no argument from me (although I will have plenty of arguments)? 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. Works for me :-) |
||
'property' => $this->convertJsonPointerIntoPropertyPath($path ?: new JsonPointer('')), | ||
'pointer' => ltrim(strval($path ?: new JsonPointer('')), '#'), | ||
'message' => $message, | ||
'constraint' => $constraint, | ||
'message' => ucfirst(vsprintf($constraint->getMessage(), array_map(function ($val) { | ||
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. Don't use ucfirst here, it's not multibyte-safe, and not all languages have the concept of capital letters. Better IMO to define the messages with a capital in the first place, and let anyone providing custom or translation messages handle their own casing. Also, why do all the format stuff here? More sensible IMO to have the constructor handle it; that way you just instantiate the error with its variable components and you get a finished package, rather than post-processing it as you're doing here. 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. I took the 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. Won't this bit end up handling localized strings at some point though (and isn't that a desirable thing)? If not, then you're double-handling the formatting. If it won't ever handle localized strings, then I may not entirely understand how you envisage this working - if that's the case, can you explain an outline of how you intend things to work? 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. Remember that our goal is NOT to do any localizing ourselves, not now, not ever. All I'm shooting for in this PR is to:
That's pretty much it. So how WOULD someone do localization? Minimally, like this:
I guess I would like to hear some feedback from one of the guys that wanted localization to see what he has in mind; maybe we could find a way to add some sugar. 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. Aaah, I thought you were intending a localisation interface to eventually come out the far side of this, to support people who were wanting to localise while still not doing that ourselves. If you're wanting to keep the existing error format, then the way you have done it seems like a suitable approach :-). 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. I honestly hadn't gotten as far as making it fully glorious for real-world localizers with real use-cases and real technologies. Let's call this phase I, and invite comment from the guy who wanted help with this... 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. I think we should go with this as you've written it, and maybe do anything else in a different PR, because actual localization interfaces would seem to be out-of-scope for this one. |
||
if (is_scalar($val)) { | ||
return $val; | ||
} | ||
|
||
return json_encode($val); | ||
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. I like the idea of json-encoding complex types. Good idea 👍. |
||
}, array_values($more)))), | ||
'constraint' => array( | ||
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. Same comment as above - if you feed it to the constructor, then this becomes unnecessary. |
||
'name' => $constraint ? $constraint->getValue() : '', | ||
'params' => $more | ||
) | ||
); | ||
|
||
if ($this->factory->getConfig(Constraint::CHECK_MODE_EXCEPTIONS)) { | ||
throw new ValidationException(sprintf('Error validating %s: %s', $error['pointer'], $error['message'])); | ||
} | ||
|
||
if (is_array($more) && count($more) > 0) { | ||
$error += $more; | ||
} | ||
|
||
$this->errors[] = $error; | ||
} | ||
|
||
|
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.
May we please also have a
setMessage
method that can add / overwrite messages, and store the messages on the class rather than insidegetMessage
? This would be useful for local translations and people's custom errors that never make it as far as upstream.Would be good if this could accept either a single error message, or an array of them to allow setting multiple errors at once. e.g.:
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.
I think @erayd and I already came to an understanding on this, but just for those following along at home
ErrorConstraint
is not a localization interface. It's just a central repository for the natural language strings that we already had floating around in the code. Its only relevance to localization is as a reference.