2018-04-09 22:26:30 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const config = require('config');
|
2018-04-15 01:55:10 +00:00
|
|
|
const util = require('util');
|
|
|
|
const note = require('note-log');
|
2018-04-09 22:26:30 +00:00
|
|
|
const yargs = require('yargs').argv;
|
|
|
|
const snoowrap = require('snoowrap');
|
2018-04-15 01:55:10 +00:00
|
|
|
const methods = require('./methods/methods.js');
|
|
|
|
const dissectLink = require('./dissectLink.js');
|
|
|
|
const fetchContent = require('./fetchContent.js');
|
2018-04-09 22:26:30 +00:00
|
|
|
|
|
|
|
const reddit = new snoowrap(config.api);
|
|
|
|
|
|
|
|
reddit.getUser(yargs.user).getSubmissions({
|
|
|
|
sort: 'top'
|
|
|
|
}).then(submissions => {
|
2018-04-15 01:55:10 +00:00
|
|
|
const curatedPosts = submissions.map(submission => {
|
2018-04-09 22:26:30 +00:00
|
|
|
return {
|
2018-04-15 01:55:10 +00:00
|
|
|
id: submission.id,
|
2018-04-09 22:26:30 +00:00
|
|
|
title: submission.title,
|
2018-04-15 01:55:10 +00:00
|
|
|
permalink: submission.permalink,
|
|
|
|
url: submission.url,
|
|
|
|
host: dissectLink(submission.url)
|
2018-04-09 22:26:30 +00:00
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2018-04-15 01:55:10 +00:00
|
|
|
return Promise.all(curatedPosts.reduce((acc, post) => {
|
|
|
|
if(post.host && methods[post.host.method]) {
|
|
|
|
acc = acc.concat(methods[post.host.method](post).then(content => {
|
|
|
|
post.content = content;
|
|
|
|
|
|
|
|
return post;
|
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
note('fetch', 1, `"${post.title}": '${post.url}' not supported :(`);
|
|
|
|
}
|
|
|
|
|
|
|
|
return acc;
|
|
|
|
}, []));
|
|
|
|
}).then(fetchContent).catch(error => {
|
|
|
|
note(error);
|
2018-04-09 22:26:30 +00:00
|
|
|
});
|