work on sites api for finding user sites
This commit is contained in:
parent
60f0ef0fef
commit
4df69b7842
@ -19,6 +19,8 @@ upload_list = home + 'upload-list.json'
|
||||
config_file = home + 'config.json'
|
||||
daemon_mark_file = app_root + '/daemon-true.txt'
|
||||
|
||||
site_cache = home + 'onionr-sites.txt'
|
||||
|
||||
tor_hs_address_file = home + 'hs/hostname'
|
||||
|
||||
run_check_file = home + '.runcheck'
|
||||
|
@ -19,10 +19,16 @@
|
||||
'''
|
||||
import base64
|
||||
import binascii
|
||||
|
||||
import unpaddedbase32
|
||||
|
||||
from flask import Blueprint, Response, request, abort
|
||||
|
||||
from onionrblocks import onionrblockapi
|
||||
import onionrexceptions
|
||||
from onionrutils import stringvalidators
|
||||
from utils import safezip
|
||||
from onionrutils import mnemonickeys
|
||||
|
||||
site_api = Blueprint('siteapi', __name__)
|
||||
|
||||
@ -30,6 +36,12 @@ site_api = Blueprint('siteapi', __name__)
|
||||
def site(name):
|
||||
bHash = name
|
||||
resp = 'Not Found'
|
||||
if '-' in name:
|
||||
name = mnemonickeys.get_base32(name)
|
||||
if stringvalidators.validate_pub_key(name):
|
||||
name = unpaddedbase32.repad(name)
|
||||
|
||||
|
||||
if stringvalidators.validate_hash(bHash):
|
||||
try:
|
||||
resp = onionrblockapi.Block(bHash).bcontent
|
||||
@ -43,4 +55,4 @@ def site(name):
|
||||
pass
|
||||
if resp == 'Not Found' or not resp:
|
||||
abort(404)
|
||||
return Response(resp)
|
||||
return Response(resp)
|
||||
|
10
onionr/httpapi/onionrsitesapi/findsite.py
Normal file
10
onionr/httpapi/onionrsitesapi/findsite.py
Normal file
@ -0,0 +1,10 @@
|
||||
import onionrexceptions
|
||||
from onionrutils import mnemonickeys
|
||||
from onionrutils import stringvalidators
|
||||
|
||||
def find_site(user_id: str)->str:
|
||||
if '-' in user_id: user_id = mnemonickeys.get_base32(user_id)
|
||||
if not stringvalidators.validate_pub_key(user_id): raise onionrexceptions.InvalidPubkey
|
||||
|
||||
#for
|
||||
|
7
onionr/utils/safezip.py
Normal file
7
onionr/utils/safezip.py
Normal file
@ -0,0 +1,7 @@
|
||||
# safe unzip https://stackoverflow.com/a/36583849
|
||||
def safe_unzip(zip_file, extractpath='.'):
|
||||
with zipfile.ZipFile(zip_file, 'r') as zf:
|
||||
for member in zf.infolist():
|
||||
abspath = os.path.abspath(os.path.join(extractpath, member.filename))
|
||||
if abspath.startswith(os.path.abspath(extractpath)):
|
||||
zf.extract(member, extractpath)
|
Loading…
Reference in New Issue
Block a user