diff --git a/production/utils.py b/production/utils.py index 12d31bc778752d05ce0ed9d39cb549bb34c5dfc2..69d14535de0531f78cd822aa179c7dbc8ea17c6c 100644 --- a/production/utils.py +++ b/production/utils.py @@ -1,6 +1,41 @@ +from common.utils import BaseMailUtil + + def proofs_id_to_slug(id): return int(id) + 8932 def proofs_slug_to_id(slug): return int(slug) - 8932 + + +class ProductionUtils(BaseMailUtil): + mail_sender = 'no-reply@scipost.org' + mail_sender_title = 'SciPost Production' + + @classmethod + def email_assigned_invitation_officer(cls): + """ + Email invitation officer about his/her new assigned stream. + """ + cls._send_mail(cls, 'email_assigned_invitation_officer', + [cls._context['stream'].invitations_officer.user.email], + 'SciPost: you have a new task') + + @classmethod + def email_assigned_production_officer(cls): + """ + Email production officer about his/her new assigned stream. + """ + cls._send_mail(cls, 'email_assigned_production_officer', + [cls._context['stream'].officer.user.email], + 'SciPost: you have a new task') + + @classmethod + def email_assigned_supervisor(cls): + """ + Email production officer about his/her new assigned stream. + """ + cls._send_mail(cls, 'email_assigned_supervisor', + [cls._context['stream'].supervisor.user.email], + 'SciPost: you have a new supervisory task') diff --git a/production/views.py b/production/views.py index 52dc38d1669f07c93c894e0c11f3de82527d05bb..de12a4b843ddd2c3c173e204a2ae3b4b2ea229bd 100644 --- a/production/views.py +++ b/production/views.py @@ -25,7 +25,7 @@ from .forms import ProductionEventForm, AssignOfficerForm, UserToOfficerForm,\ AssignInvitationsOfficerForm from .permissions import is_production_user from .signals import notify_stream_status_change, notify_new_stream_assignment -from .utils import proofs_slug_to_id +from .utils import proofs_slug_to_id, ProductionUtils ###################### @@ -248,6 +248,11 @@ def add_officer(request, stream_id): noted_to=officer, noted_by=request.user.production_user) event.save() + + # Temp fix. + # TODO: Implement proper email + ProductionUtils.load({'stream': stream}) + ProductionUtils.email_assigned_production_officer() else: for key, error in form.errors.items(): messages.warning(request, error[0]) @@ -278,6 +283,11 @@ def add_invitations_officer(request, stream_id): noted_to=officer, noted_by=request.user.production_user) event.save() + + # Temp fix. + # TODO: Implement proper email + ProductionUtils.load({'stream': stream}) + ProductionUtils.email_assigned_invitation_officer() else: for key, error in form.errors.items(): messages.warning(request, error[0]) @@ -349,6 +359,11 @@ def add_supervisor(request, stream_id): assign_perm('can_work_for_stream', supervisor.user, stream) assign_perm('can_perform_supervisory_actions', supervisor.user, stream) + + # Temp fix. + # TODO: Implement proper email + ProductionUtils.load({'stream': stream}) + ProductionUtils.email_assigned_supervisor() else: for key, error in form.errors.items(): messages.warning(request, error[0]) diff --git a/templates/email/email_assigned_invitation_officer.html b/templates/email/email_assigned_invitation_officer.html new file mode 100644 index 0000000000000000000000000000000000000000..fca940e1e54fb4f0c260efb3cb2a73a5cad633db --- /dev/null +++ b/templates/email/email_assigned_invitation_officer.html @@ -0,0 +1,20 @@ +<p> + Dear {{ stream.invitations_officer.user.last }}, +</p> +<p> + You are now assigned as Invitations Officer to the stream +</p> + +<p> + {{ stream }} + <br> + Production Supervisor: {{ stream.supervisor }} +</p> +<p> + The stream will now be open for you on the <a href="https://scipost.org/{% url 'production:production' %}">Production page</a>. +</p> + + +<p><em> + This mail is automatically generated and therefore not signed. +</em></p> diff --git a/templates/email/email_assigned_invitation_officer.txt b/templates/email/email_assigned_invitation_officer.txt new file mode 100644 index 0000000000000000000000000000000000000000..4764909efb9e3666b4733e81f7f8ccd0e200ebf4 --- /dev/null +++ b/templates/email/email_assigned_invitation_officer.txt @@ -0,0 +1,15 @@ +Dear {{ stream.invitations_officer.user.last }}, +\n +\n +You are now assigned as Invitations Officer to the stream +\n +\n +{{ stream }} +\n +Production Supervisor: {{ stream.supervisor }} +\n +\n +The stream will now be open for you on the Production page (https://scipost.org/{% url 'production:production' %}). + +\n\n +This mail is automatically generated and therefore not signed. diff --git a/templates/email/email_assigned_production_officer.html b/templates/email/email_assigned_production_officer.html new file mode 100644 index 0000000000000000000000000000000000000000..ce4a42f49bf3eab52f5d684a3eddf9fb1e9f7acb --- /dev/null +++ b/templates/email/email_assigned_production_officer.html @@ -0,0 +1,20 @@ +<p> + Dear {{ stream.invitations_officer.user.last }}, +</p> +<p> + You are now assigned as Production Officer to the stream +</p> + +<p> + {{ stream }} + <br> + Production Supervisor: {{ stream.supervisor }} +</p> +<p> + The stream will now be open for you on the <a href="https://scipost.org/{% url 'production:production' %}">Production page</a>. +</p> + + +<p><em> + This mail is automatically generated and therefore not signed. +</em></p> diff --git a/templates/email/email_assigned_production_officer.txt b/templates/email/email_assigned_production_officer.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8229b5a70a2026c7ce702bcf90c4317294530be --- /dev/null +++ b/templates/email/email_assigned_production_officer.txt @@ -0,0 +1,15 @@ +Dear {{ stream.invitations_officer.user.last }}, +\n +\n +You are now assigned as Production Officer to the stream +\n +\n +{{ stream }} +\n +Production Supervisor: {{ stream.supervisor }} +\n +\n +The stream will now be open for you on the Production page (https://scipost.org/{% url 'production:production' %}). + +\n\n +This mail is automatically generated and therefore not signed. diff --git a/templates/email/email_assigned_supervisor.html b/templates/email/email_assigned_supervisor.html new file mode 100644 index 0000000000000000000000000000000000000000..8932d22cda75dfbf5d05a08d78e816b8ffb9b9ed --- /dev/null +++ b/templates/email/email_assigned_supervisor.html @@ -0,0 +1,18 @@ +<p> + Dear {{ stream.invitations_officer.user.last }}, +</p> +<p> + You are now assigned as Production Supervisor to the stream +</p> + +<p> + {{ stream }} +</p> +<p> + The stream will now be open for you on the <a href="https://scipost.org/{% url 'production:production' %}">Production page</a>. +</p> + + +<p><em> + This mail is automatically generated and therefore not signed. +</em></p> diff --git a/templates/email/email_assigned_supervisor.txt b/templates/email/email_assigned_supervisor.txt new file mode 100644 index 0000000000000000000000000000000000000000..f161973a9d6bc1efff7eeb298a817f95d398c849 --- /dev/null +++ b/templates/email/email_assigned_supervisor.txt @@ -0,0 +1,13 @@ +Dear {{ stream.invitations_officer.user.last }}, +\n +\n +You are now assigned as Production Supervisor to the stream +\n +\n +{{ stream }} +\n +\n +The stream will now be open for you on the Production page (https://scipost.org/{% url 'production:production' %}). + +\n\n +This mail is automatically generated and therefore not signed.