|
| 1 | +<?php |
| 2 | + |
| 3 | +namespace JsonSchema; |
| 4 | + |
| 5 | +class ConstraintError extends \MabeEnum\Enum |
| 6 | +{ |
| 7 | + const ADDITIONAL_ITEMS = 'additionalItems'; |
| 8 | + const ADDITIONAL_PROPERTIES = 'additionalProp'; |
| 9 | + const ALL_OF = 'allOf'; |
| 10 | + const ANY_OF = 'anyOf'; |
| 11 | + const DEPENDENCIES = 'dependencies'; |
| 12 | + const DISALLOW = 'disallow'; |
| 13 | + const DIVISIBLE_BY = 'divisibleBy'; |
| 14 | + const ENUM = 'enum'; |
| 15 | + const EXCLUSIVE_MINIMUM = 'exclusiveMinimum'; |
| 16 | + const EXCLUSIVE_MAXIMUM = 'exclusiveMaximum'; |
| 17 | + const FORMAT_COLOR = 'colorFormat'; |
| 18 | + const FORMAT_DATE = 'dateFormat'; |
| 19 | + const FORMAT_DATE_TIME = 'dateTimeFormat'; |
| 20 | + const FORMAT_DATE_UTC = 'dateUtcFormat'; |
| 21 | + const FORMAT_EMAIL = 'emailFormat'; |
| 22 | + const FORMAT_HOSTNAME = 'styleHostName'; |
| 23 | + const FORMAT_IP = 'ipFormat'; |
| 24 | + const FORMAT_PHONE = 'phoneFormat'; |
| 25 | + const FORMAT_REGEX= 'regexFormat'; |
| 26 | + const FORMAT_STYLE = 'styleFormat'; |
| 27 | + const FORMAT_TIME = 'timeFormat'; |
| 28 | + const FORMAT_URL = 'urlFormat'; |
| 29 | + const LENGTH_MAX = 'maxLength'; |
| 30 | + const LENGTH_MIN = 'minLength'; |
| 31 | + const MAXIMUM = 'maximum'; |
| 32 | + const MIN_ITEMS = 'minItems'; |
| 33 | + const MINIMUM = 'minimum'; |
| 34 | + const MISSING_MAXIMUM = 'missingMaximum'; |
| 35 | + const MISSING_MINIMUM = 'missingMinimum'; |
| 36 | + const MAX_ITEMS = 'maxItems'; |
| 37 | + const MULTIPLE_OF = 'multipleOf'; |
| 38 | + const NOT = 'not'; |
| 39 | + const ONE_OF = 'oneOf'; |
| 40 | + const REQUIRED = 'required'; |
| 41 | + const REQUIRED_D3 = 'selfRequired'; |
| 42 | + const REQUIRES = 'requires'; |
| 43 | + const PATTERN = 'pattern'; |
| 44 | + const PREGEX_INVALID = 'pregrex'; |
| 45 | + const PROPERTIES_MIN = 'minProperties'; |
| 46 | + const PROPERTIES_MAX = 'maxProperties'; |
| 47 | + const TYPE = 'type'; |
| 48 | + const UNIQUE_ITEMS = 'uniqueItems'; |
| 49 | + |
| 50 | + public function getMessage() |
| 51 | + { |
| 52 | + $name = $this->getValue(); |
| 53 | + static $messages = array( |
| 54 | + self::ADDITIONAL_ITEMS => 'The item %s[%s] is not defined and the definition does not allow additional items', |
| 55 | + self::ADDITIONAL_PROPERTIES => 'The property %s is not defined and the definition does not allow additional properties', |
| 56 | + self::ALL_OF => 'Failed to match all schemas', |
| 57 | + self::ANY_OF => 'Failed to match at least one schema', |
| 58 | + self::DEPENDENCIES => '%s depends on %s, which is missing', |
| 59 | + self::DISALLOW => 'Disallowed value was matched', |
| 60 | + self::DIVISIBLE_BY => 'Is not divisible by %d', |
| 61 | + self::ENUM => 'Does not have a value in the enumeration %s', |
| 62 | + self::EXCLUSIVE_MINIMUM => 'Must have a minimum value greater than %d', |
| 63 | + self::EXCLUSIVE_MAXIMUM => 'Must have a maximum value less than %d', |
| 64 | + self::FORMAT_COLOR => 'Invalid color', |
| 65 | + self::FORMAT_DATE => 'Invalid date %s, expected format YYYY-MM-DD', |
| 66 | + self::FORMAT_DATE_TIME => 'Invalid date-time %s, expected format YYYY-MM-DDThh:mm:ssZ or YYYY-MM-DDThh:mm:ss+hh:mm', |
| 67 | + self::FORMAT_DATE_UTC => 'Invalid time %s, expected integer of milliseconds since Epoch', |
| 68 | + self::FORMAT_EMAIL => 'Invalid email', |
| 69 | + self::FORMAT_HOSTNAME => 'Invalid hostname', |
| 70 | + self::FORMAT_IP => 'Invalid IP address', |
| 71 | + self::FORMAT_PHONE => 'Invalid phone number', |
| 72 | + self::FORMAT_REGEX=> 'Invalid regex format %s', |
| 73 | + self::FORMAT_STYLE => 'Invalid style', |
| 74 | + self::FORMAT_TIME => 'Invalid time %s, expected format hh:mm:ss', |
| 75 | + self::FORMAT_URL => 'Invalid URL format', |
| 76 | + self::LENGTH_MAX => 'Must be at most %d characters long', |
| 77 | + self::LENGTH_MIN => 'Must be at least %d characters long', |
| 78 | + self::MAX_ITEMS => 'There must be a maximum of %d items in the array', |
| 79 | + self::MAXIMUM => 'Must have a maximum value less than or equal to %d', |
| 80 | + self::MIN_ITEMS => 'There must be a minimum of %d items in the array', |
| 81 | + self::MINIMUM => 'Must have a minimum value greater than or equal to %d', |
| 82 | + self::MISSING_MAXIMUM => 'Use of exclusiveMaximum requires presence of maximum', |
| 83 | + self::MISSING_MINIMUM => 'Use of exclusiveMinimum requires presence of minimum', |
| 84 | + self::MULTIPLE_OF => 'Must be a multiple of %d', |
| 85 | + self::NOT => 'Matched a schema which it should not', |
| 86 | + self::ONE_OF => 'Failed to match exactly one schema', |
| 87 | + self::REQUIRED => 'The property %s is required', |
| 88 | + self::REQUIRED_D3 => 'Is missing and it is required', |
| 89 | + self::REQUIRES => 'The presence of the property %s requires that %s also be present', |
| 90 | + self::PATTERN => 'Does not match the regex pattern %s', |
| 91 | + self::PREGEX_INVALID => 'The pattern %s is invalid', |
| 92 | + self::PROPERTIES_MIN => 'Must contain a minimum of %d properties', |
| 93 | + self::PROPERTIES_MAX => 'Must contain no more than %d properties', |
| 94 | + self::TYPE => '%s value found, but %s is required', |
| 95 | + self::UNIQUE_ITEMS => 'There are no duplicates allowed in the array' |
| 96 | + ); |
| 97 | + |
| 98 | + if (!isset($messages[$name])) { |
| 99 | + throw new InvalidArgumentException('Missing error message for ' . $name); |
| 100 | + } |
| 101 | + |
| 102 | + return $messages[$name]; |
| 103 | + } |
| 104 | +} |
0 commit comments