mirror of https://github.com/dnomd343/ProxyC
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
2.1 KiB
91 lines
2.1 KiB
3 years ago
|
#!/usr/bin/python
|
||
|
# -*- coding:utf-8 -*-
|
||
|
|
||
|
from ProxyFilter import baseFunc
|
||
|
|
||
|
brookFilterRules = {
|
||
|
'rootObject': {
|
||
|
'remark': {
|
||
|
'optional': False,
|
||
|
'default': '',
|
||
|
'type': str,
|
||
|
'format': baseFunc.toStr
|
||
|
},
|
||
|
'server': {
|
||
|
'optional': True,
|
||
|
'type': str,
|
||
|
'format': baseFunc.toStrTidy,
|
||
|
'filter': baseFunc.isHost,
|
||
|
'errMsg': 'Illegal server address'
|
||
|
},
|
||
|
'port': {
|
||
|
'optional': True,
|
||
|
'type': int,
|
||
|
'format': baseFunc.toInt,
|
||
|
'filter': baseFunc.isPort,
|
||
|
'errMsg': 'Illegal port number'
|
||
|
},
|
||
|
'passwd': {
|
||
|
'optional': True,
|
||
|
'type': str,
|
||
|
'format': baseFunc.toStr
|
||
|
},
|
||
|
'ws': {
|
||
|
'optional': False,
|
||
|
'default': None,
|
||
|
'allowNone': True,
|
||
|
'type': 'wsObject'
|
||
|
}
|
||
|
},
|
||
|
'wsObject': {
|
||
|
'host': {
|
||
|
'optional': False,
|
||
|
'default': '',
|
||
|
'type': str,
|
||
|
'format': baseFunc.toStr
|
||
|
},
|
||
|
'path': {
|
||
|
'optional': False,
|
||
|
'default': '/',
|
||
|
'type': str,
|
||
|
'format': baseFunc.toStr
|
||
|
},
|
||
|
'secure': {
|
||
|
'optional': False,
|
||
|
'default': None,
|
||
|
'allowNone': True,
|
||
|
'type': 'secureObject'
|
||
|
}
|
||
|
},
|
||
|
'secureObject': {
|
||
|
'verify': {
|
||
|
'optional': False,
|
||
|
'default': True,
|
||
|
'type': bool,
|
||
|
'format': baseFunc.toBool
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
def brookFilter(rawInfo: dict, isExtra: bool) -> tuple[bool, str or dict]:
|
||
|
"""
|
||
|
Brook节点合法性检查
|
||
|
|
||
|
不合法:
|
||
|
return False, {reason}
|
||
|
|
||
|
合法:
|
||
|
return True, {
|
||
|
'type': 'brook',
|
||
|
...
|
||
|
}
|
||
|
"""
|
||
|
try:
|
||
|
if not isExtra: # 去除非必要参数
|
||
|
brookFilterRules['rootObject'].pop('remark')
|
||
|
return baseFunc.ruleFilter(rawInfo, brookFilterRules, {
|
||
|
'type': 'brook'
|
||
|
})
|
||
|
except:
|
||
|
return False, 'Unknown error'
|