teddit-reddit-frontend-alte.../inc/processJsonSubreddit.js

84 lines
2.6 KiB
JavaScript
Raw Normal View History

2020-11-17 21:44:32 +01:00
module.exports = function() {
2020-12-01 20:16:51 +01:00
const config = require('../config');
2021-05-24 21:18:50 +02:00
const link = require('./components/link')
2021-02-06 20:17:36 +01:00
this.processJsonSubreddit = (json, from, subreddit_front, user_preferences, saved) => {
2020-11-17 21:44:32 +01:00
return new Promise(resolve => {
(async () => {
if(from === 'redis') {
json = JSON.parse(json)
}
if(json.error) {
resolve({ error: true, error_data: json })
} else {
2021-02-06 20:17:36 +01:00
if(saved) {
let t = {
data: {
before: null,
after: null,
children: json
}
}
json = t
}
2020-11-17 21:44:32 +01:00
let before = json.data.before
let after = json.data.after
2020-12-21 12:27:31 +01:00
2020-11-17 21:44:32 +01:00
let ret = {
info: {
before: before,
after: after
},
links: []
}
2020-12-21 12:27:31 +01:00
2020-11-17 21:44:32 +01:00
let children_len = json.data.children.length
2020-12-21 12:27:31 +01:00
2020-11-17 21:44:32 +01:00
for(var i = 0; i < children_len; i++) {
let data = json.data.children[i].data
if(data.over_18)
if((config.nsfw_enabled === false && user_preferences.nsfw_enabled != 'true') || user_preferences.nsfw_enabled === 'false')
continue
2020-11-17 21:44:32 +01:00
2021-05-24 21:18:50 +02:00
/*
// Todo: Remove this once the link component is done
// but keep it for now in case we need it later
2020-11-17 21:44:32 +01:00
let obj = {
author: data.author,
created: data.created_utc,
domain: data.domain,
id: data.id,
images: images,
is_video: data.is_video,
2020-12-13 20:53:32 +01:00
link_flair_text: data.link_flair_text,
2020-11-17 21:44:32 +01:00
locked: data.locked,
media: data.media,
selftext_html: data.selftext_html,
2020-11-17 21:44:32 +01:00
num_comments: data.num_comments,
2020-12-23 15:52:51 +01:00
over_18: data.over_18,
2020-11-17 21:44:32 +01:00
permalink: data.permalink,
score: data.score,
subreddit: data.subreddit,
title: data.title,
ups: data.ups,
upvote_ratio: data.upvote_ratio,
url: replaceDomains(data.url, user_preferences),
2020-12-04 18:10:33 +01:00
stickied: data.stickied,
2020-11-17 21:44:32 +01:00
is_self_link: is_self_link,
2020-12-21 12:27:31 +01:00
subreddit_front: subreddit_front,
2020-12-24 22:13:08 +01:00
link_flair: (user_preferences.flairs != 'false' ? await formatLinkFlair(data) : ''),
user_flair: (user_preferences.flairs != 'false' ? await formatUserFlair(data) : '')
2021-05-24 21:18:50 +02:00
} */
let obj = await link.fromJson(data, user_preferences, subreddit_front)
2020-11-17 21:44:32 +01:00
ret.links.push(obj)
}
resolve(ret)
}
})()
})
}
}