Working on pinging the SPEECH api using PHP's cURL

This commit is contained in:
Paul Kirby 2018-10-25 18:30:24 -05:00
parent cfd4eb5361
commit c88e927794
3 changed files with 87 additions and 7 deletions

View file

@ -18,12 +18,13 @@ class LBRY_Speech
public function __construct() public function __construct()
{ {
$this->parser = new LBRY_Speech_Parser(); $this->parser = new LBRY_Speech_Parser();
add_action('save_post', array($this, 'upload_assets')); add_action('save_post', array($this, 'upload_attachments'));
} }
/** /**
* Checks to see if we need to rewrite URLS, does if necessary * Checks to see if we need to rewrite URLS, does if necessary
*/ */
public function maybe_rewrite_urls() public function maybe_rewrite_urls()
{ {
// See if we have a Spee.ch URL and if we are on the front-end // See if we have a Spee.ch URL and if we are on the front-end
@ -35,18 +36,97 @@ class LBRY_Speech
/** /**
* Uploads assets to the speech server * Uploads assets to the speech server
* @param int $post_id The ID of the post to
* @return bool True if successful, false if not or if no Speech URL available
*/ */
public function upload_assets($post_id) // TODO: set up error reporting
public function upload_attachments($post_id)
{ {
$speech_url = get_option(LBRY_SETTINGS)[LBRY_SPEECH]; $speech_url = get_option(LBRY_SETTINGS)[LBRY_SPEECH];
// Die if we don't have a spee.ch url // Die if we don't have a spee.ch url
if (!$speech_url || $speech_url === '') { if (!$speech_url || $speech_url === '') {
return false;
}
$attachments = $this->find_attachments($post_id);
if ($attachments) {
foreach ($attachments as $attachment) {
error_log(print_r($attachment, true));
// TODO: set post meta to see if already uploaded
$file_url = $attachment->guid;
$file_url = str_replace(site_url(), '', $file_url);
$cfile = curl_file_create($file_url, $attachment->post_mime_type, $attachment->post_name);
$params = array(
'name' => $attachment->post_name,
'file' => $cfile,
'title' => $attachment->post_title
);
$result = $this->request('publish', $params);
error_log(print_r($result, true));
}
}
}
/**
* Finds all media attached to a post
* @param int $post_id The post to search
* @return array An array of WP_Post Objects, or false if none found
*/
protected function find_attachments($post_id)
{
// Get all attachments
$attachments = get_posts(array(
'post_type' => 'attachment',
'numberposts' => -1,
'post_status' => 'any',
'post_parent' => $post_id,
));
// Return attachments arary
if ($attachments) {
return $attachments;
} else {
return false;
}
}
/**
* Sends a cURL request to the Speech URL
* @param string $method The method to call on the LBRY API
* @param array $params The Parameters to send the LBRY API Call
* @return string The cURL response
*/
private function request($method, $params = array())
{
$speech_url = get_option(LBRY_SETTINGS)[LBRY_SPEECH];
// Die if no URL
if (!$speech_url) {
return; return;
} }
$address = $speech_url . '/api/claim/' . $method;
error_log(print_r($params, true));
// TODO: Find assets, upload them to the Spee.ch Server // Send it via curl
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $address);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_AUTOREFERER, false);
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
curl_setopt($ch, CURLOPT_SAFE_UPLOAD, true);
curl_setopt($ch, CURLOPT_HEADER, false);
$result = curl_exec($ch);
curl_close($ch);
return json_decode($result);
} }
} }

View file

@ -108,7 +108,7 @@ class LBRYPress
'license2' => 'License 2', 'license2' => 'License 2',
'license3' => 'License 3' 'license3' => 'License 3'
)); ));
$this->define('LBRY_MIN_BALANCE', 20); $this->define('LBRY_MIN_BALANCE', 2000);
} }
/** /**
@ -138,7 +138,7 @@ class LBRYPress
$this->notice = new LBRY_Admin_Notice(); $this->notice = new LBRY_Admin_Notice();
$this->network = new LBRY_Network(); $this->network = new LBRY_Network();
} else { } else {
$this->speech->maybe_rewrite_urls(); // $this->speech->maybe_rewrite_urls();
} }
} }