forked from LBRYCommunity/lbry-sdk
claim search forwarding to new sdk
This commit is contained in:
parent
455b4043b8
commit
9c5f940b00
3 changed files with 18 additions and 5 deletions
|
@ -2329,6 +2329,7 @@ class Daemon(metaclass=JSONRPCServerType):
|
||||||
[--not_locations=<not_locations>...]
|
[--not_locations=<not_locations>...]
|
||||||
[--order_by=<order_by>...] [--page=<page>] [--page_size=<page_size>]
|
[--order_by=<order_by>...] [--page=<page>] [--page_size=<page_size>]
|
||||||
[--wallet_id=<wallet_id>] [--include_purchase_receipt] [--include_is_my_output]
|
[--wallet_id=<wallet_id>] [--include_purchase_receipt] [--include_is_my_output]
|
||||||
|
[--new_sdk_server=<new_sdk_server>]
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
--name=<name> : (str) claim name (normalized)
|
--name=<name> : (str) claim name (normalized)
|
||||||
|
@ -2434,6 +2435,7 @@ class Daemon(metaclass=JSONRPCServerType):
|
||||||
has purchased the claim
|
has purchased the claim
|
||||||
--include_is_my_output : (bool) lookup and include a boolean indicating
|
--include_is_my_output : (bool) lookup and include a boolean indicating
|
||||||
if claim being resolved is yours
|
if claim being resolved is yours
|
||||||
|
--new_sdk_server=<new_sdk_server> : (str) use the new SDK server (EXPERIMENTAL)
|
||||||
|
|
||||||
Returns: {Paginated[Output]}
|
Returns: {Paginated[Output]}
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -922,9 +922,9 @@ class Ledger(metaclass=LedgerRegistry):
|
||||||
txo.received_tips = tips
|
txo.received_tips = tips
|
||||||
return txos, blocked, outputs.offset, outputs.total
|
return txos, blocked, outputs.offset, outputs.total
|
||||||
|
|
||||||
async def resolve(self, accounts, urls, **kwargs):
|
async def resolve(self, accounts, urls, new_sdk_server=None, **kwargs):
|
||||||
if 'new_sdk_server' in kwargs:
|
if new_sdk_server:
|
||||||
resolve = partial(self.network.new_resolve, kwargs.pop('new_sdk_server'))
|
resolve = partial(self.network.new_resolve, new_sdk_server)
|
||||||
else:
|
else:
|
||||||
resolve = partial(self.network.retriable_call, self.network.resolve)
|
resolve = partial(self.network.retriable_call, self.network.resolve)
|
||||||
urls_copy = list(urls)
|
urls_copy = list(urls)
|
||||||
|
@ -946,9 +946,13 @@ class Ledger(metaclass=LedgerRegistry):
|
||||||
|
|
||||||
async def claim_search(
|
async def claim_search(
|
||||||
self, accounts, include_purchase_receipt=False, include_is_my_output=False,
|
self, accounts, include_purchase_receipt=False, include_is_my_output=False,
|
||||||
**kwargs) -> Tuple[List[Output], dict, int, int]:
|
new_sdk_server=None, **kwargs) -> Tuple[List[Output], dict, int, int]:
|
||||||
|
if new_sdk_server:
|
||||||
|
claim_search = partial(self.network.new_claim_search, new_sdk_server)
|
||||||
|
else:
|
||||||
|
claim_search = self.network.claim_search
|
||||||
return await self._inflate_outputs(
|
return await self._inflate_outputs(
|
||||||
self.network.claim_search(**kwargs), accounts,
|
claim_search(**kwargs), accounts,
|
||||||
include_purchase_receipt=include_purchase_receipt,
|
include_purchase_receipt=include_purchase_receipt,
|
||||||
include_is_my_output=include_is_my_output
|
include_is_my_output=include_is_my_output
|
||||||
)
|
)
|
||||||
|
|
|
@ -328,6 +328,13 @@ class Network:
|
||||||
result = await r.json()
|
result = await r.json()
|
||||||
return result['result']
|
return result['result']
|
||||||
|
|
||||||
|
async def new_claim_search(self, server, **kwargs):
|
||||||
|
kwargs['protobuf'] = True
|
||||||
|
message = {"method": "claim_search", "params": kwargs}
|
||||||
|
async with self.aiohttp_session.post(server, json=message) as r:
|
||||||
|
result = await r.json()
|
||||||
|
return result['result']
|
||||||
|
|
||||||
|
|
||||||
class SessionPool:
|
class SessionPool:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue