added serialized api work

This commit is contained in:
Kevin Froman 2021-01-27 08:38:45 +00:00
parent da353476cf
commit 6625b7ce19
1 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,48 @@
"""Onionr - Private P2P Communication.
view and interact with onionr sites
"""
from flask import Blueprint, Response, request, abort, g
import ujson as json
"""
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
serialized_api_bp = Blueprint('serializedapi', __name__)
@serialized_api_bp.route(
'/serialized/<name>', endpoint='serialized', methods=['POST'])
def serialized(name: str) -> Response:
initial = g.too_many.get_by_string(name.split('.')[0])
for c, i in enumerate(name.split('.')):
if i and c != 0:
attr = getattr(initial, i)
if callable(attr):
data = json.loads(request.get_json(force=True))
args = data['args']
del data['args']
if data:
print(*args, **data)
return Response(attr(*args, **data))
else:
print(*args, **data)
return Response(attr(*args))
else:
if isinstance(attr, int):
attr = str(attr)
return Response(attr, content_type='application/octet-stream')