Skip to content
Snippets Groups Projects
Commit 3eabb3c1 authored by Nico Vermaas's avatar Nico Vermaas
Browse files

refactoring some fields and gui

parent 32c11508
No related branches found
No related tags found
No related merge requests found
Pipeline #8357 passed
atdb/docs/ATDB-LDV Workflow Diagram.png

100 KiB | W: | H:

atdb/docs/ATDB-LDV Workflow Diagram.png

94.7 KiB | W: | H:

atdb/docs/ATDB-LDV Workflow Diagram.png
atdb/docs/ATDB-LDV Workflow Diagram.png
atdb/docs/ATDB-LDV Workflow Diagram.png
atdb/docs/ATDB-LDV Workflow Diagram.png
  • 2-up
  • Swipe
  • Onion skin
...@@ -7,33 +7,34 @@ from django.db.models import Sum ...@@ -7,33 +7,34 @@ from django.db.models import Sum
datetime_format_string = '%Y-%m-%dT%H:%M:%SZ' datetime_format_string = '%Y-%m-%dT%H:%M:%SZ'
class Workflow(models.Model): class Workflow(models.Model):
workflow_uri = models.CharField(max_length=30, blank=True, null=True) workflow_uri = models.CharField(unique=True, max_length=30, blank=True, null=True)
repository = models.CharField(max_length=100, blank=True, null=True) repository = models.CharField(max_length=100, blank=True, null=True)
commit_id = models.CharField(max_length=30, blank=True, null=True) commit_id = models.CharField(max_length=15, blank=True, null=True)
path = models.CharField(max_length=100, blank=True, null=True) path = models.CharField(max_length=100, blank=True, null=True)
def __str__(self): def __str__(self):
return str(self.id)+' - '+str(self.workflow_uri) return str(self.workflow_uri)
class Task(models.Model): class Task(models.Model):
taskID = models.CharField(db_index=True, max_length=30, blank=True, null=True) taskID = models.CharField(db_index=True, max_length=30, blank=True, null=True)
task_type = models.CharField(max_length=20, default="task") task_type = models.CharField(max_length=20, default="task")
filter = models.CharField(max_length=30, blank=True, null=True)
# note: the apparent naming reversal is intentional. Predecessors are somebody elses successors. # note: the apparent naming reversal is intentional. Predecessors are somebody elses successors.
# todo: change to Integer... but then the specification service has to be changed to using a dict # todo: change to Integer... but then the specification service has to be changed to using a dict
# to properly translate a python 'None' string to a Null value. # to properly translate a python 'None' string to a Null value.
new_predecessor_id = models.CharField(max_length=12, blank=True, null=True)
predecessor = models.ForeignKey('self', related_name='task_successors', on_delete=models.SET_NULL, null=True,blank=True)
predecessor = models.ForeignKey('self', related_name='successors', on_delete=models.SET_NULL, null=True,blank=True)
new_workflow_id = models.CharField(max_length=15, blank=True, null=True)
new_workflow_uri = models.CharField(max_length=100, blank=True, null=True)
workflow = models.ForeignKey(Workflow, related_name='tasks', on_delete=models.SET_NULL, null=True, blank=True) workflow = models.ForeignKey(Workflow, related_name='tasks', on_delete=models.SET_NULL, null=True, blank=True)
project = models.CharField(max_length=100, blank=True, null=True, default="unknown") project = models.CharField(max_length=100, blank=True, null=True, default="unknown")
sas_id = models.CharField(max_length=30, blank=True, null=True) sas_id = models.CharField(max_length=15, blank=True, null=True)
priority = models.IntegerField(default=0) priority = models.IntegerField()
purge_policy = models.CharField(max_length=5, default="no", blank=True, null=True) purge_policy = models.CharField(max_length=5, default="no", blank=True, null=True)
new_workflow_id = models.CharField(max_length=12, blank=True, null=True)
new_workflow_uri = models.CharField(max_length=100, blank=True, null=True)
stage_request_id = models.IntegerField(default=0) stage_request_id = models.IntegerField(default=0)
inputs = models.JSONField(null=True, blank=True) inputs = models.JSONField(null=True, blank=True)
...@@ -46,7 +47,7 @@ class Task(models.Model): ...@@ -46,7 +47,7 @@ class Task(models.Model):
status = models.CharField(db_index=True, default="unknown", max_length=50,blank=True, null=True) status = models.CharField(db_index=True, default="unknown", max_length=50,blank=True, null=True)
def __str__(self): def __str__(self):
return str(self.id) + ' - ' + str(self.taskID) + ' - ' + str(self.sas_id) return str(self.id) + ' - ' + str(self.sas_id)
# this translates a view-name (from urls.py) back to a url, to avoid hardcoded url's in the html templates # this translates a view-name (from urls.py) back to a url, to avoid hardcoded url's in the html templates
# bad : <td><a href="/atdb/taaks/{{ task.id }}/" target="_blank">{{ task.taskID }} </a> </td> # bad : <td><a href="/atdb/taaks/{{ task.id }}/" target="_blank">{{ task.taskID }} </a> </td>
...@@ -66,7 +67,7 @@ class LogEntry(models.Model): ...@@ -66,7 +67,7 @@ class LogEntry(models.Model):
status = models.CharField(max_length=50,default="defined", blank=True, null=True) status = models.CharField(max_length=50,default="defined", blank=True, null=True)
def __str__(self): def __str__(self):
return str(self.id)+' - ('+str(self.task)+')' return str(self.id)+ ' - '+ str(self.task)+' - '+self.status
class Status(models.Model): class Status(models.Model):
...@@ -74,14 +75,6 @@ class Status(models.Model): ...@@ -74,14 +75,6 @@ class Status(models.Model):
timestamp = models.DateTimeField(default=datetime.utcnow, blank=True) timestamp = models.DateTimeField(default=datetime.utcnow, blank=True)
task = models.ForeignKey(Task, related_name='status_history', on_delete=models.CASCADE, null=False) task = models.ForeignKey(Task, related_name='status_history', on_delete=models.CASCADE, null=False)
@property
def property_taskID(self):
return self.task.taskID
@property
def property_task_type(self):
return self.task.task_type
# the representation of the value in the REST API # the representation of the value in the REST API
def __str__(self): def __str__(self):
formatedDate = self.timestamp.strftime(datetime_format_string) formatedDate = self.timestamp.strftime(datetime_format_string)
......
...@@ -36,11 +36,14 @@ class TaskSerializer(serializers.ModelSerializer): ...@@ -36,11 +36,14 @@ class TaskSerializer(serializers.ModelSerializer):
required=False required=False
) )
successors = serializers.StringRelatedField(
many=True,
required=False,
)
class Meta: class Meta:
model = Task model = Task
fields = ('id','task_type','taskID', fields = ('id','task_type','taskID','filter','predecessor','successors',
'new_predecessor_id','predecessor',
'project','sas_id','priority','purge_policy','skip', 'project','sas_id','priority','purge_policy','skip',
'new_workflow_id','new_workflow_uri','workflow', 'new_workflow_id','new_workflow_uri','workflow',
'stage_request_id', 'stage_request_id',
......
...@@ -46,17 +46,20 @@ def add_workflow(myTaskObject): ...@@ -46,17 +46,20 @@ def add_workflow(myTaskObject):
if (new_workflow == None): if (new_workflow == None):
# then try workflow_uri # then try workflow_uri
new_workflow = Workflow.objects.get(workflow_uri=new_workflow_uri) try:
new_workflow = Workflow.objects.get(workflow_uri=new_workflow_uri)
except:
pass
# first check if works needs to be done at all # first check if works needs to be done at all
if (myTaskObject.workflow != new_workflow): if (myTaskObject.workflow != new_workflow):
# set the new status # set the new workflow
myTaskObject.workflow = new_workflow myTaskObject.workflow = new_workflow
return myTaskObject return myTaskObject
def add_predecessor(myTaskObject): def add_predecessor_obsolete(myTaskObject):
# connect the task to a workflow after posting a (flat) task through the REST API # connect the task to a workflow after posting a (flat) task through the REST API
try: try:
...@@ -100,10 +103,6 @@ def handle_pre_save(sender, **kwargs): ...@@ -100,10 +103,6 @@ def handle_pre_save(sender, **kwargs):
myStatus = Status(name=new_status, task=myTaskObject) myStatus = Status(name=new_status, task=myTaskObject)
myStatus.save() myStatus.save()
# connect the task to a workflow after posting a (flat) task through the REST API
myTaskObject = add_workflow(myTaskObject)
myTaskObject = add_predecessor(myTaskObject)
# temporarily disconnect the post_save handler to save the dataproduct (again) and avoiding recursion. # temporarily disconnect the post_save handler to save the dataproduct (again) and avoiding recursion.
# I don't use pre_save, because then the 'created' key is not available, which is the most handy way to # I don't use pre_save, because then the 'created' key is not available, which is the most handy way to
...@@ -143,6 +142,10 @@ def handle_post_save(sender, **kwargs): ...@@ -143,6 +142,10 @@ def handle_post_save(sender, **kwargs):
myStatus = Status(name=myTaskObject.new_status, task=myTaskObject) myStatus = Status(name=myTaskObject.new_status, task=myTaskObject)
myStatus.save() myStatus.save()
# connect the task to a workflow after posting a (flat) task through the REST API
myTaskObject = add_workflow(myTaskObject)
#myTaskObject = add_predecessor(myTaskObject)
# temporarily disconnect the post_save handler to save the dataproduct (again) and avoiding recursion. # temporarily disconnect the post_save handler to save the dataproduct (again) and avoiding recursion.
# I don't use pre_save, because then the 'created' key is not available, which is the most handy way to # I don't use pre_save, because then the 'created' key is not available, which is the most handy way to
# determine if this dataproduct already exists. (I could also check the database, but this is easier). # determine if this dataproduct already exists. (I could also check the database, but this is easier).
......
...@@ -3,7 +3,7 @@ TD { ...@@ -3,7 +3,7 @@ TD {
font-size: 12pt; font-size: 12pt;
} }
.defined, .completed, .complete, { .defined, .staged, {
background-color: lemonchiffon; background-color: lemonchiffon;
color: blue; color: blue;
} }
......
...@@ -17,13 +17,11 @@ ...@@ -17,13 +17,11 @@
<table class="table table-striped table-bordered table-sm"> <table class="table table-striped table-bordered table-sm">
<thead> <thead>
<tr> <tr>
<th width="5%">TaskID</th> <th width="5%">ID</th>
<th>Status</th>
<th width="3%">task_type</th>
<th>Status</th>
<th>Project</th> <th>Project</th>
<th width="15%">Workflow</th> <th width="15%">Workflow</th>
<th>Created</th> <th>Created</th>
<th>Size</th> <th>Size</th>
...@@ -46,7 +44,7 @@ ...@@ -46,7 +44,7 @@
</div> </div>
{% include 'taskdatabase/pagination.html' %} {% include 'taskdatabase/pagination.html' %}
</div> </div>
<p class="footer"> Version 1.0.0 (21 jan 2021 - 11:00) <p class="footer"> Version 1.0.0 (22 jan 2021 - 9:00)
<script type="text/javascript"> <script type="text/javascript">
(function(seconds) { (function(seconds) {
var refresh, var refresh,
......
...@@ -6,10 +6,9 @@ ...@@ -6,10 +6,9 @@
<td> <td>
<a href="{{ task.get_absolute_url }}" target="_blank">{{ task.taskID }} </a> <a href="{{ task.get_absolute_url }}" target="_blank">{{ task.id }} </a>
</td> </td>
<td>{{ task.status }}</td> <td>{{ task.status }}</td>
<td>{{ task.task_type }}</td>
<td>{{ task.project }}</td> <td>{{ task.project }}</td>
<td>{{ task.workflow }} <td>{{ task.workflow }}
...@@ -19,12 +18,15 @@ ...@@ -19,12 +18,15 @@
</td> </td>
<td> <td>
{% if task.status == "defining" %}
<a href="{% url 'task-setstatus-view' task.pk 'defined' my_tasks.number %}" class="btn btn-primary btn-sm" role="button">To Defined</a>
{% endif %}
{% if task.status == "defined" %} {% if task.status == "defined" %}
<a href="{% url 'task-setstatus-view' task.pk 'defining' my_tasks.number %}" class="btn btn-primary btn-sm" role="button">To Defining</a> <a href="{% url 'task-setstatus-view' task.pk 'defining' my_tasks.number %}" class="btn btn-primary btn-sm" role="button">To Defining</a>
{% endif %} {% endif %}
{% if task.status == "submitted" %} {% if task.status == "submitted" or task.status == "submitting" %}
<a href="{% url 'task-setstatus-view' task.pk 'defined' my_tasks.number %}" class="btn btn-primary btn-sm" role="button">To Defined</a> <a href="{% url 'task-setstatus-view' task.pk 'defined' my_tasks.number %}" class="btn btn-primary btn-sm" role="button">To Defined</a>
{% endif %} {% endif %}
......
...@@ -28,6 +28,8 @@ class TaskFilter(filters.FilterSet): ...@@ -28,6 +28,8 @@ class TaskFilter(filters.FilterSet):
model = Task model = Task
fields = { fields = {
'task_type': ['exact', 'icontains'],
'filter': ['exact', 'icontains'],
'project': ['exact', 'icontains'], 'project': ['exact', 'icontains'],
'sas_id': ['exact', 'icontains'], 'sas_id': ['exact', 'icontains'],
'status': ['exact', 'icontains', 'in', 'startswith'], 'status': ['exact', 'icontains', 'in', 'startswith'],
......
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