* feat: manual ordering for issues in kanban * refactor: issues folder structure * refactor: modules and states folder structure * refactor: datepicker code * fix: create issue modal bug * feat: custom progress bar added * refactor: created global component for kanban board * refactor: update cycle and module issue create * refactor: return modules created * refactor: integrated global kanban view everywhere * refactor: integrated global list view everywhere * refactor: removed unnecessary api calls * refactor: update nomenclature for consistency * refactor: global select component for issue view * refactor: track cycles and modules for issue * fix: tracking new cycles and modules in activities * feat: segregate api token workspace * fix: workpsace id during token creation * refactor: update model association to cascade on delete * feat: sentry integrated (#235) * feat: sentry integrated * fix: removed unnecessary env variable * fix: update remirror description to save empty string and empty paragraph (#237) * Update README.md * fix: description and comment_json default value to remove warnings * feat: link option in remirror (#240) * feat: link option in remirror * fix: removed link import from remirror toolbar * feat: module and cycle settings under project * fix: module issue assignment * fix: module issue updation and activity logging * fix: typo while creating module issues * fix: string comparison for update operation * fix: ui fixes (#246) * style: shortcut command label bg color change * sidebar shortcut ui fix --------- Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia1001@gmail.com> * fix: update empty passwords to hashed string and add hashing for magic sign in * refactor: remove print logs from back migrations * build(deps): bump django in /apiserver/requirements Bumps [django](https://github.com/django/django) from 3.2.16 to 3.2.17. - [Release notes](https://github.com/django/django/releases) - [Commits](https://github.com/django/django/compare/3.2.16...3.2.17) --- updated-dependencies: - dependency-name: django dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * feat: cycles and modules toggle in settings, refactor: folder structure (#247) * feat: link option in remirror * fix: removed link import from remirror toolbar * refactor: constants folder * refactor: layouts folder structure * fix: issue view context * feat: cycles and modules toggle in settings --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com> Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia1001@gmail.com> Co-authored-by: Aaryan Khandelwal <65252264+aaryan610@users.noreply.github.com> Co-authored-by: pablohashescobar <118773738+pablohashescobar@users.noreply.github.com> Co-authored-by: sphynxux <122926002+sphynxux@users.noreply.github.com> Co-authored-by: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
310 lines
9.7 KiB
Python
310 lines
9.7 KiB
Python
# Django imports
|
|
from django.contrib.postgres.fields import ArrayField
|
|
from django.db import models
|
|
from django.conf import settings
|
|
from django.db.models.signals import post_save
|
|
from django.dispatch import receiver
|
|
|
|
# Module imports
|
|
from . import ProjectBaseModel
|
|
from plane.utils.html_processor import strip_tags
|
|
|
|
|
|
# TODO: Handle identifiers for Bulk Inserts - nk
|
|
class Issue(ProjectBaseModel):
|
|
PRIORITY_CHOICES = (
|
|
("urgent", "Urgent"),
|
|
("high", "High"),
|
|
("medium", "Medium"),
|
|
("low", "Low"),
|
|
)
|
|
parent = models.ForeignKey(
|
|
"self",
|
|
on_delete=models.CASCADE,
|
|
null=True,
|
|
blank=True,
|
|
related_name="parent_issue",
|
|
)
|
|
state = models.ForeignKey(
|
|
"db.State",
|
|
on_delete=models.CASCADE,
|
|
null=True,
|
|
blank=True,
|
|
related_name="state_issue",
|
|
)
|
|
name = models.CharField(max_length=255, verbose_name="Issue Name")
|
|
description = models.JSONField(blank=True, default=dict)
|
|
description_html = models.TextField(blank=True, default="<p></p>")
|
|
description_stripped = models.TextField(blank=True, null=True)
|
|
priority = models.CharField(
|
|
max_length=30,
|
|
choices=PRIORITY_CHOICES,
|
|
verbose_name="Issue Priority",
|
|
null=True,
|
|
blank=True,
|
|
)
|
|
start_date = models.DateField(null=True, blank=True)
|
|
target_date = models.DateField(null=True, blank=True)
|
|
assignees = models.ManyToManyField(
|
|
settings.AUTH_USER_MODEL,
|
|
blank=True,
|
|
related_name="assignee",
|
|
through="IssueAssignee",
|
|
through_fields=("issue", "assignee"),
|
|
)
|
|
sequence_id = models.IntegerField(default=1, verbose_name="Issue Sequence ID")
|
|
attachments = ArrayField(models.URLField(), size=10, blank=True, default=list)
|
|
labels = models.ManyToManyField(
|
|
"db.Label", blank=True, related_name="labels", through="IssueLabel"
|
|
)
|
|
sort_order = models.FloatField(default=65535)
|
|
|
|
class Meta:
|
|
verbose_name = "Issue"
|
|
verbose_name_plural = "Issues"
|
|
db_table = "issues"
|
|
ordering = ("-created_at",)
|
|
|
|
def save(self, *args, **kwargs):
|
|
# This means that the model isn't saved to the database yet
|
|
if self._state.adding:
|
|
# Get the maximum display_id value from the database
|
|
|
|
last_id = IssueSequence.objects.filter(project=self.project).aggregate(
|
|
largest=models.Max("sequence")
|
|
)["largest"]
|
|
# aggregate can return None! Check it first.
|
|
# If it isn't none, just use the last ID specified (which should be the greatest) and add one to it
|
|
if last_id is not None:
|
|
self.sequence_id = last_id + 1
|
|
if self.state is None:
|
|
try:
|
|
from plane.db.models import State
|
|
|
|
self.state, created = State.objects.get_or_create(
|
|
project=self.project, name="Backlog"
|
|
)
|
|
except ImportError:
|
|
pass
|
|
|
|
# Strip the html tags using html parser
|
|
self.description_stripped = (
|
|
None
|
|
if (self.description_html == "" or self.description_html is None)
|
|
else strip_tags(self.description_html)
|
|
)
|
|
super(Issue, self).save(*args, **kwargs)
|
|
|
|
def __str__(self):
|
|
"""Return name of the issue"""
|
|
return f"{self.name} <{self.project.name}>"
|
|
|
|
|
|
class IssueBlocker(ProjectBaseModel):
|
|
block = models.ForeignKey(
|
|
Issue, related_name="blocker_issues", on_delete=models.CASCADE
|
|
)
|
|
blocked_by = models.ForeignKey(
|
|
Issue, related_name="blocked_issues", on_delete=models.CASCADE
|
|
)
|
|
|
|
class Meta:
|
|
verbose_name = "Issue Blocker"
|
|
verbose_name_plural = "Issue Blockers"
|
|
db_table = "issue_blockers"
|
|
ordering = ("-created_at",)
|
|
|
|
def __str__(self):
|
|
return f"{self.block.name} {self.blocked_by.name}"
|
|
|
|
|
|
class IssueAssignee(ProjectBaseModel):
|
|
issue = models.ForeignKey(
|
|
Issue, on_delete=models.CASCADE, related_name="issue_assignee"
|
|
)
|
|
assignee = models.ForeignKey(
|
|
settings.AUTH_USER_MODEL,
|
|
on_delete=models.CASCADE,
|
|
related_name="issue_assignee",
|
|
)
|
|
|
|
class Meta:
|
|
unique_together = ["issue", "assignee"]
|
|
verbose_name = "Issue Assignee"
|
|
verbose_name_plural = "Issue Assignees"
|
|
db_table = "issue_assignees"
|
|
ordering = ("-created_at",)
|
|
|
|
def __str__(self):
|
|
return f"{self.issue.name} {self.assignee.email}"
|
|
|
|
|
|
class IssueActivity(ProjectBaseModel):
|
|
issue = models.ForeignKey(
|
|
Issue, on_delete=models.CASCADE, related_name="issue_activity"
|
|
)
|
|
verb = models.CharField(max_length=255, verbose_name="Action", default="created")
|
|
field = models.CharField(
|
|
max_length=255, verbose_name="Field Name", blank=True, null=True
|
|
)
|
|
old_value = models.TextField(verbose_name="Old Value", blank=True, null=True)
|
|
new_value = models.TextField(verbose_name="New Value", blank=True, null=True)
|
|
|
|
comment = models.TextField(verbose_name="Comment", blank=True)
|
|
attachments = ArrayField(models.URLField(), size=10, blank=True, default=list)
|
|
issue_comment = models.ForeignKey(
|
|
"db.IssueComment",
|
|
on_delete=models.SET_NULL,
|
|
related_name="issue_comment",
|
|
null=True,
|
|
)
|
|
actor = models.ForeignKey(
|
|
settings.AUTH_USER_MODEL,
|
|
on_delete=models.SET_NULL,
|
|
null=True,
|
|
related_name="issue_activities",
|
|
)
|
|
old_identifier = models.UUIDField(null=True)
|
|
new_identifier = models.UUIDField(null=True)
|
|
|
|
class Meta:
|
|
verbose_name = "Issue Activity"
|
|
verbose_name_plural = "Issue Activities"
|
|
db_table = "issue_activities"
|
|
ordering = ("-created_at",)
|
|
|
|
def __str__(self):
|
|
"""Return issue of the comment"""
|
|
return str(self.issue)
|
|
|
|
|
|
class TimelineIssue(ProjectBaseModel):
|
|
issue = models.ForeignKey(
|
|
Issue, on_delete=models.CASCADE, related_name="issue_timeline"
|
|
)
|
|
sequence_id = models.FloatField(default=1.0)
|
|
links = models.JSONField(default=dict, blank=True)
|
|
|
|
class Meta:
|
|
verbose_name = "Timeline Issue"
|
|
verbose_name_plural = "Timeline Issues"
|
|
db_table = "issue_timelines"
|
|
ordering = ("-created_at",)
|
|
|
|
def __str__(self):
|
|
"""Return project of the project member"""
|
|
return str(self.issue)
|
|
|
|
|
|
class IssueComment(ProjectBaseModel):
|
|
comment_stripped = models.TextField(verbose_name="Comment", blank=True)
|
|
comment_json = models.JSONField(blank=True, default=dict)
|
|
comment_html = models.TextField(blank=True, default="<p></p>")
|
|
attachments = ArrayField(models.URLField(), size=10, blank=True, default=list)
|
|
issue = models.ForeignKey(Issue, on_delete=models.CASCADE)
|
|
# System can also create comment
|
|
actor = models.ForeignKey(
|
|
settings.AUTH_USER_MODEL,
|
|
on_delete=models.CASCADE,
|
|
related_name="comments",
|
|
null=True,
|
|
)
|
|
|
|
def save(self, *args, **kwargs):
|
|
self.comment_stripped = (
|
|
strip_tags(self.comment_html) if self.comment_html != "" else ""
|
|
)
|
|
return super(IssueComment, self).save(*args, **kwargs)
|
|
|
|
class Meta:
|
|
verbose_name = "Issue Comment"
|
|
verbose_name_plural = "Issue Comments"
|
|
db_table = "issue_comments"
|
|
ordering = ("-created_at",)
|
|
|
|
def __str__(self):
|
|
"""Return issue of the comment"""
|
|
return str(self.issue)
|
|
|
|
|
|
class IssueProperty(ProjectBaseModel):
|
|
user = models.ForeignKey(
|
|
settings.AUTH_USER_MODEL,
|
|
on_delete=models.CASCADE,
|
|
related_name="issue_property_user",
|
|
)
|
|
properties = models.JSONField(default=dict)
|
|
|
|
class Meta:
|
|
verbose_name = "Issue Property"
|
|
verbose_name_plural = "Issue Properties"
|
|
db_table = "issue_properties"
|
|
ordering = ("-created_at",)
|
|
unique_together = ["user", "project"]
|
|
|
|
def __str__(self):
|
|
"""Return properties status of the issue"""
|
|
return str(self.user)
|
|
|
|
|
|
class Label(ProjectBaseModel):
|
|
parent = models.ForeignKey(
|
|
"self",
|
|
on_delete=models.CASCADE,
|
|
null=True,
|
|
blank=True,
|
|
related_name="parent_label",
|
|
)
|
|
name = models.CharField(max_length=255)
|
|
description = models.TextField(blank=True)
|
|
color = models.CharField(max_length=255, blank=True)
|
|
|
|
class Meta:
|
|
verbose_name = "Label"
|
|
verbose_name_plural = "Labels"
|
|
db_table = "labels"
|
|
ordering = ("-created_at",)
|
|
|
|
def __str__(self):
|
|
return str(self.name)
|
|
|
|
|
|
class IssueLabel(ProjectBaseModel):
|
|
issue = models.ForeignKey(
|
|
"db.Issue", on_delete=models.CASCADE, related_name="label_issue"
|
|
)
|
|
label = models.ForeignKey(
|
|
"db.Label", on_delete=models.CASCADE, related_name="label_issue"
|
|
)
|
|
|
|
class Meta:
|
|
verbose_name = "Issue Label"
|
|
verbose_name_plural = "Issue Labels"
|
|
db_table = "issue_labels"
|
|
ordering = ("-created_at",)
|
|
|
|
def __str__(self):
|
|
return f"{self.issue.name} {self.label.name}"
|
|
|
|
|
|
class IssueSequence(ProjectBaseModel):
|
|
issue = models.ForeignKey(
|
|
Issue, on_delete=models.SET_NULL, related_name="issue_sequence", null=True
|
|
)
|
|
sequence = models.PositiveBigIntegerField(default=1)
|
|
deleted = models.BooleanField(default=False)
|
|
|
|
class Meta:
|
|
verbose_name = "Issue Sequence"
|
|
verbose_name_plural = "Issue Sequences"
|
|
db_table = "issue_sequences"
|
|
ordering = ("-created_at",)
|
|
|
|
|
|
# TODO: Find a better method to save the model
|
|
@receiver(post_save, sender=Issue)
|
|
def create_issue_sequence(sender, instance, created, **kwargs):
|
|
if created:
|
|
IssueSequence.objects.create(
|
|
issue=instance, sequence=instance.sequence_id, project=instance.project
|
|
)
|