73 lines
2.6 KiB
Python
73 lines
2.6 KiB
Python
import datetime
|
|
|
|
from django.contrib.sites.models import Site
|
|
from django.core.mail import send_mail
|
|
from django.template.loader import render_to_string
|
|
|
|
from todo.models import Task, Comment
|
|
|
|
|
|
def toggle_done(task_ids):
|
|
"""Check for tasks in the mark_done POST array. If present, change status to complete.
|
|
Takes a list of task IDs. Returns list of status change strings.
|
|
"""
|
|
|
|
_ret = []
|
|
for task_id in task_ids:
|
|
i = Task.objects.get(id=task_id)
|
|
old_state = "completed" if i.completed else "incomplete"
|
|
i.completed = not i.completed # Invert the done state, either way
|
|
new_state = "completed" if i.completed else "incomplete"
|
|
i.completed_date = datetime.datetime.now()
|
|
i.save()
|
|
_ret.append("Task \"{i}\" changed from {o} to {n}.".format(i=i.title, o=old_state, n=new_state))
|
|
|
|
return _ret
|
|
|
|
|
|
def toggle_deleted(deleted_task_ids):
|
|
"""Delete selected tasks. Returns list of status change strings.
|
|
"""
|
|
|
|
_ret = []
|
|
for task_id in deleted_task_ids:
|
|
i = Task.objects.get(id=task_id)
|
|
_ret.append("Task \"{i}\" deleted.".format(i=i.title))
|
|
i.delete()
|
|
|
|
return _ret
|
|
|
|
|
|
def send_notify_mail(new_task):
|
|
# Send email to assignee if task is assigned to someone other than submittor.
|
|
# Unassigned tasks should not try to notify.
|
|
|
|
if not new_task.assigned_to == new_task.created_by:
|
|
current_site = Site.objects.get_current()
|
|
email_subject = render_to_string("todo/email/assigned_subject.txt", {'task': new_task})
|
|
email_body = render_to_string(
|
|
"todo/email/assigned_body.txt",
|
|
{'task': new_task, 'site': current_site, })
|
|
|
|
send_mail(
|
|
email_subject, email_body, new_task.created_by.email,
|
|
[new_task.assigned_to.email], fail_silently=False)
|
|
|
|
|
|
def send_email_to_thread_participants(task, msg_body, user):
|
|
# Notify all previous commentors on a Task about a new comment.
|
|
|
|
current_site = Site.objects.get_current()
|
|
email_subject = render_to_string("todo/email/assigned_subject.txt", {'task': task})
|
|
email_body = render_to_string(
|
|
"todo/email/newcomment_body.txt",
|
|
{'task': task, 'body': msg_body, 'site': current_site, 'user': user}
|
|
)
|
|
|
|
# Get list of all thread participants - everyone who has commented, plus task creator.
|
|
commenters = Comment.objects.filter(task=task)
|
|
recip_list = [ca.author.email for ca in commenters]
|
|
recip_list.append(task.created_by.email)
|
|
recip_list = list(set(recip_list)) # Eliminate duplicates
|
|
|
|
send_mail(email_subject, email_body, task.created_by.email, recip_list, fail_silently=False)
|