Newer
Older
Alex Barth
committed
<?php
// $Id$
/**
* @file
* Menu callbacks, form callbacks and helpers.
*/
/**
Alex Barth
committed
*/
function feeds_page() {
$rows = array();
if ($importers = feeds_importer_load_all()) {
foreach ($importers as $importer) {
if ($importer->disabled) {
continue;
}
if (!(user_access('import '. $importer->id .' feeds') || user_access('administer feeds'))) {
Alex Barth
committed
if (empty($importer->config['content_type'])) {
$link = 'import/'. $importer->id;
$title = $importer->config['name'];
}
elseif (user_access('create '. $importer->config['content_type'] .' content')) {
$link = 'node/add/'. str_replace('_', '-', $importer->config['content_type']);
$title = node_type_get_name($importer->config['content_type']);
Alex Barth
committed
}
$rows[] = array(
l($title, $link),
check_plain($importer->config['description']),
Alex Barth
committed
);
}
}
$header = array(
Alex Barth
committed
t('Description'),
);
return theme('table', array('header' => $header, 'rows' => $rows));
Alex Barth
committed
}
/**
* Render a feeds import form on import/[config] pages.
*/
function feeds_import_form($form, &$form_state, $importer_id) {
$source = feeds_source($importer_id, empty($form['nid']['#value']) ? 0 : $form['nid']['#value']);
Alex Barth
committed
$form = array();
$form['#importer_id'] = $importer_id;
// @todo Move this into fetcher?
Alex Barth
committed
$form['#attributes']['enctype'] = 'multipart/form-data';
Alex Barth
committed
$form['source_status'] = array(
'#type' => 'fieldset',
'#title' => t('Status'),
'#tree' => TRUE,
'#value' => feeds_source_status($source),
);
Alex Barth
committed
$form['feeds'] = array(
'#type' => 'fieldset',
Alex Barth
committed
'#title' => t('Import'),
Alex Barth
committed
'#tree' => TRUE,
);
$form['feeds'] += $source->configForm($form_state);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Import'),
);
return $form;
}
/**
* Validation handler for node forms and feeds_import_form().
*/
function feeds_import_form_validate($form, &$form_state) {
// @todo This may be a problem here, as we don't have a feed_nid at this point.
feeds_source($form['#importer_id'])->configFormValidate($form_state['values']['feeds']);
Alex Barth
committed
}
/**
* Submit handler for feeds_import_form().
*/
function feeds_import_form_submit($form, &$form_state) {
// Save source and import.
$source = feeds_source($form['#importer_id']);
Alex Barth
committed
$source->addConfig($form_state['values']['feeds']);
$source->save();
// Refresh feed if import on create is selected.
if ($source->importer->config['import_on_create']) {
feeds_batch_set(t('Importing'), 'import', $form['#importer_id']);
Alex Barth
committed
}
Alex Barth
committed
// Add to schedule, make sure importer is scheduled, too.
$source->schedule();
$source->importer->schedule();
Alex Barth
committed
}
/**
* Render a feeds import form on node/id/import pages.
*/
function feeds_import_tab_form($form, &$form_state, $node) {
$importer_id = feeds_get_importer_id($node->type);
Alex Barth
committed
$source = feeds_source($importer_id, $node->nid);
Alex Barth
committed
$form = array();
$form['#feed_nid'] = $node->nid;
$form['#importer_id'] = $importer_id;
$form['#redirect'] = 'node/'. $node->nid;
Alex Barth
committed
$form['source_status'] = array(
'#type' => 'fieldset',
'#title' => t('Status'),
'#tree' => TRUE,
'#value' => feeds_source_status($source),
);
return confirm_form($form, t('Import all content from source?'), 'node/'. $node->nid, '', t('Import'), t('Cancel'), 'confirm feeds update');
Alex Barth
committed
}
/**
* Submit handler for feeds_import_tab_form().
*/
function feeds_import_tab_form_submit($form, &$form_state) {
$form_state['redirect'] = $form['#redirect'];
feeds_batch_set(t('Importing'), 'import', $form['#importer_id'], $form['#feed_nid']);
Alex Barth
committed
}
/**
* Render a feeds delete form.
*
* Used on both node pages and configuration pages.
Alex Barth
committed
*/
function feeds_delete_tab_form($form, &$form_state, $importer_id, $node = NULL) {
Alex Barth
committed
if (empty($node)) {
Alex Barth
committed
$source = feeds_source($importer_id);
$form['#redirect'] = 'import/' . $source->id;
Alex Barth
committed
}
else {
$importer_id = feeds_get_importer_id($node->type);
Alex Barth
committed
$source = feeds_source($importer_id, $node->nid);
$form['#redirect'] = 'node/' . $source->feed_nid;
Alex Barth
committed
}
Alex Barth
committed
// Form cannot pass on source object.
$form['#importer_id'] = $source->id;
$form['#feed_nid'] = $source->feed_nid;
$form['source_status'] = array(
'#type' => 'fieldset',
'#title' => t('Status'),
'#tree' => TRUE,
'#value' => feeds_source_status($source),
);
return confirm_form($form, t('Delete all items from source?'), $form['#redirect'], '', t('Delete'), t('Cancel'), 'confirm feeds update');
Alex Barth
committed
}
/**
* Submit handler for feeds_delete_tab_form().
*/
function feeds_delete_tab_form_submit($form, &$form_state) {
$form_state['redirect'] = $form['#redirect'];
$feed_nid = empty($form['#feed_nid']) ? 0 : $form['#feed_nid'];
feeds_batch_set(t('Deleting'), 'clear', $form['#importer_id'], $feed_nid);
Alex Barth
committed
}
/**
* Handle a fetcher callback.
*/
function feeds_fetcher_callback($importer, $feed_nid = 0) {
if ($importer instanceof FeedsImporter) {
return $importer->fetcher->request($feed_nid);
}
drupal_access_denied();
}
/**
* Template generation
*/
function feeds_importer_template($importer) {
$importer = feeds_importer_load($importer);
if ($importer->parser instanceof FeedsCSVParser) {
return $importer->parser->getTemplate();
}
return drupal_not_found();
}
Alex Barth
committed
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
/**
* Renders a status display for a source.
*/
function feeds_source_status($source) {
$progress_importing = $source->progressImporting();
$v = array();
if ($progress_importing != FEEDS_BATCH_COMPLETE) {
$v['progress_importing'] = $progress_importing;
}
$progress_clearing = $source->progressClearing();
if ($progress_clearing != FEEDS_BATCH_COMPLETE) {
$v['progress_clearing'] = $progress_clearing;
}
if (empty($v)) {
$v['imported'] = $source->imported;
$v['count'] = $source->itemCount();
}
if (!empty($v)) {
return theme('feeds_source_status', $v);
}
}
/**
* Themes a status display for a source.
*/
function theme_feeds_source_status($v) {
$output = '<div class="info-box feeds-source-status">';
$items = array();
if ($v['count']) {
if ($v['imported']) {
$items[] = t('Last import: @ago ago.', array('@ago' => format_interval(REQUEST_TIME - $v['imported'], 1)));
}
$items[] = t('@count imported items total.', array('@count' => $v['count']));
}
else {
$items[] = t('No imported items.');
}
if ($v['progress_importing']) {
$progress = number_format(100.0 * $v['progress_importing'], 0);
$items[] = t('Importing - @progress % complete.', array('@progress' => $progress));
}
if ($v['progress_clearing']) {
$progress = number_format(100.0 * $v['progress_clearing'], 0);
$items[] = t('Deleting items - @progress % complete.', array('@progress' => $progress));
}
$output .= theme('item_list', array('items' => $items));
$output .= '</div>';
return $output;
}
/**
* Theme upload widget.
*/
function theme_feeds_upload($variables) {
$element = $variables['element'];
drupal_add_css(drupal_get_path('module', 'feeds') .'/feeds.css');
_form_set_class($element, array('form-file'));
if (!empty($element['#file_info'])) {
Alex Barth
committed
$file = $element['#file_info'];
$wrapper = file_stream_wrapper_get_instance_by_uri($file->uri);
$description .= '<div class="file-info">';
$description .= '<div class="file-name">';
Alex Barth
committed
$description .= l($file->filename, $wrapper->getExternalUrl());
$description .= '</div>';
$description .= '<div class="file-size">';
Alex Barth
committed
$description .= format_size($file->filesize);
$description .= '</div>';
$description .= '<div class="file-mime">';
$description .= check_plain($file->filemime);
$description .= '</div>';
$description .= '</div>';
}
$description .= '<div class="file-upload">';
$description .= '<input type="file" name="'. $element['#name'] .'"'. ($element['#attributes'] ? ' '. drupal_attributes($element['#attributes']) : '') .' id="'. $element['#id'] .'" size="'. $element['#size'] ."\" />\n";
$description .= '</div>';
$element['#description'] = $description;
// For some reason not unsetting #title leads to printing the title twice.
unset($element['#title']);
return theme('form_element', $element);