From 53dfe8b307b3cc599aef1db98292b4b2da59d1d6 Mon Sep 17 00:00:00 2001 From: Chris Leppanen <chris.leppanen@gmail.com> Date: Tue, 25 Sep 2012 21:38:13 -0700 Subject: [PATCH] Simplify forced updating. --- plugins/FeedsProcessor.inc | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/plugins/FeedsProcessor.inc b/plugins/FeedsProcessor.inc index 7cf4706e..c0c9ace4 100644 --- a/plugins/FeedsProcessor.inc +++ b/plugins/FeedsProcessor.inc @@ -109,9 +109,10 @@ abstract class FeedsProcessor extends FeedsPlugin { if (!($entity_id = $this->existingEntityId($source, $parser_result)) || ($this->config['update_existing'] != FEEDS_SKIP_EXISTING)) { - // Only proceed if item has actually changed. + // Only proceed if item previously exists and forced updating is not + // enabled. $hash = $this->hash($item); - if (!empty($entity_id) && $hash == $this->getHash($entity_id)) { + if ($entity_id && !$this->config['skip_hash_check'] && $hash == $this->getHash($entity_id)) { continue; } @@ -652,15 +653,10 @@ abstract class FeedsProcessor extends FeedsPlugin { /** * Retrieves the MD5 hash of $entity_id from the database. * - * When "skip hash check" is set to TRUE, returns dummy md5. - * * @return string * Empty string if no item is found, hash otherwise. */ protected function getHash($entity_id) { - if ($this->config['skip_hash_check']) { - return '00000000000000000000000000000000'; - } if ($hash = db_query("SELECT hash FROM {feeds_item} WHERE entity_type = :type AND entity_id = :id", array(':type' => $this->entityType(), ':id' => $entity_id))->fetchField()) { // Return with the hash. -- GitLab