Implement a central link object
This commit is contained in:
parent
ac14a7b094
commit
533519df65
|
@ -0,0 +1,83 @@
|
||||||
|
/*
|
||||||
|
* Corresponds to `components/link.pug`
|
||||||
|
*/
|
||||||
|
|
||||||
|
const config = require('../../config')
|
||||||
|
let valid_reddit_self_domains = ['reddit.com']
|
||||||
|
|
||||||
|
class Link {
|
||||||
|
// Parses a link from a response returned by reddit.
|
||||||
|
static async fromJson(data, user_preferences, subreddit_front) {
|
||||||
|
|
||||||
|
// Meta
|
||||||
|
this.id = data.id
|
||||||
|
this.permalink = data.permalink
|
||||||
|
this.created = data.created_utc
|
||||||
|
this.author = data.author
|
||||||
|
this.title = data.title
|
||||||
|
this.over_18 = data.over_18
|
||||||
|
this.score = data.score
|
||||||
|
this.ups = data.ups
|
||||||
|
this.upvote_ratio = data.upvote_ratio
|
||||||
|
this.num_comments = data.num_comments
|
||||||
|
|
||||||
|
// Content
|
||||||
|
this.is_self_link = false
|
||||||
|
this.selftext_html = data.selftext_html
|
||||||
|
this.url = replaceDomains(data.url, user_preferences)
|
||||||
|
this.domain = data.domain
|
||||||
|
this.is_video = data.is_video
|
||||||
|
this.media = data.media
|
||||||
|
this.duration = data.is_video ? data.media.reddit_video ? data.media.reddit_video.duration : void 0 : void 0
|
||||||
|
this.images = null
|
||||||
|
|
||||||
|
// Moderation attributes
|
||||||
|
this.locked = data.locked
|
||||||
|
this.stickied = data.stickied
|
||||||
|
|
||||||
|
// Subreddit
|
||||||
|
this.subreddit_front = subreddit_front
|
||||||
|
this.subreddit = data.subreddit
|
||||||
|
|
||||||
|
// Flair
|
||||||
|
this.link_flair = (user_preferences.flairs != 'false' ? await formatLinkFlair(data) : '')
|
||||||
|
this.user_flair = (user_preferences.flairs != 'false' ? await formatUserFlair(data) : '')
|
||||||
|
this.link_flair_text = data.link_flair_text
|
||||||
|
|
||||||
|
if(data.domain) {
|
||||||
|
let tld = data.domain.split('self.')
|
||||||
|
if(tld.length > 1) {
|
||||||
|
if(!tld[1].includes('.')) {
|
||||||
|
this.is_self_link = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(config.valid_media_domains.includes(data.domain) || valid_reddit_self_domains.includes(data.domain)) {
|
||||||
|
this.is_self_link = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(data.preview && data.thumbnail !== 'self') {
|
||||||
|
if(!data.url.startsWith('/r/') && isGif(data.url)) {
|
||||||
|
this.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)
|
||||||
|
this.images = {
|
||||||
|
thumb: await downloadAndSave(data.preview.images[0].resolutions[0].url, 'thumb_'),
|
||||||
|
preview: preview
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Use black magic in order to return a normal object
|
||||||
|
return Object.fromEntries(Object.entries(this))
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = Link;
|
|
@ -1,5 +1,6 @@
|
||||||
module.exports = function() {
|
module.exports = function() {
|
||||||
const config = require('../config');
|
const config = require('../config');
|
||||||
|
const link = require('./components/link')
|
||||||
this.processJsonSubreddit = (json, from, subreddit_front, user_preferences, saved) => {
|
this.processJsonSubreddit = (json, from, subreddit_front, user_preferences, saved) => {
|
||||||
return new Promise(resolve => {
|
return new Promise(resolve => {
|
||||||
(async () => {
|
(async () => {
|
||||||
|
@ -35,43 +36,14 @@ module.exports = function() {
|
||||||
|
|
||||||
for(var i = 0; i < children_len; i++) {
|
for(var i = 0; i < children_len; i++) {
|
||||||
let data = json.data.children[i].data
|
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(data.over_18)
|
||||||
if((config.nsfw_enabled === false && user_preferences.nsfw_enabled != 'true') || user_preferences.nsfw_enabled === 'false')
|
if((config.nsfw_enabled === false && user_preferences.nsfw_enabled != 'true') || user_preferences.nsfw_enabled === 'false')
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if(data.domain) {
|
/*
|
||||||
let tld = data.domain.split('self.')
|
// Todo: Remove this once the link component is done
|
||||||
if(tld.length > 1) {
|
// but keep it for now in case we need it later
|
||||||
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 = {
|
let obj = {
|
||||||
author: data.author,
|
author: data.author,
|
||||||
created: data.created_utc,
|
created: data.created_utc,
|
||||||
|
@ -97,7 +69,10 @@ module.exports = function() {
|
||||||
subreddit_front: subreddit_front,
|
subreddit_front: subreddit_front,
|
||||||
link_flair: (user_preferences.flairs != 'false' ? await formatLinkFlair(data) : ''),
|
link_flair: (user_preferences.flairs != 'false' ? await formatLinkFlair(data) : ''),
|
||||||
user_flair: (user_preferences.flairs != 'false' ? await formatUserFlair(data) : '')
|
user_flair: (user_preferences.flairs != 'false' ? await formatUserFlair(data) : '')
|
||||||
}
|
} */
|
||||||
|
|
||||||
|
let obj = await link.fromJson(data, user_preferences, subreddit_front)
|
||||||
|
|
||||||
ret.links.push(obj)
|
ret.links.push(obj)
|
||||||
}
|
}
|
||||||
resolve(ret)
|
resolve(ret)
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
module.exports = function() {
|
module.exports = function() {
|
||||||
const config = require('../config');
|
const config = require('../config');
|
||||||
|
const link = require('./components/link')
|
||||||
this.processJsonUser = function(json, parsed, after, before, user_preferences, kind, post_type) {
|
this.processJsonUser = function(json, parsed, after, before, user_preferences, kind, post_type) {
|
||||||
return new Promise(resolve => {
|
return new Promise(resolve => {
|
||||||
(async () => {
|
(async () => {
|
||||||
|
@ -49,32 +50,8 @@ module.exports = function() {
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if(type === 't3') {
|
if(type === 't3') {
|
||||||
let duration = null
|
obj = await link.fromJson(post, user_preferences)
|
||||||
if(post.media) {
|
obj.type = 't3'
|
||||||
if(post.is_video) {
|
|
||||||
if(post.media.reddit_video) {
|
|
||||||
duration = post.media.reddit_video.duration
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
obj = {
|
|
||||||
type: type,
|
|
||||||
subreddit: post.subreddit,
|
|
||||||
title: post.title,
|
|
||||||
created: post.created_utc,
|
|
||||||
ups: post.ups,
|
|
||||||
url: replaceDomains(url, user_preferences),
|
|
||||||
domain: post.domain,
|
|
||||||
thumbnail: await downloadAndSave(post.thumbnail),
|
|
||||||
duration: duration,
|
|
||||||
edited: post.edited,
|
|
||||||
selftext_html: unescape(post.selftext_html),
|
|
||||||
num_comments: post.num_comments,
|
|
||||||
over_18: post.over_18,
|
|
||||||
permalink: post.permalink,
|
|
||||||
user_flair: (user_preferences.flairs != 'false' ? await formatUserFlair(post) : '')
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if(type === 't1') {
|
if(type === 't1') {
|
||||||
obj = {
|
obj = {
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
module.exports = function() {
|
module.exports = function() {
|
||||||
const config = require('../config');
|
const config = require('../config');
|
||||||
|
const link = require('./components/link')
|
||||||
this.processSearchResults = (json, parsed, after, before, user_preferences) => {
|
this.processSearchResults = (json, parsed, after, before, user_preferences) => {
|
||||||
return new Promise(resolve => {
|
return new Promise(resolve => {
|
||||||
(async () => {
|
(async () => {
|
||||||
|
@ -36,61 +37,12 @@ module.exports = function() {
|
||||||
|
|
||||||
for(var i = 0; i < posts_limit; i++) {
|
for(var i = 0; i < posts_limit; i++) {
|
||||||
let post = json.data.children[i].data
|
let post = json.data.children[i].data
|
||||||
let images = null
|
|
||||||
let is_self_link = false
|
|
||||||
let valid_reddit_self_domains = ['reddit.com']
|
|
||||||
|
|
||||||
if(post.over_18)
|
if(post.over_18)
|
||||||
if((config.nsfw_enabled === false && user_preferences.nsfw_enabled != 'true') || user_preferences.nsfw_enabled === 'false')
|
if((config.nsfw_enabled === false && user_preferences.nsfw_enabled != 'true') || user_preferences.nsfw_enabled === 'false')
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if(post.domain) {
|
let obj = await link.fromJson(post, user_preferences)
|
||||||
let tld = post.domain.split('self.')
|
|
||||||
if(tld.length > 1) {
|
|
||||||
if(!tld[1].includes('.')) {
|
|
||||||
is_self_link = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(config.valid_media_domains.includes(post.domain) || valid_reddit_self_domains.includes(post.domain)) {
|
|
||||||
is_self_link = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if(post.preview && post.thumbnail !== 'self') {
|
|
||||||
if(!post.url.startsWith('/r/') && isGif(post.url)) {
|
|
||||||
images = {
|
|
||||||
thumb: await downloadAndSave(post.thumbnail, 'thumb_')
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if(post.preview.images[0].resolutions[0]) {
|
|
||||||
images = {
|
|
||||||
thumb: await downloadAndSave(post.preview.images[0].resolutions[0].url, 'thumb_')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let obj = {
|
|
||||||
subreddit: post.subreddit,
|
|
||||||
title: post.title,
|
|
||||||
created: post.created_utc,
|
|
||||||
domain: post.domain,
|
|
||||||
subreddit_name_prefixed: post.subreddit_name_prefixed,
|
|
||||||
link_flair_text: post.link_flair_text,
|
|
||||||
ups: post.ups,
|
|
||||||
images: images,
|
|
||||||
url: replaceDomains(post.url, user_preferences),
|
|
||||||
edited: post.edited,
|
|
||||||
selftext_html: unescape(post.body_html),
|
|
||||||
num_comments: post.num_comments,
|
|
||||||
over_18: post.over_18,
|
|
||||||
permalink: post.permalink,
|
|
||||||
is_self_link: is_self_link,
|
|
||||||
author: post.author,
|
|
||||||
link_title: post.link_title,
|
|
||||||
link_flair: (user_preferences.flairs != 'false' ? await formatLinkFlair(post) : ''),
|
|
||||||
user_flair: (user_preferences.flairs != 'false' ? await formatUserFlair(post) : '')
|
|
||||||
}
|
|
||||||
posts.push(obj)
|
posts.push(obj)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1039,8 +1039,7 @@ footer a {
|
||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
#user .entries .commententry .image a span {
|
#user .entries .link .image a span {
|
||||||
position: absolute;
|
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
background: #0000005e;
|
background: #0000005e;
|
||||||
left: 0;
|
left: 0;
|
||||||
|
@ -1050,7 +1049,7 @@ footer a {
|
||||||
font-size: var(--sm-font);
|
font-size: var(--sm-font);
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
}
|
}
|
||||||
#user .entries .commententry .image img {
|
#user .entries .link .image img {
|
||||||
max-width: 80px;
|
max-width: 80px;
|
||||||
}
|
}
|
||||||
#user .entries .commententry .title a {
|
#user .entries .commententry .title a {
|
||||||
|
|
|
@ -137,53 +137,7 @@ html
|
||||||
span.tag.nsfw NSFW
|
span.tag.nsfw NSFW
|
||||||
a(href="/subreddits/search?q="+ q +"", class="btn") show more similar subreddits
|
a(href="/subreddits/search?q="+ q +"", class="btn") show more similar subreddits
|
||||||
each link in json.posts
|
each link in json.posts
|
||||||
.link
|
include components/link.pug
|
||||||
.upvotes
|
|
||||||
.arrow
|
|
||||||
span #{kFormatter(link.ups)}
|
|
||||||
.arrow.down
|
|
||||||
.image
|
|
||||||
if link.images
|
|
||||||
if link.is_self_link
|
|
||||||
a(href="" + link.permalink + "")
|
|
||||||
img(src="" + link.images.thumb + "", alt="")
|
|
||||||
else
|
|
||||||
a(href=""+ link.url +"", rel="noopener noreferrer")
|
|
||||||
img(src="" + link.images.thumb + "", alt="")
|
|
||||||
else
|
|
||||||
a(href="" + link.permalink + "")
|
|
||||||
.no-image no image
|
|
||||||
.entry
|
|
||||||
.title
|
|
||||||
if link.is_self_link
|
|
||||||
a(href="" + link.permalink + "")
|
|
||||||
h2(class="" + (link.stickied ? 'green' : '') + "") #{cleanTitle(link.title)}
|
|
||||||
!= link.link_flair
|
|
||||||
span (#{link.domain})
|
|
||||||
else
|
|
||||||
a(href="" + link.url + "", rel="noopener noreferrer")
|
|
||||||
h2(class="" + (link.stickied ? 'green' : '') + "") #{cleanTitle(link.title)}
|
|
||||||
!= link.link_flair
|
|
||||||
span (#{link.domain})
|
|
||||||
.meta
|
|
||||||
p.submitted submitted
|
|
||||||
span(title="" + toUTCString(link.created) + "") #{timeDifference(link.created)} by
|
|
||||||
if link.author === '[deleted]'
|
|
||||||
span(class="deleted") [deleted]
|
|
||||||
else
|
|
||||||
a(href="/u/" + link.author + "")
|
|
||||||
| #{link.author}
|
|
||||||
!= link.user_flair
|
|
||||||
p.to to
|
|
||||||
a(href="/r/" + link.subreddit + "")
|
|
||||||
| #{link.subreddit}
|
|
||||||
if link.stickied
|
|
||||||
span(class="green") stickied
|
|
||||||
.links
|
|
||||||
if link.over_18
|
|
||||||
span.tag.nsfw NSFW
|
|
||||||
a(href="" + link.permalink + "", class="comments")
|
|
||||||
| #{link.num_comments} comments
|
|
||||||
if json.before || json.after
|
if json.before || json.after
|
||||||
.view-more-links
|
.view-more-links
|
||||||
if json.before && !subreddit_front
|
if json.before && !subreddit_front
|
||||||
|
|
|
@ -84,7 +84,6 @@ html
|
||||||
if post.type === 't3'
|
if post.type === 't3'
|
||||||
-
|
-
|
||||||
var link = post;
|
var link = post;
|
||||||
link.author = data.username;
|
|
||||||
include components/link.pug
|
include components/link.pug
|
||||||
//-.entry.t3
|
//-.entry.t3
|
||||||
//- .upvotes
|
//- .upvotes
|
||||||
|
|
Loading…
Reference in New Issue