Skip to content

Commit

Permalink
backoffice: use the WorkflowTicket serializer
Browse files Browse the repository at this point in the history
  • Loading branch information
DonHaul committed Aug 22, 2024
2 parents a1331b8 + 77a10fd commit 2ad0a96
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 58 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

class WorkflowTicketSerializer(serializers.ModelSerializer):
ticket_url = serializers.SerializerMethodField()
workflow_id = serializers.PrimaryKeyRelatedField(queryset=Workflow.objects.all())

class Meta:
model = WorkflowTicket
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ def get_queryset(self):


class WorkflowTicketViewSet(viewsets.ViewSet):
serializer_class = WorkflowTicketSerializer

def retrieve(self, request, *args, **kwargs):
workflow_id = kwargs.get("pk")
ticket_type = request.query_params.get("ticket_type")
Expand All @@ -68,7 +70,7 @@ def retrieve(self, request, *args, **kwargs):
workflow_ticket = WorkflowTicket.objects.get(
workflow_id=workflow_id, ticket_type=ticket_type
)
serializer = WorkflowTicketSerializer(workflow_ticket)
serializer = self.serializer_class(workflow_ticket)
return Response(serializer.data)
except WorkflowTicket.DoesNotExist:
return Response(
Expand All @@ -77,27 +79,11 @@ def retrieve(self, request, *args, **kwargs):
)

def create(self, request, *args, **kwargs):
workflow_id = request.data.get("workflow_id")
ticket_type = request.data.get("ticket_type")
ticket_id = request.data.get("ticket_id")

if not all([workflow_id, ticket_type, ticket_id]):
return Response(
{"error": "Workflow_id, ticket_id and ticket_type are required."},
status=status.HTTP_400_BAD_REQUEST,
)
serializer = self.serializer_class(data=request.data)

try:
workflow = Workflow.objects.get(id=workflow_id)
workflow_ticket = WorkflowTicket.objects.create(
workflow_id=workflow, ticket_id=ticket_id, ticket_type=ticket_type
)
serializer = WorkflowTicketSerializer(workflow_ticket)
if serializer.is_valid(raise_exception=True):
serializer.save()
return Response(serializer.data, status=status.HTTP_201_CREATED)
except Exception as e:
return Response(
{"error": str(e)}, status=status.HTTP_500_INTERNAL_SERVER_ERROR
)


class AuthorWorkflowViewSet(viewsets.ViewSet):
Expand Down Expand Up @@ -267,7 +253,7 @@ def __init__(self, *args, **kwargs):
filter_fields = {
"status": "status",
"workflow_type": "workflow_type",
"is_update": "is_update"
"is_update": "is_update",
}

ordering_fields = {"_updated_at": "_updated_at"}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class WorkflowDocument(Document):
"value": fields.KeywordField(),
"current": fields.BooleanField(),
}
)
),
}
)
status = fields.KeywordField()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,9 @@ def test_create_missing_params(self):
)

assert response.status_code == 400
assert response.data == {
"error": "Workflow_id, ticket_id and ticket_type are required."
assert response.json() == {
"workflow_id": ["This field is required."],
"ticket_id": ["This field is required."],
}

def test_create_happy_flow(self):
Expand Down Expand Up @@ -404,25 +405,13 @@ def setUpClass(cls):
Workflow.objects.update_or_create(
data={
"ids": [
{
"value": "0000-0003-3302-3333",
"schema": "ORCID"
},
{
"value": "CastleFrank",
"schema": "INSPIRE BAI"
}
{"value": "0000-0003-3302-3333", "schema": "ORCID"},
{"value": "CastleFrank", "schema": "INSPIRE BAI"},
],
"name": {
"value": "Castle, Frank",
"preferred_name": "Frank Castle"
},
"name": {"value": "Castle, Frank", "preferred_name": "Frank Castle"},
"email_addresses": [
{
"value": "[email protected]",
"current": True
}
]
{"value": "[email protected]", "current": True}
],
},
status=StatusChoices.APPROVAL,
core=True,
Expand All @@ -432,25 +421,13 @@ def setUpClass(cls):
Workflow.objects.update_or_create(
data={
"ids": [
{
"value": "0000-0003-3302-2222",
"schema": "ORCID"
},
{
"value": "SmithJohn",
"schema": "INSPIRE BAI"
}
{"value": "0000-0003-3302-2222", "schema": "ORCID"},
{"value": "SmithJohn", "schema": "INSPIRE BAI"},
],
"name": {
"value": "Smith, John",
"preferred_name": "John Smith"
},
"name": {"value": "Smith, John", "preferred_name": "John Smith"},
"email_addresses": [
{
"value": "[email protected]",
"current": True
}
]
{"value": "[email protected]", "current": True}
],
},
status=StatusChoices.RUNNING,
core=True,
Expand Down

0 comments on commit 2ad0a96

Please sign in to comment.