mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-02 20:16:04 +01:00
updated all RDB.hget in posts to use getPostField. new post filters for retrieving and saving posts. made editPost saving synchronous.
This commit is contained in:
@@ -61,9 +61,20 @@ var RDB = require('./redis.js'),
|
|||||||
|
|
||||||
PostTools.edit = function(uid, pid, title, content) {
|
PostTools.edit = function(uid, pid, title, content) {
|
||||||
var success = function() {
|
var success = function() {
|
||||||
posts.setPostField(pid, 'content', content);
|
async.waterfall([
|
||||||
|
function(next) {
|
||||||
posts.setPostField(pid, 'edited', Date.now());
|
posts.setPostField(pid, 'edited', Date.now());
|
||||||
|
next(null);
|
||||||
|
},
|
||||||
|
function(next) {
|
||||||
posts.setPostField(pid, 'editor', uid);
|
posts.setPostField(pid, 'editor', uid);
|
||||||
|
next(null);
|
||||||
|
},
|
||||||
|
function(next) {
|
||||||
|
posts.setPostField(pid, 'content', content);
|
||||||
|
next(null);
|
||||||
|
}
|
||||||
|
]);
|
||||||
|
|
||||||
postSearch.remove(pid, function() {
|
postSearch.remove(pid, function() {
|
||||||
postSearch.index(content, pid);
|
postSearch.index(content, pid);
|
||||||
|
|||||||
43
src/posts.js
43
src/posts.js
@@ -24,9 +24,16 @@ var RDB = require('./redis.js'),
|
|||||||
RDB.handle(err);
|
RDB.handle(err);
|
||||||
|
|
||||||
if (pids.length) {
|
if (pids.length) {
|
||||||
|
plugins.fireHook('filter:post.getTopic', pids, function(err, posts) {
|
||||||
|
if (!err & 0 < posts.length) {
|
||||||
Posts.getPostsByPids(pids, function(err, posts) {
|
Posts.getPostsByPids(pids, function(err, posts) {
|
||||||
|
plugins.fireHook('action:post.gotTopic', posts);
|
||||||
callback(posts);
|
callback(posts);
|
||||||
});
|
});
|
||||||
|
} else {
|
||||||
|
callback(posts);
|
||||||
|
}
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
callback([]);
|
callback([]);
|
||||||
}
|
}
|
||||||
@@ -131,6 +138,7 @@ var RDB = require('./redis.js'),
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: this function is never called except from some debug route. clean up?
|
||||||
Posts.getPostData = function(pid, callback) {
|
Posts.getPostData = function(pid, callback) {
|
||||||
RDB.hgetall('post:' + pid, function(err, data) {
|
RDB.hgetall('post:' + pid, function(err, data) {
|
||||||
if (err === null) {
|
if (err === null) {
|
||||||
@@ -146,7 +154,14 @@ var RDB = require('./redis.js'),
|
|||||||
Posts.getPostFields = function(pid, fields, callback) {
|
Posts.getPostFields = function(pid, fields, callback) {
|
||||||
RDB.hmgetObject('post:' + pid, fields, function(err, data) {
|
RDB.hmgetObject('post:' + pid, fields, function(err, data) {
|
||||||
if (err === null) {
|
if (err === null) {
|
||||||
|
// TODO: I think the plugins system needs an optional 'parameters' paramter so I don't have to do this:
|
||||||
|
data = data || {};
|
||||||
|
data.pid = pid;
|
||||||
|
data.fields = fields;
|
||||||
|
|
||||||
|
plugins.fireHook('filter:post.getFields', data, function(err, data) {
|
||||||
callback(data);
|
callback(data);
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
console.log(err);
|
console.log(err);
|
||||||
}
|
}
|
||||||
@@ -155,15 +170,28 @@ var RDB = require('./redis.js'),
|
|||||||
|
|
||||||
Posts.getPostField = function(pid, field, callback) {
|
Posts.getPostField = function(pid, field, callback) {
|
||||||
RDB.hget('post:' + pid, field, function(err, data) {
|
RDB.hget('post:' + pid, field, function(err, data) {
|
||||||
if (err === null)
|
if (err === null) {
|
||||||
|
// TODO: I think the plugins system needs an optional 'parameters' paramter so I don't have to do this:
|
||||||
|
data = data || {};
|
||||||
|
data.pid = pid;
|
||||||
|
data.field = field;
|
||||||
|
|
||||||
|
plugins.fireHook('filter:post.getField', data, function(err, data) {
|
||||||
callback(data);
|
callback(data);
|
||||||
else
|
});
|
||||||
|
} else {
|
||||||
console.log(err);
|
console.log(err);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
Posts.setPostField = function(pid, field, value) {
|
Posts.setPostField = function(pid, field, value, done) {
|
||||||
RDB.hset('post:' + pid, field, value);
|
RDB.hset('post:' + pid, field, value);
|
||||||
|
plugins.fireHook('action:post.setField', {
|
||||||
|
'pid': pid,
|
||||||
|
'field': field,
|
||||||
|
'value': value
|
||||||
|
}, done);
|
||||||
}
|
}
|
||||||
|
|
||||||
Posts.getPostsByPids = function(pids, callback) {
|
Posts.getPostsByPids = function(pids, callback) {
|
||||||
@@ -402,12 +430,17 @@ var RDB = require('./redis.js'),
|
|||||||
Posts.getPostsByUid = function(uid, start, end, callback) {
|
Posts.getPostsByUid = function(uid, start, end, callback) {
|
||||||
|
|
||||||
user.getPostIds(uid, start, end, function(pids) {
|
user.getPostIds(uid, start, end, function(pids) {
|
||||||
|
|
||||||
if (pids && pids.length) {
|
if (pids && pids.length) {
|
||||||
|
plugins.fireHook('filter:post.getTopic', pids, function(err, posts) {
|
||||||
|
if (!err & 0 < posts.length) {
|
||||||
Posts.getPostsByPids(pids, function(err, posts) {
|
Posts.getPostsByPids(pids, function(err, posts) {
|
||||||
|
plugins.fireHook('action:post.gotTopic', posts);
|
||||||
callback(posts);
|
callback(posts);
|
||||||
});
|
});
|
||||||
|
} else {
|
||||||
|
callback(posts);
|
||||||
|
}
|
||||||
|
});
|
||||||
} else
|
} else
|
||||||
callback([]);
|
callback([]);
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -303,7 +303,7 @@ var RDB = require('./redis.js'),
|
|||||||
|
|
||||||
pids.reverse();
|
pids.reverse();
|
||||||
async.detectSeries(pids, function(pid, next) {
|
async.detectSeries(pids, function(pid, next) {
|
||||||
RDB.hget('post:' + pid, 'deleted', function(err, deleted) {
|
posts.getPostField(pid, 'deleted', function(deleted) {
|
||||||
if (deleted === '0') next(true);
|
if (deleted === '0') next(true);
|
||||||
else next(false);
|
else next(false);
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user