Skip to content

Instantly share code, notes, and snippets.

@softvar
Last active February 27, 2016 22:16
Show Gist options
  • Save softvar/75e06094cf90617916b1 to your computer and use it in GitHub Desktop.
Save softvar/75e06094cf90617916b1 to your computer and use it in GitHub Desktop.
#!/usr/local/bin/node
/* ProductHunt posts upvotes count and Emoji on change :)
* BitBar plugin
*
* by Varun Malhotra
* (c) 2016
* LICENSE - MIT
*
* Shows current votes count of each post and notification bell (🔔) on change
* 20 minutes refresh is under the calls api rate limit (min is 1 sec)
*/
var https = require('https');
var fs = require('fs');
// Configurable params
// Either of userId or username should be provided
// Providing userId will save one extra call for getting userId from username since PH API works on userId
var config = {
accessToken: '', // add token here
username: s0ftvar, // change it
userId: 294870, // change it
filename: '/tmp/product-hunt-bitbar-votes-data.txt' // change if /tmp is not a writable folder
};
var userId;
var displayInMenuBar = 'PH| color=#da552f dropdown=false';
displayInMenuBar += '\n---\n';
function checkIfFileExists() {
fs.exists(config.filename, function (exists) {
if (exists) {
return;
} else {
fs.writeFile(config.filename, {flag: 'wx'}, 0, function (err, data) {
if (err) { throw err; }
});
}
});
}
function sortOn(arr, key, orderBy) {
arr.sort(function (a, b) {
return orderBy ? b[key] - a[key] : a[key] - b[key];
});
}
function fetchPostVotes() {
// Fetch votes on each posts
var options = {
hostname: 'api.producthunt.com',
path: '/v1/users/' + userId + '/posts',
method: 'GET',
headers: {
'Authorization': 'Bearer ' + config.accessToken
}
};
var output = '';
var req = https.request(options, function(res) {
var body = '';
res.on('data', function(chunk) {
body += chunk;
});
res.on('end', function() {
var name;
var votes = [];
var response = JSON.parse(body);
var posts = response.posts;
// sort response on votes_count to show posts having higher votes on top
sortOn(posts, 'votes_count', true);
for (var i = 0; i < posts.length; i++) {
name = posts[i].name;
output += '(' + posts[i].votes_count + ')' + name + ' | length=15 href=' + posts[i].discussion_url;
output += '\n---\n';
votes.push(posts[i].votes_count);
}
var oldData;
fs.readFile(config.filename, 'utf8', function (err, data) {
if (err) { throw err; }
oldData = data;
// SHow notification bell in OS X menu bar if current and previous data dont match
// Voilla! someone upvoted your post on ProductHunt
if (oldData.toString() !== votes.toString()) {
displayInMenuBar = 'PH🔔| color=#da552f dropdown=false';
displayInMenuBar += '\n---\n'
}
// Write all the votes count in the file
fs.writeFile(config.filename, votes.toString(), function (err) {
if (err) { throw err; }
});
// Finally log the entire output
console.log(displayInMenuBar + output);
});
});
});
req.end();
req.on('error', function(e) {
console.error(e);
});
}
function getUserId(options) {
var req = https.request(options, function(res) {
var body = '';
res.on('data', function(chunk) {
body += chunk;
});
res.on('end', function() {
var response = JSON.parse(body);
if (response.error) {
console.log('No such PH User Found');
return;
}
// Update userId
userId = response.user.id;
console.log(userId)
fetchPostVotes();
});
});
req.end();
req.on('error', function(e) {
console.error(e);
});
}
checkIfFileExists();
if (config.userId) {
userId = config.userId
fetchPostVotes();
} else if (config.username) {
// Since we need ProductHunt userId for fetching user related data, get userId
// API call options
var options = {
hostname: 'api.producthunt.com',
path: '/v1/users/' + config.username,
method: 'GET',
headers: {
'Authorization': 'Bearer ' + config.accessToken
}
};
getUserId(options);
} else {
console.log('!PH| color=#da552f dropdown=false\n---\n Provide PH userId/username.');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment