@ -19,7 +19,6 @@ var RDB = require('./redis.js'),
Posts . getPostsByTid = function ( tid , start , end , callback ) {
Posts . getPostsByTid = function ( tid , start , end , callback ) {
RDB . lrange ( 'tid:' + tid + ':posts' , start , end , function ( err , pids ) {
RDB . lrange ( 'tid:' + tid + ':posts' , start , end , function ( err , pids ) {
RDB . handle ( err ) ;
RDB . handle ( err ) ;
if ( pids . length ) {
if ( pids . length ) {
@ -123,8 +122,9 @@ var RDB = require('./redis.js'),
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 ) {
plugins . fireHook ( 'filter:post.get' , data , function ( data ) {
plugins . fireHook ( 'filter:post.get' , data , function ( err , newData ) {
callback ( data ) ;
if ( ! err ) callback ( newData ) ;
else callback ( data ) ;
} ) ;
} ) ;
} else
} else
console . log ( err ) ;
console . log ( err ) ;
@ -154,28 +154,23 @@ var RDB = require('./redis.js'),
RDB . hset ( 'post:' + pid , field , value ) ;
RDB . hset ( 'post:' + pid , field , value ) ;
}
}
/* getPostsByPids using redis's multi pipeline */
Posts . getPostsByPids = function ( pids , callback ) {
Posts . getPostsByPids = function ( pids , callback ) {
var posts = [ ]
var posts = [ ] ,
var multi = RDB . multi ( ) ;
multi = RDB . multi ( ) ;
for ( v in pids ) {
for ( var x = 0 , numPids = pids . length ; x < numPids ; x ++ ) {
var _pid = pids [ v ]
multi . hgetall ( "post:" + pids [ x ] ) ;
multi . hgetall ( "post:" + _pid ) ;
}
}
multi . exec ( function ( err , replies ) {
multi . exec ( function ( err , replies ) {
async . eachSeries ( replies , function ( postData , _callback ) {
async . map ( replies , function ( postData , _callback ) {
if ( postData ) {
if ( postData ) {
postData . relativeTime = new Date ( parseInt ( postData . timestamp , 10 ) ) . toISOString ( ) ;
postData . relativeTime = new Date ( parseInt ( postData . timestamp , 10 ) ) . toISOString ( ) ;
postData . post _rep = postData . reputation ;
postData . post _rep = postData . reputation ;
postData [ 'edited-class' ] = postData . editor !== '' ? '' : 'none' ;
postData [ 'edited-class' ] = postData . editor !== '' ? '' : 'none' ;
postData [ 'relativeEditTime' ] = postData . edited !== '0' ? ( new Date ( parseInt ( postData . edited , 10 ) ) . toISOString ( ) ) : '' ;
postData [ 'relativeEditTime' ] = postData . edited !== '0' ? ( new Date ( parseInt ( postData . edited , 10 ) ) . toISOString ( ) ) : '' ;
if ( postData . uploadedImages ) {
if ( postData . uploadedImages ) {
try {
try {
postData . uploadedImages = JSON . parse ( postData . uploadedImages ) ;
postData . uploadedImages = JSON . parse ( postData . uploadedImages ) ;
} catch ( err ) {
} catch ( err ) {
@ -188,15 +183,13 @@ var RDB = require('./redis.js'),
postTools . parse ( postData . content , function ( err , content ) {
postTools . parse ( postData . content , function ( err , content ) {
postData . content = content ;
postData . content = content ;
posts . push ( postData ) ;
_callback ( null , postData ) ;
} ) ;
} ) ;
return _callback ( null )
} else {
}
_callback ( null ) ;
else {
return _callback ( null )
}
}
} , function ( err ) {
} , function ( err , posts ) {
if ( ! err ) {
if ( ! err ) {
return callback ( null , posts ) ;
return callback ( null , posts ) ;
} else {
} else {
return callback ( err , null ) ;
return callback ( err , null ) ;
@ -205,37 +198,6 @@ var RDB = require('./redis.js'),
} )
} )
}
}
Posts . getPostsByPids _original = function ( pids , callback ) {
var posts = [ ] ;
async . eachSeries ( pids , function ( pid , callback ) {
Posts . getPostData ( pid , function ( postData ) {
if ( postData ) {
postData . relativeTime = new Date ( parseInt ( postData . timestamp , 10 ) ) . toISOString ( ) ;
postData . post _rep = postData . reputation ;
postData [ 'edited-class' ] = postData . editor !== '' ? '' : 'none' ;
postData [ 'relativeEditTime' ] = postData . edited !== '0' ? ( new Date ( parseInt ( postData . edited , 10 ) ) . toISOString ( ) ) : '' ;
postTools . parse ( postData . content , function ( err , content ) {
postData . content = content ;
posts . push ( postData ) ;
callback ( null ) ;
} ) ;
}
} ) ;
} , function ( err ) {
if ( ! err ) {
callback ( null , posts ) ;
} else {
callback ( err , null ) ;
}
} ) ;
}
Posts . get _cid _by _pid = function ( pid , callback ) {
Posts . get _cid _by _pid = function ( pid , callback ) {
Posts . getPostField ( pid , 'tid' , function ( tid ) {
Posts . getPostField ( pid , 'tid' , function ( tid ) {
if ( tid ) {
if ( tid ) {
@ -326,7 +288,9 @@ var RDB = require('./redis.js'),
RDB . incr ( 'global:next_post_id' , function ( err , pid ) {
RDB . incr ( 'global:next_post_id' , function ( err , pid ) {
RDB . handle ( err ) ;
RDB . handle ( err ) ;
plugins . fireHook ( 'filter:post.save' , content , function ( content ) {
plugins . fireHook ( 'filter:post.save' , content , function ( err , newContent ) {
if ( ! err ) content = newContent ;
var timestamp = Date . now ( ) ,
var timestamp = Date . now ( ) ,
postData = {
postData = {
'pid' : pid ,
'pid' : pid ,
@ -376,7 +340,9 @@ var RDB = require('./redis.js'),
async . parallel ( {
async . parallel ( {
content : function ( next ) {
content : function ( next ) {
plugins . fireHook ( 'filter:post.get' , postData , function ( postData ) {
plugins . fireHook ( 'filter:post.get' , postData , function ( err , newPostData ) {
if ( ! err ) postData = newPostData ;
postTools . parse ( postData . content , function ( err , content ) {
postTools . parse ( postData . content , function ( err , content ) {
next ( null , content ) ;
next ( null , content ) ;
} ) ;
} ) ;