AiC and REST login
[myslice.git] / portal / contactview.py
1 from django.shortcuts           import render
2 from django.template.loader     import render_to_string
3 from django.views.generic       import View
4
5 from unfold.loginrequired       import FreeAccessView
6 from ui.topmenu                 import topmenu_items, the_user
7 from django.core.mail           import EmailMultiAlternatives, send_mail
8 from portal.forms               import ContactForm
9 from manifold.core.query                import Query
10 from manifoldapi.manifoldapi            import execute_query
11 import json
12
13 from myslice.theme import ThemeView
14
15 import activity.user
16
17 theme = ThemeView()
18
19 # splitting the 2 functions done here
20 # GET is for displaying the empty form
21 # POST is to process it once filled - or show the form again if anything is missing
22 class ContactView (FreeAccessView, ThemeView):
23     template_name = 'contact.html'
24     def post (self, request):
25         form = ContactForm(request.POST) # A form bound to the POST data
26         if form.is_valid(): # All validation rules pass
27             # Process the data in form.cleaned_data
28             #first_name = form.cleaned_data['first_name']
29             #last_name = form.cleaned_data['last_name']
30             #authority = form.cleaned_data['authority']
31             subject = form.cleaned_data['subject']
32             description = form.cleaned_data['description']
33             email = form.cleaned_data['email'] # email of the sender
34             #cc_myself = form.cleaned_data['cc_myself']
35
36             #try:
37                 # Send an email: the support recipients
38             theme.template_name = 'email_default_recipients.txt'
39             recipients = render_to_string(theme.template, form.cleaned_data)
40             recipients = recipients.replace('\n', '')
41             #recipients = ['support@onelab.eu']
42             ## removed it cz recipients is not a list so append doesn't work ###
43             ## we don't need it cz the new ticketing systems sends a confirmation email ###
44             #if cc_myself:
45             #    recipients.append(email)
46             theme.template_name = 'contact_support_email.html'
47             html_content = render_to_string(theme.template, form.cleaned_data)
48         
49             theme.template_name = 'contact_support_email.txt'
50             text_content = render_to_string(theme.template, form.cleaned_data)
51         
52             theme.template_name = 'contact_support_email_subject.txt'
53             subject = render_to_string(theme.template, form.cleaned_data)
54             subject = subject.replace('\n', '')
55         
56             #    if not email:
57             #        theme.template_name = 'email_default_sender.txt'
58             #        sender =  render_to_string(theme.template, form.cleaned_data)
59             #        sender = sender.replace('\n', '')
60             #    else:
61             sender = email
62         
63             msg = EmailMultiAlternatives(subject, text_content, sender, [recipients])
64             msg.attach_alternative(html_content, "text/html")
65             msg.send()
66             #except Exception, e:
67                 #print "Failed to send email, please check the mail templates and the SMTP configuration of your server"
68
69             if request.user.is_authenticated() :
70                 username = request.user.email
71             else :
72                 username = None
73             # log user activity
74             activity.user.contact(self.request)
75             return render(request,'contact_sent.html', { 'theme' : self.theme,  'username': username, 'request':request}) # Redirect after POST
76         else:
77             return self._display (request, form)
78
79     def get (self, request):
80         return self._display (request, ContactForm()) # A fresh unbound form
81         
82     def _display (self, request, form):
83         if request.user.is_authenticated():
84             username = request.user.email
85         else :
86             username = None
87             pi = "is_not_pi"
88         return render(request, self.template, {
89                 'form': form,
90                 'topmenu_items': topmenu_items('Contact', request),
91                 'theme' : self.theme,
92                 'username': username,
93                 'section': "Contact",
94                 'request': request,
95                 })