2008-08-19 10:50:38 +02:00
|
|
|
"""
|
2011-01-26 00:08:41 +01:00
|
|
|
django-helpdesk - A Django powered ticket tracker for small enterprise.
|
2008-02-06 05:36:07 +01:00
|
|
|
|
|
|
|
(c) Copyright 2008 Jutda. All Rights Reserved. See LICENSE for details.
|
|
|
|
|
|
|
|
lib.py - Common functions (eg multipart e-mail)
|
2008-01-07 21:22:13 +01:00
|
|
|
"""
|
2008-08-19 10:50:38 +02:00
|
|
|
|
|
|
|
chart_colours = ('80C65A', '990066', 'FF9900', '3399CC', 'BBCCED', '3399CC', 'FFCC33')
|
|
|
|
|
2008-11-18 01:14:36 +01:00
|
|
|
try:
|
|
|
|
from base64 import urlsafe_b64encode as b64encode
|
|
|
|
except ImportError:
|
|
|
|
from base64 import encodestring as b64encode
|
|
|
|
try:
|
|
|
|
from base64 import urlsafe_b64decode as b64decode
|
|
|
|
except ImportError:
|
|
|
|
from base64 import decodestring as b64decode
|
2008-08-19 10:50:38 +02:00
|
|
|
|
2011-11-10 12:19:57 +01:00
|
|
|
import logging
|
|
|
|
logger = logging.getLogger('helpdesk')
|
|
|
|
|
2011-07-01 10:13:01 +02:00
|
|
|
from django.utils.encoding import smart_str
|
|
|
|
|
2008-04-02 01:26:12 +02:00
|
|
|
def send_templated_mail(template_name, email_context, recipients, sender=None, bcc=None, fail_silently=False, files=None):
|
2008-08-19 10:50:38 +02:00
|
|
|
"""
|
|
|
|
send_templated_mail() is a warpper around Django's e-mail routines that
|
|
|
|
allows us to easily send multipart (text/plain & text/html) e-mails using
|
|
|
|
templates that are stored in the database. This lets the admin provide
|
|
|
|
both a text and a HTML template for each message.
|
|
|
|
|
|
|
|
template_name is the slug of the template to use for this message (see
|
|
|
|
models.EmailTemplate)
|
|
|
|
|
|
|
|
email_context is a dictionary to be used when rendering the template
|
|
|
|
|
|
|
|
recipients can be either a string, eg 'a@b.com', or a list of strings.
|
|
|
|
|
|
|
|
sender should contain a string, eg 'My Site <me@z.com>'. If you leave it
|
|
|
|
blank, it'll use settings.DEFAULT_FROM_EMAIL as a fallback.
|
|
|
|
|
|
|
|
bcc is an optional list of addresses that will receive this message as a
|
|
|
|
blind carbon copy.
|
|
|
|
|
|
|
|
fail_silently is passed to Django's mail routine. Set to 'True' to ignore
|
|
|
|
any errors at send time.
|
|
|
|
|
2014-09-02 10:36:00 +02:00
|
|
|
files can be a list of tuple. Each tuple should be a filename to attach,
|
|
|
|
along with the File objects to be read. files can be blank.
|
2008-08-19 10:50:38 +02:00
|
|
|
|
|
|
|
"""
|
|
|
|
from django.conf import settings
|
2008-04-02 01:26:12 +02:00
|
|
|
from django.core.mail import EmailMultiAlternatives
|
|
|
|
from django.template import loader, Context
|
2008-08-19 10:50:38 +02:00
|
|
|
|
|
|
|
from helpdesk.models import EmailTemplate
|
2014-07-20 16:17:39 +02:00
|
|
|
from helpdesk.settings import HELPDESK_EMAIL_SUBJECT_TEMPLATE
|
2008-11-18 02:43:50 +01:00
|
|
|
import os
|
2008-04-02 01:26:12 +02:00
|
|
|
|
2008-11-18 02:43:50 +01:00
|
|
|
context = Context(email_context)
|
2011-11-19 09:34:07 +01:00
|
|
|
|
|
|
|
if hasattr(context['queue'], 'locale'):
|
|
|
|
locale = getattr(context['queue'], 'locale', '')
|
|
|
|
else:
|
|
|
|
locale = context['queue'].get('locale', 'en')
|
|
|
|
if not locale:
|
|
|
|
locale = 'en'
|
2008-11-18 02:43:50 +01:00
|
|
|
|
2008-11-18 02:47:53 +01:00
|
|
|
t = None
|
2011-03-11 23:30:59 +01:00
|
|
|
try:
|
|
|
|
t = EmailTemplate.objects.get(template_name__iexact=template_name, locale=locale)
|
|
|
|
except EmailTemplate.DoesNotExist:
|
|
|
|
pass
|
2009-06-25 13:22:53 +02:00
|
|
|
|
2008-11-18 02:47:53 +01:00
|
|
|
if not t:
|
2009-08-04 14:26:35 +02:00
|
|
|
try:
|
2011-03-11 23:30:59 +01:00
|
|
|
t = EmailTemplate.objects.get(template_name__iexact=template_name, locale__isnull=True)
|
2009-08-04 14:26:35 +02:00
|
|
|
except EmailTemplate.DoesNotExist:
|
2011-11-10 12:19:57 +01:00
|
|
|
logger.warning('template "%s" does not exist, no mail sent' %
|
|
|
|
template_name)
|
2009-08-04 14:26:35 +02:00
|
|
|
return # just ignore if template doesn't exist
|
2008-04-02 01:26:12 +02:00
|
|
|
|
|
|
|
if not sender:
|
|
|
|
sender = settings.DEFAULT_FROM_EMAIL
|
|
|
|
|
2008-11-18 02:43:50 +01:00
|
|
|
footer_file = os.path.join('helpdesk', locale, 'email_text_footer.txt')
|
2015-06-02 16:18:50 +02:00
|
|
|
|
|
|
|
# get_template_from_string was removed in Django 1.8 http://django.readthedocs.org/en/1.8.x/ref/templates/upgrading.html
|
2015-11-13 15:36:04 +01:00
|
|
|
try:
|
|
|
|
from django.template import engines
|
|
|
|
template_func = engines['django'].from_string
|
|
|
|
except ImportError: # occurs in django < 1.8
|
|
|
|
template_func = loader.get_template_from_string
|
|
|
|
|
|
|
|
text_part = template_func(
|
2008-11-18 02:43:50 +01:00
|
|
|
"%s{%% include '%s' %%}" % (t.plain_text, footer_file)
|
2008-08-19 10:50:38 +02:00
|
|
|
).render(context)
|
|
|
|
|
2008-11-18 02:43:50 +01:00
|
|
|
email_html_base_file = os.path.join('helpdesk', locale, 'email_html_base.html')
|
|
|
|
|
2011-11-05 01:56:53 +01:00
|
|
|
|
2011-02-03 14:02:14 +01:00
|
|
|
''' keep new lines in html emails '''
|
|
|
|
from django.utils.safestring import mark_safe
|
2011-11-05 01:56:53 +01:00
|
|
|
|
2011-02-08 12:17:05 +01:00
|
|
|
if context.has_key('comment'):
|
|
|
|
html_txt = context['comment']
|
|
|
|
html_txt = html_txt.replace('\r\n', '<br>')
|
|
|
|
context['comment'] = mark_safe(html_txt)
|
2011-11-05 01:56:53 +01:00
|
|
|
|
2015-06-02 16:18:50 +02:00
|
|
|
# get_template_from_string was removed in Django 1.8 http://django.readthedocs.org/en/1.8.x/ref/templates/upgrading.html
|
2015-11-13 15:36:04 +01:00
|
|
|
html_part = template_func(
|
2008-11-18 02:43:50 +01:00
|
|
|
"{%% extends '%s' %%}{%% block title %%}%s{%% endblock %%}{%% block content %%}%s{%% endblock %%}" % (email_html_base_file, t.heading, t.html)
|
2008-08-19 10:50:38 +02:00
|
|
|
).render(context)
|
|
|
|
|
2015-06-02 16:18:50 +02:00
|
|
|
# get_template_from_string was removed in Django 1.8 http://django.readthedocs.org/en/1.8.x/ref/templates/upgrading.html
|
2015-11-13 15:36:04 +01:00
|
|
|
subject_part = template_func(
|
2014-07-20 16:17:39 +02:00
|
|
|
HELPDESK_EMAIL_SUBJECT_TEMPLATE % {
|
2014-07-16 01:04:19 +02:00
|
|
|
"subject": t.subject,
|
|
|
|
}).render(context)
|
2008-04-02 01:26:12 +02:00
|
|
|
|
2011-11-28 18:13:07 +01:00
|
|
|
if isinstance(recipients,(str,unicode)):
|
2011-03-05 04:29:01 +01:00
|
|
|
if recipients.find(','):
|
|
|
|
recipients = recipients.split(',')
|
|
|
|
elif type(recipients) != list:
|
2008-04-02 01:26:12 +02:00
|
|
|
recipients = [recipients,]
|
|
|
|
|
2014-10-29 16:57:31 +01:00
|
|
|
msg = EmailMultiAlternatives( subject_part.replace('\n', '').replace('\r', ''),
|
2008-08-19 10:50:38 +02:00
|
|
|
text_part,
|
|
|
|
sender,
|
|
|
|
recipients,
|
|
|
|
bcc=bcc)
|
2008-04-02 01:26:12 +02:00
|
|
|
msg.attach_alternative(html_part, "text/html")
|
|
|
|
|
|
|
|
if files:
|
2014-09-02 10:36:00 +02:00
|
|
|
for attachment in files:
|
|
|
|
file_to_attach = attachment[1]
|
|
|
|
file_to_attach.open()
|
|
|
|
msg.attach(filename=attachment[0], content=file_to_attach.read())
|
|
|
|
file_to_attach.close()
|
2008-08-19 10:50:38 +02:00
|
|
|
|
2008-04-02 01:26:12 +02:00
|
|
|
return msg.send(fail_silently)
|
|
|
|
|
2008-01-07 21:22:13 +01:00
|
|
|
|
2008-05-07 11:04:18 +02:00
|
|
|
def query_to_dict(results, descriptions):
|
2008-08-19 10:50:38 +02:00
|
|
|
"""
|
|
|
|
Replacement method for cursor.dictfetchall() as that method no longer
|
2008-05-07 11:04:18 +02:00
|
|
|
exists in psycopg2, and I'm guessing in other backends too.
|
2008-08-19 10:50:38 +02:00
|
|
|
|
|
|
|
Converts the results of a raw SQL query into a list of dictionaries, suitable
|
|
|
|
for use in templates etc.
|
|
|
|
"""
|
|
|
|
|
2008-05-07 11:04:18 +02:00
|
|
|
output = []
|
|
|
|
for data in results:
|
|
|
|
row = {}
|
|
|
|
i = 0
|
|
|
|
for column in descriptions:
|
|
|
|
row[column[0]] = data[i]
|
|
|
|
i += 1
|
|
|
|
|
|
|
|
output.append(row)
|
|
|
|
return output
|
2008-08-28 11:06:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
def apply_query(queryset, params):
|
|
|
|
"""
|
2012-05-11 17:15:46 +02:00
|
|
|
Apply a dict-based set of filters & parameters to a queryset.
|
2008-08-28 11:06:24 +02:00
|
|
|
|
2011-11-05 01:56:53 +01:00
|
|
|
queryset is a Django queryset, eg MyModel.objects.all() or
|
2008-08-28 11:06:24 +02:00
|
|
|
MyModel.objects.filter(user=request.user)
|
|
|
|
|
|
|
|
params is a dictionary that contains the following:
|
|
|
|
filtering: A dict of Django ORM filters, eg:
|
|
|
|
{'user__id__in': [1, 3, 103], 'title__contains': 'foo'}
|
2011-11-05 01:56:53 +01:00
|
|
|
other_filter: Another filter of some type, most likely a
|
2008-08-28 11:06:24 +02:00
|
|
|
set of Q() objects.
|
|
|
|
sorting: The name of the column to sort by
|
|
|
|
"""
|
|
|
|
for key in params['filtering'].keys():
|
|
|
|
filter = {key: params['filtering'][key]}
|
|
|
|
queryset = queryset.filter(**filter)
|
|
|
|
|
|
|
|
if params.get('other_filter', None):
|
|
|
|
# eg a Q() set
|
|
|
|
queryset = queryset.filter(params['other_filter'])
|
|
|
|
|
2012-01-18 14:39:36 +01:00
|
|
|
sorting = params.get('sorting', None)
|
2012-05-11 17:15:46 +02:00
|
|
|
if sorting:
|
2012-01-18 14:39:36 +01:00
|
|
|
sortreverse = params.get('sortreverse', None)
|
2012-01-18 23:36:58 +01:00
|
|
|
if sortreverse:
|
2012-01-18 14:39:36 +01:00
|
|
|
sorting = "-%s" % sorting
|
|
|
|
queryset = queryset.order_by(sorting)
|
2008-08-28 11:06:24 +02:00
|
|
|
|
|
|
|
return queryset
|
2008-08-29 11:11:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
def safe_template_context(ticket):
|
|
|
|
"""
|
|
|
|
Return a dictionary that can be used as a template context to render
|
2012-05-11 17:15:46 +02:00
|
|
|
comments and other details with ticket or queue parameters. Note that
|
2011-11-05 01:56:53 +01:00
|
|
|
we don't just provide the Ticket & Queue objects to the template as
|
2008-08-29 11:11:02 +02:00
|
|
|
they could reveal confidential information. Just imagine these two options:
|
|
|
|
* {{ ticket.queue.email_box_password }}
|
|
|
|
* {{ ticket.assigned_to.password }}
|
|
|
|
|
|
|
|
Ouch!
|
|
|
|
|
|
|
|
The downside to this is that if we make changes to the model, we will also
|
|
|
|
have to update this code. Perhaps we can find a better way in the future.
|
|
|
|
"""
|
|
|
|
|
|
|
|
context = {
|
|
|
|
'queue': {},
|
|
|
|
'ticket': {},
|
|
|
|
}
|
|
|
|
queue = ticket.queue
|
|
|
|
|
2011-04-28 12:19:42 +02:00
|
|
|
for field in ( 'title', 'slug', 'email_address', 'from_address', 'locale'):
|
2008-08-29 11:11:02 +02:00
|
|
|
attr = getattr(queue, field, None)
|
|
|
|
if callable(attr):
|
|
|
|
context['queue'][field] = attr()
|
|
|
|
else:
|
|
|
|
context['queue'][field] = attr
|
|
|
|
|
2011-11-05 01:56:53 +01:00
|
|
|
for field in ( 'title', 'created', 'modified', 'submitter_email',
|
2008-08-29 11:11:02 +02:00
|
|
|
'status', 'get_status_display', 'on_hold', 'description',
|
|
|
|
'resolution', 'priority', 'get_priority_display',
|
|
|
|
'last_escalation', 'ticket', 'ticket_for_url',
|
|
|
|
'get_status', 'ticket_url', 'staff_url', '_get_assigned_to'
|
|
|
|
):
|
|
|
|
attr = getattr(ticket, field, None)
|
|
|
|
if callable(attr):
|
|
|
|
context['ticket'][field] = '%s' % attr()
|
|
|
|
else:
|
|
|
|
context['ticket'][field] = attr
|
2009-06-25 13:22:53 +02:00
|
|
|
|
2008-08-29 11:11:02 +02:00
|
|
|
context['ticket']['queue'] = context['queue']
|
|
|
|
context['ticket']['assigned_to'] = context['ticket']['_get_assigned_to']
|
|
|
|
|
|
|
|
return context
|
2008-11-18 01:14:36 +01:00
|
|
|
|
2009-06-25 13:22:53 +02:00
|
|
|
|
|
|
|
def text_is_spam(text, request):
|
|
|
|
# Based on a blog post by 'sciyoshi':
|
|
|
|
# http://sciyoshi.com/blog/2008/aug/27/using-akismet-djangos-new-comments-framework/
|
2011-11-05 01:56:53 +01:00
|
|
|
# This will return 'True' is the given text is deemed to be spam, or
|
2009-06-25 13:22:53 +02:00
|
|
|
# False if it is not spam. If it cannot be checked for some reason, we
|
|
|
|
# assume it isn't spam.
|
|
|
|
from django.contrib.sites.models import Site
|
|
|
|
from django.conf import settings
|
|
|
|
try:
|
|
|
|
from helpdesk.akismet import Akismet
|
|
|
|
except:
|
|
|
|
return False
|
2012-08-08 06:31:51 +02:00
|
|
|
try:
|
|
|
|
site = Site.objects.get_current()
|
|
|
|
except:
|
|
|
|
site = Site(domain='configure-django-sites.com')
|
2009-06-25 13:22:53 +02:00
|
|
|
|
|
|
|
ak = Akismet(
|
2012-08-08 06:31:51 +02:00
|
|
|
blog_url='http://%s/' % site.domain,
|
2011-01-26 00:08:41 +01:00
|
|
|
agent='django-helpdesk',
|
2009-06-25 13:22:53 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
if hasattr(settings, 'TYPEPAD_ANTISPAM_API_KEY'):
|
|
|
|
ak.setAPIKey(key = settings.TYPEPAD_ANTISPAM_API_KEY)
|
|
|
|
ak.baseurl = 'api.antispam.typepad.com/1.1/'
|
|
|
|
elif hasattr(settings, 'AKISMET_API_KEY'):
|
|
|
|
ak.setAPIKey(key = settings.AKISMET_API_KEY)
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
|
|
|
if ak.verify_key():
|
|
|
|
ak_data = {
|
|
|
|
'user_ip': request.META.get('REMOTE_ADDR', '127.0.0.1'),
|
|
|
|
'user_agent': request.META.get('HTTP_USER_AGENT', ''),
|
|
|
|
'referrer': request.META.get('HTTP_REFERER', ''),
|
|
|
|
'comment_type': 'comment',
|
|
|
|
'comment_author': '',
|
|
|
|
}
|
|
|
|
|
2011-07-01 10:13:01 +02:00
|
|
|
return ak.comment_check(smart_str(text), data=ak_data)
|
2009-06-25 13:22:53 +02:00
|
|
|
|
|
|
|
return False
|