##// END OF EJS Templates
update displaypub.publish signature in AsyncResult
update displaypub.publish signature in AsyncResult

File last commit:

r16429:c30f7c33
r16740:97294f86
Show More
validator.py
91 lines | 2.6 KiB | text/x-python | PythonLexer
Thomas Kluyver
Convert print statements to print function calls...
r13348 from __future__ import print_function
Thomas Kluyver
Import argparse directly from stdlib
r12547 import json
Jessica B. Hamrick
Allow validator to be called from reads_json and writes_json
r16330 import os
Matthias BUSSONNIER
create a ipynbv3 json schema and a validator...
r8519
Jessica B. Hamrick
Misc style changes, add more docstrings
r16347 from IPython.external.jsonschema import Draft3Validator, SchemaError
Matthias BUSSONNIER
import jsonpointer and schema from external
r8525 import IPython.external.jsonpointer as jsonpointer
Thomas Kluyver
Fix references to dict.iteritems and dict.itervalues
r13361 from IPython.utils.py3compat import iteritems
Matthias BUSSONNIER
create a ipynbv3 json schema and a validator...
r8519
Jessica B. Hamrick
Allow validator to be called from reads_json and writes_json
r16330
from .current import nbformat, nbformat_schema
Jessica B. Hamrick
Add comments inside validator
r16335 schema_path = os.path.join(
Jessica B. Hamrick
Use dirname rather than split
r16406 os.path.dirname(__file__), "v%d" % nbformat, nbformat_schema)
Jessica B. Hamrick
Allow validator to be called from reads_json and writes_json
r16330
Jessica B. Hamrick
Return the list of errors, rather than the number of errors
r16407 def isvalid(nbjson):
Jessica B. Hamrick
Misc style changes, add more docstrings
r16347 """Checks whether the given notebook JSON conforms to the current
notebook format schema. Returns True if the JSON is valid, and
False otherwise.
Jessica B. Hamrick
Return the list of errors, rather than the number of errors
r16407 To see the individual errors that were encountered, please use the
`validate` function instead.
Jessica B. Hamrick
Misc style changes, add more docstrings
r16347
"""
Jessica B. Hamrick
Return the list of errors, rather than the number of errors
r16407 errors = validate(nbjson)
Jessica B. Hamrick
Small style fixes
r16429 return errors == []
Jessica B. Hamrick
Add isvalid function which returns True/False
r16341
Jessica B. Hamrick
Return the list of errors, rather than the number of errors
r16407 def validate(nbjson):
Jessica B. Hamrick
Misc style changes, add more docstrings
r16347 """Checks whether the given notebook JSON conforms to the current
Jessica B. Hamrick
Return the list of errors, rather than the number of errors
r16407 notebook format schema, and returns the list of errors.
Jessica B. Hamrick
Misc style changes, add more docstrings
r16347
"""
Jessica B. Hamrick
Add comments inside validator
r16335 # load the schema file
with open(schema_path, 'r') as fh:
schema_json = json.load(fh)
# resolve internal references
v3schema = resolve_ref(schema_json)
Jessica B. Hamrick
Misc style changes, add more docstrings
r16347 v3schema = jsonpointer.resolve_pointer(v3schema, '/notebook')
Jessica B. Hamrick
Add comments inside validator
r16335
Jessica B. Hamrick
Misc style changes, add more docstrings
r16347 # count how many errors there are
Jessica B. Hamrick
Allow validator to be called from reads_json and writes_json
r16330 v = Draft3Validator(v3schema)
Jessica B. Hamrick
Small style fixes
r16429 errors = list(v.iter_errors(nbjson))
Matthias BUSSONNIER
create a ipynbv3 json schema and a validator...
r8519 return errors
Jessica B. Hamrick
Allow validator to be called from reads_json and writes_json
r16330
Jessica B. Hamrick
Add comments inside validator
r16335 def resolve_ref(json, schema=None):
Jessica B. Hamrick
Misc style changes, add more docstrings
r16347 """Resolve internal references within the given JSON. This essentially
means that dictionaries of this form:
{"$ref": "/somepointer"}
will be replaced with the resolved reference to `/somepointer`.
This only supports local reference to the same JSON file.
Matthias BUSSONNIER
create a ipynbv3 json schema and a validator...
r8519
"""
Jessica B. Hamrick
Add comments inside validator
r16335 if not schema:
schema = json
# if it's a list, resolve references for each item in the list
Matthias BUSSONNIER
create a ipynbv3 json schema and a validator...
r8519 if type(json) is list:
Jessica B. Hamrick
Add comments inside validator
r16335 resolved = []
Matthias BUSSONNIER
create a ipynbv3 json schema and a validator...
r8519 for item in json:
Jessica B. Hamrick
Add comments inside validator
r16335 resolved.append(resolve_ref(item, schema=schema))
# if it's a dictionary, resolve references for each item in the
# dictionary
Matthias BUSSONNIER
create a ipynbv3 json schema and a validator...
r8519 elif type(json) is dict:
Jessica B. Hamrick
Add comments inside validator
r16335 resolved = {}
for key, ref in iteritems(json):
Jessica B. Hamrick
Misc style changes, add more docstrings
r16347
Jessica B. Hamrick
Add comments inside validator
r16335 # if the key is equal to $ref, then replace the entire
# dictionary with the resolved value
Matthias BUSSONNIER
create a ipynbv3 json schema and a validator...
r8519 if key == '$ref':
Jessica B. Hamrick
Misc style changes, add more docstrings
r16347 if len(json) != 1:
raise SchemaError(
"objects containing a $ref should only have one item")
Jessica B. Hamrick
Add comments inside validator
r16335 pointer = jsonpointer.resolve_pointer(schema, ref)
resolved = resolve_ref(pointer, schema=schema)
Jessica B. Hamrick
Clean up validator, and rename nbvalidate to validate
r16332 else:
Jessica B. Hamrick
Add comments inside validator
r16335 resolved[key] = resolve_ref(ref, schema=schema)
# otherwise it's a normal object, so just return it
Jessica B. Hamrick
Clean up validator, and rename nbvalidate to validate
r16332 else:
Jessica B. Hamrick
Add comments inside validator
r16335 resolved = json
return resolved