mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-06 22:15:48 +01:00
closes #6850
This commit is contained in:
@@ -11,4 +11,10 @@ if (!databaseName) {
|
|||||||
|
|
||||||
var primaryDB = require('./database/' + databaseName);
|
var primaryDB = require('./database/' + databaseName);
|
||||||
|
|
||||||
|
primaryDB.parseIntField = function (data, field) {
|
||||||
|
if (data.hasOwnProperty(field)) {
|
||||||
|
data[field] = parseInt(data[field], 10);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
module.exports = primaryDB;
|
module.exports = primaryDB;
|
||||||
|
|||||||
@@ -5,98 +5,58 @@ var async = require('async');
|
|||||||
var db = require('../database');
|
var db = require('../database');
|
||||||
var plugins = require('../plugins');
|
var plugins = require('../plugins');
|
||||||
|
|
||||||
|
const intFields = ['uid', 'pid', 'tid', 'deleted'];
|
||||||
|
|
||||||
module.exports = function (Posts) {
|
module.exports = function (Posts) {
|
||||||
Posts.getPostData = function (pid, callback) {
|
|
||||||
async.waterfall([
|
|
||||||
function (next) {
|
|
||||||
db.getObject('post:' + pid, next);
|
|
||||||
},
|
|
||||||
function (data, next) {
|
|
||||||
plugins.fireHook('filter:post.getPostData', { post: data }, next);
|
|
||||||
},
|
|
||||||
function (data, next) {
|
|
||||||
next(null, data.post);
|
|
||||||
},
|
|
||||||
], callback);
|
|
||||||
};
|
|
||||||
|
|
||||||
Posts.getPostsData = function (pids, callback) {
|
|
||||||
async.waterfall([
|
|
||||||
function (next) {
|
|
||||||
db.getObjects(pids.map(pid => 'post:' + pid), next);
|
|
||||||
},
|
|
||||||
function (data, next) {
|
|
||||||
plugins.fireHook('filter:post.getPostsData', { posts: data }, next);
|
|
||||||
},
|
|
||||||
function (data, next) {
|
|
||||||
next(null, data.posts);
|
|
||||||
},
|
|
||||||
], callback);
|
|
||||||
};
|
|
||||||
|
|
||||||
Posts.getPostField = function (pid, field, callback) {
|
|
||||||
async.waterfall([
|
|
||||||
function (next) {
|
|
||||||
Posts.getPostFields(pid, [field], next);
|
|
||||||
},
|
|
||||||
function (data, next) {
|
|
||||||
next(null, data[field]);
|
|
||||||
},
|
|
||||||
], callback);
|
|
||||||
};
|
|
||||||
|
|
||||||
Posts.getPostFields = function (pid, fields, callback) {
|
|
||||||
async.waterfall([
|
|
||||||
function (next) {
|
|
||||||
db.getObjectFields('post:' + pid, fields, next);
|
|
||||||
},
|
|
||||||
function (data, next) {
|
|
||||||
data.pid = pid;
|
|
||||||
|
|
||||||
plugins.fireHook('filter:post.getFields', { posts: [data], fields: fields }, next);
|
|
||||||
},
|
|
||||||
function (data, next) {
|
|
||||||
next(null, (data && Array.isArray(data.posts) && data.posts.length) ? data.posts[0] : null);
|
|
||||||
},
|
|
||||||
], callback);
|
|
||||||
};
|
|
||||||
|
|
||||||
Posts.getPostsFields = function (pids, fields, callback) {
|
Posts.getPostsFields = function (pids, fields, callback) {
|
||||||
if (!Array.isArray(pids) || !pids.length) {
|
if (!Array.isArray(pids) || !pids.length) {
|
||||||
return callback(null, []);
|
return callback(null, []);
|
||||||
}
|
}
|
||||||
|
|
||||||
var keys = pids.map(function (pid) {
|
var keys = pids.map(pid => 'post:' + pid);
|
||||||
return 'post:' + pid;
|
|
||||||
});
|
|
||||||
|
|
||||||
async.waterfall([
|
async.waterfall([
|
||||||
function (next) {
|
function (next) {
|
||||||
|
if (fields.length) {
|
||||||
db.getObjectsFields(keys, fields, next);
|
db.getObjectsFields(keys, fields, next);
|
||||||
|
} else {
|
||||||
|
db.getObjects(keys, next);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
function (posts, next) {
|
function (posts, next) {
|
||||||
plugins.fireHook('filter:post.getFields', { posts: posts, fields: fields }, next);
|
plugins.fireHook('filter:post.getFields', { posts: posts, fields: fields }, next);
|
||||||
},
|
},
|
||||||
function (data, next) {
|
function (data, next) {
|
||||||
next(null, (data && Array.isArray(data.posts)) ? data.posts : null);
|
data.posts.forEach(modifyPost);
|
||||||
|
next(null, Array.isArray(data.posts) ? data.posts : null);
|
||||||
},
|
},
|
||||||
], callback);
|
], callback);
|
||||||
};
|
};
|
||||||
|
|
||||||
Posts.setPostField = function (pid, field, value, callback) {
|
Posts.getPostData = function (pid, callback) {
|
||||||
async.waterfall([
|
Posts.getPostsFields([pid], [], function (err, posts) {
|
||||||
function (next) {
|
callback(err, posts && posts.length ? posts[0] : null);
|
||||||
db.setObjectField('post:' + pid, field, value, next);
|
});
|
||||||
},
|
|
||||||
function (next) {
|
|
||||||
var data = {
|
|
||||||
pid: pid,
|
|
||||||
};
|
};
|
||||||
data[field] = value;
|
|
||||||
plugins.fireHook('action:post.setFields', { data: data });
|
Posts.getPostsData = function (pids, callback) {
|
||||||
next();
|
Posts.getPostsFields(pids, [], callback);
|
||||||
},
|
};
|
||||||
], callback);
|
|
||||||
|
Posts.getPostField = function (pid, field, callback) {
|
||||||
|
Posts.getPostFields(pid, [field], function (err, post) {
|
||||||
|
callback(err, post ? post[field] : null);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
Posts.getPostFields = function (pid, fields, callback) {
|
||||||
|
Posts.getPostsFields([pid], fields, function (err, posts) {
|
||||||
|
callback(err, posts ? posts[0] : null);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
Posts.setPostField = function (pid, field, value, callback) {
|
||||||
|
Posts.setPostFields(pid, { [field]: value }, callback);
|
||||||
};
|
};
|
||||||
|
|
||||||
Posts.setPostFields = function (pid, data, callback) {
|
Posts.setPostFields = function (pid, data, callback) {
|
||||||
@@ -112,3 +72,9 @@ module.exports = function (Posts) {
|
|||||||
], callback);
|
], callback);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
function modifyPost(post) {
|
||||||
|
if (post) {
|
||||||
|
intFields.forEach(field => db.parseIntField(post, field));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -98,7 +98,7 @@ function modifyTopic(topic) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
intFields.forEach(field => parseIntField(topic, field));
|
intFields.forEach(field => db.parseIntField(topic, field));
|
||||||
|
|
||||||
if (topic.hasOwnProperty('title')) {
|
if (topic.hasOwnProperty('title')) {
|
||||||
topic.titleRaw = topic.title;
|
topic.titleRaw = topic.title;
|
||||||
@@ -124,9 +124,3 @@ function modifyTopic(topic) {
|
|||||||
topic.votes = topic.upvotes - topic.downvotes;
|
topic.votes = topic.upvotes - topic.downvotes;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function parseIntField(topic, field) {
|
|
||||||
if (topic.hasOwnProperty(field)) {
|
|
||||||
topic[field] = parseInt(topic[field], 10);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
Reference in New Issue
Block a user