X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=portal%2Faccountview.py;h=66eb91e4954d7459f4b5087d5edfbb4bb4c56f0f;hb=72f5c2a07b30ca91b801f05c684e368d3960dd00;hp=4292ca3020e2422c22c1952e283e8b5e87d4790d;hpb=abe96fbd1c668728d5827f82b80449c8e505c4a8;p=myslice.git diff --git a/portal/accountview.py b/portal/accountview.py index 4292ca30..66eb91e4 100644 --- a/portal/accountview.py +++ b/portal/accountview.py @@ -4,13 +4,15 @@ from manifold.core.query import Query from manifold.manifoldapi import execute_query from portal.actions import manifold_update_user, manifold_update_account # -from myslice.viewutils import topmenu_items, the_user +from ui.topmenu import topmenu_items, the_user # from django.http import HttpResponse, HttpResponseRedirect from django.contrib import messages from django.contrib.auth.decorators import login_required +from django.core.mail import send_mail + # -import json, os, re +import json, os, re, itertools # requires login class AccountView(LoginRequiredAutoLogoutView): @@ -32,49 +34,143 @@ class AccountView(LoginRequiredAutoLogoutView): if user_detail['config']: config = json.loads(user_detail['config']) - platform_query = Query().get('local:platform').select('platform_id','platform') + platform_query = Query().get('local:platform').select('platform_id','platform','gateway_type','disabled') account_query = Query().get('local:account').select('user_id','platform_id','auth_type','config') platform_details = execute_query(self.request, platform_query) account_details = execute_query(self.request, account_query) - # initial assignment needed for users having no account + # initial assignment needed for users having account.config = {} platform_name = '' account_type = '' account_usr_hrn = '' account_pub_key = '' + account_reference = '' + my_users = '' + my_slices = '' + my_auths = '' platform_name_list = [] + platform_name_secondary_list = [] + platform_access_list = [] + platform_no_access_list = [] + total_platform_list = [] account_type_list = [] + account_type_secondary_list = [] + account_reference_list = [] + delegation_type_list = [] + user_cred_exp_list = [] + slice_list = [] + auth_list = [] + slice_cred_exp_list = [] + auth_cred_exp_list = [] usr_hrn_list = [] - pub_key_list = [] - for account_detail in account_details: - for platform_detail in platform_details: + pub_key_list = [] + + for platform_detail in platform_details: + if 'sfa' in platform_detail['gateway_type'] and platform_detail['disabled']==0: + total_platform = platform_detail['platform'] + total_platform_list.append(total_platform) + + for account_detail in account_details: if platform_detail['platform_id'] == account_detail['platform_id']: platform_name = platform_detail['platform'] - account_type = account_detail['auth_type'] account_config = json.loads(account_detail['config']) - # a bit more pythonic account_usr_hrn = account_config.get('user_hrn','N/A') account_pub_key = account_config.get('user_public_key','N/A') - - platform_name_list.append(platform_name) - account_type_list.append(account_type) - usr_hrn_list.append(account_usr_hrn) - pub_key_list.append(account_pub_key) - - # combining 4 lists into 1 [to render in the template] - lst = [{'platform_name': t[0], 'account_type': t[1], 'usr_hrn':t[2], 'usr_pubkey':t[3]} - for t in zip(platform_name_list, account_type_list, usr_hrn_list, pub_key_list)] - #print "test" - #print lst + account_reference = account_config.get ('reference_platform','N/A') + # credentials + acc_user_cred = account_config.get('delegated_user_credential','N/A') + acc_slice_cred = account_config.get('delegated_slice_credentials','N/A') + acc_auth_cred = account_config.get('delegated_authority_credentials','N/A') + + if 'N/A' not in acc_user_cred: + exp_date = re.search('(.*)', acc_user_cred) + if exp_date: + user_exp_date = exp_date.group(1) + user_cred_exp_list.append(user_exp_date) + + my_users = [{'cred_exp': t[0]} + for t in zip(user_cred_exp_list)] + + + if 'N/A' not in acc_slice_cred: + for key, value in acc_slice_cred.iteritems(): + slice_list.append(key) + # get cred_exp date + exp_date = re.search('(.*)', value) + if exp_date: + exp_date = exp_date.group(1) + slice_cred_exp_list.append(exp_date) + + my_slices = [{'slice_name': t[0], 'cred_exp': t[1]} + for t in zip(slice_list, slice_cred_exp_list)] + + if 'N/A' not in acc_auth_cred: + for key, value in acc_auth_cred.iteritems(): + auth_list.append(key) + #get cred_exp date + exp_date = re.search('(.*)', value) + if exp_date: + exp_date = exp_date.group(1) + auth_cred_exp_list.append(exp_date) + + my_auths = [{'auth_name': t[0], 'cred_exp': t[1]} + for t in zip(auth_list, auth_cred_exp_list)] + + + # for reference accounts + if 'reference' in account_detail['auth_type']: + account_type = 'Reference' + delegation = 'N/A' + platform_name_secondary_list.append(platform_name) + account_type_secondary_list.append(account_type) + account_reference_list.append(account_reference) + secondary_list = [{'platform_name': t[0], 'account_type': t[1], 'account_reference': t[2]} + for t in zip(platform_name_secondary_list, account_type_secondary_list, account_reference_list)] + + elif 'managed' in account_detail['auth_type']: + account_type = 'Principal' + delegation = 'Automatic' + else: + account_type = 'Principal' + delegation = 'Manual' + # for principal (auth_type=user/managed) accounts + if 'reference' not in account_detail['auth_type']: + platform_name_list.append(platform_name) + account_type_list.append(account_type) + delegation_type_list.append(delegation) + usr_hrn_list.append(account_usr_hrn) + pub_key_list.append(account_pub_key) + # combining 5 lists into 1 [to render in the template] + lst = [{'platform_name': t[0], 'account_type': t[1], 'delegation_type': t[2], 'usr_hrn':t[3], 'usr_pubkey':t[4]} + for t in zip(platform_name_list, account_type_list, delegation_type_list, usr_hrn_list, pub_key_list)] + # to hide private key row if it doesn't exist + if 'myslice' in platform_detail['platform']: + account_config = json.loads(account_detail['config']) + account_priv_key = account_config.get('user_private_key','N/A') + if 'sfa' in platform_detail['gateway_type']: + platform_access = platform_detail['platform'] + platform_access_list.append(platform_access) + + # Removing the platform which already has access + for platform in platform_access_list: + total_platform_list.remove(platform) + # we could use zip. this one is used if columns have unequal rows + platform_list = [{'platform_no_access': t[0]} + for t in itertools.izip_longest(total_platform_list)] context = super(AccountView, self).get_context_data(**kwargs) context['data'] = lst + context['ref_acc'] = secondary_list + context['platform_list'] = platform_list + context['my_users'] = my_users + context['my_slices'] = my_slices + context['my_auths'] = my_auths context['person'] = self.request.user - context ['firstname'] = config.get('firstname',"?") - context ['lastname'] = config.get('lastname',"?") - context ['fullname'] = context['firstname'] +' '+ context['lastname'] - context ['authority'] = config.get('authority',"Unknown Authority") - #context['users'] = userlist.render(self.request) + context['firstname'] = config.get('firstname',"?") + context['lastname'] = config.get('lastname',"?") + context['fullname'] = context['firstname'] +' '+ context['lastname'] + context['authority'] = config.get('authority',"Unknown Authority") + context['user_private_key'] = account_priv_key # XXX This is repeated in all pages # more general variables expected in the template @@ -142,24 +238,39 @@ def account_process(request): messages.success(request, 'Sucess: Password Updated.') return HttpResponseRedirect("/portal/account/") +# XXX TODO: Factorize with portal/registrationview.py + elif 'generate' in request.POST: for account_detail in account_details: for platform_detail in platform_details: if platform_detail['platform_id'] == account_detail['platform_id']: if 'myslice' in platform_detail['platform']: + from Crypto.PublicKey import RSA + private = RSA.generate(1024) + private_key = json.dumps(private.exportKey()) + public = private.publickey() + public_key = json.dumps(public.exportKey(format='OpenSSH')) # Generate public and private keys using SFA Library - from sfa.trust.certificate import Keypair - k = Keypair(create=True) - public_key = k.get_pubkey_string() - private_key = k.as_pem() - private_key = ''.join(private_key.split()) - public_key = "ssh-rsa " + public_key - keypair = '{"user_public_key":"'+ public_key + '", "user_private_key":"'+ private_key + '"}' +# from sfa.trust.certificate import Keypair +# k = Keypair(create=True) +# public_key = k.get_pubkey_string() +# private_key = k.as_pem() +# private_key = ''.join(private_key.split()) +# public_key = "ssh-rsa " + public_key + # now we overwrite the config field with keypair + # once there will be user_hrn, we need to keep user_hrn and change only the keypair + # see submit_name section for implementing this # keypair = re.sub("\r", "", keypair) # keypair = re.sub("\n", "\\n", keypair) # #keypair = keypair.rstrip('\r\n') # keypair = ''.join(keypair.split()) # updating maniolf local:account table + account_config = json.loads(account_detail['config']) + # preserving user_hrn + user_hrn = account_config.get('user_hrn','N/A') + keypair = '{"user_public_key":'+ public_key + ', "user_private_key":'+ private_key + ', "user_hrn":"'+ user_hrn + '"}' + updated_config = json.dumps(account_config) + user_params = { 'config': keypair, 'auth_type':'managed'} manifold_update_account(request,user_params) messages.success(request, 'Sucess: New Keypair Generated!') @@ -179,7 +290,10 @@ def account_process(request): file_extension = os.path.splitext(file_name)[1] allowed_extension = ['.pub','.txt'] if file_extension in allowed_extension and re.search(r'ssh-rsa',file_content): - file_content = '{"user_public_key":"'+ file_content +'"}' + account_config = json.loads(account_detail['config']) + # preserving user_hrn + user_hrn = account_config.get('user_hrn','N/A') + file_content = '{"user_public_key":"'+ file_content + '", "user_hrn":"'+ user_hrn +'"}' #file_content = re.sub("\r", "", file_content) #file_content = re.sub("\n", "\\n",file_content) file_content = ''.join(file_content.split()) @@ -236,16 +350,81 @@ def account_process(request): if 'myslice' in platform_detail['platform']: account_config = json.loads(account_detail['config']) if 'user_private_key' in account_config: - pass + for key in account_config.keys(): + if key== 'user_private_key': + del account_config[key] + + updated_config = json.dumps(account_config) + user_params = { 'config': updated_config, 'auth_type':'user'} + manifold_update_account(request,user_params) + messages.success(request, 'Private Key deleted. You need to delegate credentials manually once it expires.') + return HttpResponseRedirect("/portal/account/") else: messages.error(request, 'Delete error: Private key is not stored in the server') return HttpResponseRedirect("/portal/account/") + else: + messages.error(request, 'Account error: You need an account in myslice platform to perform this action') + return HttpResponseRedirect("/portal/account/") - #messages.success(request, 'delete key en cours') - #return HttpResponseRedirect("/portal/account/") - - + # add reference platforms + elif 'add_fuseco' in request.POST: + # The recipients are the PI of the authority + #recipients = authority_get_pi_emails(request, authority_hrn) + recipients = ["support@myslice.info"] + requester = request.user # current user + sender = 'yasin.upmc@gmail.com' # the server email + msg = "OneLab user %s requested account in fuseco Platform" % requester + send_mail("Onelab user %s requested an account in Fuseco"%requester , msg, sender, recipients) + messages.info(request, 'Request to get access on Fuseco platform received. Please wait for PI\'s reply.') + return HttpResponseRedirect("/portal/account/") + + elif 'add_ple' in request.POST: + # The recipients are the PI of the authority + #recipients = authority_get_pi_emails(request, authority_hrn) + recipients = ["support@myslice.info"] + requester = request.user # current user + sender = 'yasin.upmc@gmail.com' # the server email + msg = "OneLab user %s requested account in fuseco Platform" % requester + send_mail("Onelab user %s requested an account in PLE"%requester , msg, sender, recipients) + messages.info(request, 'Request to get access on PLE platform received. Please wait for PI\'s reply.') + return HttpResponseRedirect("/portal/account/") + + elif 'add_omf' in request.POST: + # The recipients are the PI of the authority + #recipients = authority_get_pi_emails(request, authority_hrn) + recipients = ["support@myslice.info"] + requester = request.user # current user + sender = 'yasin.upmc@gmail.com' # the server email + msg = "OneLab user %s requested account in omf:nitos Platform" % requester + send_mail("Onelab user %s requested an account in OMF:NITOS"%requester , msg, sender, recipients) + messages.info(request, 'Request to get access on OMF:NITOS platform received. Please wait for PI\'s reply.') + return HttpResponseRedirect("/portal/account/") + + elif 'add_wilab' in request.POST: + # The recipients are the PI of the authority + #recipients = authority_get_pi_emails(request, authority_hrn) + recipients = ["support@myslice.info"] + requester = request.user # current user + sender = 'yasin.upmc@gmail.com' # the server email + msg = "OneLab user %s requested account in Wilab Platform" % requester + send_mail("Onelab user %s requested an account in Wilab"%requester , msg, sender, recipients) + messages.info(request, 'Request to get access on Wilab platform received. Please wait for PI\'s reply.') + return HttpResponseRedirect("/portal/account/") + + elif 'iotlab' in request.POST: + # The recipients are the PI of the authority + #recipients = authority_get_pi_emails(request, authority_hrn) + recipients = ["support@myslice.info"] + requester = request.user # current user + sender = 'yasin.upmc@gmail.com' # the server email + msg = "OneLab user %s requested account in IOTLab Platform" % requester + send_mail("Onelab user %s requested an account in IOTLab"%requester , msg, sender, recipients) + messages.info(request, 'Request to get access on IOTLab platform received. Please wait for PI\'s reply.') + return HttpResponseRedirect("/portal/account/") + + #delete reference platoforms + else: messages.info(request, 'Under Construction. Please try again later!') return HttpResponseRedirect("/portal/account/")