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

TMSS-745: added convenience endpoints to fetch valid template documents (with...

TMSS-745: added convenience endpoints to fetch valid template documents (with or without all defaults) for any observation strategy template. The user can then inspect that json document to learn, and/or edit some parameters as override, and then upload it as requirements_doc for a new scheduling_unit_draft
parent da8564a3
No related branches found
No related tags found
3 merge requests!634WIP: COBALT commissioning delta,!504TMSS-745: Responsive Telescope,!481Draft: SW-971 SW-973 SW-975: Various fixes to build LOFAR correctly.
...@@ -105,6 +105,38 @@ class SchedulingUnitObservingStrategyTemplateViewSet(LOFARViewSet): ...@@ -105,6 +105,38 @@ class SchedulingUnitObservingStrategyTemplateViewSet(LOFARViewSet):
status=status.HTTP_201_CREATED, status=status.HTTP_201_CREATED,
headers={'Location': scheduling_unit_draft_path}) headers={'Location': scheduling_unit_draft_path})
@swagger_auto_schema(responses={200: 'The template document as JSON object',
403: 'forbidden'},
operation_description="Get just the template document as JSON object. This template document can be submitted as the requirements_doc for a new scheduling_unit_draft (with user edits if you want).")
@action(methods=['get'], detail=True)
def template_doc(self, request, pk=None):
strategy_template = get_object_or_404(models.SchedulingUnitObservingStrategyTemplate, pk=pk)
return JsonResponse(strategy_template.template, json_dumps_params={'indent': 2})
@swagger_auto_schema(responses={200: 'The template document as JSON object with all defaults filled in.',
403: 'forbidden'},
operation_description="Get the template document as JSON object with all defaults filled in. This template document can be submitted as the requirements_doc for a new scheduling_unit_draft (with user edits if you want).")
@action(methods=['get'], detail=True)
def template_doc_complete_with_defaults(self, request, pk=None):
strategy_template = get_object_or_404(models.SchedulingUnitObservingStrategyTemplate, pk=pk)
template_doc = strategy_template.template
# loop over all tasks, and add the defaults to each task given the task's specifications_template
for task_name, task_doc in list(template_doc['tasks'].items()):
task_specifications_template = models.TaskTemplate.objects.get(name=task_doc['specifications_template'])
template_doc['tasks'][task_name] = add_defaults_to_json_object_for_schema(task_doc, task_specifications_template.schema)
# add the default constraints given the scheduling_constraints_template
constraints_template = models.SchedulingConstraintsTemplate.objects.get(name=template_doc.get('scheduling_constraints_template'))
constraints_doc = add_defaults_to_json_object_for_schema(template_doc.get('scheduling_constraints_doc', {}), constraints_template.schema)
template_doc['scheduling_constraints_doc'] = constraints_doc
return JsonResponse(template_doc, json_dumps_params={'indent': 2})
class SchedulingUnitObservingStrategyTemplateNestedViewSet(LOFARNestedViewSet): class SchedulingUnitObservingStrategyTemplateNestedViewSet(LOFARNestedViewSet):
queryset = models.SchedulingUnitObservingStrategyTemplate.objects.all() queryset = models.SchedulingUnitObservingStrategyTemplate.objects.all()
serializer_class = serializers.SchedulingUnitObservingStrategyTemplateSerializer serializer_class = serializers.SchedulingUnitObservingStrategyTemplateSerializer
......
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