-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathvalidate.py
executable file
·89 lines (70 loc) · 2.2 KB
/
validate.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Validate BioCompute Object
Validates a BCO based on the schema supplied by the user. If the user does not
supply a schema the schema in the BCO will be used.
"""
import sys
import json
import argparse
import jsonschema
from jsonschema import validate
__version__ = "1.1.0"
__status__ = "Production"
def usr_args():
"""Program Arguments
All arguments for process are defined here.
"""
parser = argparse.ArgumentParser()
# set usages options
parser = argparse.ArgumentParser(
prog='argosdb',
usage='%(prog)s [options]')
# version
parser.add_argument(
'-v', '--version',
action='version',
version='%(prog)s ' + __version__)
parser.add_argument('-j', '--json',
required=True,
help="JSON to process.")
parser.add_argument('-s', '--schema',
# type = argparse.FileType('r'),
help="Root json schema to validate against.")
# Print usage message if no args are supplied.
if len(sys.argv) <= 1:
sys.argv.append('--help')
options = parser.parse_args()
return options
def get_schema(options):
"""Load Schema
"""
with open(options.schema, 'r', encoding='utf8') as file:
schema = json.load(file)
print('loaded schema')
return schema
def validate_json(options):
"""REF: https://json-schema.org/ """
# Describe what kind of json you expect.
execute_api_schema = get_schema(options)
with open(options.json, 'r', encoding='utf8') as file:
data = json.load(file)
print('loaded data')
try:
validate(instance=data, schema=execute_api_schema)
except jsonschema.exceptions.ValidationError as err:
print(err)
err = "Given JSON data is InValid"
return False, err
message = "Given JSON data is Valid"
return True, message
def main():
"""
Main function
"""
options = usr_args()
message = validate_json(options)
print(message[1])
#______________________________________________________________________________#
if __name__ == "__main__":
main()