mirror of
https://github.com/basicswap/basicswap.git
synced 2024-11-16 15:58:17 +00:00
refactor: Avoid importing all js functions.
This commit is contained in:
parent
ef0f5ea1ea
commit
eb30369bd4
3 changed files with 45 additions and 53 deletions
|
@ -33,20 +33,8 @@ from .basicswap_util import (
|
||||||
strAddressType,
|
strAddressType,
|
||||||
)
|
)
|
||||||
from .js_server import (
|
from .js_server import (
|
||||||
js_coins,
|
|
||||||
js_error,
|
js_error,
|
||||||
js_wallets,
|
js_url_to_function,
|
||||||
js_offers,
|
|
||||||
js_sentoffers,
|
|
||||||
js_bids,
|
|
||||||
js_sentbids,
|
|
||||||
js_network,
|
|
||||||
js_revokeoffer,
|
|
||||||
js_smsgaddresses,
|
|
||||||
js_rates_list,
|
|
||||||
js_rates,
|
|
||||||
js_rate,
|
|
||||||
js_index,
|
|
||||||
)
|
)
|
||||||
from .ui.util import (
|
from .ui.util import (
|
||||||
PAGE_LIMIT,
|
PAGE_LIMIT,
|
||||||
|
@ -665,22 +653,7 @@ class HttpHandler(BaseHTTPRequestHandler):
|
||||||
if len(url_split) > 1 and url_split[1] == 'json':
|
if len(url_split) > 1 and url_split[1] == 'json':
|
||||||
try:
|
try:
|
||||||
self.putHeaders(status_code, 'text/plain')
|
self.putHeaders(status_code, 'text/plain')
|
||||||
func = js_index
|
func = js_url_to_function(url_split)
|
||||||
if len(url_split) > 2:
|
|
||||||
func = {
|
|
||||||
'coins': js_coins,
|
|
||||||
'wallets': js_wallets,
|
|
||||||
'offers': js_offers,
|
|
||||||
'sentoffers': js_sentoffers,
|
|
||||||
'bids': js_bids,
|
|
||||||
'sentbids': js_sentbids,
|
|
||||||
'network': js_network,
|
|
||||||
'revokeoffer': js_revokeoffer,
|
|
||||||
'smsgaddresses': js_smsgaddresses,
|
|
||||||
'rate': js_rate,
|
|
||||||
'rates': js_rates,
|
|
||||||
'rateslist': js_rates_list,
|
|
||||||
}.get(url_split[2], js_index)
|
|
||||||
return func(self, url_split, post_string, is_json)
|
return func(self, url_split, post_string, is_json)
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
if self.server.swap_client.debug is True:
|
if self.server.swap_client.debug is True:
|
||||||
|
|
|
@ -389,3 +389,22 @@ def js_rate(self, url_split, post_string, is_json):
|
||||||
|
|
||||||
def js_index(self, url_split, post_string, is_json):
|
def js_index(self, url_split, post_string, is_json):
|
||||||
return bytes(json.dumps(self.server.swap_client.getSummary()), 'UTF-8')
|
return bytes(json.dumps(self.server.swap_client.getSummary()), 'UTF-8')
|
||||||
|
|
||||||
|
|
||||||
|
def js_url_to_function(url_split):
|
||||||
|
if len(url_split) > 2:
|
||||||
|
return {
|
||||||
|
'coins': js_coins,
|
||||||
|
'wallets': js_wallets,
|
||||||
|
'offers': js_offers,
|
||||||
|
'sentoffers': js_sentoffers,
|
||||||
|
'bids': js_bids,
|
||||||
|
'sentbids': js_sentbids,
|
||||||
|
'network': js_network,
|
||||||
|
'revokeoffer': js_revokeoffer,
|
||||||
|
'smsgaddresses': js_smsgaddresses,
|
||||||
|
'rate': js_rate,
|
||||||
|
'rates': js_rates,
|
||||||
|
'rateslist': js_rates_list,
|
||||||
|
}.get(url_split[2], js_index)
|
||||||
|
return js_index
|
||||||
|
|
Loading…
Reference in a new issue