Any tools for quickly grabbing comments / comment count?

  1. grab the rss feeds for the posts
  2. grab the comments rss feed for each of these posts
  3. make it cache if you want to do multiple runs also handy for debugging bad feeds
  4. don’t do this code in a wordpress install but on a standalone place where you install magpierss/

Use a token that stores the latest date in each rss feed read for the next time you do an “aggregation”

a) Possibly re-combine it in a new RSS feed and publish that one for subscription.
b) Possibly re-post each post in the new twitter feed

header:

require_once 'magpierss/rss_fetch.inc';
define("MAGPIE_CACHE_DIR", "/home/yoursite/cache");
define("MAGPIE_CACHE_ON", true);

simple loop based on a file based storage of cache and last-datetime-counter:

$rss = fetch_rss('http://whateversite/rss.php');
$filename = "/your_path_to_datetime_token/timedatetoken.txt" ;
$fp = fopen($filename, 'r');
$lastdate = fread($fp, filesize($filename));    
fclose($fp);
$wroteLastDate = false; 
// read feed
foreach ($rss->items as $item) {
$published = $item['date_timestamp'];   
if ($published > $lastdate) { 
    if ($wroteLastDate == false) { 
        $fp = fopen($filename, 'w');
        fwrite($fp, $published);
        fclose($fp);    
        $wroteLastDate = true;
    }   
    $title = $itemAny tools for quickly grabbing comments / comment count?;
    $url   = $itemhttps://wordpress.stackexchange.com/questions/4105/any-tools-for-quickly-grabbing-comments-comment-count;
    $guid   = $item[guid];
    $description = $itemAny tools for quickly grabbing comments / comment count?;
    $description = strip_tags($description); 
            // now store it somewhere or e.g. post it to your owb blog via xmlrpc
}   
 }

So the same loop needed for the comments which is the form /feed , so
you call with each post you find above ($url) a new exact the same loop but then for ($url)/feed. These are the comments, same loop, same procedure.

The line “// now store it somewhere or e.g. post it to your owb blog via xmlrpc” now means you could call your own aggregator blog xmlrpc to add either a new post or a new comment to an existing post.

1) adding a new post is pretty default, you could call this function:

function wpPostXMLRPC($title,$body,$rpcurl,$username,$password,$categories=array(867)) {
$categories = implode(",", $categories);
$XML = "<title>$title</title>" . "<category>$categories</category>" . $body;
$params = array('','',$username,$password,$XML,1);
$request = xmlrpc_encode_request('blogger.newPost',$params);
$ch = curl_init();
curl_setopt($ch, CURLOPT_POSTFIELDS, $request);
curl_setopt($ch, CURLOPT_URL, $rpcurl);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 1);
curl_exec($ch);
curl_close($ch);
 }

and the blog is entered in your aggregator blog. Now for the comment:
you have to check that the post is already present in your blog before adding a comment via XMLRPC. So first do the check, then do the comment (and actually maybe do that even before adding a new post).

Add a new comment via: wp.newComment (http://codex.wordpress.org/XML-RPC_wp)

I you are close to the aggregator application database you can skip XMLRPC and do instead of XMLRPC direct database calls to validate e.g. if the post is already present, grab the id, then check if the comment is present, if not store it, if updated, update it, if deleted, then delete it (to be completely in sync).

(you need to delete comments and posts on your side to prevent people calling you to delete a post or comment because of all kinds of reasons, sometimes years later) –> leading to a decision on how long you want to keep aggregated posts and comments for external display.

I would run this scheduled rss checker and updater as a seperate application and not in the same application as where the presentation layer is to make it scalable etc…

IMHO