77 lines
2.9 KiB
Python
77 lines
2.9 KiB
Python
# Copyright (C) 2014 Andrey Antukh <niwi@niwi.be>
|
|
# Copyright (C) 2014 Jesús Espino <jespinog@gmail.com>
|
|
# Copyright (C) 2014 David Barragán <bameda@dbarragan.com>
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
from rest_framework import serializers
|
|
|
|
from taiga.base.serializers import Serializer, PickleField, NeighborsSerializerMixin
|
|
from taiga.mdrender.service import render as mdrender
|
|
from taiga.projects.validators import ProjectExistsValidator, TaskStatusExistsValidator
|
|
from taiga.projects.milestones.validators import SprintExistsValidator
|
|
from taiga.projects.userstories.validators import UserStoryExistsValidator
|
|
|
|
from . import models
|
|
|
|
|
|
class TaskSerializer(serializers.ModelSerializer):
|
|
tags = PickleField(required=False, default=[])
|
|
comment = serializers.SerializerMethodField("get_comment")
|
|
milestone_slug = serializers.SerializerMethodField("get_milestone_slug")
|
|
blocked_note_html = serializers.SerializerMethodField("get_blocked_note_html")
|
|
description_html = serializers.SerializerMethodField("get_description_html")
|
|
is_closed = serializers.SerializerMethodField("get_is_closed")
|
|
|
|
class Meta:
|
|
model = models.Task
|
|
|
|
def get_comment(self, obj):
|
|
return ""
|
|
|
|
def get_milestone_slug(self, obj):
|
|
if obj.milestone:
|
|
return obj.milestone.slug
|
|
else:
|
|
return None
|
|
|
|
def get_blocked_note_html(self, obj):
|
|
return mdrender(obj.project, obj.blocked_note)
|
|
|
|
def get_description_html(self, obj):
|
|
return mdrender(obj.project, obj.description)
|
|
|
|
def get_is_closed(self, obj):
|
|
return obj.status.is_closed
|
|
|
|
|
|
class TaskNeighborsSerializer(NeighborsSerializerMixin, TaskSerializer):
|
|
def serialize_neighbor(self, neighbor):
|
|
return NeighborTaskSerializer(neighbor).data
|
|
|
|
|
|
class NeighborTaskSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = models.Task
|
|
fields = ("id", "ref", "subject")
|
|
depth = 0
|
|
|
|
|
|
class TasksBulkSerializer(ProjectExistsValidator, SprintExistsValidator, TaskStatusExistsValidator,
|
|
UserStoryExistsValidator, Serializer):
|
|
project_id = serializers.IntegerField()
|
|
sprint_id = serializers.IntegerField()
|
|
status_id = serializers.IntegerField(required=False)
|
|
us_id = serializers.IntegerField()
|
|
bulk_tasks = serializers.CharField()
|