From 862fe7c167583946f2ac6f63af4fdd45126403f6 Mon Sep 17 00:00:00 2001
From: Alex Barth <alex_b@53995.no-reply.drupal.org>
Date: Wed, 28 Apr 2010 22:57:57 +0000
Subject: [PATCH] #653412 rbrandon: Do not create items older than expiry time.

---
 CHANGELOG.txt                  | 1 +
 plugins/FeedsDataProcessor.inc | 6 ++++++
 2 files changed, 7 insertions(+)

diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index f21fcbab..57ab0cde 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -3,6 +3,7 @@
 Feeds 6.x 1.0 xxxxxxxxxxxxxxxxxxxx
 ----------------------------------
 
+- #653412 rbrandon: Do not create items older than expiry time.
 - #725392 nicholasThompson: FeedsBatch does not check feeds folder exists before
   uploading.
 - #776972 lyricnz: Messages use plural when describing single item.
diff --git a/plugins/FeedsDataProcessor.inc b/plugins/FeedsDataProcessor.inc
index d49355b9..ddc03860 100644
--- a/plugins/FeedsDataProcessor.inc
+++ b/plugins/FeedsDataProcessor.inc
@@ -18,6 +18,7 @@ class FeedsDataProcessor extends FeedsProcessor {
 
     // Count number of created and updated nodes.
     $inserted  = $updated = 0;
+    $expiry_time = $this->expiryTime();
 
     while ($item = $batch->shiftItem()) {
       if (!($id = $this->existingItemId($item, $source)) || $this->config['update_existing']) {
@@ -27,6 +28,11 @@ class FeedsDataProcessor extends FeedsProcessor {
         $data['timestamp'] = FEEDS_REQUEST_TIME;
         $data = $this->map($item, $data);
 
+        // Only save if this item is not expired.
+        if ($expiry_time != FEEDS_EXPIRE_NEVER && $data['timestamp'] < (FEEDS_REQUEST_TIME - $expiry_time)) {
+          continue;
+        }
+
         // Save data.
         if ($id) {
           $data['id'] = $id;
-- 
GitLab