mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
* Upgrade to heroku-20 stack * Move some gulp deps to dev rather than prod * npm upgrade * Fix audit time check in asset audit test * Attempt at parallelising tests where possible * Add basic calendar button test Mainly to pickup on FullCalendar loading errors * Upgrade python deps * Tends to help if I push valid yaml * You valid now? * Fix whoops in requirements.txt * Change python ver * Define service in coveralls task * Run parallelised RIGS tests as one matrix job * Update python version in tests * Cache python dependencies Should majorly speedup parallelillelelised testing * Purge old vagrant config * No Ruby compass bodge, no need for rubocop! * Purge old .idea config * Switch to gh-a artifact uploading instead of imgur 'hack' For test failure screenshots. Happy now @mattysmith22? ;p * Oops, remove unused import * Exclude tests from the coverage stats Seems to be artifically deflating our stats * Refactor asset audit tests with better selectors Also fixed a silly title error with the modal * Add title checking to the slightly insane assets test * Fix unauth test to not just immediately pass out * Upload failure screenshots as individual artifacts not a zip Turns out I can't unzip things from my phone, which is a pain * Should fix asset test on CI * What about this? * What about this? Swear I spend my life jiggerypokerying the damn test suite... * Does this help the coverage be less weird? * Revert "Does this help the coverage be less weird?" This reverts commit39ab9df836. * Use pytest as our test runner for better parallelism Also rewrote some asset tests to be in the pytest style. May do some more. Some warnings cleaned up in the process. * Bah, codestyle * Oops, remove obsolete if check * Fix screenshot uploading on CI (again) * Try this way of parallel coverage * Add codeclimate maintainability badge * Remove some unused gulp dependencies * Run asset building serverside * Still helps if I commit valid YAML * See below * Different approach to CI dependencies * Exclude node_modules from codestyle * Does this work? * Parallel parallel builds were giving me a headache, try this * Update codeclimate settings, purge some config files * Well the YAML was *syntactically* valid.... * Switch back to old coveralls method * Fix codeclimate config, mark 2 * Attempt to bodge asset test * Oops, again Probably bedtime.. * Might fix heroku building * Attempt #2 at fixing heroku * Belt and braces approach to coverage * Github, you need a Actions YAML validator! * Might fix actions? * Try ignoring some third party deprecation warnings * Another go at making coverage show up * Some template cleanup * Minor python cleanup * Import optimisation * Revert "Minor python cleanup" This reverts commit6a4620a2e5. * Add format arg to coverage command * Ignore test directories from Heroku slug * Maybe this works to purge deps postbuild * Bunch of test refactoring * Restore signals import, screw you import optimisation * Further template refactoring * Add support for running tests with geckodriver, do this on CI * Screw you codestyle * Disable firefox tests for now That was way more errors than I expected * Run cleanup script from the right location * Plausibly fix tests * Helps if I don't delete the pipeline folder prior to collectstatic * Enable whitenoise * Can I delete pipeline here? * Allow seconds difference in assert_times_equal * Disable codeclimate * Remove not working rm command * Maybe this fixes coverage? * Try different coverage reporter * Fix search_help to need login * Made versioning magic a bit less expansive We have more apps than I thought... * Fix IDI0T error in Assets URLS * Refactor 'no access to unauthed' test to cover all of PyRIGS * Add RAs/Checklists to sample data generator * Fix some HTML errors in templates Which apparently only Django's HTML parser cares about, browsers DGAF... * Port title test to project level * Fix more HTML * Fix cable type detail
150 lines
5.0 KiB
Python
150 lines
5.0 KiB
Python
import re
|
|
import urllib.error
|
|
import urllib.parse
|
|
import urllib.request
|
|
from io import BytesIO
|
|
|
|
from PyPDF2 import PdfFileReader, PdfFileMerger
|
|
from django.conf import settings
|
|
from django.contrib.staticfiles.storage import staticfiles_storage
|
|
from django.core.cache import cache
|
|
from django.core.mail import EmailMessage, EmailMultiAlternatives
|
|
from django.db.models.signals import post_save
|
|
from django.template.loader import get_template
|
|
from django.urls import reverse
|
|
from django.utils import timezone
|
|
from premailer import Premailer
|
|
from registration.signals import user_activated
|
|
from reversion import revisions as reversion
|
|
from z3c.rml import rml2pdf
|
|
|
|
from RIGS import models
|
|
|
|
|
|
def send_eventauthorisation_success_email(instance):
|
|
# Generate PDF first to prevent context conflicts
|
|
context = {
|
|
'object': instance.event,
|
|
'fonts': {
|
|
'opensans': {
|
|
'regular': 'RIGS/static/fonts/OPENSANS-REGULAR.TTF',
|
|
'bold': 'RIGS/static/fonts/OPENSANS-BOLD.TTF',
|
|
}
|
|
},
|
|
'receipt': True,
|
|
'current_user': False,
|
|
}
|
|
|
|
template = get_template('event_print.xml')
|
|
merger = PdfFileMerger()
|
|
|
|
rml = template.render(context)
|
|
|
|
buffer = rml2pdf.parseString(rml)
|
|
merger.append(PdfFileReader(buffer))
|
|
buffer.close()
|
|
|
|
terms = urllib.request.urlopen(settings.TERMS_OF_HIRE_URL)
|
|
merger.append(BytesIO(terms.read()))
|
|
|
|
merged = BytesIO()
|
|
merger.write(merged)
|
|
|
|
# Produce email content
|
|
context = {
|
|
'object': instance,
|
|
}
|
|
|
|
if instance.event.person is not None and instance.email == instance.event.person.email:
|
|
context['to_name'] = instance.event.person.name
|
|
elif instance.event.organisation is not None and instance.email == instance.event.organisation.email:
|
|
context['to_name'] = instance.event.organisation.name
|
|
|
|
subject = "N%05d | %s - Event Authorised" % (instance.event.pk, instance.event.name)
|
|
|
|
client_email = EmailMultiAlternatives(
|
|
subject,
|
|
get_template("eventauthorisation_client_success.txt").render(context),
|
|
to=[instance.email],
|
|
reply_to=[settings.AUTHORISATION_NOTIFICATION_ADDRESS],
|
|
)
|
|
|
|
css = staticfiles_storage.path('css/email.css')
|
|
html = Premailer(get_template("eventauthorisation_client_success.html").render(context),
|
|
external_styles=css).transform()
|
|
client_email.attach_alternative(html, 'text/html')
|
|
|
|
escapedEventName = re.sub(r'[^a-zA-Z0-9 \n\.]', '', instance.event.name)
|
|
|
|
client_email.attach('N%05d - %s - CONFIRMATION.pdf' % (instance.event.pk, escapedEventName),
|
|
merged.getvalue(),
|
|
'application/pdf'
|
|
)
|
|
|
|
if instance.event.mic:
|
|
mic_email_address = instance.event.mic.email
|
|
else:
|
|
mic_email_address = settings.AUTHORISATION_NOTIFICATION_ADDRESS
|
|
|
|
mic_email = EmailMessage(
|
|
subject,
|
|
get_template("eventauthorisation_mic_success.txt").render(context),
|
|
to=[mic_email_address]
|
|
)
|
|
|
|
# Now we have both emails successfully generated, send them out
|
|
client_email.send(fail_silently=True)
|
|
mic_email.send(fail_silently=True)
|
|
|
|
# Set event to booked now that it's authorised
|
|
instance.event.status = models.Event.BOOKED
|
|
instance.event.save()
|
|
|
|
|
|
def on_revision_commit(sender, instance, created, **kwargs):
|
|
if created:
|
|
send_eventauthorisation_success_email(instance)
|
|
|
|
|
|
post_save.connect(on_revision_commit, sender=models.EventAuthorisation)
|
|
|
|
|
|
def send_admin_awaiting_approval_email(user, request, **kwargs):
|
|
# Bit more controlled than just emailing all superusers
|
|
for admin in models.Profile.admins():
|
|
# Check we've ever emailed them before and if so, if cooldown has passed.
|
|
if admin.last_emailed is None or admin.last_emailed + settings.EMAIL_COOLDOWN <= timezone.now():
|
|
context = {
|
|
'request': request,
|
|
'link_suffix': reverse("admin:RIGS_profile_changelist") + '?is_approved__exact=0',
|
|
'number_of_users': models.Profile.users_awaiting_approval_count(),
|
|
'to_name': admin.first_name
|
|
}
|
|
|
|
email = EmailMultiAlternatives(
|
|
"%s new users awaiting approval on RIGS" % (context['number_of_users']),
|
|
get_template("admin_awaiting_approval.txt").render(context),
|
|
to=[admin.email],
|
|
reply_to=[user.email],
|
|
)
|
|
css = staticfiles_storage.path('css/email.css')
|
|
html = Premailer(get_template("admin_awaiting_approval.html").render(context),
|
|
external_styles=css).transform()
|
|
email.attach_alternative(html, 'text/html')
|
|
email.send()
|
|
|
|
# Update last sent
|
|
admin.last_emailed = timezone.now()
|
|
admin.save()
|
|
|
|
|
|
user_activated.connect(send_admin_awaiting_approval_email)
|
|
|
|
|
|
def update_cache(sender, instance, created, **kwargs):
|
|
cache.clear()
|
|
|
|
|
|
for model in reversion.get_registered_models():
|
|
post_save.connect(update_cache, sender=model)
|