109 lines
3.6 KiB
JavaScript
109 lines
3.6 KiB
JavaScript
module.exports = function() {
|
||
const config = require('../config');
|
||
this.processJsonSubreddit = (json, from, subreddit_front, user_preferences, saved) => {
|
||
return new Promise(resolve => {
|
||
(async () => {
|
||
if(from === 'redis') {
|
||
json = JSON.parse(json)
|
||
}
|
||
if(json.error) {
|
||
resolve({ error: true, error_data: json })
|
||
} else {
|
||
if(saved) {
|
||
let t = {
|
||
data: {
|
||
before: null,
|
||
after: null,
|
||
children: json
|
||
}
|
||
}
|
||
json = t
|
||
}
|
||
|
||
let before = json.data.before
|
||
let after = json.data.after
|
||
|
||
let ret = {
|
||
info: {
|
||
before: before,
|
||
after: after
|
||
},
|
||
links: []
|
||
}
|
||
|
||
let children_len = json.data.children.length
|
||
|
||
for(var i = 0; i < children_len; i++) {
|
||
let data = json.data.children[i].data
|
||
let images = null
|
||
let is_self_link = false
|
||
let valid_reddit_self_domains = ['reddit.com']
|
||
|
||
if(data.over_18)
|
||
if((config.nsfw_enabled === false && user_preferences.nsfw_enabled != 'true') || user_preferences.nsfw_enabled === 'false')
|
||
continue
|
||
|
||
if(data.domain) {
|
||
let tld = data.domain.split('self.')
|
||
if(tld.length > 1) {
|
||
if(!tld[1].includes('.')) {
|
||
is_self_link = true
|
||
}
|
||
}
|
||
if(config.valid_media_domains.includes(data.domain) || valid_reddit_self_domains.includes(data.domain)) {
|
||
is_self_link = true
|
||
}
|
||
}
|
||
|
||
if(data.preview && data.thumbnail !== 'self') {
|
||
if(!data.url.startsWith('/r/') && isGif(data.url)) {
|
||
images = {
|
||
thumb: await downloadAndSave(data.thumbnail, 'thumb_')
|
||
}
|
||
} else {
|
||
if(data.preview.images[0].resolutions[0]) {
|
||
let preview = null
|
||
if(!isGif(data.url) && !data.post_hint.includes(':video'))
|
||
preview = await downloadAndSave(data.preview.images[0].source.url)
|
||
images = {
|
||
thumb: await downloadAndSave(data.preview.images[0].resolutions[0].url, 'thumb_'),
|
||
preview: preview
|
||
}
|
||
}
|
||
}
|
||
}
|
||
let obj = {
|
||
author: data.author,
|
||
created: data.created_utc,
|
||
domain: data.domain,
|
||
id: data.id,
|
||
images: images,
|
||
is_video: data.is_video,
|
||
link_flair_text: data.link_flair_text,
|
||
locked: data.locked,
|
||
media: data.media,
|
||
selftext_html: data.selftext_html,
|
||
num_comments: data.num_comments,
|
||
over_18: data.over_18,
|
||
permalink: data.permalink,
|
||
score: data.score,
|
||
subreddit: data.subreddit,
|
||
title: data.title,
|
||
ups: data.ups,
|
||
upvote_ratio: data.upvote_ratio,
|
||
url: replacePrivacyDomains(data.url, user_preferences),
|
||
stickied: data.stickied,
|
||
is_self_link: is_self_link,
|
||
subreddit_front: subreddit_front,
|
||
link_flair: (user_preferences.flairs != 'false' ? await formatLinkFlair(data) : ''),
|
||
user_flair: (user_preferences.flairs != 'false' ? await formatUserFlair(data) : '')
|
||
}
|
||
ret.links.push(obj)
|
||
}
|
||
resolve(ret)
|
||
}
|
||
})()
|
||
})
|
||
}
|
||
}
|