Skip to content
Snippets Groups Projects
Commit 72ca76fc authored by Jörn Künsemöller's avatar Jörn Künsemöller
Browse files

TMSS-241: Add viewsets, serializers for categories

parent 373e1bca
No related branches found
No related tags found
1 merge request!184Resolve TMSS-241
# Generated by Django 3.0.6 on 2020-07-14 21:08
# Generated by Django 3.0.6 on 2020-07-14 21:21
from django.conf import settings
import django.contrib.postgres.fields
......@@ -1019,7 +1019,7 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='project',
name='cycles',
field=models.ManyToManyField(help_text='Cycles to which this project belongs (NULLable).', null=True, related_name='projects', to='tmssapp.Cycle'),
field=models.ManyToManyField(help_text='Cycles to which this project belongs (NULLable).', related_name='projects', to='tmssapp.Cycle'),
),
migrations.AddField(
model_name='project',
......
......@@ -155,9 +155,8 @@ class PeriodCategory(AbstractChoice):
The items in the Choices class below are automagically populated into the database via a data migration."""
class Choices(Enum):
SINGLE = "single"
LONG = "long"
TERM = "term"
SINGLE_CYCLE = "single_cycle"
LONG_TERM = "long_term"
UNBOUNDED = "unbounded"
......@@ -167,11 +166,9 @@ class ProjectCategory(AbstractChoice):
class Choices(Enum):
REGULAR = "regular"
USER = "user"
SHARED = "shared"
SUPPORT = "support"
USER_SHARED_SUPPORT = "user_shared_support"
COMMISSIONING = "commissioning"
DOT = "dot"
DOT = "ddt"
TEST = "test"
......@@ -279,8 +276,7 @@ class Cycle(NamedCommonPK):
class Project(NamedCommonPK):
# todo: cycles should be protected since we have to manually decide to clean up projects with a cycle or keep them without cycle, however, ManyToManyField does not allow for that
cycles = ManyToManyField('Cycle', related_name='projects', null=True, help_text='Cycles to which this project belongs (NULLable).')
cycles = ManyToManyField('Cycle', related_name='projects', help_text='Cycles to which this project belongs (NULLable).')
priority_rank = FloatField(null=False, help_text='Priority of this project w.r.t. other projects. Projects can interrupt observations of lower-priority projects.') # todo: add if needed: validators=[MinValueValidator(0.0), MaxValueValidator(1.0)]
trigger_priority = IntegerField(default=1000, help_text='Priority of this project w.r.t. triggers.') # todo: verify meaning and add to help_text: "Triggers with higher priority than this threshold can interrupt observations of projects."
can_trigger = BooleanField(default=False, help_text='True if this project is allowed to supply observation requests on the fly, possibly interrupting currently running observations (responsive telescope).')
......
......@@ -212,6 +212,18 @@ class SettingSerializer(serializers.ModelSerializer):
fields = '__all__'
class ProjectCategorySerializer(serializers.ModelSerializer):
class Meta:
model = models.ProjectCategory
fields = '__all__'
class PeriodCategorySerializer(serializers.ModelSerializer):
class Meta:
model = models.PeriodCategory
fields = '__all__'
class SchedulingSetSerializer(RelationalHyperlinkedModelSerializer):
# Create a JSON editor form to replace the simple text field based on the schema in the template that this
......
......@@ -208,6 +208,16 @@ class SettingViewSet(LOFARViewSet):
serializer_class = serializers.SettingSerializer
class PeriodCategoryViewSet(LOFARViewSet):
queryset = models.PeriodCategory.objects.all()
serializer_class = serializers.PeriodCategorySerializer
class ProjectCategoryViewSet(LOFARViewSet):
queryset = models.ProjectCategory.objects.all()
serializer_class = serializers.ProjectCategorySerializer
class SchedulingUnitDraftViewSet(LOFARViewSet):
queryset = models.SchedulingUnitDraft.objects.all()
serializer_class = serializers.SchedulingUnitDraftSerializer
......
......@@ -87,6 +87,8 @@ router.register(r'datatype', viewsets.DatatypeViewSet)
router.register(r'dataformat', viewsets.DataformatViewSet)
router.register(r'copy_reason', viewsets.CopyReasonViewSet)
router.register(r'flag', viewsets.FlagViewSet)
router.register(r'period_category', viewsets.PeriodCategoryViewSet)
router.register(r'project_category', viewsets.ProjectCategoryViewSet)
# templates
router.register(r'generator_template', viewsets.GeneratorTemplateViewSet)
......
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