zoukankan      html  css  js  c++  java
  • python和搜索

    # -*- coding: UTF-8 -*-
    import re
    
    
    # 搜索逻辑
    def querylogic(list):
        query = {}
        if len(list) > 1 or len(list[0].split(':')) > 1:
            for _ in list:
                if _.find(':') > -1:
                    if _.split(':')[0] == 'port':
                        query['port'] = int(_.split(':')[1])
                    elif _.split(':')[0] == 'banner':
                        zhPattern = re.compile(u'[u4e00-u9fa5]+')
                        contents = _.split(':')[1]
                        match = zhPattern.search(contents)
                        # 如果没有中文用全文索引
                        if match:
                            query['banner'] = {"$regex": _.split(':')[1], '$options': 'i'}
                        else:
                            query['$text'] = {'$search': _.split(':')[1]}
                    elif _.split(':')[0] == 'ip':
                        ip = _.split(':')[1]
                        query['ip'] = {"$regex": ip}
                    elif _.split(':')[0] == 'server':
                        query['server'] = _.split(':')[1].lower()
                    elif _.split(':')[0] == 'title':
                        query['webinfo.title'] = {"$regex": _.split(':')[1], '$options': 'i'}
                    elif _.split(':')[0] == 'tag':
                        query['webinfo.tag'] = _.split(':')[1].lower()
                    elif _.split(':')[0] == 'hostname':
                        query['hostname'] = {"$regex": _.split(':')[1], '$options': 'i'}
                    elif _.split(':')[0] == 'all':
                        filter = []
                        for i in ('ip', 'banner', 'port', 'time', 'webinfo.tag', 'webinfo.title', 'server', 'hostname'):
                            filter.append({i: {"$regex": _.split(':')[1], '$options': 'i'}})
                        query['$or'] = filter
                    else:
                        query[_.split(':')[0]] = _.split(':')[1]
        else:
            filter = []
            for i in ('ip', 'banner', 'port', 'time', 'webinfo.tag', 'webinfo.title', 'server', 'hostname'):
                filter.append({i: {"$regex": list[0], '$options': 'i'}})
            query['$or'] = filter
        return query
  • 相关阅读:
    理解HTTP协议
    节点操作,节点属性的操作及DOM event事件
    jQuery的属性,事件及操作
    jQuery中的选择器及筛选器
    javascipt中的DOM对象
    javascript中的BOM对象
    javascript中的Date对象和Math对象
    javascript中的字符串对象
    javascript基础
    CSS核心内容之浮动
  • 原文地址:https://www.cnblogs.com/bayueman/p/6612288.html
Copyright © 2011-2022 走看看