lbry-sdk/lbry/schema/result.py

134 lines
5.9 KiB
Python
Raw Normal View History

2019-04-29 06:39:20 +02:00
import base64
import struct
from typing import List, Optional, Tuple
2019-04-29 06:39:20 +02:00
from binascii import hexlify
2019-05-26 05:06:22 +02:00
from itertools import chain
2019-04-29 06:39:20 +02:00
2019-06-21 02:55:47 +02:00
from lbry.schema.types.v2.result_pb2 import Outputs as OutputsMessage
2019-04-29 06:39:20 +02:00
class Outputs:
2019-05-26 05:06:22 +02:00
__slots__ = 'txos', 'extra_txos', 'txs', 'offset', 'total'
2019-04-29 06:39:20 +02:00
2019-05-26 05:06:22 +02:00
def __init__(self, txos: List, extra_txos: List, txs: set, offset: int, total: int):
2019-04-29 06:39:20 +02:00
self.txos = txos
self.txs = txs
2019-05-26 05:06:22 +02:00
self.extra_txos = extra_txos
2019-04-29 06:39:20 +02:00
self.offset = offset
self.total = total
def inflate(self, txs):
2019-05-26 05:06:22 +02:00
tx_map = {tx.hash: tx for tx in txs}
for txo_message in self.extra_txos:
self.message_to_txo(txo_message, tx_map)
return [self.message_to_txo(txo_message, tx_map) for txo_message in self.txos]
def message_to_txo(self, txo_message, tx_map):
if txo_message.WhichOneof('meta') == 'error':
return None
txo = tx_map[txo_message.tx_hash].outputs[txo_message.nout]
if txo_message.WhichOneof('meta') == 'claim':
claim = txo_message.claim
txo.meta = {
'short_url': f'lbry://{claim.short_url}',
'canonical_url': f'lbry://{claim.canonical_url or claim.short_url}',
'reposted': claim.reposted,
2019-05-26 05:06:22 +02:00
'is_controlling': claim.is_controlling,
'take_over_height': claim.take_over_height,
2019-05-28 04:20:21 +02:00
'creation_height': claim.creation_height,
2019-05-26 05:06:22 +02:00
'activation_height': claim.activation_height,
'expiration_height': claim.expiration_height,
'effective_amount': claim.effective_amount,
'support_amount': claim.support_amount,
'trending_group': claim.trending_group,
'trending_mixed': claim.trending_mixed,
'trending_local': claim.trending_local,
'trending_global': claim.trending_global,
}
if claim.HasField('channel'):
txo.channel = tx_map[claim.channel.tx_hash].outputs[claim.channel.nout]
if claim.HasField('repost'):
txo.reposted_claim = tx_map[claim.repost.tx_hash].outputs[claim.repost.nout]
2019-05-28 04:20:21 +02:00
try:
if txo.claim.is_channel:
txo.meta['claims_in_channel'] = claim.claims_in_channel
except:
pass
2019-05-26 05:06:22 +02:00
return txo
2019-04-29 06:39:20 +02:00
@classmethod
def from_base64(cls, data: str) -> 'Outputs':
return cls.from_bytes(base64.b64decode(data))
@classmethod
def from_bytes(cls, data: bytes) -> 'Outputs':
outputs = OutputsMessage()
outputs.ParseFromString(data)
2019-05-26 05:06:22 +02:00
txs = set()
for txo_message in chain(outputs.txos, outputs.extra_txos):
2019-04-29 06:39:20 +02:00
if txo_message.WhichOneof('meta') == 'error':
continue
2019-05-26 05:06:22 +02:00
txs.add((hexlify(txo_message.tx_hash[::-1]).decode(), txo_message.height))
return cls(outputs.txos, outputs.extra_txos, txs, outputs.offset, outputs.total)
2019-04-29 06:39:20 +02:00
@classmethod
2019-05-26 05:06:22 +02:00
def to_base64(cls, txo_rows, extra_txo_rows, offset=0, total=None) -> str:
return base64.b64encode(cls.to_bytes(txo_rows, extra_txo_rows, offset, total)).decode()
2019-04-29 06:39:20 +02:00
@classmethod
2019-05-26 05:06:22 +02:00
def to_bytes(cls, txo_rows, extra_txo_rows, offset=0, total=None) -> bytes:
2019-04-29 06:39:20 +02:00
page = OutputsMessage()
page.offset = offset
if total is not None:
page.total = total
2019-05-26 05:06:22 +02:00
for row in txo_rows:
cls.row_to_message(row, page.txos.add(), extra_txo_rows)
2019-05-26 05:06:22 +02:00
for row in extra_txo_rows:
cls.row_to_message(row, page.extra_txos.add(), extra_txo_rows)
2019-05-26 05:06:22 +02:00
return page.SerializeToString()
@classmethod
def row_to_message(cls, txo, txo_message, extra_txo_rows):
2019-05-26 05:06:22 +02:00
if isinstance(txo, Exception):
txo_message.error.text = txo.args[0]
if isinstance(txo, ValueError):
txo_message.error.code = txo_message.error.INVALID
elif isinstance(txo, LookupError):
txo_message.error.code = txo_message.error.NOT_FOUND
return
txo_message.tx_hash = txo['txo_hash'][:32]
txo_message.nout, = struct.unpack('<I', txo['txo_hash'][32:])
txo_message.height = txo['height']
txo_message.claim.short_url = txo['short_url']
txo_message.claim.reposted = txo['reposted']
2019-05-26 05:06:22 +02:00
if txo['canonical_url'] is not None:
txo_message.claim.canonical_url = txo['canonical_url']
2019-05-26 05:06:22 +02:00
txo_message.claim.is_controlling = bool(txo['is_controlling'])
2019-06-23 05:01:26 +02:00
if txo['last_take_over_height'] is not None:
txo_message.claim.take_over_height = txo['last_take_over_height']
2019-05-28 04:20:21 +02:00
txo_message.claim.creation_height = txo['creation_height']
2019-05-26 05:06:22 +02:00
txo_message.claim.activation_height = txo['activation_height']
txo_message.claim.expiration_height = txo['expiration_height']
if txo['claims_in_channel'] is not None:
2019-04-29 06:39:20 +02:00
txo_message.claim.claims_in_channel = txo['claims_in_channel']
2019-05-26 05:06:22 +02:00
txo_message.claim.effective_amount = txo['effective_amount']
txo_message.claim.support_amount = txo['support_amount']
txo_message.claim.trending_group = txo['trending_group']
txo_message.claim.trending_mixed = txo['trending_mixed']
txo_message.claim.trending_local = txo['trending_local']
txo_message.claim.trending_global = txo['trending_global']
cls.set_reference(txo_message, 'channel', txo['channel_hash'], extra_txo_rows)
cls.set_reference(txo_message, 'repost', txo['reposted_claim_hash'], extra_txo_rows)
@staticmethod
def set_reference(message, attr, claim_hash, rows):
if claim_hash:
for txo in rows:
if claim_hash == txo['claim_hash']:
reference = getattr(message.claim, attr)
reference.tx_hash = txo['txo_hash'][:32]
reference.nout = struct.unpack('<I', txo['txo_hash'][32:])[0]
reference.height = txo['height']
break