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
  • 相关阅读:
    交流课件
    ARC127F ±AB
    CF1566F xor-quiz
    JOISC 2016 Day 1 棋盘游戏
    dev分支和release是什么
    drf 笔记
    drf 序列化的写法 总结
    Linux系统编程
    C/C++ 网络编程
    C++提高编程
  • 原文地址:https://www.cnblogs.com/bayueman/p/6612288.html
Copyright © 2011-2022 走看看