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


Python Commons.string_to_bool方法代码示例

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


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

示例1: test_string_to_bool

# 需要导入模块: from inc.Commons import Commons [as 别名]
# 或者: from inc.Commons.Commons import string_to_bool [as 别名]
 def test_string_to_bool(self):
     true_list = ['1', 'true', 't', 'yes', 'y', 'on', 'enabled', 'enable']
     for true_str in true_list:
         assert Commons.string_to_bool(true_str)
     false_list = ['0', 'false', 'f', 'no', 'n', 'off', 'disabled', 'disable']
     for false_str in false_list:
         assert not Commons.string_to_bool(false_str)
     invalid_list = ["hello", "example", "test"]
     for invalid_str in invalid_list:
         assert Commons.string_to_bool(invalid_str) is None
开发者ID:joshcoales,项目名称:Hallo,代码行数:12,代码来源:testCommons.py

示例2: run

# 需要导入模块: from inc.Commons import Commons [as 别名]
# 或者: from inc.Commons.Commons import string_to_bool [as 别名]
 def run(self, line, user_obj, destination_obj=None):
     line_split = line.split()
     if len(line_split) < 3:
         return "Error, you need to specify a location, a right and the value"
     bool_input = line_split[-1]
     right_input = line_split[-2]
     location_input = line_split[:-2]
     # Search for the permission_mask they want.
     try:
         permission_mask = self.find_permission_mask(location_input, user_obj,
                                                     destination_obj if destination_obj.is_channel() else None)
     # If it comes back with an error message, return that error
     except PermissionControlException as e:
         return str(e)
     # If it comes back unspecified, generic error message
     if permission_mask is None:
         return "Error, I can't find that permission mask. Specify which you wish to modify as user={username}, " \
                "or similarly for usergroup, channel, server or hallo."
     # Turn bool_input into a boolean
     bool_bool = Commons.string_to_bool(bool_input)
     # Check if boolean input is valid
     if bool_bool is None:
         return "Error, I don't understand your boolean value. Please use true or false."
     # Set the right
     permission_mask.set_right(right_input, bool_bool)
     return "Set "+right_input+" to "+{True: "true", False: "false"}[bool_bool]+"."
开发者ID:,项目名称:,代码行数:28,代码来源:

示例3: run

# 需要导入模块: from inc.Commons import Commons [as 别名]
# 或者: from inc.Commons.Commons import string_to_bool [as 别名]
 def run(self, event):
     line_split = event.command_args.split()
     if len(line_split) < 3:
         return event.create_response("Error, you need to specify a location, a right and the value")
     bool_input = line_split[-1]
     right_input = line_split[-2]
     location_input = line_split[:-2]
     # Search for the permission_mask they want.
     try:
         permission_mask = self.find_permission_mask(location_input, event.user, event.channel)
     # If it comes back with an error message, return that error
     except PermissionControlException as e:
         return event.create_response(str(e))
     # If it comes back unspecified, generic error message
     if permission_mask is None:
         return event.create_response("Error, I can't find that permission mask. " +
                                      "Specify which you wish to modify as user={username}, " +
                                      "or similarly for usergroup, channel, server or hallo.")
     # Turn bool_input into a boolean
     bool_bool = Commons.string_to_bool(bool_input)
     # Check if boolean input is valid
     if bool_bool is None:
         return event.create_response("Error, I don't understand your boolean value. Please use true or false.")
     # Set the right
     permission_mask.set_right(right_input, bool_bool)
     return event.create_response("Set {} to {}.".format(right_input, "true" if bool_bool else "false"))
开发者ID:joshcoales,项目名称:Hallo,代码行数:28,代码来源:PermissionControl.py

示例4: edit_server_irc

# 需要导入模块: from inc.Commons import Commons [as 别名]
# 或者: from inc.Commons.Commons import string_to_bool [as 别名]
 def edit_server_irc(self, line, server_obj, user_obj, destination_obj):
     """Processes arguments in order to edit an IRC server"""
     # Set all variables to none as default
     server_address, server_port = None, None
     # Find the URL, if specified
     url_regex = re.compile("(^|\s)(irc://)?(([a-z.]+\.[a-z]+)(:([0-9]+))?)(\s|$)", re.IGNORECASE)
     url_search = url_regex.search(line)
     if url_search is not None:
         line = line.replace(url_search.group(0), " ")
         server_address = url_search.group(4).lower()
         server_port = int(url_search.group(6))
     # Find the server_address, if specified with equals notation
     server_address = Commons.find_parameter("server_address", line) or server_address
     # Find the server_port, if specified with equals notation
     server_port_param = Commons.find_parameter("server_port", line)
     if server_port_param is not None:
         try:
             server_port = int(server_port_param)
         except ValueError:
             return "Invalid port number."
     # If server_address or server_port are set, edit those and reconnect.
     if server_address is not None:
         server_obj.server_address = server_address
     if server_port is not None:
         server_obj.server_port = server_port
     # Get other parameters, if set. defaulting to whatever server defaults.
     auto_connect = Commons.string_to_bool(Commons.find_parameter("auto_connect",
                                                                  line)) or server_obj.get_auto_connect()
     server_nick = Commons.find_parameter("server_nick",
                                          line) or Commons.find_parameter("nick", line) or server_obj.get_nick()
     server_prefix = Commons.find_parameter("server_prefix",
                                            line) or Commons.find_parameter("prefix",
                                                                            line) or server_obj.get_prefix()
     full_name = Commons.find_parameter("full_name", line) or server_obj.get_full_name()
     nickserv_nick = Commons.find_parameter("nickserv_nick", line) or server_obj.get_nickserv_nick()
     nickserv_identity_command = Commons.find_parameter("nickserv_identity_command",
                                                        line) or server_obj.get_nickserv_ident_command()
     nickserv_identity_response = Commons.find_parameter("nickserv_identity_response",
                                                         line) or server_obj.get_nickserv_ident_response()
     nickserv_password = Commons.find_parameter("nickserv_password", line) or server_obj.get_nickserv_pass()
     # Set all the new variables
     server_obj.set_auto_connect(auto_connect)
     server_obj.set_nick(server_nick)
     server_obj.set_prefix(server_prefix)
     server_obj.set_full_name(full_name)
     server_obj.set_nickserv_nick(nickserv_nick)
     server_obj.set_nickserv_ident_command(nickserv_identity_command)
     server_obj.set_nickserv_ident_response(nickserv_identity_response)
     server_obj.get_nickserv_pass(nickserv_password)
     # If server address or server port was changed, reconnect.
     if server_port is not None or server_address is not None:
         server_obj.reconnect()
     return "Modified the IRC server: " + server_obj.get_name() + "."
开发者ID:,项目名称:,代码行数:55,代码来源:

示例5: connect_to_new_server_irc

# 需要导入模块: from inc.Commons import Commons [as 别名]
# 或者: from inc.Commons.Commons import string_to_bool [as 别名]
 def connect_to_new_server_irc(self, line, user_obj, destination_obj):
     """
     Processes arguments in order to connect to a new IRC server
     :type line: str
     :type user_obj: Destination.User
     :type destination_obj: Destination.Destination
     """
     # Get some handy objects
     current_server = user_obj.get_server()
     hallo_obj = current_server.get_hallo()
     # Set all variables to none as default
     server_address, server_port = None, None
     server_name = None
     # Find the URL, if specified
     url_regex = re.compile("(^|\s)(irc://)?(([a-z.]+\.[a-z]+)(:([0-9]+))?)(\s|$)", re.IGNORECASE)
     url_search = url_regex.search(line)
     if url_search is not None:
         line = line.replace(url_search.group(0), " ")
         server_address = url_search.group(4).lower()
         try:
             server_port = int(url_search.group(6))
         except (ValueError, TypeError):
             server_port = None
     # Find the server_address, if specified with equals notation
     server_address = Commons.find_parameter("server_address", line) or server_address
     # Find the server_port, if specified with equals notation
     server_port_param = Commons.find_parameter("server_port", line)
     if server_port_param is not None:
         try:
             server_port = int(server_port_param)
         except (ValueError, TypeError):
             return "Error, invalid port number."
     # Check server_address and server_port are set
     if server_address is None:
         return "Error, No server address specified."
     if server_port is None and isinstance(current_server, ServerIRC):
         server_port = current_server.get_server_port()
     if server_port is None:
         return "Error, No server port specified."
     # Get server name
     server_name = Commons.find_any_parameter(["server_name", "name"], line) or server_name
     # if server name is null, get it from server_address
     if server_name is None:
         server_name = Commons.get_domain_name(server_address)
     # Get other parameters, if set.
     auto_connect_str = Commons.find_parameter("auto_connect", line)
     auto_connect = True if auto_connect_str is None else Commons.string_to_bool(auto_connect_str)
     server_nick = Commons.find_any_parameter(["server_nick", "nick"], line) or current_server.get_nick()
     server_prefix_arg = Commons.find_any_parameter(["server_prefix", "prefix"], line)
     if not server_prefix_arg:
         server_prefix = current_server.prefix
     else:
         server_prefix = None if Commons.is_string_null(server_prefix_arg) else server_prefix_arg
     full_name = Commons.find_parameter("full_name", line) or current_server.get_full_name()
     nickserv_nick = "nickserv"
     nickserv_identity_command = "status"
     nickserv_identity_resp = "^status [^ ]+ 3$"
     nickserv_password = None
     if isinstance(current_server, ServerIRC):
         nickserv_nick = current_server.get_nickserv_nick()
         nickserv_identity_command = current_server.get_nickserv_ident_command()
         nickserv_identity_resp = current_server.get_nickserv_ident_response()
         nickserv_password = current_server.get_nickserv_pass()
     nickserv_nick = Commons.find_parameter("nickserv_nick", line) or nickserv_nick
     nickserv_identity_command = Commons.find_parameter("nickserv_identity_command",
                                                        line) or nickserv_identity_command
     nickserv_identity_resp = Commons.find_parameter("nickserv_identity_resp", line) or nickserv_identity_resp
     nickserv_password = Commons.find_parameter("nickserv_password", line) or nickserv_password
     # Create this serverIRC object
     new_server_obj = ServerIRC(hallo_obj, server_name, server_address, server_port)
     new_server_obj.set_auto_connect(auto_connect)
     new_server_obj.set_nick(server_nick)
     new_server_obj.set_prefix(server_prefix)
     new_server_obj.set_full_name(full_name)
     new_server_obj.set_nickserv_nick(nickserv_nick)
     new_server_obj.set_nickserv_ident_command(nickserv_identity_command)
     new_server_obj.set_nickserv_ident_response(nickserv_identity_resp)
     new_server_obj.set_nickserv_pass(nickserv_password)
     # Add user with same name on new server to all the same groups as current user
     new_user_nick = Commons.find_any_parameter(["user", "god"], line) or user_obj.get_name()
     new_user = new_server_obj.get_user_by_name(new_user_nick)
     for group in user_obj.user_group_list:
         new_user.add_user_group(group)
     # Add the new object to Hallo's list
     hallo_obj.add_server(new_server_obj)
     # Connect to the new server object.
     Thread(target=new_server_obj.run).start()
     return "Connected to new IRC server: " + new_server_obj.get_name() + "."
开发者ID:,项目名称:,代码行数:90,代码来源:


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