X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=portal%2Factions.py;h=523a9e1ec54a94181d4c65f8545ea082b80348d1;hb=refs%2Ftags%2Fmyslice-1.5;hp=b7ee9a0a14c8ee2de4a6206c829bb14e0f2a188c;hpb=8cd0d0762c9a12848bbbaa352e1eb0e5f5653743;p=unfold.git diff --git a/portal/actions.py b/portal/actions.py index b7ee9a0a..523a9e1e 100644 --- a/portal/actions.py +++ b/portal/actions.py @@ -16,6 +16,8 @@ from myslice.configengine import ConfigEngine from myslice.settings import logger +from rest.sfa_api import sfa_client + theme = ThemeView() import activity.slice @@ -78,6 +80,22 @@ def get_jfed_identity(request): print e return None +def getAuthorities(request, admin = False): + # XXX theme has to be the same as the root authority + result = sfa_client(request,'List',hrn=theme.theme,object_type='authority',platforms=['myslice'],admin=admin) + authorities = list() + try: + for item in result['myslice']: + t_hrn = item['hrn'].split('.') + if 'name' in item: + authorities.append({'authority_hrn':item['hrn'], 'name':item['name'], 'shortname':t_hrn[-1].upper()}) + else: + authorities.append({'authority_hrn':item['hrn']}) + except: + logger.error(result) + return sorted(authorities) + + # Get the list of pis in a given authority def authority_get_pis(request, authority_hrn): # CACHE PB with fields @@ -382,7 +400,7 @@ def manifold_add_user(wsgi_request, request): if not results: raise Exception, "Failed creating manifold user: %s" % user_params['email'] result = results[0] - return result['email'] + return result['user_id'] def manifold_update_user(request, email, user_params): # user_params: password, config e.g., @@ -660,19 +678,17 @@ def portal_validate_request(wsgi_request, request_ids): elif request['type'] == 'authority': #hrn = "%s.%s" % (request['authority_hrn'], request['site_authority']) hrn = request['site_authority'] + name = request['site_name'] # XXX tmp sfa dependency from sfa.util.xrn import Xrn urn = Xrn(hrn, request['type']).get_urn() # Only hrn is required for Manifold Query sfa_authority_params = { - 'authority_hrn' : hrn, - #'authority_urn' : urn, - #'type' : request['type'], - #'pi' : None, - #'enabled' : True + 'authority_hrn' : hrn, + 'name' : name } - logger.info("ADD Authority") + #logger.info("ADD Authority") sfa_add_authority(wsgi_request, sfa_authority_params) request_status['SFA authority'] = {'status': True } a = PendingAuthority.objects.get(id=request['id']) @@ -1284,8 +1300,6 @@ def create_pending_user(wsgi_request, request, user_detail): if request['private_key']: account_config['user_private_key'] = request['private_key'] - user_id = user_detail['user_id'] + 1 # the user_id for the newly created user in local:user - # XXX TODO: Require a myslice platform # ALERT: this will disapear with ROUTERV2 of Manifold # We have to consider the case where several registries can be used