mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
* feat: initiate integrations * feat: initiate github integration create models for the same * feat: github integration views * fix: update workspace integration view to create bot users * refactor: rename repository model * refactor: update github repo sync endpoint to create repo and sync in one go * refactor: update issue activities to post the updates to segway hook * refactor: update endpoints to get project id and add actor as a member of project in repo sync * fix: make is bot as a read only field * fix: remove github repo imports * fix: url mapping * feat: repo views * refactor: update webhook request endpoint * refactor: rename repositories table to github_repositories * fix: workpace integration actor * feat: label for github integration * refactor: issue activity on create issue * refactor: repo create endpoint and add db constraints for repo sync and issues * feat: create api token on workpsace integration and avatar_url for integrations * refactor: add uuid primary key for Audit model * refactor: remove id from auditfield to maintain integrity and make avatar blank if none supplied * feat: track comments on an issue * feat: comment syncing from plane to github * fix: prevent activities created by bot to be sent to webhook * feat: github app installation id retrieve * feat: github app installation id saved into db * feat: installation_id for the github integragation and unique provider and project base integration for repo * refactor: remove actor logic from activity task * feat: saving github metadata using installation id in workspace integration table * feat: github repositories endpoint * feat: github and project repos synchronisation * feat: delete issue and delete comment activity * refactor: remove print logs * FIX: reading env names for github app while installation * refactor: update bot user firstname with title * fix: add is_bot value in field --------- Co-authored-by: venplane <venkatesh@plane.so>
357 lines
11 KiB
Python
357 lines
11 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
|
|
from django.utils import timezone
|
|
|
|
# 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)
|
|
completed_at = models.DateTimeField(null=True)
|
|
|
|
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 is None:
|
|
try:
|
|
from plane.db.models import State
|
|
|
|
default_state = State.objects.filter(
|
|
project=self.project, default=True
|
|
).first()
|
|
# if there is no default state assign any random state
|
|
if default_state is None:
|
|
self.state = State.objects.filter(project=self.project).first()
|
|
else:
|
|
self.state = default_state
|
|
except ImportError:
|
|
pass
|
|
else:
|
|
try:
|
|
from plane.db.models import State
|
|
|
|
# Get the completed states of the project
|
|
completed_states = State.objects.filter(
|
|
group="completed", project=self.project
|
|
).values_list("pk", flat=True)
|
|
# Check if the current issue state and completed state id are same
|
|
if self.state.id in completed_states:
|
|
self.completed_at = timezone.now()
|
|
else:
|
|
self.completed_at = None
|
|
|
|
except ImportError:
|
|
pass
|
|
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
|
|
|
|
largest_sort_order = Issue.objects.filter(
|
|
project=self.project, state=self.state
|
|
).aggregate(largest=models.Max("sort_order"))["largest"]
|
|
if largest_sort_order is not None:
|
|
self.sort_order = largest_sort_order + 10000
|
|
|
|
# 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 IssueLink(ProjectBaseModel):
|
|
title = models.CharField(max_length=255, null=True)
|
|
url = models.URLField()
|
|
issue = models.ForeignKey(
|
|
"db.Issue", on_delete=models.CASCADE, related_name="issue_link"
|
|
)
|
|
|
|
class Meta:
|
|
verbose_name = "Issue Link"
|
|
verbose_name_plural = "Issue Links"
|
|
db_table = "issue_links"
|
|
ordering = ("-created_at",)
|
|
|
|
def __str__(self):
|
|
return f"{self.issue.name} {self.url}"
|
|
|
|
|
|
class IssueActivity(ProjectBaseModel):
|
|
issue = models.ForeignKey(
|
|
Issue, on_delete=models.SET_NULL, null=True, 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
|
|
)
|