|
|
|
"use strict";
|
|
|
|
|
|
|
|
var topicsController = {},
|
|
|
|
async = require('async'),
|
|
|
|
S = require('string'),
|
|
|
|
validator = require('validator'),
|
|
|
|
nconf = require('nconf'),
|
|
|
|
qs = require('querystring'),
|
|
|
|
user = require('./../user'),
|
|
|
|
meta = require('./../meta'),
|
|
|
|
topics = require('./../topics'),
|
|
|
|
posts = require('../posts'),
|
|
|
|
privileges = require('../privileges'),
|
|
|
|
utils = require('./../../public/src/utils');
|
|
|
|
|
|
|
|
topicsController.get = function(req, res, next) {
|
|
|
|
var tid = req.params.topic_id,
|
|
|
|
page = req.query.page || 1,
|
|
|
|
uid = req.user ? req.user.uid : 0,
|
|
|
|
userPrivileges;
|
|
|
|
|
|
|
|
async.waterfall([
|
|
|
|
function (next) {
|
|
|
|
privileges.topics.get(tid, uid, next);
|
|
|
|
},
|
|
|
|
function (privileges, next) {
|
|
|
|
if (!privileges.read) {
|
|
|
|
return next(new Error('[[error:no-privileges]]'));
|
|
|
|
}
|
|
|
|
|
|
|
|
userPrivileges = privileges;
|
|
|
|
|
|
|
|
user.getSettings(uid, next);
|
|
|
|
},
|
|
|
|
function (settings, next) {
|
|
|
|
var postIndex = 0;
|
|
|
|
if (!settings.usePagination) {
|
|
|
|
postIndex = Math.max((req.params.post_index || 1) - (settings.postsPerPage - 1), 0);
|
|
|
|
} else if (!req.query.page) {
|
|
|
|
var index = Math.max(parseInt((req.params.post_index || 0), 10), 0);
|
|
|
|
page = Math.ceil((index + 1) / settings.postsPerPage);
|
|
|
|
}
|
|
|
|
|
|
|
|
var start = (page - 1) * settings.postsPerPage + postIndex,
|
|
|
|
end = start + settings.postsPerPage - 1;
|
|
|
|
|
|
|
|
topics.getTopicWithPosts(tid, uid, start, end, function (err, topicData) {
|
|
|
|
if (topicData) {
|
|
|
|
if (parseInt(topicData.deleted, 10) === 1 && !userPrivileges.view_deleted) {
|
|
|
|
return next(new Error('[[error:no-topic]]'));
|
|
|
|
}
|
|
|
|
topicData.currentPage = page;
|
|
|
|
}
|
|
|
|
next(err, topicData);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
function (topicData, next) {
|
|
|
|
var description = '';
|
|
|
|
|
|
|
|
if(topicData.posts.length) {
|
|
|
|
description = S(topicData.posts[0].content).stripTags().decodeHTMLEntities().s;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (description.length > 255) {
|
|
|
|
description = description.substr(0, 255) + '...';
|
|
|
|
}
|
|
|
|
|
|
|
|
description = validator.escape(description);
|
|
|
|
|
|
|
|
var ogImageUrl = '';
|
|
|
|
if (topicData.thumb) {
|
|
|
|
ogImageUrl = topicData.thumb;
|
|
|
|
} else if(topicData.posts.length && topicData.posts[0].user && topicData.posts[0].user.picture){
|
|
|
|
ogImageUrl = topicData.posts[0].user.picture;
|
|
|
|
} else if(meta.config['brand:logo']) {
|
|
|
|
ogImageUrl = meta.config['brand:logo'];
|
|
|
|
} else {
|
|
|
|
ogImageUrl = '/logo.png';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ogImageUrl.indexOf('http') === -1) {
|
|
|
|
ogImageUrl = nconf.get('url') + ogImageUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
description = description.replace(/\n/g, ' ');
|
|
|
|
|
|
|
|
res.locals.metaTags = [
|
|
|
|
{
|
|
|
|
name: "title",
|
|
|
|
content: topicData.title
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "description",
|
|
|
|
content: description
|
|
|
|
},
|
|
|
|
{
|
|
|
|
property: 'og:title',
|
|
|
|
content: topicData.title
|
|
|
|
},
|
|
|
|
{
|
|
|
|
property: 'og:description',
|
|
|
|
content: description
|
|
|
|
},
|
|
|
|
{
|
|
|
|
property: "og:type",
|
|
|
|
content: 'article'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
property: "og:url",
|
|
|
|
content: nconf.get('url') + '/topic/' + topicData.slug
|
|
|
|
},
|
|
|
|
{
|
|
|
|
property: 'og:image',
|
|
|
|
content: ogImageUrl
|
|
|
|
},
|
|
|
|
{
|
|
|
|
property: "og:image:url",
|
|
|
|
content: ogImageUrl
|
|
|
|
},
|
|
|
|
{
|
|
|
|
property: "article:published_time",
|
|
|
|
content: utils.toISOString(topicData.timestamp)
|
|
|
|
},
|
|
|
|
{
|
|
|
|
property: 'article:modified_time',
|
|
|
|
content: utils.toISOString(topicData.lastposttime)
|
|
|
|
},
|
|
|
|
{
|
|
|
|
property: 'article:section',
|
|
|
|
content: topicData.category.name
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
res.locals.linkTags = [
|
|
|
|
{
|
|
|
|
rel: 'alternate',
|
|
|
|
type: 'application/rss+xml',
|
|
|
|
href: nconf.get('url') + '/topic/' + tid + '.rss'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
rel: 'up',
|
|
|
|
href: nconf.get('url') + '/category/' + topicData.category.slug
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
next(null, topicData);
|
|
|
|
}
|
|
|
|
], function (err, data) {
|
|
|
|
if (err) {
|
|
|
|
if (err.message === '[[error:no-privileges]]') {
|
|
|
|
return res.locals.isAPI ? res.json(403, err.message) : res.redirect('403');
|
|
|
|
} else {
|
|
|
|
return res.locals.isAPI ? res.json(404, 'not-found') : res.redirect('404');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
data.privileges = userPrivileges;
|
|
|
|
|
|
|
|
var topic_url = tid + (req.params.slug ? '/' + req.params.slug : '');
|
|
|
|
var queryString = qs.stringify(req.query);
|
|
|
|
if(queryString.length) {
|
|
|
|
topic_url += '?' + queryString;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Paginator for noscript
|
|
|
|
data.pages = [];
|
|
|
|
for(var x=1; x<=data.pageCount; x++) {
|
|
|
|
data.pages.push({
|
|
|
|
page: x,
|
|
|
|
active: x === parseInt(page, 10)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
res.render('topic', data);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
topicsController.teaser = function(req, res, next) {
|
|
|
|
var tid = req.params.topic_id;
|
|
|
|
topics.getLatestUndeletedPid(tid, function(err, pid) {
|
|
|
|
if (err) {
|
|
|
|
return next(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!pid) {
|
|
|
|
return res.json(404, 'not-found');
|
|
|
|
}
|
|
|
|
|
|
|
|
posts.getPostSummaryByPids([pid], false, function(err, posts) {
|
|
|
|
if (err) {
|
|
|
|
return next(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Array.isArray(posts) || !posts.length) {
|
|
|
|
return res.json(404, 'not-found');
|
|
|
|
}
|
|
|
|
|
|
|
|
res.json(posts[0]);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = topicsController;
|