|
|
|
@ -7,7 +7,8 @@ const log = require('../services/log');
|
|
|
|
const utils = require('../services/utils');
|
|
|
|
const utils = require('../services/utils');
|
|
|
|
const unescape = require('unescape');
|
|
|
|
const unescape = require('unescape');
|
|
|
|
const attributes = require('../services/attributes');
|
|
|
|
const attributes = require('../services/attributes');
|
|
|
|
const options = require('../services/options');
|
|
|
|
const sync_mutex = require('../services/sync_mutex');
|
|
|
|
|
|
|
|
const config = require('../services/config');
|
|
|
|
|
|
|
|
|
|
|
|
const REDDIT_ROOT = 'reddit_root';
|
|
|
|
const REDDIT_ROOT = 'reddit_root';
|
|
|
|
|
|
|
|
|
|
|
|
@ -106,7 +107,7 @@ async function getDateNoteIdForReddit(dateTimeStr, rootNoteId) {
|
|
|
|
return redditDateNoteId;
|
|
|
|
return redditDateNoteId;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async function importReddit(accountName, afterId = null) {
|
|
|
|
async function importComments(accountName, afterId = null) {
|
|
|
|
let rootNoteId = await sql.getFirstValue(`SELECT notes.note_id FROM notes JOIN attributes USING(note_id)
|
|
|
|
let rootNoteId = await sql.getFirstValue(`SELECT notes.note_id FROM notes JOIN attributes USING(note_id)
|
|
|
|
WHERE attributes.name = '${REDDIT_ROOT}' AND notes.is_deleted = 0`);
|
|
|
|
WHERE attributes.name = '${REDDIT_ROOT}' AND notes.is_deleted = 0`);
|
|
|
|
|
|
|
|
|
|
|
|
@ -173,38 +174,47 @@ async function importReddit(accountName, afterId = null) {
|
|
|
|
if (listing.data.after && importedComments > 0) {
|
|
|
|
if (listing.data.after && importedComments > 0) {
|
|
|
|
log.info("Reddit: Importing from next page of comments ...");
|
|
|
|
log.info("Reddit: Importing from next page of comments ...");
|
|
|
|
|
|
|
|
|
|
|
|
importedComments += await importReddit(accountName, listing.data.after);
|
|
|
|
importedComments += await importComments(accountName, listing.data.after);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return importedComments;
|
|
|
|
return importedComments;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let redditAccounts = [];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async function runImport() {
|
|
|
|
|
|
|
|
// technically mutex shouldn't be necessary but we want to avoid doing potentially expensive import
|
|
|
|
|
|
|
|
// concurrently with sync
|
|
|
|
|
|
|
|
await sync_mutex.doExclusively(async () => {
|
|
|
|
|
|
|
|
let importedComments = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (const account of redditAccounts) {
|
|
|
|
|
|
|
|
log.info("Reddit: Importing account " + account);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
importedComments += await importComments(account);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
log.info(`Reddit: Imported ${importedComments} comments.`);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sql.dbReady.then(async () => {
|
|
|
|
sql.dbReady.then(async () => {
|
|
|
|
const enabledOption = await options.getOptionOrNull("reddit_enabled");
|
|
|
|
console.log(config);
|
|
|
|
const accountsOption = await options.getOptionOrNull("reddit_accounts");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!enabledOption) {
|
|
|
|
if (!config['Reddit'] || !config['Reddit']['enabled'] !== true) {
|
|
|
|
await options.createOption("reddit_enabled", "false", true);
|
|
|
|
|
|
|
|
await options.createOption("reddit_accounts", "[]", true);
|
|
|
|
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (enabledOption.opt_value !== "true") {
|
|
|
|
const redditAccountsStr = config['Reddit']['accounts'];
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!accountsOption) {
|
|
|
|
if (!redditAccountsStr) {
|
|
|
|
log.info("Reddit: No reddit accounts defined in option 'reddit_accounts'");
|
|
|
|
log.info("Reddit: No reddit accounts defined in option 'reddit_accounts'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const redditAccounts = JSON.parse(accountsOption.opt_value);
|
|
|
|
redditAccounts = redditAccountsStr.split(",").map(s => s.trim());
|
|
|
|
let importedComments = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (const account of redditAccounts) {
|
|
|
|
|
|
|
|
log.info("Reddit: Importing account " + account);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
importedComments += await importReddit(account);
|
|
|
|
const pollingIntervalInSeconds = config['Reddit']['pollingIntervalInSeconds'] || 3600;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
log.info(`Reddit: Imported ${importedComments} comments.`);
|
|
|
|
setInterval(runImport, pollingIntervalInSeconds * 1000);
|
|
|
|
|
|
|
|
setTimeout(runImport, 1000);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|