project request fix
[unfold.git] / portal / projectrequestview.py
index d2f11a6..819cce5 100644 (file)
 from django.shortcuts           import render
 from django.contrib.sites.models import Site
 
-
-from unfold.page                import Page
-
 from manifold.core.query        import Query
 from manifoldapi.manifoldapi    import execute_admin_query, execute_query
 
-from portal.actions             import is_pi, create_slice, create_pending_slice, clear_user_creds
-#from portal.forms               import SliceRequestForm
 from unfold.loginrequired       import LoginRequiredAutoLogoutView
-from ui.topmenu                 import topmenu_items_live, the_user
+
+from portal.actions import create_pending_project, create_pending_join, sfa_add_authority, authority_add_pis, is_pi
+from portal.models import PendingProject, PendingJoin
 
 from myslice.theme import ThemeView
 
 import json, time, re
 
-import activity.user
-
-class ProjectRequestView (LoginRequiredAutoLogoutView, ThemeView):
+class ProjectRequestView(LoginRequiredAutoLogoutView, ThemeView):
     template_name = 'projectrequest_view.html'
     
-    # because we inherit LoginRequiredAutoLogoutView that is implemented by redefining 'dispatch'
-    # we cannot redefine dispatch here, or we'd lose LoginRequired and AutoLogout behaviours
-    def post (self, request):
-        return self.get_or_post (request, 'POST')
+    def getAuthorities(self, request):
+        authorities_query = Query.get('authority').select('name', 'authority_hrn')
+        authorities = execute_admin_query(request, authorities_query)
+        if authorities is not None:
+            # Remove the root authority from the list
+            matching = [s for s in authorities if "." in s['authority_hrn']]
+            authorities = sorted(matching, key=lambda k: k['authority_hrn'])
+            authorities = sorted(matching, key=lambda k: k['name'])
+        return authorities
+    
+    def getUserAuthority(self, request):
+        # Get user_email (XXX Would deserve to be simplified)
+        user_query  = Query().get('local:user').select('email','config')
+        user_details = execute_query(request, user_query)
+        for user_detail in user_details:
+            user_config = json.loads(user_detail['config'])
+            user_authority = user_config.get('authority','N/A')
+        return user_authority
+    
+    def getUserHrn(self, request):
+        user_hrn = None
+        
+        account_query  = Query().get('local:account').select('user_id','platform_id','auth_type','config')
+        account_details = execute_query(request, account_query)
+
+        platform_query  = Query().get('local:platform').select('platform_id','platform','gateway_type','disabled')
+        platform_details = execute_query(request, platform_query)
+        
+        # getting user_hrn from local:account
+        for account_detail in account_details:
+            for platform_detail in platform_details:
+                if platform_detail['platform_id'] == account_detail['platform_id']:
+                    # taking user_hrn only from myslice account
+                    # NOTE: we should later handle accounts filter_by auth_type= managed OR user
+                    if 'myslice' in platform_detail['platform']:
+                        account_config = json.loads(account_detail['config'])
+                        user_hrn = account_config.get('user_hrn','N/A')
+        return user_hrn        
+
+    def getUserEmail(self, request):
+        # Get user_email (XXX Would deserve to be simplified)
+        user_query  = Query().get('local:user').select('email','config')
+        user_details = execute_query(request, user_query)
+        user_email = user_details[0].get('email')
+        return user_email
+                   
+    def post(self, request):
+        return self.handle_request(request, 'POST')
+
+    def get(self, request):
+        return self.handle_request(request, 'GET')
+
+    def handle_request(self, wsgi_request, method):
+        errors = []
+        authority_hrn = None
+        authority_name = None
+        
+        #errors.append(wsgi_request.POST)
+
+        user_hrn = self.getUserHrn(wsgi_request)
+
+        user_email = self.getUserEmail(wsgi_request)
+        
+        authorities = self.getAuthorities(wsgi_request)
+        
+        user_authority = self.getUserAuthority(wsgi_request)
+        
+        # getting the org from authority
+        for authority in authorities:
+            if authority['authority_hrn'] == user_authority:
+                authority_name = authority['name']
+        
+        if method == 'POST' :
+        
+            if 'join' in wsgi_request.POST:
+                post = {
+                    'user_hrn'          : user_hrn,
+                    'email'             : user_email,
+                    'project_name'      : wsgi_request.POST.get('project_name', ''),
+                    'authority_hrn'     : wsgi_request.POST.get('project_name', ''),
+                }
+
+            else:
+                post = {
+                    'user_hrn'          : user_hrn,
+                    'email'             : user_email,
+                    'authority_hrn'     : wsgi_request.POST.get('authority_name', ''),
+                    'project_name'      : wsgi_request.POST.get('project_name', ''),
+                    'purpose'           : wsgi_request.POST.get('purpose', ''),
+                }
+                
+                # for new projects max project_name length is 10
+                if (len(post['project_name']) >10):
+                    errors.append('Project name can be maximum 10 characters long')
+
+                #if (post['authority_hrn'] is None or post['authority_hrn'] == ''):
+                #    errors.append('Organization is mandatory')
+    
+                if (post['purpose'] is None or post['purpose'] == ''):
+                    errors.append('Project purpose is mandatory')
 
-    def get (self, request):
-        return self.get_or_post (request, 'GET')
+                if (re.search(r'^[A-Za-z0-9_]*$', post['project_name']) == None):
+                    errors.append('Project name may contain only letters, numbers, and underscore.')
 
-    def get_or_post  (self, wsgi_request, method):
+            # What kind of project name is valid?
+            if (post['project_name'] is None or post['project_name'] == ''):
+                errors.append('Project name is mandatory')   
+            
+            if not errors:
+                print "is_pi on auth_hrn = ", user_authority
+                if is_pi(wsgi_request, user_hrn, user_authority):
+                    # PIs can directly create/join project in their own authority...
+                    if 'join' in wsgi_request.POST:
+                        authority_add_pis(wsgi_request, post['project_name'], user_hrn)
+                    else:
+                        hrn = post['authority_hrn'] + '.' + post['project_name']
+                        sfa_add_authority(wsgi_request, {'authority_hrn':hrn})
+                        authority_add_pis(wsgi_request, hrn, user_hrn)
+                    self.template_name = 'project-request-done-view.html'
+                else:
+                    # Otherwise a wsgi_request is sent to the PI
+                    if 'join' in wsgi_request.POST:
+                        create_pending_join(wsgi_request, post)
+                    else:
+                        create_pending_project(wsgi_request, post)
+                    self.template_name = 'project-request-ack-view.html'
+
+        # retrieves the pending projects creation list
+        pending_projects = PendingProject.objects.all().filter(user_hrn=user_hrn)
+        # retrieves the pending join a project list
+        pending_join_projects = PendingJoin.objects.all().filter(user_hrn=user_hrn)
+
+        root_authority = user_authority.split('.', 1)[0]                  
+        env = {
+               'errors':        errors,
+               'username':      wsgi_request.user,
+               'theme':         self.theme,
+               'authorities':   authorities,
+               'authority_hrn': user_authority,
+               'root_authority_hrn': root_authority,
+               'pending_projects': pending_projects,
+               'pending_join_projects': pending_join_projects,
+        }
+        return render(wsgi_request, self.template, env)
+    
+        
+    
         """
         """
         errors = []
@@ -67,6 +200,7 @@ class ProjectRequestView (LoginRequiredAutoLogoutView, ThemeView):
         #
         platform_query  = Query().get('local:platform').select('platform_id','platform','gateway_type','disabled')
         platform_details = execute_query(wsgi_request, platform_query)
+        
         user_hrn = None
         # getting user_hrn from local:account
         for account_detail in account_details:
@@ -88,17 +222,17 @@ class ProjectRequestView (LoginRequiredAutoLogoutView, ThemeView):
 
 
         # Page rendering
-        page = Page(wsgi_request)
-        page.add_js_files  ( [ "js/jquery.validate.js", "js/jquery-ui.js" ] )
-        page.add_css_files ( [ "https://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" ] )
-        page.expose_js_metadata()
+        page = Page(wsgi_request)
+        page.add_js_files  ( [ "js/jquery.validate.js", "js/jquery-ui.js" ] )
+        page.add_css_files ( [ "https://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" ] )
+        page.expose_js_metadata()
 
         if method == 'POST':
             # The form has been submitted
 
             # get the domain url
-            current_site = Site.objects.get_current()
-            current_site = current_site.domain
+            current_site = Site.objects.get_current()
+            current_site = current_site.domain
             
             # getting the authority_hrn from the selected organization
             for authority in authorities:
@@ -124,7 +258,7 @@ class ProjectRequestView (LoginRequiredAutoLogoutView, ThemeView):
             }
             
             # create slice_hrn based on authority_hrn and slice_name
-            slice_name = slice_request['slice_name']
+            slice_name = slice_request['slice_name']
             req_slice_hrn = authority_hrn + '.' + slice_name
             # comparing requested slice_hrn with the existing slice_hrn 
             slice_query  = Query().get('myslice:slice').select('slice_hrn','parent_authority').filter_by('parent_authority','==',authority_hrn)
@@ -173,7 +307,6 @@ class ProjectRequestView (LoginRequiredAutoLogoutView, ThemeView):
 
         template_env = {
             'username': wsgi_request.user.email,
-            'topmenu_items': topmenu_items_live('Request a slice', page),
             'errors': errors,
             'slice_name': slice_name,
             'purpose': purpose,