示例#1
0
文件: users.py 项目: jbenito3/indico
 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")
示例#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")
示例#3
0
文件: admins.py 项目: NIIF/indico
 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")
示例#4
0
 def _checkProtection( self ):
     RHProtected._checkSessionUser( self )
     if not self._aw.getUser():
         raise errors.AccessControlError("user")
示例#5
0
 def _checkParams(self, params):
     RHProtected._checkParams(self, params)
     self._minfo = HelperMaKaCInfo.getMaKaCInfoInstance()
示例#6
0
文件: groups.py 项目: NIIF/indico
 def _checkProtection( self ):
     if self._group.getMemberList() == []:
         return
     RHProtected._checkProtection( self )
     if not self._group.canModify( self._aw ):
         raise errors.ModificationError("group")
示例#7
0
文件: __init__.py 项目: OmeGak/indico
 def _checkSessionUser(self):
     if not Config.getInstance().getIsRoomBookingActive():
         raise NotFound(_('The room booking module is not enabled.'))
     RHProtected._checkSessionUser(self)
     if not rb_check_user_access(session.user):
         raise Forbidden(_('Your are not authorized to access the room booking system.'))
示例#8
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")
示例#9
0
文件: users.py 项目: sylvestre/indico
    def _checkProtection(self):

        RHProtected._checkProtection(self)
        if not self._avatar.canUserModify(self._getUser()):
            raise errors.AccessControlError("user")
示例#10
0
文件: users.py 项目: sylvestre/indico
 def _checkProtection(self):
     RHProtected._checkSessionUser(self)
     if not self._aw.getUser():
         raise errors.AccessControlError("user")
示例#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.')
示例#12
0
    def _checkProtection(self):

        RHProtected._checkProtection(self)
        if not self._avatar.canUserModify(self._getUser()):
            raise ModificationError("user")
示例#13
0
 def _checkProtection(self):
     if self._group.getMemberList() == []:
         return
     RHProtected._checkProtection(self)
     if not self._group.canModify(self._aw):
         raise errors.ModificationError("group")
示例#14
0
 def _checkProtection(self):
     RHProtected._checkProtection(self)
     if self._doProcess and not get_managed_vc_plugins(session.avatar):
         raise AccessError
示例#15
0
 def _checkProtection(self):
     RHProtected._checkProtection(self)
     if not get_managed_vc_plugins(session.user):
         raise Forbidden
示例#16
0
 def _checkProtection(self):
     RHProtected._checkProtection(self)
     if not can_manage_attachments(self.object, session.user):
         raise Forbidden
示例#17
0
 def _checkParams( self, params ):
     RHProtected._checkParams( self, params )
     self._minfo = HelperMaKaCInfo.getMaKaCInfoInstance()
示例#18
0
文件: controllers.py 项目: fph/indico
 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.')
示例#19
0
 def _checkProtection(self):
     RHProtected._checkProtection(self)
     if not can_manage_attachments(self.object, session.user):
         raise Forbidden
示例#20
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."))
示例#21
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")
示例#22
0
    def _checkProtection( self ):

        RHProtected._checkProtection( self )
        if not self._avatar.canUserModify( self._getUser() ):
            raise ModificationError("user")
示例#23
0
文件: users.py 项目: arturodr/indico
    def _checkProtection( self ):

        RHProtected._checkProtection( self )
        if not self._avatar.canUserModify( self._getUser() ):
            raise errors.AccessControlError("user")
示例#24
0
 def _checkProtection(self):
     RHProtected._checkProtection(self)
     if not get_managed_vc_plugins(session.user):
         raise Forbidden
示例#25
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")