当前位置: 首页>>代码示例>>Python>>正文


Python BanManager.getTicketByIP方法代码示例

本文整理汇总了Python中banmanager.BanManager.getTicketByIP方法的典型用法代码示例。如果您正苦于以下问题:Python BanManager.getTicketByIP方法的具体用法?Python BanManager.getTicketByIP怎么用?Python BanManager.getTicketByIP使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在banmanager.BanManager的用法示例。


在下文中一共展示了BanManager.getTicketByIP方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: Actions

# 需要导入模块: from banmanager import BanManager [as 别名]
# 或者: from banmanager.BanManager import getTicketByIP [as 别名]
class Actions(JailThread):

    ##
    # Constructor.
    #
    # Initialize the filter object with default values.
    # @param jail the jail object

    def __init__(self, jail):
        JailThread.__init__(self)
        ## The jail which contains this action.
        self.jail = jail
        self.__actions = list()
        ## The ban manager.
        self.__banManager = BanManager()

        ##
        # Adds an action.
        #
        # @param name The action name

    def addAction(self, name):
        action = Action(name)
        self.__actions.append(action)

        ##
        # Removes an action.
        #
        # @param name The action name

    def delAction(self, name):
        for action in self.__actions:
            if action.getName() == name:
                self.__actions.remove(action)
                return
        raise KeyError("Invalid Action name: %s" % name)

        ##
        # Returns an action.
        #
        # Raises a KeyError exception if the action does not exist.
        #
        # @param name the action name
        # @return the action

    def getAction(self, name):
        for action in self.__actions:
            if action.getName() == name:
                return action
        raise KeyError("Invalid Action name")

        ##
        # Returns the last defined action.
        #
        # @return The last defined action.

    def getLastAction(self):
        action = self.__actions.pop()
        self.__actions.append(action)
        return action

        ##
        # Set the ban time.
        #
        # @param value the time

    def setBanTime(self, value):
        self.__banManager.setBanTime(value)
        logSys.info("Set banTime = %s" % value)

        ##
        # Get the ban time.
        #
        # @return the time

    def getBanTime(self):
        return self.__banManager.getBanTime()

        ##
        # Remove a banned IP now, rather than waiting for it to expire, even if set to never expire.
        #
        # @return the IP string or 'None' if not unbanned.

    def removeBannedIP(self, ip):
        # Find the ticket with the IP.
        ticket = self.__banManager.getTicketByIP(ip)
        if ticket is not None:
            # Unban the IP.
            self.__unBan(ticket)
            return ip
        raise ValueError("IP %s is not banned" % ip)

        ##
        # Main loop.
        #
        # This function is the main loop of the thread. It checks the Jail
        # queue and executes commands when an IP address is banned.
        # @return True when the thread exits nicely

    def run(self):
#.........这里部分代码省略.........
开发者ID:sciunto,项目名称:fail2ban,代码行数:103,代码来源:actions.py


注:本文中的banmanager.BanManager.getTicketByIP方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。