* Basic setup for drf-spectacular * Updated to only handle /api/v1 endpoints * feat: add asset and user endpoints with URL routing - Introduced new asset-related endpoints for user assets and server assets, allowing for asset uploads and management. - Added user endpoint to retrieve current user information. - Updated URL routing to include new asset and user patterns. - Enhanced issue handling with a new search endpoint for issues across multiple fields. - Expanded member management with a new endpoint for workspace members. * Group endpoints by tags * Detailed schema definitions and examples for asset endpoints * Removed unnecessary extension * Specify avatar_url field separately * chore: add project docs * chore: correct all errors * chore: added open spec in work items * feat: enhance cycle API endpoints with detailed OpenAPI specifications - Updated CycleAPIEndpoint and CycleIssueAPIEndpoint to include detailed OpenAPI schema definitions for GET, POST, PATCH, and DELETE operations. - Specified allowed HTTP methods for each endpoint in the URL routing. - Improved documentation for cycle creation, updating, and deletion, including request and response examples. * chore: added open spec in labels * chore: work item properties * feat: enhance API endpoints with OpenAPI specifications and HTTP method definitions - Added detailed OpenAPI schema definitions for various API endpoints including Intake, Module, and State. - Specified allowed HTTP methods for each endpoint in the URL routing for better clarity and documentation. - Improved request and response examples for better understanding of API usage. - Introduced unarchive functionality for cycles and modules with appropriate endpoint definitions. * chore: run formatter * Removed unnecessary settings for authentication * Refactors OpenAPI documentation structure Improves the organization and maintainability of the OpenAPI documentation by modularizing the `openapi_spec_helpers.py` file. The changes include: - Migrates common parameters, responses, examples, and authentication extensions to separate modules. - Introduces helper decorators for different endpoint types. - Updates view imports to use the new module paths. - Removes the legacy `openapi_spec_helpers.py` file. This refactoring results in a more structured and easier-to-maintain OpenAPI documentation setup. * Refactor OpenAPI endpoint specifications - Removed unnecessary parameters from the OpenAPI documentation for various endpoints in the asset, cycle, and project views. - Updated request structures to improve clarity and consistency across the API documentation. - Enhanced response formatting for better readability and maintainability. * Enhance API documentation with detailed endpoint descriptions Updated various API endpoints across the application to include comprehensive docstrings that clarify their functionality. Each endpoint now features a summary and detailed description, improving the overall understanding of their purpose and usage. This change enhances the OpenAPI specifications for better developer experience and documentation clarity. * Enhance API serializers and views with new request structures - Added new serializers for handling cycle and module issue requests, including `CycleIssueRequestSerializer`, `TransferCycleIssueRequestSerializer`, `ModuleIssueRequestSerializer`, and intake issue creation/updating serializers. - Updated existing serializers to improve clarity and maintainability, including the `UserAssetUploadSerializer` and `IssueAttachmentUploadSerializer`. - Refactored API views to utilize the new serializers, enhancing the request handling for cycle and intake issue endpoints. - Improved OpenAPI documentation by replacing inline request definitions with serializer references for better consistency and readability. * Refactor OpenAPI documentation and endpoint specifications - Replaced inline schema definitions with dedicated decorators for various endpoint types, enhancing clarity and maintainability. - Updated API views to utilize new decorators for user, cycle, intake, module, and project endpoints, improving consistency in OpenAPI documentation. - Removed unnecessary parameters and responses from endpoint specifications, streamlining the documentation for better readability. - Enhanced the organization of OpenAPI documentation by modularizing endpoint-specific decorators and parameters. * chore: correct formatting * chore: correct formatting for all api folder files * refactor: clean up serializer imports and test setup - Removed unused `StateLiteSerializer` import from the serializer module. - Updated test setup to include a noqa comment for the `django_db_setup` fixture, ensuring clarity in the code. - Added missing commas in user data dictionary for consistency. * feat: add project creation and update serializers with validation - Introduced `ProjectCreateSerializer` and `ProjectUpdateSerializer` to handle project creation and updates, respectively. - Implemented validation to ensure project leads and default assignees are members of the workspace. - Updated API views to utilize the new serializers for creating and updating projects, enhancing request handling. - Added OpenAPI documentation references for the new serializers in the project API endpoints. * feat: update serializers to include additional read-only fields * refactor: rename intake issue serializers and enhance structure - Renamed `CreateIntakeIssueRequestSerializer` to `IntakeIssueCreateSerializer` and `UpdateIntakeIssueRequestSerializer` to `IntakeIssueUpdateSerializer` for clarity. - Introduced `IssueSerializer` for nested issue data in intake requests, improving the organization of serializer logic. - Updated API views to utilize the new serializer names, ensuring consistency across the codebase. * refactor: rename issue serializer for intake and enhance API documentation - Renamed `IssueSerializer` to `IssueForIntakeSerializer` for better clarity in the context of intake issues. - Updated references in `IntakeIssueCreateSerializer` and `IntakeIssueUpdateSerializer` to use the new `IssueForIntakeSerializer`. - Added OpenAPI documentation for the `get_workspace_work_item` endpoint, detailing parameters and responses for improved clarity. * chore: modules and cycles serializers * feat: add new serializers for label and issue link management - Introduced `LabelCreateUpdateSerializer`, `IssueLinkCreateSerializer`, `IssueLinkUpdateSerializer`, and `IssueCommentCreateSerializer` to enhance the handling of label and issue link data. - Updated existing API views to utilize the new serializers for creating and updating labels, issue links, and comments, improving request handling and validation. - Added `IssueSearchSerializer` for searching issues, streamlining the search functionality in the API. * Don't consider read only fields as required * Add setting to separate request and response definitions * Fixed avatar_url warning on openapi spec generation * Made spectacular disabled by default * Moved spectacular settings into separate file and added detailed descriptions to tags * Specify methods for asset urls * Better server names * Enhance API documentation with summaries for various endpoints - Added summary descriptions for user asset, cycle, intake, issue, member, module, project, state, and user API endpoints to improve clarity and usability of the API documentation. - Updated the OpenAPI specifications to reflect these changes, ensuring better understanding for developers interacting with the API. * Add contact information to OpenAPI settings - Included contact details for Plane in the OpenAPI settings to enhance API documentation and provide developers with a direct point of contact for support. - This addition aims to improve the overall usability and accessibility of the API documentation. * Reordered tags and improved description relavancy * Enhance OpenAPI documentation for cycle and issue endpoints - Added response definitions for the `get_cycle_issues` and `delete_cycle_issue` methods in the CycleIssueAPIEndpoint to clarify expected outcomes. - Included additional response codes for the IssueSearchEndpoint to handle various error scenarios, improving the overall API documentation and usability. * Enhance serializer documentation across multiple files - Updated docstrings for various serializers including UserAssetUploadSerializer, AssetUpdateSerializer, and others to provide clearer descriptions of their functionality and usage. - Improved consistency in formatting and language across serializer classes to enhance readability and maintainability. - Added detailed explanations for new serializers related to project, module, and cycle management, ensuring comprehensive documentation for developers. * Refactor API endpoints for cycles, intake, modules, projects, and states - Replaced existing API endpoint classes with more descriptive names such as CycleListCreateAPIEndpoint, CycleDetailAPIEndpoint, IntakeIssueListCreateAPIEndpoint, and others to enhance clarity. - Updated URL patterns to reflect the new endpoint names, ensuring consistency across the API. - Improved documentation and method summaries for better understanding of endpoint functionalities. - Enhanced query handling in the new endpoint classes to streamline data retrieval and improve performance. * Refactor issue and label API endpoints for clarity and functionality - Renamed existing API endpoint classes to more descriptive names such as IssueListCreateAPIEndpoint, IssueDetailAPIEndpoint, LabelListCreateAPIEndpoint, and LabelDetailAPIEndpoint to enhance clarity. - Updated URL patterns to reflect the new endpoint names, ensuring consistency across the API. - Improved method summaries and documentation for better understanding of endpoint functionalities. - Streamlined query handling in the new endpoint classes to enhance data retrieval and performance. * Refactor asset API endpoint methods and introduce new status enums - Updated the GenericAssetEndpoint to only allow POST requests for asset creation, removing the GET method. - Modified the get method to require asset_id, ensuring that asset retrieval is always tied to a specific asset. - Added new IntakeIssueStatus and ModuleStatus enums to improve clarity and management of asset and module states. - Enhanced OpenAPI settings to include these new enums for better documentation and usability. * enforce naming convention * Added LICENSE to openapi spec * Enhance OpenAPI documentation for various API endpoints - Updated API endpoints in asset, cycle, intake, issue, module, project, and state views to include OpenApiRequest and OpenApiExample for better request documentation. - Added example requests for creating and updating resources, improving clarity for API consumers. - Ensured consistent use of OpenApi utilities across all relevant endpoints to enhance overall API documentation quality. * Enhance OpenAPI documentation for various API endpoints - Added detailed descriptions to multiple API endpoints across asset, cycle, intake, issue, module, project, state, and user views to improve clarity for API consumers. - Ensured consistent documentation practices by including descriptions that outline the purpose and functionality of each endpoint. - This update aims to enhance the overall usability and understanding of the API documentation. * Update OpenAPI examples and enhance project queryset logic - Changed example fields in OpenAPI documentation for issue comments from "content" to "comment_html" to reflect the correct structure. - Introduced a new `get_queryset` method in the ProjectDetailAPIEndpoint to filter projects based on user membership and workspace, while also annotating additional project-related data such as total members, cycles, and modules. - Updated permission checks to use the correct attribute name for project identifiers, ensuring accurate permission handling. * Enhance OpenAPI documentation and add response examples - Updated multiple API endpoints across asset, cycle, intake, issue, module, project, state, and user views to include new OpenApiResponse examples for better clarity on expected outcomes. - Introduced new parameters for project and issue identifiers to improve request handling and documentation consistency. - Enhanced existing responses with detailed examples to aid API consumers in understanding the expected data structure and error handling. - This update aims to improve the overall usability and clarity of the API documentation. * refactor: update terminology from 'issues' to 'work items' across multiple API endpoints for consistency and clarity * use common timezones from pytz for choices * Moved the openapi utils to the new folder structure * Added exception logging in GenericAssetEndpoint to improve error handling * Fixed code rabbit suggestions * Refactored IssueDetailAPIEndpoint to streamline issue retrieval and response handling, removing redundant external ID checks and custom ordering logic. --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
337 lines
11 KiB
Python
337 lines
11 KiB
Python
# Python imports
|
|
import pytz
|
|
from uuid import uuid4
|
|
from enum import Enum
|
|
|
|
# Django imports
|
|
from django.conf import settings
|
|
from django.core.validators import MaxValueValidator, MinValueValidator
|
|
from django.db import models
|
|
from django.db.models import Q
|
|
|
|
# Module imports
|
|
from plane.db.mixins import AuditModel
|
|
|
|
# Module imports
|
|
from .base import BaseModel
|
|
|
|
ROLE_CHOICES = ((20, "Admin"), (15, "Member"), (5, "Guest"))
|
|
|
|
|
|
class ProjectNetwork(Enum):
|
|
SECRET = 0
|
|
PUBLIC = 2
|
|
|
|
@classmethod
|
|
def choices(cls):
|
|
return [(0, "Secret"), (2, "Public")]
|
|
|
|
|
|
def get_default_props():
|
|
return {
|
|
"filters": {
|
|
"priority": None,
|
|
"state": None,
|
|
"state_group": None,
|
|
"assignees": None,
|
|
"created_by": None,
|
|
"labels": None,
|
|
"start_date": None,
|
|
"target_date": None,
|
|
"subscriber": None,
|
|
},
|
|
"display_filters": {
|
|
"group_by": None,
|
|
"order_by": "-created_at",
|
|
"type": None,
|
|
"sub_issue": True,
|
|
"show_empty_groups": True,
|
|
"layout": "list",
|
|
"calendar_date_range": "",
|
|
},
|
|
}
|
|
|
|
|
|
def get_default_preferences():
|
|
return {"pages": {"block_display": True}}
|
|
|
|
|
|
class Project(BaseModel):
|
|
NETWORK_CHOICES = ((0, "Secret"), (2, "Public"))
|
|
name = models.CharField(max_length=255, verbose_name="Project Name")
|
|
description = models.TextField(verbose_name="Project Description", blank=True)
|
|
description_text = models.JSONField(
|
|
verbose_name="Project Description RT", blank=True, null=True
|
|
)
|
|
description_html = models.JSONField(
|
|
verbose_name="Project Description HTML", blank=True, null=True
|
|
)
|
|
network = models.PositiveSmallIntegerField(default=2, choices=NETWORK_CHOICES)
|
|
workspace = models.ForeignKey(
|
|
"db.WorkSpace", on_delete=models.CASCADE, related_name="workspace_project"
|
|
)
|
|
identifier = models.CharField(
|
|
max_length=12, verbose_name="Project Identifier", db_index=True
|
|
)
|
|
default_assignee = models.ForeignKey(
|
|
settings.AUTH_USER_MODEL,
|
|
on_delete=models.CASCADE,
|
|
related_name="default_assignee",
|
|
null=True,
|
|
blank=True,
|
|
)
|
|
project_lead = models.ForeignKey(
|
|
settings.AUTH_USER_MODEL,
|
|
on_delete=models.CASCADE,
|
|
related_name="project_lead",
|
|
null=True,
|
|
blank=True,
|
|
)
|
|
emoji = models.CharField(max_length=255, null=True, blank=True)
|
|
icon_prop = models.JSONField(null=True)
|
|
module_view = models.BooleanField(default=True)
|
|
cycle_view = models.BooleanField(default=True)
|
|
issue_views_view = models.BooleanField(default=True)
|
|
page_view = models.BooleanField(default=True)
|
|
intake_view = models.BooleanField(default=False)
|
|
is_time_tracking_enabled = models.BooleanField(default=False)
|
|
is_issue_type_enabled = models.BooleanField(default=False)
|
|
guest_view_all_features = models.BooleanField(default=False)
|
|
cover_image = models.TextField(blank=True, null=True)
|
|
cover_image_asset = models.ForeignKey(
|
|
"db.FileAsset",
|
|
on_delete=models.SET_NULL,
|
|
null=True,
|
|
blank=True,
|
|
related_name="project_cover_image",
|
|
)
|
|
estimate = models.ForeignKey(
|
|
"db.Estimate", on_delete=models.SET_NULL, related_name="projects", null=True
|
|
)
|
|
archive_in = models.IntegerField(
|
|
default=0, validators=[MinValueValidator(0), MaxValueValidator(12)]
|
|
)
|
|
close_in = models.IntegerField(
|
|
default=0, validators=[MinValueValidator(0), MaxValueValidator(12)]
|
|
)
|
|
logo_props = models.JSONField(default=dict)
|
|
default_state = models.ForeignKey(
|
|
"db.State", on_delete=models.SET_NULL, null=True, related_name="default_state"
|
|
)
|
|
archived_at = models.DateTimeField(null=True)
|
|
# timezone
|
|
TIMEZONE_CHOICES = tuple(zip(pytz.common_timezones, pytz.common_timezones))
|
|
timezone = models.CharField(max_length=255, default="UTC", choices=TIMEZONE_CHOICES)
|
|
# external_id for imports
|
|
external_source = models.CharField(max_length=255, null=True, blank=True)
|
|
external_id = models.CharField(max_length=255, blank=True, null=True)
|
|
|
|
@property
|
|
def cover_image_url(self):
|
|
# Return cover image url
|
|
if self.cover_image_asset:
|
|
return self.cover_image_asset.asset_url
|
|
|
|
# Return cover image url
|
|
if self.cover_image:
|
|
return self.cover_image
|
|
|
|
return None
|
|
|
|
def __str__(self):
|
|
"""Return name of the project"""
|
|
return f"{self.name} <{self.workspace.name}>"
|
|
|
|
class Meta:
|
|
unique_together = [
|
|
["identifier", "workspace", "deleted_at"],
|
|
["name", "workspace", "deleted_at"],
|
|
]
|
|
constraints = [
|
|
models.UniqueConstraint(
|
|
fields=["identifier", "workspace"],
|
|
condition=Q(deleted_at__isnull=True),
|
|
name="project_unique_identifier_workspace_when_deleted_at_null",
|
|
),
|
|
models.UniqueConstraint(
|
|
fields=["name", "workspace"],
|
|
condition=Q(deleted_at__isnull=True),
|
|
name="project_unique_name_workspace_when_deleted_at_null",
|
|
),
|
|
]
|
|
verbose_name = "Project"
|
|
verbose_name_plural = "Projects"
|
|
db_table = "projects"
|
|
ordering = ("-created_at",)
|
|
|
|
def save(self, *args, **kwargs):
|
|
self.identifier = self.identifier.strip().upper()
|
|
return super().save(*args, **kwargs)
|
|
|
|
|
|
class ProjectBaseModel(BaseModel):
|
|
project = models.ForeignKey(
|
|
Project, on_delete=models.CASCADE, related_name="project_%(class)s"
|
|
)
|
|
workspace = models.ForeignKey(
|
|
"db.Workspace", on_delete=models.CASCADE, related_name="workspace_%(class)s"
|
|
)
|
|
|
|
class Meta:
|
|
abstract = True
|
|
|
|
def save(self, *args, **kwargs):
|
|
self.workspace = self.project.workspace
|
|
super(ProjectBaseModel, self).save(*args, **kwargs)
|
|
|
|
|
|
class ProjectMemberInvite(ProjectBaseModel):
|
|
email = models.CharField(max_length=255)
|
|
accepted = models.BooleanField(default=False)
|
|
token = models.CharField(max_length=255)
|
|
message = models.TextField(null=True)
|
|
responded_at = models.DateTimeField(null=True)
|
|
role = models.PositiveSmallIntegerField(choices=ROLE_CHOICES, default=5)
|
|
|
|
class Meta:
|
|
verbose_name = "Project Member Invite"
|
|
verbose_name_plural = "Project Member Invites"
|
|
db_table = "project_member_invites"
|
|
ordering = ("-created_at",)
|
|
|
|
def __str__(self):
|
|
return f"{self.project.name} {self.email} {self.accepted}"
|
|
|
|
|
|
class ProjectMember(ProjectBaseModel):
|
|
member = models.ForeignKey(
|
|
settings.AUTH_USER_MODEL,
|
|
on_delete=models.CASCADE,
|
|
null=True,
|
|
blank=True,
|
|
related_name="member_project",
|
|
)
|
|
comment = models.TextField(blank=True, null=True)
|
|
role = models.PositiveSmallIntegerField(choices=ROLE_CHOICES, default=5)
|
|
view_props = models.JSONField(default=get_default_props)
|
|
default_props = models.JSONField(default=get_default_props)
|
|
preferences = models.JSONField(default=get_default_preferences)
|
|
sort_order = models.FloatField(default=65535)
|
|
is_active = models.BooleanField(default=True)
|
|
|
|
def save(self, *args, **kwargs):
|
|
if self._state.adding:
|
|
smallest_sort_order = ProjectMember.objects.filter(
|
|
workspace_id=self.project.workspace_id, member=self.member
|
|
).aggregate(smallest=models.Min("sort_order"))["smallest"]
|
|
|
|
# Project ordering
|
|
if smallest_sort_order is not None:
|
|
self.sort_order = smallest_sort_order - 10000
|
|
|
|
super(ProjectMember, self).save(*args, **kwargs)
|
|
|
|
class Meta:
|
|
unique_together = ["project", "member", "deleted_at"]
|
|
constraints = [
|
|
models.UniqueConstraint(
|
|
fields=["project", "member"],
|
|
condition=Q(deleted_at__isnull=True),
|
|
name="project_member_unique_project_member_when_deleted_at_null",
|
|
)
|
|
]
|
|
verbose_name = "Project Member"
|
|
verbose_name_plural = "Project Members"
|
|
db_table = "project_members"
|
|
ordering = ("-created_at",)
|
|
|
|
def __str__(self):
|
|
"""Return members of the project"""
|
|
return f"{self.member.email} <{self.project.name}>"
|
|
|
|
|
|
# TODO: Remove workspace relation later
|
|
class ProjectIdentifier(AuditModel):
|
|
workspace = models.ForeignKey(
|
|
"db.Workspace", models.CASCADE, related_name="project_identifiers", null=True
|
|
)
|
|
project = models.OneToOneField(
|
|
Project, on_delete=models.CASCADE, related_name="project_identifier"
|
|
)
|
|
name = models.CharField(max_length=12, db_index=True)
|
|
|
|
class Meta:
|
|
unique_together = ["name", "workspace", "deleted_at"]
|
|
constraints = [
|
|
models.UniqueConstraint(
|
|
fields=["name", "workspace"],
|
|
condition=Q(deleted_at__isnull=True),
|
|
name="unique_name_workspace_when_deleted_at_null",
|
|
)
|
|
]
|
|
verbose_name = "Project Identifier"
|
|
verbose_name_plural = "Project Identifiers"
|
|
db_table = "project_identifiers"
|
|
ordering = ("-created_at",)
|
|
|
|
|
|
def get_anchor():
|
|
return uuid4().hex
|
|
|
|
|
|
def get_default_views():
|
|
return {
|
|
"list": True,
|
|
"kanban": True,
|
|
"calendar": True,
|
|
"gantt": True,
|
|
"spreadsheet": True,
|
|
}
|
|
|
|
|
|
# DEPRECATED TODO:
|
|
# used to get the old anchors for the project deploy boards
|
|
class ProjectDeployBoard(ProjectBaseModel):
|
|
anchor = models.CharField(
|
|
max_length=255, default=get_anchor, unique=True, db_index=True
|
|
)
|
|
comments = models.BooleanField(default=False)
|
|
reactions = models.BooleanField(default=False)
|
|
intake = models.ForeignKey(
|
|
"db.Intake", related_name="board_intake", on_delete=models.SET_NULL, null=True
|
|
)
|
|
votes = models.BooleanField(default=False)
|
|
views = models.JSONField(default=get_default_views)
|
|
|
|
class Meta:
|
|
unique_together = ["project", "anchor"]
|
|
verbose_name = "Project Deploy Board"
|
|
verbose_name_plural = "Project Deploy Boards"
|
|
db_table = "project_deploy_boards"
|
|
ordering = ("-created_at",)
|
|
|
|
def __str__(self):
|
|
"""Return project and anchor"""
|
|
return f"{self.anchor} <{self.project.name}>"
|
|
|
|
|
|
class ProjectPublicMember(ProjectBaseModel):
|
|
member = models.ForeignKey(
|
|
settings.AUTH_USER_MODEL,
|
|
on_delete=models.CASCADE,
|
|
related_name="public_project_members",
|
|
)
|
|
|
|
class Meta:
|
|
unique_together = ["project", "member", "deleted_at"]
|
|
constraints = [
|
|
models.UniqueConstraint(
|
|
fields=["project", "member"],
|
|
condition=models.Q(deleted_at__isnull=True),
|
|
name="project_public_member_unique_project_member_when_deleted_at_null",
|
|
)
|
|
]
|
|
verbose_name = "Project Public Member"
|
|
verbose_name_plural = "Project Public Members"
|
|
db_table = "project_public_members"
|
|
ordering = ("-created_at",)
|