Claim search method (#64)
creates a method for a claim search using claim_id. Can add other params to search for i.e. name, claim_type, and multiple claims at once using claim_ids.
This commit is contained in:
parent
dd25f7ea57
commit
623ff37c6e
1 changed files with 24 additions and 0 deletions
|
@ -66,6 +66,30 @@ class LBRY_Daemon
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the info about a claim can get supports and initial bid amount when claim created among other information about a claim.
|
||||
* TODO Can be build out later to accept more params
|
||||
* @param string $claim_id
|
||||
* @return object $result
|
||||
*/
|
||||
public function claim_search( $claim_id )
|
||||
{
|
||||
$params = array(
|
||||
'claim_id' => $claim_id,
|
||||
// 'name' => $norm_name,
|
||||
// 'claim_type' => $claim_type,
|
||||
);
|
||||
try {
|
||||
$result = $this->request( 'claim_search', $params );
|
||||
$this->logger->log( 'Claim Search Results: ' . print_r( $result->result, true ) );
|
||||
return $result->result;
|
||||
} catch ( LBRYDaemonException $e ) {
|
||||
$this->logger->log( 'claim_search error', $e->getMessage() . ' | Code: ' . $e->getCode() );
|
||||
LBRY()->notice->set_notice( 'error', 'Issue getting claim search info' );
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the available balance of a current LBRY account
|
||||
* https://lbry.tech/api/sdk#wallet_balance
|
||||
|
|
Loading…
Reference in a new issue