activity for users
[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             #recipients = ['support@myslice.info']
47             theme.template_name = 'contact_support_email.html'
48             html_content = render_to_string(theme.template, form.cleaned_data)
49         
50             theme.template_name = 'contact_support_email.txt'
51             text_content = render_to_string(theme.template, form.cleaned_data)
52         
53             theme.template_name = 'contact_support_email_subject.txt'
54             subject = render_to_string(theme.template, form.cleaned_data)
55             subject = subject.replace('\n', '')
56         
57             #    if not email:
58             #        theme.template_name = 'email_default_sender.txt'
59             #        sender =  render_to_string(theme.template, form.cleaned_data)
60             #        sender = sender.replace('\n', '')
61             #    else:
62             sender = email
63         
64             msg = EmailMultiAlternatives(subject, text_content, sender, [recipients])
65             msg.attach_alternative(html_content, "text/html")
66             msg.send()
67             #except Exception, e:
68                 #print "Failed to send email, please check the mail templates and the SMTP configuration of your server"
69
70             if request.user.is_authenticated() :
71                 username = request.user.email
72             else :
73                 username = None
74             # log user activity
75             activity.user.contact(self.request)
76             return render(request,'contact_sent.html', { 'theme' : self.theme,  'username': username}) # Redirect after POST
77         else:
78             return self._display (request, form)
79
80     def get (self, request):
81         return self._display (request, ContactForm()) # A fresh unbound form
82         
83     def _display (self, request, form):
84         if request.user.is_authenticated():
85             username = request.user.email
86             ## check user is pi or not
87             platform_query  = Query().get('local:platform').select('platform_id','platform','gateway_type','disabled')
88             account_query  = Query().get('local:account').select('user_id','platform_id','auth_type','config')
89             platform_details = execute_query(self.request, platform_query)
90             account_details = execute_query(self.request, account_query)
91             for platform_detail in platform_details:
92                 for account_detail in account_details:
93                     if platform_detail['platform_id'] == account_detail['platform_id']:
94                         if 'config' in account_detail and account_detail['config'] is not '':
95                             account_config = json.loads(account_detail['config'])
96                             if 'myslice' in platform_detail['platform']:
97                                 acc_auth_cred = account_config.get('delegated_authority_credentials','N/A')
98             # assigning values
99             if acc_auth_cred == {} or acc_auth_cred == 'N/A':
100                 pi = "is_not_pi"
101             else:
102                 pi = "is_pi"
103         else :
104             username = None
105             pi = "is_not_pi"
106         return render(request, self.template, {
107                 'form': form,
108                 'topmenu_items': topmenu_items('Contact', request),
109                 'theme' : self.theme,
110                 'username': username,
111                 'pi': pi,
112                 'section': "Contact"
113                 })