Hive Developer Portal
Reblogging Post
How to reblog a post on Hive
Full, runnable src of Reblogging Post can be downloaded as part of: tutorials/javascript (or download just this tutorial: devportal-master-tutorials-javascript-14_reblogging_post.zip).
This tutorial will show the method of obtaining the relevant inputs for the reblog process followed by broadcasting the info to the hive blockchain using a demo
account on the production server
.
Intro
We are using the client.broadcast
function provided by dhive
to reblog the selected blogpost. There are 4 variables that are required to perform this action:
- The account name that is doing the reblog
- The private posting key of the account that is doing the reblog (this is not your main key)
- The author of the post that is being reblogged
- The title of the post that is being reblogged
A simple HTML interface is used to capture the required information after which the transaction is submitted. There are two prerequisites within the reblog process in Hive that have to be adhered to, namely, the post must not be older than 7 days, and the post can only be reblogged once by a specific account. The fields have been populated with information to give an example of what it would look like but care has to be taken to provide correct details before the function is executed.
This tutorial makes use of the This function is taken from the tutorial Blog Feed to get a list of trending posts.
Also see:
Steps
- Configure connection Configuration of
dhive
to use the proper connection and network. - Collecting information Generating relevant posting information with an HTML interface.
- Broadcasting the reblog Assigning variables and executing the reblog.
1. Configure connection
Below we have dhive
pointing to the production network with the proper chainId, addressPrefix, and endpoint. Although this tutorial is interactive, we will not post to the testnet due to the prerequisites of reblogging.
There is a public/app.js
file which holds the Javascript segment of this tutorial. In the first few lines we define the configured library and packages:
const dhive = require('@hiveio/dhive');
//define network parameters
let opts = {};
opts.addressPrefix = 'STM';
opts.chainId =
'beeab0de00000000000000000000000000000000000000000000000000000000';
//connect to a Hive node. This is currently setup on production, but we recommend using a testnet
const client = new dhive.Client('https://api.hive.blog', opts);
2. Collecting information
Next we have the submitPost
function that collects the required fields for the reblog process via an HTML interface
after wich we assign them to variables for use later.
//this function will execute when the HTML form is submitted
window.submitPost = async () => {
//get private key
const privateKey = dhive.PrivateKey.fromString(
document.getElementById('postingKey').value
);
//get account name
const myAccount = document.getElementById('username').value;
//get blog author
const theAuthor = document.getElementById('theAuthor').value;
//get blog permLink
const thePermLink = document.getElementById('thePermLink').value;
3. Broadcasting the reblog
Finally we create two variables to simply the client.broadcast
function line and broadcast the reblog instruction.
const jsonOp = JSON.stringify([
'reblog',
{
account: myAccount,
author: theAuthor,
permlink: thePermLink,
},
]);
const data = {
id: 'follow',
json: jsonOp,
required_auths: [],
required_posting_auths: [myAccount],
};
client.broadcast.json(data, privateKey).then(
function(result) {
console.log('client broadcast result: ', result);
},
function(error) {
console.error(error);
}
);
There are also two console
functions an a ui output under Reblog Results defined in order to track if the reblog
as successful or not. If the broadcast succeeds the console.log
will show the following:
client broadcast result:
{
id: "f10d69ac521cf34b0f5d18d938e68c89e77bb31d",
block_num: 22886453,
trx_num: 35,
expired: false
}
This indicates the block number at which the broadcast was sent as well as the transaction ID for the reblog.
If the reblog fails the console.log
will present a long line of error code:
{
name: "RPCError",
jse_shortmsg: "blog_itr == blog_comment_idx.end(): Account has already reblogged this post",
jse_info: {
ode: 10,
name: "assert_exception",
message: "Assert Exception",
stack: Array(6)
},
message: "blog_itr == blog_comment_idx.end(): Account has already reblogged this post",
stack: "RPCError: blog_itr == blog_comment_idx.end(): Acco…lled (http://localhost:3000/bundle.js:440:690874)"
}
There is a line in the error log indicating “Account has already reblogged this post” indicating exactly that. This process can be run until a positive result is found.
It should be noted that reblogging a post does not create a new post on the blockchain but merely shares the post to whomever is following the user doing the reblog. Along with reblogging
the custom_json
broadcast operation also includes options for following users and editing blog content. More information on how to use the broadcast
operation and options surrounding the operation can be found on the Hive Devportal
Final code:
import { Client, PrivateKey } from '@hiveio/dhive';
//define network parameters
let opts = {};
opts.addressPrefix = 'STM';
opts.chainId =
'beeab0de00000000000000000000000000000000000000000000000000000000';
//connect to a Hive node. This is currently setup on production, but we recommend using a testnet
const client = new Client('https://api.hive.blog', opts);
window.client = client;
//This is a convenience function for the UI.
window.autofillAuthorAndPermlink = function(el) {
document.getElementById('theAuthor').value = el.dataset.author;
document.getElementById('thePermLink').value = el.dataset.permlink;
};
function fetchBlog() {
const query = {
tag: 'hiveio',
limit: 5,
};
client.database
.getDiscussions('blog', query) //get a list of posts for easy reblogging.
.then(result => {
//when the response comes back ...
const postList = [];
console.log('Listing blog posts by ' + query.tag);
result.forEach(post => {
//... loop through the posts ...
const author = post.author;
const permlink = post.permlink;
console.log(author, permlink, post);
postList.push(
// and render the table rows
`<tr><td><button class="btn-sm btn-success" data-author="${author}" data-permlink="${permlink}" onclick="autofillAuthorAndPermlink(this)">Autofill</button></td><td>${author}</td><td>${permlink}</td></tr>`
);
});
document.getElementById('postList').innerHTML = postList.join('');
})
.catch(err => {
console.error(err);
alert('Error occured' + err);
});
}
//this function will execute when the "Reblog!" button is clicked
window.submitPost = async () => {
reblogOutput('preparing to submit');
//get private key
try {
const privateKey = PrivateKey.from(
document.getElementById('postingKey').value
);
//get account name
const myAccount = document.getElementById('username').value;
//get blog author
const theAuthor = document.getElementById('theAuthor').value;
//get blog permLink
const thePermLink = document.getElementById('thePermLink').value;
const jsonOp = JSON.stringify([
'reblog',
{
account: myAccount,
author: theAuthor,
permlink: thePermLink,
},
]);
const data = {
id: 'follow',
json: jsonOp,
required_auths: [],
required_posting_auths: [myAccount],
};
reblogOutput('reblogging:\n', JSON.stringify(data, 2));
console.log('reblogging:', data);
client.broadcast.json(data, privateKey).then(
function(result) {
reblogOutput(result);
console.log('reblog result: ', result);
},
function(error) {
console.error(error);
}
);
} catch (e) {
reblogOutput(e.message);
console.log(e);
}
};
function reblogOutput(output) {
document.getElementById('results').innerText = output;
}
window.onload = async () => {
fetchBlog();
};
To run this tutorial
git clone https://gitlab.syncad.com/hive/devportal.git
cd devportal/tutorials/javascript/14_reblogging_post
npm i
npm run dev-server
ornpm run start
- After a few moments, the server should be running at http://localhost:3000/