Merge pull request #10 from lbryio/revert-9-metadata-fix
Revert "Fallback solution as proposed in pull #7"
This commit is contained in:
commit
096d3513de
2 changed files with 12 additions and 41 deletions
|
@ -5,8 +5,7 @@ var mongo;
|
|||
var slackbot;
|
||||
var channel;
|
||||
var moment = require('moment');
|
||||
var request = require('request');
|
||||
var sleep = require('sleep');
|
||||
const request = require("request");
|
||||
|
||||
module.exports = {
|
||||
init: init,
|
||||
|
@ -91,7 +90,6 @@ function announceNewClaims() {
|
|||
|
||||
function announceClaimsLoop(block, lastBlock, currentHeight) {
|
||||
// console.log('Doing block ' + block)
|
||||
let claimsFound = 0;
|
||||
return lbryCall('getblockhash', block)
|
||||
.then(function (blockHash) {
|
||||
return lbryCall('getblock', blockHash);
|
||||
|
@ -104,12 +102,7 @@ function announceClaimsLoop(block, lastBlock, currentHeight) {
|
|||
return !!c;
|
||||
});
|
||||
console.log('Found ' + claims.length + ' claims in ' + block);
|
||||
claimsFound = claims.length;
|
||||
return Promise.all(claims.map(function (claim) {
|
||||
//slack has a rate limit. to avoid hitting it we must have a small delay between each message
|
||||
//if claims were found in this block, then we wait, otherwise we don't
|
||||
if (claimsFound > 0)
|
||||
sleep.msleep(300);
|
||||
return announceClaim(claim, block, currentHeight);
|
||||
}));
|
||||
})
|
||||
|
@ -135,45 +128,27 @@ function announceClaim(claim, claimBlockHeight, currentHeight) {
|
|||
|
||||
request(options, function (error, response, body) {
|
||||
if (error) throw new Error(error);
|
||||
body = JSON.parse(body);
|
||||
try {
|
||||
console.log(body);
|
||||
|
||||
let claimData = null;
|
||||
let channelName = null;
|
||||
try {
|
||||
body = JSON.parse(body);
|
||||
if (body.hasOwnProperty('value') && body.value.hasOwnProperty('stream') && body.value.stream.hasOwnProperty('metadata')) {
|
||||
claimData = body.value.stream.metadata;
|
||||
channelName = (body.hasOwnProperty('channel_name') ? body['channel_name'] : null);
|
||||
}
|
||||
}
|
||||
catch (e) {
|
||||
console.error(e);
|
||||
}
|
||||
|
||||
let claimData = body.value.stream.metadata;
|
||||
let channelName = (body.hasOwnProperty('channel_name') ? body['channel_name'] : null);
|
||||
//claimData = JSON.parse(body).stream.metadata;
|
||||
//console.log(JSON.stringify(claimData));
|
||||
return Promise.all([
|
||||
lbryCall('getvalueforname', claim['name']),
|
||||
lbryCall('getclaimsforname', claim['name']),
|
||||
])
|
||||
.then(function ([currentWinningClaim, claimsForName]) {
|
||||
//console.log(JSON.stringify(claimData));
|
||||
let value = null;
|
||||
if (claimData !== null)
|
||||
value = claimData;
|
||||
else {
|
||||
try {
|
||||
value = JSON.parse(claim['value']);
|
||||
} catch (e) { }
|
||||
}
|
||||
let value = claimData;
|
||||
|
||||
const text = [];
|
||||
|
||||
if (value) {
|
||||
/*if (channelName) {
|
||||
if (channelName) {
|
||||
text.push("Channel: lbry://" + channelName);
|
||||
}
|
||||
else*/
|
||||
if (value['author']) {
|
||||
else if (value['author']) {
|
||||
text.push("author: " + value['author']);
|
||||
}
|
||||
if (value['description']) {
|
||||
|
@ -186,15 +161,12 @@ function announceClaim(claim, claimBlockHeight, currentHeight) {
|
|||
if (value['nsfw']) {
|
||||
text.push("*Warning: Adult Content*");
|
||||
}
|
||||
|
||||
//"fee":{"currency":"LBC","amount":186,"version":"_0_0_1","address":"bTGoFCakvQXvBrJg1b7FJzombFUu6iRJsk"}
|
||||
if (value['fee']) {
|
||||
const fees = [];
|
||||
text.push("Price: " + value['fee'].amount + " *" + value['fee'].currency + '*');
|
||||
/*for (var key in value['fee']) {
|
||||
for (var key in value['fee']) {
|
||||
fees.push(value['fee'][key]['amount'] + ' ' + key);
|
||||
}
|
||||
text.push(fees.join(', '));*/
|
||||
text.push(fees.join(', '));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "hashbot",
|
||||
"version": "1.0.2",
|
||||
"version": "1.0.1",
|
||||
"description": "A bot for slack wich displays lbrys current hashrate via the open api.",
|
||||
"main": "app.js",
|
||||
"dependencies": {
|
||||
|
@ -11,7 +11,6 @@
|
|||
"needle": "^1.0.0",
|
||||
"request": "^2.81.0",
|
||||
"slackbots": "^0.5.1",
|
||||
"sleep": "^5.1.1",
|
||||
"xmlhttprequest": "1.8.0"
|
||||
},
|
||||
"devDependencies": {},
|
||||
|
|
Loading…
Reference in a new issue