Nothing
# The functions in this script originated from https://github.com/kharoof/steemRdata, modified by the steemr package.
# steemR user Functions ----
# These functions will be the main interface for users of the steemR package
#' List of Steem RPC nodes
#'
#' The functions in steemRdata use public RPC nodes. This function returns a list of possible nodes which can be specified in the function calls.
#'
#'
#'
#' @return List of nodes
#' @importFrom graphics title
#' @importFrom utils timestamp
#'
#' @examples
#' \dontrun{
#' getNodes()
#' }
#' @export
getNodes <- function(){
nodes <- htmltab::htmltab("https://www.steem.center/index.php?title=Public_Websocket_Servers",1)
data.table::data.table(node=paste0("https://",nodes$Server), status=nodes$Status)
}
#' Details of a Steem Post
#'
#' Get details of a post, specified by the unique link (username and permlink)
#'
#' @param username Username of Post Author.
#'
#' @param permlink Permlink of Post
#'
#' @param node Optional Argument (Steem Node to Query)
#'
#' @return List with Details of Post
#'
#'
#' @examples
#' \dontrun{
#' getPost("eroche", "time-series-with-r")
#' getPost("eroche", "time-series-with-r", "https://api.steemit.com")
#' }
#' @export
getPost <- function(username, permlink,node){
if(missing(node)){
node = "https://api.steemit.com"
}
results <- get_content(username, permlink,node)
##Convert the Raw Steem data to a data.table and add a field with the number of images
results <- results
results$image_count <- length(rjson::fromJSON(results$json_metadata)$image)
return(results)
}
#' Current Steem Witnesse and Rank
#'
#' Not all witnesses returned with this function will be active.
#'
#' @param limit Number of Witnesses to Return
#'
#' @param node Optional Argument (Steem Node to Query)
#'
#' Get details of the witnesses
#'
#' @return List with Details of Witnesses
#'
#' @examples
#' \dontrun{
#' getWitnesses() # Get first 1000 Witnesses
#' getWitnesses(20) # Get Top 20 Witnesses
#' getWitnesses(20, node="https://api.steemit.com")
#' }
#' @export
getWitnesses <- function(limit=1000, node){
if(missing(node)){
node = "https://api.steemit.com"
}
results <- get_witnesses_by_vote(limit, node)
##Convert the Raw Steem data to a data.table and add a field with the number of images
results <- data.frame(do.call(rbind, results))
owner <- unlist(results$owner)
version <- unlist(results$running_version)
missed <- unlist(results$total_missed)
votes <- unlist(results$votes)
url <- unlist(results$url)
created <- unlist(results$created)
results <- data.frame(owner=owner, version=version, missed=missed, votes=votes, url=url, created=created)
return(results)
}
#' Current Trending Posts
#'
#' @param tag Tag to Filter
#'
#' @param limit Number of Posts to Return
#'
#' @param node Optional Argument (Steem Node to Query)
#'
#' Get details of the Trending Posts
#'
#' @return List with Details of Posts
#'
#' @examples
#' \dontrun{
#' getTrending() # Get first 100 Trending Posts
#' getTrending(20) # Get Top 10 Trending Posts
#' getTrending(20, node="https://api.steemit.com")
#' }
#' @export
getTrending <- function(tag="",limit=100, node){
if(missing(node)){
node = "https://api.steemit.com"
}
results <- get_discussions_by_trending(tag,limit, node)
##Convert the Raw Steem data to a data.table and add a field with the number of images
results <- data.frame(do.call(rbind, results))
author <- unlist(results$author)
title <- unlist(results$title)
permlink <- unlist(results$permlink)
pending_payout <- unlist(results$pending_payout_value)
votes <- unlist(results$net_votes)
comments <- unlist(results$children)
created <- unlist(results$created)
results <- data.table::data.table(author=author, title=title, permlink=permlink, pending_payout=pending_payout, votes=votes, comments=comments, created=created)
return(results)
}
#' Votes made by an Account
#'
#' Get a list of all the votes made by an account
#'
#' @param user Account to query
#'
#' @param node Optional Argument (Steem Node to Query)
#'
#' @return Data Table with list of votes and what they voted on
#'
#' @examples
#' \dontrun{
#' getAccountVotes("eroche")
#' getAccountVotes("eroche", node="https://api.steemit.com")
#' }
#' @export
getAccountVotes <- function(user="eroche", node){
if(missing(node)){
node = "https://api.steemit.com"
}
results <- get_account_votes(user, node)
##Convert the Raw Steem data to a data.table
results <- data.frame(do.call(rbind, results))
permlink <- paste0("@",unlist(results$authorperm))
percent <- unlist(results$percent)
time <- unlist(results$time)
date <- as.Date(substr(time,1,10))
time <- substr(time,12,25)
results <- data.table::data.table(permlink=permlink, percent=percent, date = date, time=time, stringsAsFactors=F)
return(results)
}
#' Delegations Made by an Account
#'
#' @param user Account To Query
#'
#' @return Data Table with list of delegations
#'
#' @param node Optional Argument (Steem Node to Query)
#'
#' @examples
#' \dontrun{
#' getDelegation("eroche")
#' }
#' @export
getDelegation <- function(user="eroche", node){
if(missing(node)){
node = "https://api.steemit.com"
}
results <- get_vesting_delegations(user, node)
##Convert the Raw Steem data to a data.table
results <- data.frame(do.call(rbind, results))
delegator <- unlist(results$delegator)
delegatee <- unlist(results$delegatee)
vests <- unlist(results$vesting_shares)
SP <- vests.formatter(vests)
date <- as.Date(substr(results$min_delegation_time,1,10))
if(length(vests)>0){
results <- data.table::data.table(delegator=delegator, delegatee=delegatee, vests = vests, SP=SP, date=date, stringsAsFactors=F)}
else{
return(NULL)
}
return(results[order(date)])
}
#' Replies Made to a Post
#'
#' @param user Account To Query
#'
#' @param permlink Permlink of post to query
#'
#' @param node Optional Argument (Steem Node to Query)
#'
#' @return Data Table with list of replies made to specified post
#'
#' @examples
#' \dontrun{
#' getReplies("eroche", "data-wrangling-with-r")
#' }
#' @export
getReplies <- function(user, permlink, node){
if(missing(node)){
node = "https://api.steemit.com"
}
results <- get_content_replies(user, permlink, node)
tryCatch({comments <- length(results[1]$discussions)
data.table::data.table(comment.authors=unlist(lapply(1:comments, function(x) results[1]$discussions[[x]]$author)))},error=function(e){
data.table::data.table(comment.authors="")})
comments <- length(results[1]$discussions)
unlist(lapply(1:comments, function(x) results[1]$discussions[[x]]$author))
}
#' Transactions made on an account
#'
#' This function may take some time to process depending on the size of the transaction history on an account
#'
#' @param user Account To Query
#'
#' @param n Number of Transactions since beginnning of account history
#' @param node node
#'
#' @return The First n of transactions on an account
#'
#' @examples
#' \dontrun{
#' getTransactions("eroche", 100)
#' }
#' @export
getTransactions <- function(user,n, node){
#n is the number of transactions since the beginning of account history
if(missing(node)){
node = "https://api.steemit.com"
}
## Get the total number of transactions for the account
no_transactions <- get_account_history(user, -1,0, node)[[1]][[1]]+1
##Default to return all transactions
## Start is the transaction number to start counting back from (i.e. the last one)
if(missing(n)){
##Default to return all transactions
start <- no_transactions
}
else{
##Return n transactions counting forward from the account creation date
start = min(n, no_transactions)
}
n = start
loop=TRUE
data = data.table::data.table(timestamp=character(n),
operation=character(n),
permlink=character(n),
author=character(n),
parent_author=character(n),
weight=character(n),
title=character(n),
body=character(n),
delegation.delegator=character(n),
delegation.delegatee=character(n),
vesting_shares=character(n), stringsAsFactors = F)
breaks = 10000
if (n < breaks) {
breaks = n
}
n_start = start-1
n_breaks = breaks -1
i=1
while (loop==TRUE) {
results <- get_account_history(user, n_start, n_breaks, node)
res_len <- length(results)
for( j in 1:res_len) {
tryCatch({
data.table::set(data,(i-1)*breaks+j,"timestamp",results[[j]][[2]]$timestamp)
data.table::set(data,(i-1)*breaks+j,"operation",results[[j]][[2]]$op[[1]])
}, error=function(e){})
## Delegation
tryCatch({
data.table::set(data,(i-1)*breaks+j,"delegation.delegator",results[[j]][[2]]$op[[2]]$delegator)
data.table::set(data,(i-1)*breaks+j,"delegation.delegatee",results[[j]][[2]]$op[[2]]$delegatee)
data.table::set(data,(i-1)*breaks+j,"vesting_shares",results[[j]][[2]]$op[[2]]$vesting_shares)
},error=function(e){})
## Comments / Posts
tryCatch({
data.table::set(data,(i-1)*breaks+j,"author",results[[j]][[2]]$op[[2]]$author)
data.table::set(data,(i-1)*breaks+j,"parent_author",results[[j]][[2]]$op[[2]]$parent_author)
data.table::set(data,(i-1)*breaks+j,"permlink",results[[j]][[2]]$op[[2]]$permlink)
data.table::set(data,(i-1)*breaks+j,"title",results[[j]][[2]]$op[[2]]$title)
data.table::set(data,(i-1)*breaks+j,"body",results[[j]][[2]]$op[[2]]$body)
},error=function(e){})
## Votes
tryCatch({
data.table::set(data,(i-1)*breaks+j,"author",results[[j]][[2]]$op[[2]]$author)
data.table::set(data,(i-1)*breaks+j,"permlink",results[[j]][[2]]$op[[2]]$permlink)
data.table::set(data,(i-1)*breaks+j,"weight",results[[j]][[2]]$op[[2]]$weight)
},error=function(e){})
if(results[[j]][[2]]$op[[1]]=="account_create"){
loop <- FALSE
}
}
n_start = max(n_start - breaks,0)
if (n_start < n_breaks) {
n_breaks <- n_start
}
i = i+1
}
data <- data[timestamp != ""][order(timestamp)]
return(data)
}
#' Blog History
#'
#' Get all main posts from a users blog (excluding Resteems). This function may take some time to process depending on the size of the blog history on an account
#'
#' @param username Username of Blog Author.
#'
#' @param node Optional Argument (Steem Node to Query)
#'
#' @return Data.Table with Details of Blog Posts
#'
#' @examples
#' \dontrun{
#' getBlog("eroche")
#' }
#' @export
getBlog <- function(username, node){
if(missing(node)){
node = "https://api.steemit.com"
}
##First Call to Retrieve Blogs Limits 100 Posts
permlink <- ""
results <- get_discussions_by_author_before_date(tolower(username), permlink, node)
count <- length(results)
##Start at last permlink of Blog and get the next 100 posts. Loop until less than 100 are retrieved
while (count == 100) {
##Add in logic here to skip calls if not finding any more results
permlink <- results[[length(results)]]$permlink
tmpresults <- get_discussions_by_author_before_date(tolower(username), permlink, node)
count <- length(tmpresults)
results <- c(results,tmpresults)
}
##Convert the Raw Steem data to a cleaned data.table
results <- cleanData(results)
return(results)
}
#' Comment List
#'
#' Get a list of all the comments from a users blog. This function may take some time to process depending on the size of the transaction history on an account
#'
#' @param username Username of Comment Author.
#'
#' @param node Optional Argument (Steem Node to Query)
#'
#' @return Data.Table with Details of Comments Posts
#'
#' @examples
#' \dontrun{
#' getComments("eroche")
#' }
#' @export
getComments <- function(username, node){
if(missing(node)){
node = "https://api.steemit.com"
}
results <- getTransactions(user=username, node=node)
## Transactions show all posts, edits and also all Comments from other authors
pick_out <- results$operation=="comment" &
results$author==results$username &
!duplicated(results$permlink) &
results$title==""
results <- results[pick_out, c('timestamp', 'permlink', 'parent_author')]
# results <- results[operation=="comment"&author==username][!duplicated(permlink)][title==""][,.(timestamp, permlink, parent_author)]
# results[,date:=as.Date(substr(timestamp, 1,10))]
results$date <- as.Date(substr(results$timestamp, 1,10))
return(results)
}
#' Recent Posts containing a particular tag.
#'
#' Get posts using a specific tag in Chronological order
#'
#' @param tag tag to search.
#'
#' @param limit number of items to return
#'
#' @param node Optional Argument (Steem Node to Query)
#'
#' @return Data.Table with Details of Posts
#'
#' @examples
#' \dontrun{
#' getPostsByTag("letseat", 1)
#' }
#' @export
getPostsByTag <- function(tag="steem", limit=1, node){
if(missing(node)){
node = "https://api.steemit.com"
}
results <- get_discussions_by_created(tag, limit, node)
count <- length(results)
##Convert the Raw Steem data to a cleaned data.table
results <- cleanData(results)
return(results)
}
#' Number of Accounts on Steem Blockchain
#'
#' Get the count of the number of accounts on the Steem Blockchain
#'
#'
#'
#' @param node Optional Argument (Steem Node to Query)
#'
#' @return number of accounts
#'
#' @examples
#' \dontrun{
#' accountCount()
#' }
#' @export
accountCount <- function(node){
if(missing(node)){
node = "https://api.steemit.com"
}
data <- get_account_count(node)
paste("Number of Accounts : ", data$result)
}
#' Steem Proporties
#'
#' Get details about the latest state of the Steem Blockchain.
#'
#'
#'
#' @param node Optional Argument (Steem Node to Query)
#'
#' @return steem properties
#'
#' @examples
#' \dontrun{
#' getSteemProperties()
#' }
#' @export
getSteemProperties <- function(node){
if(missing(node)){
node = "https://api.steemit.com"
}
data <- get_dynamic_global_properties(node)
data <- cleanGlobalProperties(data$result)
return(data)
}
#' Account Details
#'
#' Get the details of a user account
#'
#' @param username user name
#'
#' @param node Optional Argument (Steem Node to Query)
#'
#' @return Account Details
#'
#' @examples
#' \dontrun{
#' getAccount("eroche")
#' }
#' @export
getAccount <- function(username, node){
if(missing(node)){
node = "https://api.steemit.com"
}
data <- get_account(username, node)
data <- cleanAccount(data)
return(data)
}
# Steem API Calls ----
# These functions will be wrappers for the steem api calls
#Get Delegations for an account
get_vesting_delegations <- function(user="eroche", node){
query <- paste0('{"jsonrpc":"2.0", "method":"condenser_api.get_vesting_delegations", "params":["',user,'",null,1000], "id":1}')
r <- httr::POST(node, body = query)
data <- httr::content(r, "parsed", "application/json")
return(data$result)
}
#Get Votes by an Account
get_account_votes <- function(user="eroche", node){
query <- paste0('{"jsonrpc":"2.0", "method":"condenser_api.get_account_votes", "params":["',user,'"], "id":1}')
r <- httr::POST(node, body = query)
data <- httr::content(r, "parsed", "application/json")
return(data$result)
}
#Get Posts filtered by a specific tag
get_discussions_by_created <- function(tag="steem", limit=100, node){
query <- paste0('{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_created", "params":[{"tag":"',tag,'","limit":',limit,'}], "id":1}')
r <- httr::POST(node, body = query)
data <- httr::content(r, "parsed", "application/json")
return(data$result)
}
#Get Trending Posts
get_discussions_by_trending <- function(tag="", limit=100, node){
query <- paste0('{"jsonrpc":"2.0", "method":"condenser_api.get_discussions_by_trending", "params":[{"tag":"',tag,'","limit":',limit,'}], "id":1}')
r <- httr::POST(node, body = query)
data <- httr::content(r, "parsed", "application/json")
return(data$result)
}
#Get the posts from a user profile
get_discussions_by_author_before_date <- function(username, permlink, node){
link = paste0(',"start_permlink":"',permlink,'"')
query <- paste0('{"jsonrpc":"2.0", "method":"tags_api.get_discussions_by_author_before_date", "params":{"author":"',username,'","limit":100', link ,'}, "id":1}')
r <- httr::POST(node, body = query)
data <- httr::content(r, "parsed", "application/json")
# result <- data$result
discussions <- data$result# $discussions
return(discussions)
}
# Get the top Steem Witnesses by Vote
get_witnesses_by_vote <- function(limit=1000, node){
query <- paste('{"jsonrpc":"2.0", "method":"condenser_api.get_witnesses_by_vote", "params":[null,',limit,'], "id":1}')
r <- httr::POST(node, body = query)
data <- httr::content(r, "parsed", "application/json")
return(data$result)
}
# Get the latest steem account count from the Steem API calls
get_account_count <- function(node){
query <- '{"jsonrpc":"2.0", "method":"condenser_api.get_account_count", "params":[], "id":1}'
r <- httr::POST(node, body = query)
data <- httr::content(r, "parsed", "application/json")
return(data)
}
# Get the latest steem global properties from the Steem API calls
get_dynamic_global_properties <- function(node){
query <- '{"jsonrpc":"2.0", "method":"database_api.get_dynamic_global_properties", "id":1}'
r <- httr::POST(node, body = query)
data <- httr::content(r, "parsed", "application/json")
return(data)
}
# Get the latest steem rewards fund from the Steem API calls
get_rewards_fund <- function(node){
query <- '{"jsonrpc":"2.0", "method":"database_api.get_reward_funds", "id":1}'
r <- httr::POST(node, body = query)
data <- httr::content(r, "parsed", "application/json")
paste(data$result)
}
#Get the latest number of follow count for the specified user using the Steem API calls
get_follow_count <- function(user, node){
query <- paste0('{"jsonrpc":"2.0", "method":"follow_api.get_follow_count", "params":{"account":"', user ,'"}, "id":1}')
r <- httr::POST(node, body = query)
data <- httr::content(r, "parsed", "application/json")
print(paste("Number of Followers : ", data$result$follower_count))
(paste("Number Following : ", data$result$following_count))
}
#Get details of a users account
## The Steem API function allows multiple accounts to be returned. We are ignoring this for now.
get_account <- function(user, node){
query <- paste0('{"jsonrpc":"2.0", "method":"condenser_api.get_accounts", "params":[["', user ,'"]], "id":1}')
r <- httr::POST(node, body = query)
data <- httr::content(r, "parsed", "application/json")
data <- data$result[[1]]
return(data)
}
#Get the authors that have been reblogged by the selected user using the Steem API calls
get_blog_authors <- function(user, node){
query <- paste0('{"jsonrpc":"2.0", "method":"follow_api.get_blog_authors", "params":{"blog_account":"', user ,'"}, "id":1}')
r <- httr::POST(node, body = query)
data <- httr::content(r, "parsed", "application/json")
data <- data.table::data.table(do.call(rbind, data$result$blog_authors))
data <- data.table::data.table(reblogged=unlist(data$author), count=unlist(data$count))
data <- data[order(-count)]
return(data)
}
#Get the details of a specific post
get_content <- function(user, permlink, node){
query <- paste0('{"jsonrpc":"2.0", "method":"tags_api.get_discussion", "params":{"author":"',user,'", "permlink":"',permlink,'"}, "id":1}')
r <- httr::POST(node, body = query)
data <- httr::content(r, "parsed", "application/json")
return(data$result)
}
#Get the replies of a specific post
get_content_replies <- function(user, permlink, node){
query <- paste0('{"jsonrpc":"2.0", "method":"tags_api.get_content_replies", "params":{"author":"',user,'", "permlink":"',permlink,'"}, "id":1}')
r <- httr::POST(node, body = query)
data <- httr::content(r, "parsed", "application/json")
return(data$result)
}
## Get Account History
get_account_history <- function(user, start, end, node) {
query <- paste0('{"jsonrpc":"2.0", "method":"condenser_api.get_account_history", "params":["',user,'",',start,',',end,'], "id":1}')
r <- httr::POST(node, body = query)
data <- httr::content(r, "parsed", "application/json")
return(data[[2]])
}
## Get Reblogged by for a post
get_reblogged_by <- function(user, permlink, node) {
query <- paste0('{"jsonrpc":"2.0", "method":"follow_api.get_reblogged_by", "params":{"author":"',user,'","permlink":"',permlink,'"}, "id":1}')
r <- httr::POST(node, body = query)
data <- httr::content(r, "parsed", "application/json")
data <- unlist(data$result$accounts)
return(data)
}
# Utility Functions ----
# These functions will process the data returned from the API calls and perform operations such as clensing ...
#Format a number as a character with comma seperators
formatNum <- function(x){
prettyNum(format(x, digits=2, nsmall=2), scientific=FALSE, big.mark=",")
}
#Format and add a hyperlink to the data table
createLink <- function(author,link, title) {
sprintf('<a href="https://steemit.com/@%s/%s" target="_blank">%s</a>',author, link, title)
}
#utility convert the Steem Reputation to a 2 digit number. Ported Code to R to format rep in readable format https://github.com/steemit/steem-js/blob/master/src/formatter.js
reputation.formatter <- function(rep) {
neg = grepl("-", rep)
rep <- sub("-","",rep)
leadingDigits = as.numeric(substr(rep, 0, 4))
log = log(leadingDigits) / log(10)
n = nchar(rep) - 1
out = n + (log - floor(log))
out = ifelse( (out - 9) > 0, out - 9, 0)
out = ifelse(neg, -1 , 1) * out
out = out * 9 + 25;
return(out)
}
#utility to convert the Steem Data Dump to a nice Data.Frame with relevant fields for analysis
library('data.table')
cleanData <- function(discussions){
n <- length(discussions)
results <- data.table::data.table(author=as.character(rep(NA,n)),
author_reputation=as.character(rep(NA,n)),
permlink=as.character(rep(NA,n)),
title=as.character(rep(NA,n)),
category=as.character(rep(NA,n)),
tag.1=as.character(rep(NA,n)),
tag.2=as.character(rep(NA,n)),
tag.3=as.character(rep(NA,n)),
tag.4=as.character(rep(NA,n)),
tag.5=as.character(rep(NA,n)),
tags=as.character(rep(NA,n)),
created=as.character(rep(NA,n)),
body=as.character(rep(NA,n)),
json=as.character(rep(NA,n)),
votes=as.numeric(rep(NA,n)),
voter=as.character(rep(NA,n)),
voter.rshares=as.character(rep(NA,n)),
voter.time=as.character(rep(NA,n)),
voter.percent=as.character(rep(NA,n)),
children=as.numeric(rep(NA,n)),
pending_payout=as.numeric(rep(NA,n)),
paid_payout=as.numeric(rep(NA,n)),
image_count=as.numeric(rep(NA,n))
)
for(i in 1 : n) {
discussion <- discussions[[i]]
results[i,"author"] <- discussion$author
results[i,"author_reputation"] <- discussion$author_reputation
results[i,"permlink"] <- discussion$permlink
results[i,"title"] <- discussion$title
results[i,"created"] <- discussion$created
results[i,"body"] <- discussion$body
results[i,"json"] <- discussion$json_metadata
results[i,"image_count"] <- length(rjson::fromJSON(discussion$json_metadata)$image)
results[i,"body"] <- discussion$body
results[i,"json"] <- discussion$json_metadata
results[i,"image_count"] <- length(rjson::fromJSON(discussion$json_metadata)$image)
skip=FALSE
result = tryCatch({
grepl("tags", results[i,"json"])
}, error = function(e) {
skip = TRUE
})
if(skip==FALSE) {
if(grepl("tags", results[i,"json"])==TRUE){
tags <- unlist(stringr::str_extract_all(results[i,"json"], '(\"tags\":)( )?((\\[(.*?)\\]))'))
tags <- sub("(\"tags\":)( )?(\\[)", "", tags)
tags <- gsub("\",( )*?\"", " ", tags)
tags <- gsub("\"|\\]", "", tags)
results[i, "tags"] <- tags
##Split tags and assign to 5 columns
## Assume only 5 tags max allowed, there may be more, so this does not cover all possibilities
tags <- unlist(strsplit(tags," "))
data.table::set(results,i,"category", tags[1])
for(j in 1:5){
if(is.na(tags[j])) {
data.table::set(results,i,paste0("tag.",j), "NA")
}
else {
data.table::set(results,i,paste0("tag.",j), tags[j])
}
}
}
}
## results[i,"depth"] <- discussion$depth
results[i,"children"] <- discussion$children
votes <- data.table::data.table(do.call(rbind, discussion$active_votes))
results[i,"votes"] <- nrow(votes)
results[i,"voter"] <- paste(unlist(votes$voter), collapse=' ')
results[i,"voter.rshares"] <- paste(unlist(votes$rshares), collapse=' ')
results[i,"voter.time"] <- paste(unlist(votes$time), collapse=' ')
results[i,"voter.percent"] <- paste(unlist(votes$percent), collapse=' ')
##results[i, "vote_details"] <- do.call(rbind, (lapply(data$result$discussions[[i]]$active_votes, unlist)))
results[i,"pending_payout"] <- tryCatch({ as.numeric(discussion$pending_payout_value$amount)/1000},error = function(e){ as.numeric(gsub("SBD", "", discussion$pending_payout_value))})
results[i,"paid_payout"] <- tryCatch({ as.numeric(discussion$total_payout_value$amount)/1000},error=function(e){ as.numeric(gsub("SBD","",discussion$total_payout_value))})
}
# results[,total_payout:= paid_payout + pending_payout]
results$total_payout <- results$paid_payout + results$pending_payout
# results[,datetime:= as.POSIXct(results$created, format="%Y-%m-%dT%H:%M:%S")]
results$datetime <- as.POSIXct(results$created, format="%Y-%m-%dT%H:%M:%S")
results$created <- NULL
results$date <- as.Date(results$datetime)
results$year_month <- format(results$date, "%Y-%b")
results$author_rep <- reputation.formatter(results$author_reputation)
results$author_reputation <- NULL
results$comments <- results$children
results$children <- NULL
##Remove Duplicate posts
results <- results[!duplicated(results$permlink)][order(-date)]
return(results)
}
## Convert Vests to Steem Power
vests.formatter <- function(x){
conversionFactor <- getSteemProperties()$total_vesting_shares/getSteemProperties()$total_vesting_fund_steem / 1000
return(as.numeric(gsub("VESTS", "", x))/conversionFactor)
}
##Clean accounts data, only keep key stuff
cleanAccount <- function(data){
profile_image=""
profile_website=""
cover_image=""
profile_about=""
profile_location=""
tryCatch({
json <- rjson::fromJSON(data$json_metadata)
profile_image <- json$profile$profile_image
if (length(profile_image)==0) {profile_image=""}
profile_location <- json$profile$location
if (length(profile_location)==0) {profile_location=""}
profile_website <- json$profile$profile_website
if (length(profile_website)==0) {profile_website=""}
profile_about <- json$profile$about
if (length(profile_about)==0) {profile_about=""}
cover_image <- json$profile$cover_image
if (length(cover_image)==0) {cover_image=""}
},error = function(e){
}
)
data <- data.table::data.table(created=as.POSIXct(data$created, format="%Y-%m-%dT%H:%M:%S"),
rep=reputation.formatter(data$reputation),
post_count=data$post_count,
balance=as.numeric(gsub("STEEM", "", data$balance)),
savings=as.numeric(gsub("STEEM", "", data$savings_balance)),
vesting=vests.formatter( data$vesting_shares),
vesting_delegated=vests.formatter( data$delegated_vesting_shares),
vesting_received=vests.formatter( data$received_vesting_shares),
profile_links=paste(profile_image, profile_website, cover_image),
profile_about=profile_about,
profile_location = profile_location, stringsAsFactors = FALSE
)
return(data)
}
##Clean Dynamic Global Properties
cleanGlobalProperties <- function(data){
data <- data.table::data.table(head_block=data$head_block_number,
time=as.POSIXct(data$time, format="%Y-%m-%dT%H:%M:%S"),
current_witness=data$current_witness,
virtual_supply=as.numeric(data$virtual_supply[[1]]),
current_supply=as.numeric(data$current_supply[[1]]),
current_sbd_supply=as.numeric(data$current_sbd_supply[[1]]),
total_vesting_fund_steem=as.numeric(data$total_vesting_fund_steem[[1]]),
total_vesting_shares=as.numeric(data$total_vesting_shares[[1]]),
total_reward_fund_steem=as.numeric(data$total_reward_fund_steem[[1]]),
pending_rewarded_vesting_shares=as.numeric(data$pending_rewarded_vesting_shares[[1]]),
pending_rewarded_vesting_steem=as.numeric(data$pending_rewarded_vesting_steem[[1]])
)
return(data)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.