mirror of https://gitlab.com/bashrc2/epicyon
Try different users paths
parent
78d37b16ab
commit
09fcc163bb
29
webfinger.py
29
webfinger.py
|
@ -18,26 +18,37 @@ from utils import loadJsonOnionify
|
||||||
from utils import saveJson
|
from utils import saveJson
|
||||||
from utils import getProtocolPrefixes
|
from utils import getProtocolPrefixes
|
||||||
from utils import removeDomainPort
|
from utils import removeDomainPort
|
||||||
|
from utils import getUserPaths
|
||||||
|
|
||||||
|
|
||||||
def _parseHandle(handle: str) -> (str, str):
|
def _parseHandle(handle: str) -> (str, str):
|
||||||
|
"""Parses a handle and returns nickname and domain
|
||||||
|
"""
|
||||||
if '.' not in handle:
|
if '.' not in handle:
|
||||||
return None, None
|
return None, None
|
||||||
prefixes = getProtocolPrefixes()
|
prefixes = getProtocolPrefixes()
|
||||||
handleStr = handle
|
handleStr = handle
|
||||||
for prefix in prefixes:
|
for prefix in prefixes:
|
||||||
handleStr = handleStr.replace(prefix, '')
|
handleStr = handleStr.replace(prefix, '')
|
||||||
|
|
||||||
|
# try domain/@nick
|
||||||
if '/@' in handle:
|
if '/@' in handle:
|
||||||
domain, nickname = handleStr.split('/@')
|
domain, nickname = handleStr.split('/@')
|
||||||
else:
|
return nickname, domain
|
||||||
if '/users/' in handle:
|
|
||||||
domain, nickname = handleStr.split('/users/')
|
# try nick@domain
|
||||||
else:
|
if '@' in handle:
|
||||||
if '@' in handle:
|
nickname, domain = handle.split('@')
|
||||||
nickname, domain = handle.split('@')
|
return nickname, domain
|
||||||
else:
|
|
||||||
return None, None
|
# try for different /users/ paths
|
||||||
return nickname, domain
|
usersPaths = getUserPaths()
|
||||||
|
for possibleUsersPath in usersPaths:
|
||||||
|
if possibleUsersPath in handle:
|
||||||
|
domain, nickname = handleStr.split(possibleUsersPath)
|
||||||
|
return nickname, domain
|
||||||
|
|
||||||
|
return None, None
|
||||||
|
|
||||||
|
|
||||||
def webfingerHandle(session, handle: str, httpPrefix: str,
|
def webfingerHandle(session, handle: str, httpPrefix: str,
|
||||||
|
|
Loading…
Reference in New Issue