Newer
Older
Alex Barth
committed
/**
* @file
* Class definition of FeedsNodeProcessor.
*/
// Create or delete FEEDS_NODE_BATCH_SIZE at a time.
define('FEEDS_NODE_BATCH_SIZE', 50);
// Deprecated. Use FEEDS_SKIPE_EXISTING, FEEDS_REPLACE_EXISTNG,
// FEEDS_UPDATE_EXISTING instead.
define('FEEDS_NODE_SKIP_EXISTING', 0);
define('FEEDS_NODE_REPLACE_EXISTING', 1);
define('FEEDS_NODE_UPDATE_EXISTING', 2);
// "Use the present default format"
define('FEEDS_NODE_DEFAULT_FORMAT', -1);
Alex Barth
committed
/**
* Creates nodes from feed items.
*/
class FeedsNodeProcessor extends FeedsProcessor {
Alex Barth
committed
/**
* Implements FeedsProcessor::process().
Alex Barth
committed
*/
public function process(FeedsImportBatch $batch, FeedsSource $source) {
Alex Barth
committed
// Keep track of processed items in this pass, set total number of items.
if (!$batch->getTotal(FEEDS_PROCESSING)) {
$batch->setTotal(FEEDS_PROCESSING, $batch->getItemCount());
}
Alex Barth
committed
while ($item = $batch->shiftItem()) {
Alex Barth
committed
// Create/update if item does not exist or update existing is enabled.
if (!($nid = $this->existingItemId($batch, $source)) || ($this->config['update_existing'] != FEEDS_SKIP_EXISTING)) {
// Only proceed if item has actually changed.
$hash = $this->hash($item);
if (!empty($nid) && $hash == $this->getHash($nid)) {
continue;
Alex Barth
committed
}
$node = $this->buildNode($nid, $source->feed_nid);
$node->feeds_node_item->hash = $hash;
// Map and save node. If errors occur don't stop but report them.
$this->map($batch, $node);
node_save($node);
if (!empty($nid)) {
$batch->updated++;
}
else {
$batch->created++;
}
}
catch (Exception $e) {
drupal_set_message($e->getMessage(), 'warning');
watchdog('feeds', $e->getMessage(), array(), WATCHDOG_WARNING);
}
$processed++;
if ($processed >= variable_get('feeds_node_batch_size', FEEDS_NODE_BATCH_SIZE)) {
$batch->setProgress(FEEDS_PROCESSING, $batch->created + $batch->updated);
return;
Alex Barth
committed
// Set messages.
drupal_set_message(format_plural($batch->created, 'Created @number @type node.', 'Created @number @type nodes.', array('@number' => $batch->created, '@type' => node_type_get_name($this->config['content_type']))));
Alex Barth
committed
}
drupal_set_message(format_plural($batch->updated, 'Updated @number @type node.', 'Updated @number @type nodes.', array('@number' => $batch->updated, '@type' => node_type_get_name($this->config['content_type']))));
Alex Barth
committed
}
else {
drupal_set_message(t('There is no new content.'));
}
$batch->setProgress(FEEDS_PROCESSING, FEEDS_BATCH_COMPLETE);
* Implements FeedsProcessor::clear().
Alex Barth
committed
*/
public function clear(FeedsBatch $batch, FeedsSource $source) {
if (!$batch->getTotal(FEEDS_CLEARING)) {
$total = db_query("SELECT COUNT(n.nid) FROM {node} n JOIN {feeds_node_item} fn ON n.nid = fn.nid WHERE fn.id = :id AND fn.feed_nid = :nid", array(':id' => $source->id, ':nid' => $source->feed_nid))->fetchField();
$batch->setTotal(FEEDS_CLEARING, $total);
$count = variable_get('feeds_node_batch_size', FEEDS_NODE_BATCH_SIZE);
$nids = array();
$nodes = db_query_range("SELECT n.nid FROM {node} n JOIN {feeds_node_item} fn ON n.nid = fn.nid WHERE fn.id = :id AND fn.feed_nid = :nid", 0, $count, array(':id' => $source->id, ':nid' => $source->feed_nid));
node_delete_multiple($nids);
if (db_query_range("SELECT 1 FROM {node} n JOIN {feeds_node_item} fn ON n.nid = fn.nid WHERE fn.id = :id AND fn.feed_nid = :nid", 0, 1, array(':id' => $source->id, ':nid' => $source->feed_nid))->fetchField()) {
$batch->setProgress(FEEDS_CLEARING, $batch->deleted);
return;
Alex Barth
committed
}
// Set message.
drupal_set_message(format_plural($batch->deleted, 'Deleted @number node.', 'Deleted @number nodes.', array('@number' => $batch->deleted)));
Alex Barth
committed
}
else {
drupal_set_message(t('There is no content to be deleted.'));
}
$batch->setProgress(FEEDS_CLEARING, FEEDS_BATCH_COMPLETE);
Alex Barth
committed
}
/**
* Implement expire().
Alex Barth
committed
public function expire($time = NULL) {
if ($time === NULL) {
$time = $this->expiryTime();
}
if ($time == FEEDS_EXPIRE_NEVER) {
return;
}
$count = variable_get('feeds_node_batch_size', FEEDS_NODE_BATCH_SIZE);
$nodes = db_query_range("SELECT n.nid FROM {node} n JOIN {feeds_node_item} fni ON n.nid = fni.nid WHERE fni.id = :id AND n.created < :created", 0, $count, array(':id' => $this->id, ':created' => REQUEST_TIME - $time));
Alex Barth
committed
}
if (db_query_range("SELECT 1 FROM {node} n JOIN {feeds_node_item} fni ON n.nid = fni.nid WHERE fni.id = :id AND n.created < :created", 0, 1, array(':id' => $this->id, ':created' => REQUEST_TIME - $time))->fetchField()) {
return FEEDS_BATCH_ACTIVE;
}
return FEEDS_BATCH_COMPLETE;
Alex Barth
committed
}
/**
* Return expiry time.
*/
public function expiryTime() {
return $this->config['expire'];
}
/**
* Override parent::configDefaults().
*/
public function configDefaults() {
$type = isset($types['article']) ? 'article' : key($types);
'content_type' => $type,
'input_format' => FEEDS_NODE_DEFAULT_FORMAT,
'update_existing' => FEEDS_SKIP_EXISTING,
Alex Barth
committed
'expire' => FEEDS_EXPIRE_NEVER,
Alex Barth
committed
'mappings' => array(),
'author' => 0,
Alex Barth
committed
/**
* Override parent::configForm().
*/
public function configForm(&$form_state) {
$types = node_type_get_names();
array_walk($types, 'check_plain');
Alex Barth
committed
$form = array();
$form['content_type'] = array(
'#type' => 'select',
'#title' => t('Content type'),
'#description' => t('Select the content type for the nodes to be created. <strong>Note:</strong> Users with "import !feed_id feeds" permissions will be able to <strong>import</strong> nodes of the content type selected here regardless of the node level permissions. Further, users with "clear !feed_id permissions" will be able to <strong>delete</strong> imported nodes regardless of their node level permissions.', array('!feed_id' => $this->id)),
Alex Barth
committed
'#options' => $types,
'#default_value' => $this->config['content_type'],
);
$format_options = array(FEEDS_NODE_DEFAULT_FORMAT => t('Default format'));
global $user;
$formats = filter_formats($user);
foreach ($formats as $format) {
$format_options[$format->format] = check_plain($format->name);
}
$form['input_format'] = array(
'#type' => 'select',
'#title' => t('Input format'),
'#description' => t('Select the input format for the body field of the nodes to be created.'),
'#options' => $format_options,
'#default_value' => $this->config['input_format'],
);
$form['author'] = array(
'#type' => 'textfield',
'#title' => t('Author'),
'#description' => t('Select the author of the nodes to be created - leave empty to assign "anonymous".'),
'#autocomplete_path' => 'user/autocomplete',
'#default_value' => empty($author->name) ? 'anonymous' : check_plain($author->name),
);
Alex Barth
committed
$period = drupal_map_assoc(array(FEEDS_EXPIRE_NEVER, 3600, 10800, 21600, 43200, 86400, 259200, 604800, 604800 * 4, 604800 * 12, 604800 * 24, 31536000), 'feeds_format_expire');
$form['expire'] = array(
'#type' => 'select',
'#title' => t('Expire nodes'),
'#options' => $period,
'#description' => t('Select after how much time nodes should be deleted. The node\'s published date will be used for determining the node\'s age, see Mapping settings.'),
'#default_value' => $this->config['expire'],
);
'#type' => 'radios',
'#description' => t('Select how existing nodes should be updated. Existing nodes will be determined using mappings that are a "unique target".'),
'#options' => array(
FEEDS_SKIP_EXISTING => 'Do not update existing nodes',
FEEDS_REPLACE_EXISTING => 'Replace existing nodes',
FEEDS_UPDATE_EXISTING => 'Update existing nodes (slower than replacing them)',
'#default_value' => $this->config['update_existing'],
);
Alex Barth
committed
return $form;
}
/**
* Override parent::configFormValidate().
*/
public function configFormValidate(&$values) {
$values['author'] = $author->uid;
}
else {
$values['author'] = 0;
}
}
Alex Barth
committed
/**
* Reschedule if expiry time changes.
*/
public function configFormSubmit(&$values) {
if ($this->config['expire'] != $values['expire']) {
feeds_reschedule($this->id);
}
parent::configFormSubmit($values);
Alex Barth
committed
}
Alex Barth
committed
/**
* Override setTargetElement to operate on a target item that is a node.
*/
public function setTargetElement($target_node, $target_element, $value) {
if (in_array($target_element, array('url', 'guid'))) {
$target_node->feeds_node_item->$target_element = $value;
}
elseif (in_array($target_element, array('title', 'status', 'created', 'nid', 'uid'))) {
Alex Barth
committed
$target_node->$target_element = $value;
}
}
/**
* Return available mapping targets.
*/
public function getMappingTargets() {
$type = node_type_get_type($this->config['content_type']);
$targets = array();
if ($type->has_title) {
$targets['title'] = array(
'description' => t('The title of the node.'),
$targets += array(
'nid' => array(
'name' => t('Node ID'),
'description' => t('The nid of the node. NOTE: use this feature with care, node ids are usually assigned by Drupal.'),
'optional_unique' => TRUE,
),
'uid' => array(
'name' => t('User ID'),
'description' => t('The Drupal user ID of the node author.'),
),
'status' => array(
'name' => t('Published status'),
'description' => t('Whether a node is published or not. 1 stands for published, 0 for not published.'),
),
'created' => array(
'name' => t('Published date'),
'description' => t('The UNIX time when a node has been published.'),
),
'url' => array(
'name' => t('URL'),
'description' => t('The external URL of the node. E. g. the feed item URL in the case of a syndication feed. May be unique.'),
'optional_unique' => TRUE,
),
'guid' => array(
'name' => t('GUID'),
'description' => t('The external GUID of the node. E. g. the feed item GUID in the case of a syndication feed. May be unique.'),
'optional_unique' => TRUE,
),
);
// Let other modules expose mapping targets.
self::loadMappers();
drupal_alter('feeds_node_processor_targets', $targets, $this->config['content_type']);
Alex Barth
committed
return $targets;
}
/**
* Get nid of an existing feed item node if available.
*/
protected function existingItemId(FeedsImportBatch $batch, FeedsSource $source) {
Alex Barth
committed
// Iterate through all unique targets and test whether they do already
// exist in the database.
foreach ($this->uniqueTargets($batch) as $target => $value) {
Alex Barth
committed
switch ($target) {
$nid = db_query("SELECT nid FROM {node} WHERE nid = :nid", array(':nid' => $value))->fetchField();
Alex Barth
committed
case 'url':
$nid = db_query("SELECT nid FROM {feeds_node_item} WHERE feed_nid = :nid AND id = :id AND url = :url", array(':nid' => $source->feed_nid, ':id' => $source->id, ':url' => $value))->fetchField();
Alex Barth
committed
break;
case 'guid':
$nid = db_query("SELECT nid FROM {feeds_node_item} WHERE feed_nid = :nid AND id = :id AND guid = :guid", array(':nid' => $source->feed_nid, ':id' => $source->id, ':guid' => $value))->fetchField();
Alex Barth
committed
break;
}
if ($nid) {
// Return with the first nid found.
return $nid;
}
}
return 0;
}
/**
* Creates a new node object in memory and returns it.
*/
protected function buildNode($nid, $feed_nid) {
$node = new stdClass();
if (empty($nid)) {
Alex Barth
committed
$node->created = REQUEST_TIME;
$populate = TRUE;
if ($this->config['update_existing'] == FEEDS_UPDATE_EXISTING) {
$node = node_load($nid, NULL, TRUE);
}
else {
$node->nid = $nid;
$node->vid = db_query("SELECT vid FROM {node} WHERE nid = :nid", array(':nid' => $nid))->fetchField();
$populate = TRUE;
}
}
if ($populate) {
$node->type = $this->config['content_type'];
Alex Barth
committed
$node->changed = REQUEST_TIME;
$node->format = ($this->config['input_format'] == FEEDS_NODE_DEFAULT_FORMAT) ? filter_fallback_format() : $this->config['input_format'];
$node->feeds_node_item = new stdClass();
$node->feeds_node_item->id = $this->id;
Alex Barth
committed
$node->feeds_node_item->imported = REQUEST_TIME;
$node->feeds_node_item->feed_nid = $feed_nid;
$node->feeds_node_item->url = '';
$node->feeds_node_item->guid = '';
static $included;
if (!$included) {
module_load_include('inc', 'node', 'node.pages');
$included = TRUE;
}
node_object_prepare($node);
// Populate properties that are set by node_object_prepare().
$node->log = 'Created/updated by FeedsNodeProcessor';
if ($populate) {
$node->uid = $this->config['author'];
}
* Create MD5 hash of item and mappings array.
*
* Include mappings as a change in mappings may have an affect on the item
* produced.
*
* @return Always returns a hash, even with empty, NULL, FALSE:
* Empty arrays return 40cd750bba9870f18aada2478b24840a
* Empty/NULL/FALSE strings return d41d8cd98f00b204e9800998ecf8427e
*/
protected function hash($item) {
static $serialized_mappings;
if (!$serialized_mappings) {
$serialized_mappings = serialize($this->config['mappings']);
}
return hash('md5', serialize($item) . $serialized_mappings);
}
/**
* Retrieve MD5 hash of $nid from DB.
* @return Empty string if no item is found, hash otherwise.
*/
protected function getHash($nid) {
if ($hash = db_query("SELECT hash FROM {feeds_node_item} WHERE nid = :nid", array(':nid' => $nid))->fetchField()) {
// Return with the hash.
return $hash;
}
return '';
}