X-Git-Url: http://git.onelab.eu/?p=myslice.git;a=blobdiff_plain;f=portal%2Fregistrationview.py;h=455b17543dc20cb5101a9aec69e47dac44bc81f3;hp=e068aecfc6433fd3ef264d9816a44a3abdb4b987;hb=0d118a5f600b06616c2841e92642a303d8785269;hpb=d51a21905f78b5a343225459c509982d3e51b82c diff --git a/portal/registrationview.py b/portal/registrationview.py index e068aecf..455b1754 100644 --- a/portal/registrationview.py +++ b/portal/registrationview.py @@ -1,5 +1,6 @@ import os.path, re import json +from random import randint from django.core.mail import send_mail from django.contrib.auth.models import User @@ -74,7 +75,7 @@ class RegistrationView (FreeAccessView): #prepare user_hrn split_email = reg_email.split("@")[0] split_email = split_email.replace(".", "_") - user_hrn = reg_auth + '.' + split_email + user_hrn = reg_auth + '.' + split_email+ str(randint(1,1000000)) UserModel = get_user_model() @@ -132,7 +133,7 @@ class RegistrationView (FreeAccessView): public_key = file_content public_key = ''.join(public_key.split()) else: - errors.append('Please upload a valid RSA public key [.txt or .pub].') + errors.append('Please upload a valid RSA public key.') #b = PendingUser(first_name=reg_fname, last_name=reg_lname, affiliation=reg_aff, # email=reg_email, password=request.POST['password'], keypair=keypair) @@ -148,13 +149,14 @@ class RegistrationView (FreeAccessView): email = reg_email, password = request.POST['password'], keypair = account_config, + pi = '', ) b.save() # saves the user to django auth_user table [needed for password reset] user = User.objects.create_user(reg_email, reg_email, request.POST['password']) #creating user to manifold local:user user_config = '{"firstname":"'+ reg_fname + '", "lastname":"'+ reg_lname + '", "authority":"'+ reg_auth + '"}' - user_params = {'email': reg_email, 'password': request.POST['password'], 'config': user_config} + user_params = {'email': reg_email, 'password': request.POST['password'], 'config': user_config, 'status': 1} manifold_add_user(request,user_params) #creating local:account in manifold user_id = user_detail['user_id']+1 # the user_id for the newly created user in local:user @@ -169,12 +171,13 @@ class RegistrationView (FreeAccessView): 'email' : reg_email, 'user_hrn' : user_hrn, 'public_key' : public_key, - 'cc_myself' : True # form.cleaned_data['cc_myself'] } recipients = authority_get_pi_emails(request,reg_auth) - - if ctx['cc_myself']: - recipients.append(ctx['email']) + + # We don't need to send this email to user. + # it's for the PI only + #if ctx['cc_myself']: + # recipients.append(ctx['email']) msg = render_to_string('user_request_email.txt', ctx) send_mail("Onelab New User request for %s submitted"%reg_email, msg, 'support@myslice.info', recipients)