| 
									
										
										
										
											2018-01-11 23:54:17 -05:00
										 |  |  | const sql = require('../services/sql'); | 
					
						
							|  |  |  | const notes = require('../services/notes'); | 
					
						
							|  |  |  | const axios = require('axios'); | 
					
						
							|  |  |  | const log = require('../services/log'); | 
					
						
							|  |  |  | const utils = require('../services/utils'); | 
					
						
							|  |  |  | const unescape = require('unescape'); | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  | const attributes = require('../services/attributes'); | 
					
						
							| 
									
										
										
										
											2018-01-11 23:54:17 -05:00
										 |  |  | const options = require('../services/options'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const REDDIT_ROOT = 'reddit_root'; | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | async function createNote(parentNoteId, noteTitle, noteText) { | 
					
						
							|  |  |  |     return (await notes.createNewNote(parentNoteId, { | 
					
						
							|  |  |  |         note_title: noteTitle, | 
					
						
							|  |  |  |         note_text: noteText, | 
					
						
							|  |  |  |         target: 'into', | 
					
						
							|  |  |  |         is_protected: false | 
					
						
							|  |  |  |     })).noteId; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function redditId(kind, id) { | 
					
						
							|  |  |  |     return kind + "_" + id; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-01-11 23:54:17 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-12 22:44:55 -05:00
										 |  |  | async function getYearNoteId(dateTimeStr, rootNoteId) { | 
					
						
							|  |  |  |     const yearStr = dateTimeStr.substr(0, 4); | 
					
						
							| 
									
										
										
										
											2018-01-11 23:54:17 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |     let yearNoteId = await attributes.getNoteIdWithAttribute('year_note', yearStr); | 
					
						
							| 
									
										
										
										
											2018-01-12 22:44:55 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |     if (!yearNoteId) { | 
					
						
							|  |  |  |         yearNoteId = await createNote(rootNoteId, yearStr); | 
					
						
							| 
									
										
										
										
											2018-01-12 22:44:55 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |         await attributes.createAttribute(yearNoteId, "year_note", yearStr); | 
					
						
							| 
									
										
										
										
											2018-01-12 22:44:55 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |     return yearNoteId; | 
					
						
							| 
									
										
										
										
											2018-01-12 22:44:55 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | async function getMonthNoteId(dateTimeStr, rootNoteId) { | 
					
						
							|  |  |  |     const monthStr = dateTimeStr.substr(0, 7); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |     let monthNoteId = await attributes.getNoteIdWithAttribute('month_note', monthStr); | 
					
						
							| 
									
										
										
										
											2018-01-12 22:44:55 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |     if (!monthNoteId) { | 
					
						
							|  |  |  |         const yearNoteId = await getYearNoteId(dateTimeStr, rootNoteId); | 
					
						
							| 
									
										
										
										
											2018-01-12 22:44:55 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |         monthNoteId = await createNote(yearNoteId, dateTimeStr.substr(5, 2)); | 
					
						
							| 
									
										
										
										
											2018-01-12 22:44:55 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |         await attributes.createAttribute(monthNoteId, "month_note", monthStr); | 
					
						
							| 
									
										
										
										
											2018-01-12 22:44:55 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |     return monthNoteId; | 
					
						
							| 
									
										
										
										
											2018-01-12 22:44:55 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | async function getDateNoteId(dateTimeStr, rootNoteId) { | 
					
						
							|  |  |  |     const dateStr = dateTimeStr.substr(0, 10); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |     let dateNoteId = await attributes.getNoteIdWithAttribute('date_note', dateStr); | 
					
						
							| 
									
										
										
										
											2018-01-12 22:44:55 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!dateNoteId) { | 
					
						
							|  |  |  |         const monthNoteId = await getMonthNoteId(dateTimeStr, rootNoteId); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |         dateNoteId = await createNote(monthNoteId, dateTimeStr.substr(8, 2)); | 
					
						
							| 
									
										
										
										
											2018-01-12 22:44:55 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |         await attributes.createAttribute(dateNoteId, "date_note", dateStr); | 
					
						
							| 
									
										
										
										
											2018-01-12 22:44:55 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return dateNoteId; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | async function getDateNoteIdForReddit(dateTimeStr, rootNoteId) { | 
					
						
							|  |  |  |     const dateStr = dateTimeStr.substr(0, 10); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |     let redditDateNoteId = await attributes.getNoteIdWithAttribute('reddit_date_note', dateStr); | 
					
						
							| 
									
										
										
										
											2018-01-12 22:44:55 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!redditDateNoteId) { | 
					
						
							|  |  |  |         const dateNoteId = await getDateNoteId(dateTimeStr, rootNoteId); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |         redditDateNoteId = await createNote(dateNoteId, "Reddit"); | 
					
						
							| 
									
										
										
										
											2018-01-12 22:44:55 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |         await attributes.createAttribute(redditDateNoteId, "reddit_date_note", dateStr); | 
					
						
							| 
									
										
										
										
											2018-01-12 22:44:55 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return redditDateNoteId; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | async function importReddit(accountName, afterId = null) { | 
					
						
							|  |  |  |     let rootNoteId = await sql.getFirstValue(`SELECT notes.note_id FROM notes JOIN attributes USING(note_id) 
 | 
					
						
							| 
									
										
										
										
											2018-01-11 23:54:17 -05:00
										 |  |  |               WHERE attributes.name = '${REDDIT_ROOT}' AND notes.is_deleted = 0`);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!rootNoteId) { | 
					
						
							|  |  |  |         rootNoteId = (await notes.createNewNote('root', { | 
					
						
							|  |  |  |             note_title: 'Reddit', | 
					
						
							|  |  |  |             target: 'into', | 
					
						
							|  |  |  |             is_protected: false | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |         })).noteId; | 
					
						
							| 
									
										
										
										
											2018-01-11 23:54:17 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |         await attributes.createAttribute(rootNoteId, REDDIT_ROOT); | 
					
						
							| 
									
										
										
										
											2018-01-11 23:54:17 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-12 22:44:55 -05:00
										 |  |  |     let url = `https://www.reddit.com/user/${accountName}.json`; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (afterId) { | 
					
						
							|  |  |  |         url += "?after=" + afterId; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const response = await axios.get(url); | 
					
						
							| 
									
										
										
										
											2018-01-11 23:54:17 -05:00
										 |  |  |     const listing = response.data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (listing.kind !== 'Listing') { | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |         log.info(`Reddit: Unknown object kind ${listing.kind}`); | 
					
						
							| 
									
										
										
										
											2018-01-11 23:54:17 -05:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const children = listing.data.children; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |     let importedComments = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-11 23:54:17 -05:00
										 |  |  |     for (const child of children) { | 
					
						
							|  |  |  |         const comment = child.data; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |         let commentNoteId = await attributes.getNoteIdWithAttribute('reddit_id', redditId(child.kind, comment.id)); | 
					
						
							| 
									
										
										
										
											2018-01-11 23:54:17 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (commentNoteId) { | 
					
						
							|  |  |  |             continue; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         const dateTimeStr = utils.dateStr(new Date(comment.created_utc * 1000)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |         const noteText = | 
					
						
							| 
									
										
										
										
											2018-01-11 23:54:17 -05:00
										 |  |  |             `<p><a href="${comment.link_permalink}">${comment.link_permalink}</a></p>
 | 
					
						
							|  |  |  |             <p>author: ${comment.author}, subreddit: ${comment.subreddit}, karma: ${comment.score}, created at ${dateTimeStr}</p><p></p>` | 
					
						
							|  |  |  |             + unescape(comment.body_html); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |         let parentNoteId = await getDateNoteIdForReddit(dateTimeStr, rootNoteId); | 
					
						
							| 
									
										
										
										
											2018-01-11 23:54:17 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |         commentNoteId = await createNote(parentNoteId, comment.link_title, noteText); | 
					
						
							| 
									
										
										
										
											2018-01-12 22:44:55 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |         log.info("Reddit: Imported comment to note " + commentNoteId); | 
					
						
							|  |  |  |         importedComments++; | 
					
						
							| 
									
										
										
										
											2018-01-12 22:44:55 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |         await sql.doInTransaction(async () => { | 
					
						
							|  |  |  |             await attributes.createAttribute(commentNoteId, "reddit_kind", child.kind); | 
					
						
							|  |  |  |             await attributes.createAttribute(commentNoteId, "reddit_id", redditId(child.kind, comment.id)); | 
					
						
							|  |  |  |             await attributes.createAttribute(commentNoteId, "reddit_created_utc", comment.created_utc); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2018-01-12 22:44:55 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-01-11 23:54:17 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |     // if there have been no imported comments on this page, there shouldn't be any to import
 | 
					
						
							|  |  |  |     // on the next page since those are older
 | 
					
						
							|  |  |  |     if (listing.data.after && importedComments > 0) { | 
					
						
							|  |  |  |         log.info("Reddit: Importing from next page of comments ..."); | 
					
						
							| 
									
										
										
										
											2018-01-11 23:54:17 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |         importedComments += await importReddit(accountName, listing.data.after); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-01-11 23:54:17 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |     return importedComments; | 
					
						
							| 
									
										
										
										
											2018-01-11 23:54:17 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | sql.dbReady.then(async () => { | 
					
						
							|  |  |  |     const enabledOption = await options.getOptionOrNull("reddit_enabled"); | 
					
						
							|  |  |  |     const accountsOption = await options.getOptionOrNull("reddit_accounts"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!enabledOption) { | 
					
						
							|  |  |  |         await options.createOption("reddit_enabled", "false", true); | 
					
						
							|  |  |  |         await options.createOption("reddit_accounts", "[]", true); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (enabledOption.opt_value !== "true") { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!accountsOption) { | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |         log.info("Reddit: No reddit accounts defined in option 'reddit_accounts'"); | 
					
						
							| 
									
										
										
										
											2018-01-11 23:54:17 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const redditAccounts = JSON.parse(accountsOption.opt_value); | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |     let importedComments = 0; | 
					
						
							| 
									
										
										
										
											2018-01-11 23:54:17 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-12 22:44:55 -05:00
										 |  |  |     for (const account of redditAccounts) { | 
					
						
							|  |  |  |         log.info("Importing account " + account); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |         importedComments += await importReddit(account); | 
					
						
							| 
									
										
										
										
											2018-01-12 22:44:55 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 15:25:09 -05:00
										 |  |  |     log.info(`Reddit: Imported ${importedComments} comments.`); | 
					
						
							| 
									
										
										
										
											2018-01-11 23:54:17 -05:00
										 |  |  | }); |