Merge branch 'master' of git://git.onelab.eu/myslice
[myslice.git] / portal / registrationview.py
1 import os.path, re
2
3 from django.core.mail           import send_mail
4
5 from django.views.generic       import View
6 from django.template.loader     import render_to_string
7 from django.shortcuts           import render
8
9 from myslice.viewutils          import topmenu_items
10
11 from manifold.manifoldapi       import execute_query
12 from manifold.core.query        import Query
13
14 from portal.models              import PendingUser
15 from portal.actions             import authority_get_pi_emails 
16
17 # This is a rough porting from views.py
18 # the former function-based view is now made a class
19 # we redefine dispatch as it is simple
20 # and coincidentally works since we do not need LoginRequiredAutoLogoutView
21 # a second stab should redefine post and get instead
22 # also this was not thoroughly tested either, might miss some imports
23 # to be continued...
24
25 class RegistrationView (View):
26
27   def dispatch (self, request):
28
29     errors = []
30
31     #authorities_query = Query.get('authority').filter_by('authority_hrn', 'included', ['ple.inria', 'ple.upmc']).select('name', 'authority_hrn')
32     authorities_query = Query.get('authority').select('authority_hrn')
33     authorities = execute_query(request, authorities_query)
34     authorities = sorted(authorities)
35
36     if request.method == 'POST':
37         # We shall use a form here
38
39         #get_email = PendingUser.objects.get(email)
40         reg_fname = request.POST.get('firstname', '')
41         reg_lname = request.POST.get('lastname', '')
42         #reg_aff = request.POST.get('affiliation','')
43         reg_auth = request.POST.get('authority_hrn', '')
44         reg_email = request.POST.get('email','').lower()
45         
46         #POST value validation  
47         if (re.search(r'^[\w+\s.@+-]+$', reg_fname)==None):
48             errors.append('First Name may contain only letters, numbers, spaces and @/./+/-/_ characters.')
49             #return HttpResponse("Only Letters, Numbers, - and _ allowd in First Name")
50             #return render(request, 'registration_view.html')
51         if (re.search(r'^[\w+\s.@+-]+$', reg_lname) == None):
52             errors.append('Last Name may contain only letters, numbers, spaces and @/./+/-/_ characters.')
53             #return HttpResponse("Only Letters, Numbers, - and _ is allowed in Last name")
54             #return render(request, 'registration_view.html')
55 #        if (re.search(r'^[\w+\s.@+-]+$', reg_aff) == None):
56 #            errors.append('Affiliation may contain only letters, numbers, spaces and @/./+/-/_ characters.')
57             #return HttpResponse("Only Letters, Numbers and _ is allowed in Affiliation")
58             #return render(request, 'registration_view.html')
59         # XXX validate authority hrn !!
60         if PendingUser.objects.filter(email__iexact=reg_email):
61             errors.append('Email already registered.Please provide a new email address.')
62             #return HttpResponse("Email Already exists")
63             #return render(request, 'registration_view.html')
64         if 'generate' in request.POST['question']:
65             # Generate public and private keys using SFA Library
66             from sfa.trust.certificate  import Keypair
67             k = Keypair(create=True)
68             public_key = k.get_pubkey_string()
69             private_key = k.as_pem()
70             private_key = ''.join(private_key.split())
71             public_key = "ssh-rsa " + public_key
72             # Saving to DB
73             keypair = '{"user_public_key":"'+ public_key + '", "user_private_key":"'+ private_key + '"}'
74 #            keypair = re.sub("\r", "", keypair)
75 #            keypair = re.sub("\n", "\\n", keypair)
76 #            #keypair = keypair.rstrip('\r\n')
77 #            keypair = ''.join(keypair.split())
78         else:
79             up_file = request.FILES['user_public_key']
80             file_content =  up_file.read()
81             file_name = up_file.name
82             file_extension = os.path.splitext(file_name)[1]
83             allowed_extension =  ['.pub','.txt']
84             if file_extension in allowed_extension and re.search(r'ssh-rsa',file_content):
85                 keypair = '{"user_public_key":"'+ file_content +'"}'
86                 keypair = re.sub("\r", "", keypair)
87                 keypair = re.sub("\n", "\\n",keypair)
88                 keypair = ''.join(keypair.split())
89             else:
90                 errors.append('Please upload a valid RSA public key [.txt or .pub].')
91
92         #b = PendingUser(first_name=reg_fname, last_name=reg_lname, affiliation=reg_aff, 
93         #                email=reg_email, password=request.POST['password'], keypair=keypair)
94         #b.save()
95         if not errors:
96             b = PendingUser(
97                 first_name=reg_fname, 
98                 last_name=reg_lname, 
99                 #affiliation=reg_aff,
100                 authority_hrn=reg_auth,
101                 email=reg_email, 
102                 password=request.POST['password'],
103                 keypair=keypair
104             )
105             b.save()
106
107             # Send email
108             ctx = {
109                 'first_name'   : reg_fname, 
110                 'last_name'    : reg_lname, 
111                 'authority_hrn': reg_auth,
112                 'email'        : reg_email, 
113                 'keypair'      : keypair,
114                 'cc_myself'    : True # form.cleaned_data['cc_myself']
115             }
116
117             recipients = authority_get_pi_emails(request,reg_auth)
118             if ctx['cc_myself']:
119                 recipients.append(ctx['email'])
120
121             msg = render_to_string('user_request_email.txt', ctx)
122             send_mail("Onelab New User request for %s submitted"%reg_email, msg, reg_email, recipients)
123
124             return render(request, 'user_register_complete.html')
125
126     return render(request, 'registration_view.html',{
127         'topmenu_items': topmenu_items('Register', request),
128         'errors': errors,
129         'firstname': request.POST.get('firstname', ''),
130         'lastname': request.POST.get('lastname', ''),
131         #'affiliation': request.POST.get('affiliation', ''),
132         'authority_hrn': request.POST.get('authority_hrn', ''),
133         'email': request.POST.get('email', ''),
134         'password': request.POST.get('password', ''),           
135         'authorities': authorities,
136     })