Example #1
0
 def _checkProtection(self):
     RHProtected._checkProtection(self)
     if not self._doProcess:
         # Logged-in check failed
         return
     if not self._avatar.canUserModify(self._getUser()):
         raise errors.AccessControlError("user")
Example #2
0
 def _checkProtection( self ):
     RHProtected._checkProtection( self )
     self._al = self._minfo.getAdminList()
     if not self._al.isAdmin( self._getUser() ):
         if self._getUser() != None and len( self._al.getList() )==0:
             return
         raise AdminError("area")
Example #3
0
 def _checkProtection(self):
     RHProtected._checkProtection(self)
     if not session.user and not self._doProcess:
         return
     if not session.user.is_admin:
         raise Forbidden(
             _("Only Indico administrators may access this page."))
Example #4
0
 def _checkProtection(self):
     RHProtected._checkProtection(self)
     if not self._doProcess:
         # Logged-in check failed
         return
     if not self._avatar.canUserModify(self._getUser()):
         raise errors.AccessControlError("user")
Example #5
0
 def _checkProtection(self):
     RHProtected._checkProtection(self)
     self._al = self._minfo.getAdminList()
     self._wm = webcast.HelperWebcastManager.getWebcastManagerInstance()
     if not self._wm.isManager(self._getUser()) and not self._al.isAdmin(
             self._getUser()):
         raise WebcastAdminError("management area")
Example #6
0
 def _checkProtection(self):
     RHProtected._checkProtection(self)
     if not session.user and not self._doProcess:
         return
     self._al = HelperMaKaCInfo.getMaKaCInfoInstance().getAdminList()
     if not session.user.isAdmin():
         if not self._al.getList():  # XXX can we just fail here instead of pretending the user is an admin?!
             return
         raise AdminError("area")
Example #7
0
 def _checkProtection(self):
     RHProtected._checkProtection(self)
     if not session.user and not self._doProcess:
         return
     if not session.user.is_admin:
         raise Forbidden(_("Only Indico administrators may access this page."))
Example #8
0
 def _checkProtection(self):
     RHProtected._checkProtection(self)
     if not self._doProcess:  # not logged in
         return
     if not self.user.can_be_modified(session.user):
         raise Forbidden('You cannot modify this user.')
Example #9
0
 def _checkProtection( self ):
     RHProtected._checkProtection( self )
     self._al = self._minfo.getAdminList()
     self._wm = webcast.HelperWebcastManager.getWebcastManagerInstance()
     if not self._wm.isManager( self._getUser() ) and not self._al.isAdmin( self._getUser() ):
         raise WebcastAdminError("management area")
Example #10
0
 def _checkProtection(self):
     RHProtected._checkProtection(self)
     if not can_manage_attachments(self.object, session.user):
         raise Forbidden
Example #11
0
 def _checkProtection(self):
     RHProtected._checkProtection(self)
     if not self._doProcess:  # not logged in
         return
     if not self.user.can_be_modified(session.user):
         raise Forbidden('You cannot modify this user.')
Example #12
0
 def _checkProtection(self):
     RHProtected._checkProtection(self)
     if not get_managed_vc_plugins(session.user):
         raise Forbidden
Example #13
0
    def _checkProtection( self ):

        RHProtected._checkProtection( self )
        if not self._avatar.canUserModify( self._getUser() ):
            raise errors.AccessControlError("user")
Example #14
0
    def _checkProtection(self):

        RHProtected._checkProtection(self)
        if not self._avatar.canUserModify(self._getUser()):
            raise errors.AccessControlError("user")
Example #15
0
 def _checkProtection(self):
     RHProtected._checkProtection(self)
     if not session.user and not self._doProcess:
         return
     if not session.user.is_admin:
         raise AdminError("area")
Example #16
0
    def _checkProtection(self):

        RHProtected._checkProtection(self)
        if not self._avatar.canUserModify(self._getUser()):
            raise ModificationError("user")
Example #17
0
 def _checkProtection(self):
     if self._group.getMemberList() == []:
         return
     RHProtected._checkProtection(self)
     if not self._group.canModify(self._aw):
         raise errors.ModificationError("group")
Example #18
0
 def _checkProtection( self ):
     if self._group.getMemberList() == []:
         return
     RHProtected._checkProtection( self )
     if not self._group.canModify( self._aw ):
         raise errors.ModificationError("group")
Example #19
0
 def _checkProtection(self):
     RHProtected._checkProtection(self)
     if self._doProcess and not get_managed_vc_plugins(session.avatar):
         raise AccessError
Example #20
0
    def _checkProtection( self ):

        RHProtected._checkProtection( self )
        if not self._avatar.canUserModify( self._getUser() ):
            raise ModificationError("user")
Example #21
0
 def _checkProtection(self):
     RHProtected._checkProtection(self)
     if not can_manage_attachments(self.object, session.user):
         raise Forbidden
Example #22
0
 def _checkProtection(self):
     RHProtected._checkProtection(self)
     if not get_managed_vc_plugins(session.user):
         raise Forbidden
Example #23
0
 def _checkProtection(self):
     RHProtected._checkProtection(self)
     if not session.avatar and not self._doProcess:
         return
     if not session.user.is_admin:
         raise AdminError("area")