* fix: page transaction model * fix: page transaction model * feat: updated ui for page route * chore: initailized `document-editor` package for plane * fix: format persistence while pasting markdown in editor * feat: Inititalized Document-Editor and Editor with Ref * feat: added tooltip component and slash command for editor * feat: added `document-editor` extensions * feat: added custom search component for embedding labels * feat: added top bar menu component * feat: created document-editor exposed components * feat: integrated `document-editor` in `pages` route * chore: updated dependencies * feat: merge conflict resolution * chore: modified configuration for document editor * feat: added content browser menu for document editor summary * feat: added fixed menu and editor instances * feat: added document edittor instances and summary table * feat: implemented document-editor in PageDetail * chore: css and export fixes * fix: migration and optimisation * fix: added `on_create` hook in the core editor * feat: added conditional menu bar action in document-editor * feat: added menu actions from single page view * feat: added services for archiving, unarchiving and retriving archived pages * feat: added services for page archives * feat: implemented page archives in page list view * feat: implemented page archives in document-editor * feat: added editor marking hook * chore: seperated editor header from the main content * chore: seperated editor summary utilities from the main editor * chore: refactored necessary components from the document editor * chore: removed summary sidebar component from the main content editor * chore: removed scrollSummaryDependency from Header and Sidebar * feat: seperated page renderer as a seperate component * chore: seperated page_renderer and sidebar as component from index * feat: added locked property to IPage type * feat: added lock/unlock services in page service * chore: seperated DocumentDetails as exported interface from index * feat: seperated document editor configs as seperate interfaces * chore: seperated menu options from the editor header component * fix: fixed page_lock performing lock/unlock operation on queryset instead of single instance * fix: css positioning changes * feat: added archive/lock alert labels * feat: added boolean props in menu-actions/options * feat: added lock/unlock & archive/unarchive services * feat: added on update mutations for archived pages in page-view * feat: added archive/lock on_update mutations in single page vieq * feat: exported readonly editor for locked pages * chore: seperated kanban menu props and saved over passing redundant data * fix: readonly editor not generating markings on first render * fix: cheveron overflowing from editor-header * chore: removed unused utility actions * fix: enabled sidebar view by default * feat: removed locking on pages in archived state * feat: added indentation in heading component * fix: button classnames in vertical dropdowns * feat: added `last_archived_at` and `last_edited_at` details in editor-header * feat: changed types for archived updates and document last updates * feat: updated editor and header props * feat: updated queryset according to new page query format * feat: added parameters in page view for shared / private pages * feat: updated other-page-view to shared page view && same with private pages * feat: added page-view as shared / private * fix: replaced deleting to archiving for pages * feat: handle restoring of page from archived section from list view * feat: made previledge based option render for pages * feat: removed layout view for page list view * feat: linting changes * fix: adding mobx changes to pages * fix: removed uneccessary migrations * fix: mobx store changes * fix: adding date-fns pacakge * fix: updating yarn lock * fix: removing unneccessary method params * chore: added access specifier to the create/update page modal * fix: tab view layout changes * chore: delete endpoint for page * fix: page actions, including- archive, favorite, access control, delete * chore: remove archive page modal * fix: build errors --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com> Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
168 lines
No EOL
6 KiB
Python
168 lines
No EOL
6 KiB
Python
# Python imports
|
|
import json
|
|
from datetime import timedelta
|
|
|
|
# Django imports
|
|
from django.utils import timezone
|
|
from django.db.models import Q
|
|
from django.conf import settings
|
|
|
|
# Third party imports
|
|
from celery import shared_task
|
|
from sentry_sdk import capture_exception
|
|
|
|
# Module imports
|
|
from plane.db.models import Issue, Project, State
|
|
from plane.bgtasks.issue_activites_task import issue_activity
|
|
|
|
|
|
@shared_task
|
|
def archive_and_close_old_issues():
|
|
archive_old_issues()
|
|
close_old_issues()
|
|
|
|
|
|
def archive_old_issues():
|
|
try:
|
|
# Get all the projects whose archive_in is greater than 0
|
|
projects = Project.objects.filter(archive_in__gt=0)
|
|
|
|
for project in projects:
|
|
project_id = project.id
|
|
archive_in = project.archive_in
|
|
|
|
# Get all the issues whose updated_at in less that the archive_in month
|
|
issues = Issue.issue_objects.filter(
|
|
Q(
|
|
project=project_id,
|
|
archived_at__isnull=True,
|
|
updated_at__lte=(timezone.now() - timedelta(days=archive_in * 30)),
|
|
state__group__in=["completed", "cancelled"],
|
|
),
|
|
Q(issue_cycle__isnull=True)
|
|
| (
|
|
Q(issue_cycle__cycle__end_date__lt=timezone.now().date())
|
|
& Q(issue_cycle__isnull=False)
|
|
),
|
|
Q(issue_module__isnull=True)
|
|
| (
|
|
Q(issue_module__module__target_date__lt=timezone.now().date())
|
|
& Q(issue_module__isnull=False)
|
|
),
|
|
).filter(
|
|
Q(issue_inbox__status=1)
|
|
| Q(issue_inbox__status=-1)
|
|
| Q(issue_inbox__status=2)
|
|
| Q(issue_inbox__isnull=True)
|
|
)
|
|
|
|
# Check if Issues
|
|
if issues:
|
|
# Set the archive time to current time
|
|
archive_at = timezone.now().date()
|
|
|
|
issues_to_update = []
|
|
for issue in issues:
|
|
issue.archived_at = archive_at
|
|
issues_to_update.append(issue)
|
|
|
|
# Bulk Update the issues and log the activity
|
|
if issues_to_update:
|
|
Issue.objects.bulk_update(
|
|
issues_to_update, ["archived_at"], batch_size=100
|
|
)
|
|
_ = [
|
|
issue_activity.delay(
|
|
type="issue.activity.updated",
|
|
requested_data=json.dumps({"archived_at": str(archive_at)}),
|
|
actor_id=str(project.created_by_id),
|
|
issue_id=issue.id,
|
|
project_id=project_id,
|
|
current_instance=json.dumps({"archived_at": None}),
|
|
subscriber=False,
|
|
epoch=int(timezone.now().timestamp()),
|
|
)
|
|
for issue in issues_to_update
|
|
]
|
|
return
|
|
except Exception as e:
|
|
if settings.DEBUG:
|
|
print(e)
|
|
capture_exception(e)
|
|
return
|
|
|
|
|
|
def close_old_issues():
|
|
try:
|
|
# Get all the projects whose close_in is greater than 0
|
|
projects = Project.objects.filter(close_in__gt=0).select_related(
|
|
"default_state"
|
|
)
|
|
|
|
for project in projects:
|
|
project_id = project.id
|
|
close_in = project.close_in
|
|
|
|
# Get all the issues whose updated_at in less that the close_in month
|
|
issues = Issue.issue_objects.filter(
|
|
Q(
|
|
project=project_id,
|
|
archived_at__isnull=True,
|
|
updated_at__lte=(timezone.now() - timedelta(days=close_in * 30)),
|
|
state__group__in=["backlog", "unstarted", "started"],
|
|
),
|
|
Q(issue_cycle__isnull=True)
|
|
| (
|
|
Q(issue_cycle__cycle__end_date__lt=timezone.now().date())
|
|
& Q(issue_cycle__isnull=False)
|
|
),
|
|
Q(issue_module__isnull=True)
|
|
| (
|
|
Q(issue_module__module__target_date__lt=timezone.now().date())
|
|
& Q(issue_module__isnull=False)
|
|
),
|
|
).filter(
|
|
Q(issue_inbox__status=1)
|
|
| Q(issue_inbox__status=-1)
|
|
| Q(issue_inbox__status=2)
|
|
| Q(issue_inbox__isnull=True)
|
|
)
|
|
|
|
# Check if Issues
|
|
if issues:
|
|
if project.default_state is None:
|
|
close_state = State.objects.filter(group="cancelled").first()
|
|
else:
|
|
close_state = project.default_state
|
|
|
|
issues_to_update = []
|
|
for issue in issues:
|
|
issue.state = close_state
|
|
issues_to_update.append(issue)
|
|
|
|
# Bulk Update the issues and log the activity
|
|
if issues_to_update:
|
|
Issue.objects.bulk_update(
|
|
issues_to_update, ["state"], batch_size=100
|
|
)
|
|
[
|
|
issue_activity.delay(
|
|
type="issue.activity.updated",
|
|
requested_data=json.dumps(
|
|
{"closed_to": str(issue.state_id)}
|
|
),
|
|
actor_id=str(project.created_by_id),
|
|
issue_id=issue.id,
|
|
project_id=project_id,
|
|
current_instance=None,
|
|
subscriber=False,
|
|
epoch=int(timezone.now().timestamp()),
|
|
)
|
|
for issue in issues_to_update
|
|
]
|
|
return
|
|
except Exception as e:
|
|
if settings.DEBUG:
|
|
print(e)
|
|
capture_exception(e)
|
|
return |