100 lines
3.5 KiB
Python
100 lines
3.5 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 django.apps import apps
|
|
from django.conf import settings
|
|
|
|
from taiga.projects.services.tags_colors import update_project_tags_colors_handler, remove_unused_tags
|
|
from taiga.projects.notifications.services import create_notify_policy_if_not_exists
|
|
from taiga.base.utils.db import get_typename_for_model_class
|
|
|
|
|
|
####################################
|
|
# Signals over project items
|
|
####################################
|
|
|
|
## TAGS
|
|
|
|
def tags_normalization(sender, instance, **kwargs):
|
|
if isinstance(instance.tags, (list, tuple)):
|
|
instance.tags = list(map(str.lower, instance.tags))
|
|
|
|
|
|
def update_project_tags_when_create_or_edit_taggable_item(sender, instance, **kwargs):
|
|
update_project_tags_colors_handler(instance)
|
|
|
|
|
|
def update_project_tags_when_delete_taggable_item(sender, instance, **kwargs):
|
|
remove_unused_tags(instance.project)
|
|
instance.project.save()
|
|
|
|
def membership_post_delete(sender, instance, using, **kwargs):
|
|
instance.project.update_role_points()
|
|
|
|
|
|
def update_watchers_on_membership_post_delete(sender, instance, using, **kwargs):
|
|
models = [apps.get_model("userstories", "UserStory"),
|
|
apps.get_model("tasks", "Task"),
|
|
apps.get_model("issues", "Issue")]
|
|
|
|
# `user_id` is used beacuse in some momments
|
|
# instance.user can contain pointer to now
|
|
# removed object from a database.
|
|
for model in models:
|
|
#filter(project=instance.project)
|
|
filter = {
|
|
"user_id": instance.user_id,
|
|
"%s__project"%(model._meta.model_name): instance.project,
|
|
}
|
|
|
|
model.watchers.through.objects.filter(**filter).delete()
|
|
|
|
|
|
def create_notify_policy(sender, instance, using, **kwargs):
|
|
if instance.user:
|
|
create_notify_policy_if_not_exists(instance.project, instance.user)
|
|
|
|
|
|
def project_post_save(sender, instance, created, **kwargs):
|
|
"""
|
|
Populate new project dependen default data
|
|
"""
|
|
if not created:
|
|
return
|
|
|
|
if instance._importing:
|
|
return
|
|
|
|
|
|
template = getattr(instance, "creation_template", None)
|
|
if template is None:
|
|
ProjectTemplate = apps.get_model("projects", "ProjectTemplate")
|
|
template = ProjectTemplate.objects.get(slug=settings.DEFAULT_PROJECT_TEMPLATE)
|
|
template.apply_to_project(instance)
|
|
|
|
instance.save()
|
|
|
|
Role = apps.get_model("users", "Role")
|
|
try:
|
|
owner_role = instance.roles.get(slug=template.default_owner_role)
|
|
except Role.DoesNotExist:
|
|
owner_role = instance.roles.first()
|
|
|
|
if owner_role:
|
|
Membership = apps.get_model("projects", "Membership")
|
|
Membership.objects.create(user=instance.owner, project=instance, role=owner_role,
|
|
is_owner=True, email=instance.owner.email)
|