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.
31 lines
1.1 KiB
31 lines
1.1 KiB
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from Utils.Logger import logger
|
|
from Utils.Common.Coding import *
|
|
|
|
def checkScheme(url: str, scheme: str, name: str) -> str: # check url scheme and remove it
|
|
if not url.startswith('%s://' % scheme):
|
|
logger.warning('%s url should start with `%s://`' % (name, scheme))
|
|
raise RuntimeError('%s scheme error' % name)
|
|
return url[len(scheme) + 3:]
|
|
|
|
|
|
def splitTag(url: str, fromRight: bool = True, spaceRemark: bool = True) -> tuple[str, str]: # split tag after `#`
|
|
if '#' not in url: # without tag
|
|
return url, ''
|
|
if not fromRight:
|
|
url, remark = url.split('#', 1) # from left search
|
|
else:
|
|
url, remark = url.rsplit('#', 1) # from right search
|
|
if spaceRemark: # deal with space remark for space
|
|
remark = remark.replace('+', ' ')
|
|
return url, urlDecode(remark)
|
|
|
|
|
|
def splitParam(params: str) -> dict: # split params
|
|
ret = {}
|
|
if params != '':
|
|
for param in params.split('&'):
|
|
ret[param.split('=', 1)[0]] = urlDecode(param.split('=', 1)[1])
|
|
return ret
|
|
|