cic-stack/apps/cic-cache/cic_cache/runnable/daemons/server.py

77 lines
2.1 KiB
Python
Raw Normal View History

2021-02-18 06:04:30 +01:00
# standard imports
import os
import logging
import argparse
import base64
2021-05-18 19:13:57 +02:00
# external imports
2021-02-18 06:04:30 +01:00
import confini
# local imports
import cic_cache.cli
2021-02-18 06:04:30 +01:00
from cic_cache.db import dsn_from_config
from cic_cache.db.models.base import SessionBase
2021-05-18 19:13:57 +02:00
from cic_cache.runnable.daemons.query import (
2022-01-04 17:01:01 +01:00
process_default_limit,
2021-05-18 19:13:57 +02:00
process_transactions_account_bloom,
2022-01-04 17:01:01 +01:00
process_transactions_account_data,
2021-05-18 19:13:57 +02:00
process_transactions_all_bloom,
process_transactions_all_data,
)
2022-01-04 17:01:01 +01:00
import cic_cache.cli
2021-02-18 06:04:30 +01:00
logging.basicConfig(level=logging.WARNING)
logg = logging.getLogger()
2022-01-04 17:01:01 +01:00
arg_flags = cic_cache.cli.argflag_std_read
local_arg_flags = cic_cache.cli.argflag_local_sync | cic_cache.cli.argflag_local_task
argparser = cic_cache.cli.ArgumentParser(arg_flags)
argparser.process_local_flags(local_arg_flags)
2021-02-18 06:04:30 +01:00
args = argparser.parse_args()
# process config
config = cic_cache.cli.Config.from_args(args, arg_flags, local_arg_flags)
2021-02-18 06:04:30 +01:00
# connect to database
2022-01-04 17:01:01 +01:00
dsn = dsn_from_config(config, 'cic_cache')
2021-02-18 06:04:30 +01:00
SessionBase.connect(dsn, config.true('DATABASE_DEBUG'))
# uwsgi application
def application(env, start_response):
headers = []
content = b''
session = SessionBase.create_session()
for handler in [
2022-01-04 17:01:01 +01:00
process_transactions_account_data,
process_transactions_account_bloom,
2021-05-18 19:13:57 +02:00
process_transactions_all_data,
2021-02-18 06:04:30 +01:00
process_transactions_all_bloom,
2022-01-04 17:01:01 +01:00
process_default_limit,
2021-02-18 06:04:30 +01:00
]:
2021-05-18 19:13:57 +02:00
r = None
try:
r = handler(session, env)
except ValueError as e:
start_response('400 {}'.format(str(e)))
return []
2021-02-18 06:04:30 +01:00
if r != None:
(mime_type, content) = r
break
session.close()
headers.append(('Content-Length', str(len(content))),)
headers.append(('Access-Control-Allow-Origin', '*',));
if len(content) == 0:
headers.append(('Content-Type', 'text/plain, charset=UTF-8',))
start_response('404 Looked everywhere, sorry', headers)
else:
headers.append(('Content-Type', mime_type,))
start_response('200 OK', headers)
return [content]