Skip to content
Snippets Groups Projects
Commit 72ef25b2 authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

TMSS-272: add title/description/version to schema for each template so each...

TMSS-272: add title/description/version to schema for each template so each schema is properly annotate. Validate the schema itself against its own schema
parent fffe4b4c
No related branches found
No related tags found
1 merge request!213Resolve TMSS-272
...@@ -8,13 +8,9 @@ from django.contrib.postgres.indexes import GinIndex ...@@ -8,13 +8,9 @@ from django.contrib.postgres.indexes import GinIndex
from enum import Enum from enum import Enum
from django.db.models.expressions import RawSQL from django.db.models.expressions import RawSQL
from django.db.models.deletion import ProtectedError from django.db.models.deletion import ProtectedError
from lofar.common.json_utils import validate_json_against_schema from lofar.common.json_utils import validate_json_against_schema, validate_json_against_its_schema
from django.core.exceptions import ValidationError from django.core.exceptions import ValidationError
from django.urls import reverse as reverse_path
from rest_framework import status
import datetime import datetime
import json
from lofar.common import json_utils
# #
# Common # Common
...@@ -220,6 +216,24 @@ class Template(NamedCommon): ...@@ -220,6 +216,24 @@ class Template(NamedCommon):
# TODO: remove all <class>_unique_name_version UniqueConstraint's from the subclasses and replace by this line below when we start using django 3.0 # TODO: remove all <class>_unique_name_version UniqueConstraint's from the subclasses and replace by this line below when we start using django 3.0
# constraints = [UniqueConstraint(fields=['name', 'version'], name='%(class)s_unique_name_version')] # constraints = [UniqueConstraint(fields=['name', 'version'], name='%(class)s_unique_name_version')]
def save(self, force_insert=False, force_update=False, using=None, update_fields=None):
# if not self.schema.get('$id', '').startswith('http'):
# raise ValidationError("No valid $id to http URL given")
if 'title' not in self.schema:
self.schema['title'] = self.name
if 'description' not in self.schema:
self.schema['description'] = self.description
if 'version' not in self.schema:
self.schema['version'] = self.version
if '$schema' in self.schema:
validate_json_against_its_schema(self.schema)
super().save(force_insert, force_update, using, update_fields)
# concrete models # concrete models
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment