Updated publish Daemon call for sdk 0.54

This commit is contained in:
Paul Kirby 2020-01-27 20:45:10 -06:00
parent c72c6f8543
commit 5c6a16acdd

View file

@ -21,17 +21,19 @@ class LBRY_Network_Publisher
$converted = LBRY()->network->parser->convert_to_markdown($post);
$write_status = $file && fwrite($file, $converted);
fclose($file);
$endtime = microtime(true);
try {
if (!$write_status) {
throw new \Exception('Write Status failure', 1);
}
// If everything went well with the conversion, carry on
if ($write_status) {
$args = array(
'name' => $post->post_name,
'bid' => number_format(floatval(get_option(LBRY_SETTINGS)[LBRY_LBC_PUBLISH]), 2, '.', ''),
'file_path' => $filepath,
'title' => $post->post_title,
'language' => substr(get_locale(), 0, 2),
'languages' => array(substr(get_locale(), 0, 2)),
'license' => get_option(LBRY_SETTINGS)[LBRY_LICENSE]
);
@ -45,7 +47,7 @@ class LBRY_Network_Publisher
$featured_image = wp_get_attachment_image_src($featured_id, 'medium');
if ($featured_image[0]) {
$args['thumbnail'] = $featured_image[0];
$args['thumbnail_url'] = $featured_image[0];
}
// Build description using Yoast if installed and its used, excerpt/title otherwise
@ -62,10 +64,10 @@ class LBRY_Network_Publisher
$args['description'] = $description;
$result = LBRY()->daemon->publish($args);
if ($result->success) {
error_log(print_r($result, true));
update_post_meta($post->ID, LBRY_PERM_URL, $result->output->permanent_url);
}
$outputs = $result->outputs;
if ($outputs && is_array($outputs)) {
update_post_meta($post->ID, LBRY_PERM_URL, $result->outputs[0]->permanent_url);
}
} catch (Exception $e) {
error_log('Issue publishing post ' . $post->ID . ' to LBRY: ' . $e->getMessage());