Newer
Older
Alex Barth
committed
Alex Barth
committed
* Schema definitions install/update/uninstall hooks.
*/
/**
* Implementation of hook_schema().
*/
function feeds_schema() {
Alex Barth
committed
$schema = array();
$schema['feeds_importer'] = array(
'description' => 'Configuration of feeds objects.',
'export' => array(
'key' => 'id',
Alex Barth
committed
'identifier' => 'feeds_importer',
'default hook' => 'feeds_importer_default', // Function hook name.
Alex Barth
committed
'owner' => 'feeds',
'api' => 'feeds_importer_default', // Base name for api include files.
'minimum_version' => 1,
'current_version' => 1,
),
),
'fields' => array(
'id' => array(
'type' => 'varchar',
Alex Barth
committed
'length' => 128,
'not null' => TRUE,
'default' => '',
'description' => 'Id of the fields object.',
),
'config' => array(
'type' => 'text',
'not null' => FALSE,
'description' => 'Configuration of the feeds object.',
'serialize' => TRUE,
),
),
Alex Barth
committed
'primary key' => array('id'),
$schema['feeds_source'] = array(
'description' => 'Source definitions for feeds.',
'fields' => array(
'id' => array(
'type' => 'varchar',
Alex Barth
committed
'length' => 128,
'not null' => TRUE,
'default' => '',
'description' => 'Id of the feed configuration.',
),
Alex Barth
committed
'feed_nid' => array(
Alex Barth
committed
'not null' => TRUE,
'default' => 0,
Alex Barth
committed
'description' => 'Node nid if this particular source is attached to a feed node.',
Alex Barth
committed
'config' => array(
Alex Barth
committed
'description' => 'Configuration of the source.',
Alex Barth
committed
'source' => array(
'type' => 'text',
'not null' => TRUE,
Alex Barth
committed
'description' => 'Main source resource identifier. E. g. a path or a URL.',
Alex Barth
committed
),
'batch' => array(
'type' => 'text',
'size' => 'big',
'not null' => FALSE,
Alex Barth
committed
'description' => 'Cache for batching.',
Alex Barth
committed
'primary key' => array('id', 'feed_nid'),
Alex Barth
committed
'id' => array('id'),
'feed_nid' => array('feed_nid'),
'id_source' => array('id', array('source', 128)),
),
);
$schema['feeds_node_item'] = array(
Alex Barth
committed
'description' => 'Stores additional information about feed item nodes. Used by FeedsNodeProcessor.',
Alex Barth
committed
'fields' => array(
'nid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
Alex Barth
committed
'description' => 'Primary Key: The feed item node\'s nid.',
Alex Barth
committed
),
'id' => array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
'description' => 'The id of the fields object that is the producer of this item.',
),
'feed_nid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
Alex Barth
committed
'description' => 'Node id of the owner feed, if available.',
Alex Barth
committed
),
'imported' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
Alex Barth
committed
'description' => 'Import date of the feed item, as a Unix timestamp.',
Alex Barth
committed
),
'url' => array(
'type' => 'text',
'not null' => TRUE,
Alex Barth
committed
'description' => 'Link to the feed item.',
Alex Barth
committed
),
'guid' => array(
'type' => 'text',
'not null' => TRUE,
Alex Barth
committed
'description' => 'Unique identifier for the feed item.'
Alex Barth
committed
),
'hash' => array(
'type' => 'varchar',
'length' => 32, // The length of an MD5 hash.
'not null' => TRUE,
'default' => '',
Alex Barth
committed
'description' => 'The hash of the item.',
Alex Barth
committed
),
'primary key' => array('nid'),
'indexes' => array(
'id' => array('id'),
'feed_nid' => array('feed_nid'),
'imported' => array('imported'),
'url' => array(array('url', 255)),
'guid' => array(array('guid', 255)),
),
$schema['feeds_term_item'] = array(
'description' => 'Tracks imported terms.',
'fields' => array(
'tid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'description' => 'Imported term id.',
),
'id' => array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
'description' => 'The id of the fields object that is the creator of this item.',
),
'feed_nid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
Alex Barth
committed
'description' => 'Node id of the owner feed, if available.',
),
),
'primary key' => array('tid'),
'indexes' => array(
'id_feed_nid' => array('id', 'feed_nid'),
'feed_nid' => array('feed_nid'),
),
);
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
$schema['feeds_push_subscriptions'] = array(
'description' => 'PubSubHubbub subscriptions.',
'fields' => array(
'domain' => array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
'description' => 'Domain of the subscriber. Corresponds to an importer id.',
),
'subscriber_id' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
'unsigned' => TRUE,
'description' => 'ID of the subscriber. Corresponds to a feed nid.',
),
'timestamp' => array(
'type' => 'int',
'unsigned' => FALSE,
'default' => 0,
'not null' => TRUE,
'description' => 'Created timestamp.',
),
'hub' => array(
'type' => 'text',
'not null' => TRUE,
Alex Barth
committed
'description' => 'The URL of the hub endpoint of this subscription.',
),
'topic' => array(
'type' => 'text',
'not null' => TRUE,
Alex Barth
committed
'description' => 'The topic URL (feed URL) of this subscription.',
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
),
'secret' => array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
'description' => 'Shared secret for message authentication.',
),
'status' => array(
'type' => 'varchar',
'length' => 64,
'not null' => TRUE,
'default' => '',
'description' => 'Status of subscription.',
),
'post_fields' => array(
'type' => 'text',
'not null' => FALSE,
'description' => 'Fields posted.',
'serialize' => TRUE,
),
),
'primary key' => array('domain', 'subscriber_id'),
'indexes' => array(
'timestamp' => array('timestamp'),
),
);
return $schema;
}
Alex Barth
committed
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
/**
* Remove class field on feeds_config.
*/
function feeds_update_6001() {
$ret = array();
db_drop_field($ret, 'feeds_config', 'class');
return $ret;
}
/**
* Rename table.
*/
function feeds_update_6002() {
$ret = array();
db_rename_table($ret, 'feeds_config', 'feeds_importer');
return $ret;
}
/**
* Add primary keys to feeds_importer and feeds_source.
*/
function feeds_update_6003() {
$ret = array();
db_drop_index($ret, 'feeds_importer', 'id');
db_add_primary_key($ret, 'feeds_importer', array('id'));
db_add_primary_key($ret, 'feeds_source', array('id', 'feed_nid'));
return $ret;
}
/**
* Add source field to feeds_source, make fields part of PKs not null.
*/
function feeds_update_6004() {
$ret = array();
$spec = array(
'type' => 'text',
'not null' => TRUE,
Alex Barth
committed
'description' => 'Main source resource identifier. E. g. a path or a URL.',
Alex Barth
committed
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
);
db_add_field($ret, 'feeds_source', 'source', $spec);
db_add_index($ret, 'feeds_source', 'id_source', array('id', array('source', 255)));
// Make feed_nid not null, default 0. It is part of the primary key.
$spec = array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
'unsigned' => TRUE,
'description' => 'Node nid if this particular source is attached to a feed node.',
);
db_change_field($ret, 'feeds_schedule', 'feed_nid', 'feed_nid', $spec);
// Same thing for feeds_source table.
$spec = array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
'unsigned' => TRUE,
'description' => 'Node nid if this particular source is attached to a feed node.',
);
db_change_field($ret, 'feeds_source', 'feed_nid', 'feed_nid', $spec);
return $ret;
}
/**
* Add callback column to feeds_schedule.
*/
function feeds_update_6005() {
$ret = array();
// Add a callback column and an index.
$spec = array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
'description' => 'Callback to be invoked.',
);
db_add_field($ret, 'feeds_schedule', 'callback', $spec);
db_add_index($ret, 'feeds_schedule', 'id_callback', array('id', 'callback'));
return $ret;
}
/**
* Remove primary key from feeds_schedule and replace it by an index.
*/
function feeds_update_6006() {
$ret = array();
db_drop_primary_key($ret, 'feeds_schedule');
db_add_index($ret, 'feeds_schedule', 'feed_nid', array('feed_nid'));
return $ret;
}
/**
* Add hash column to feeds_node_item.
*/
function feeds_update_6007() {
$ret = array();
$spec = array(
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => '',
Alex Barth
committed
'description' => 'The hash of the item.',
);
db_add_field($ret, 'feeds_node_item', 'hash', $spec);
return $ret;
}
/**
* Add batch field to feeds_source table, adjust feeds_schedule table.
*/
function feeds_update_6008() {
$ret = array();
$spec = array(
'type' => 'text',
'size' => 'big',
'not null' => FALSE,
Alex Barth
committed
'description' => 'Cache for batching.',
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
'serialize' => TRUE,
);
db_add_field($ret, 'feeds_source', 'batch', $spec);
// Make scheduled flag a timestamp.
$spec = array(
'type' => 'int',
'size' => 'normal',
'unsigned' => TRUE,
'default' => 0,
'not null' => TRUE,
'description' => 'Timestamp when a job was scheduled. 0 if a job is currently not scheduled.',
);
db_change_field($ret, 'feeds_schedule', 'scheduled', 'scheduled', $spec);
// Rename last_scheduled_time to last_executed_time, fix unsigned property.
$spec = array(
'type' => 'int',
'size' => 'normal',
'unsigned' => TRUE,
'default' => 0,
'not null' => TRUE,
'description' => 'Timestamp when a job was last executed.',
);
db_change_field($ret, 'feeds_schedule', 'last_scheduled_time', 'last_executed_time', $spec);
Alex Barth
committed
return $ret;
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
}
/**
* Add feeds_push_subscriptions tables.
*/
function feeds_update_6009() {
$ret = array();
$table = array(
'description' => 'PubSubHubbub subscriptions.',
'fields' => array(
'domain' => array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
'description' => 'Domain of the subscriber. Corresponds to an importer id.',
),
'subscriber_id' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
'unsigned' => TRUE,
'description' => 'ID of the subscriber. Corresponds to a feed nid.',
),
'timestamp' => array(
'type' => 'int',
'unsigned' => FALSE,
'default' => 0,
'not null' => TRUE,
'description' => 'Created timestamp.',
),
'hub' => array(
'type' => 'text',
'not null' => TRUE,
Alex Barth
committed
'description' => 'The URL of the hub endpoint of this subscription.',
),
'topic' => array(
'type' => 'text',
'not null' => TRUE,
Alex Barth
committed
'description' => 'The topic URL (feed URL) of this subscription.',
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
),
'secret' => array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
'description' => 'Shared secret for message authentication.',
),
'status' => array(
'type' => 'varchar',
'length' => 64,
'not null' => TRUE,
'default' => '',
'description' => 'Status of subscription.',
),
'post_fields' => array(
'type' => 'text',
'not null' => FALSE,
'description' => 'Fields posted.',
'serialize' => TRUE,
),
),
'primary key' => array('domain', 'subscriber_id'),
'indexes' => array(
'timestamp' => array('timestamp'),
),
);
db_create_table($ret, 'feeds_push_subscriptions', $table);
return $ret;
}
Alex Barth
committed
/**
* Enable all Feeds News, Feeds Import and Feeds fast news features.
*/
function feeds_update_6010() {
drupal_install_modules(array('feeds_news', 'feeds_import'));
Alex Barth
committed
drupal_install_modules(array('feeds_fast_news'));
drupal_set_message(t('Installed Feeds News, Feeds Fast News and Feeds Import as replacement for Feeds Defaults module. If you were not using Feeds Defaults then you can safely disable Feeds News and Feeds Import.'));
Alex Barth
committed
}
else {
drupal_set_message(t('Installed Feeds News and Feeds Import as replacement for Feeds Defaults module. If you were not using Feeds Defaults then you can safely disable Feeds News and Feeds Import.'));
Alex Barth
committed
}
if (module_exists('features')) {
drupal_set_message(t('<strong>Review enabled state of importer configurations on admin/build/feeds and features on admin/build/features.</strong>'));
Alex Barth
committed
}
else {
drupal_set_message(t('<strong>Review enabled state of importer configurations on admin/build/feeds and Feeds modules on admin/build/modules.</strong>'));
Alex Barth
committed
}
return array();
}
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
/**
* Add imported flag for terms.
*/
function feeds_update_6011() {
$ret = array();
$schema = array(
'description' => 'Tracks imported terms.',
'fields' => array(
'tid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'description' => 'Imported term id.',
),
'id' => array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
'description' => 'The id of the fields object that is the creator of this item.',
),
'feed_nid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
Alex Barth
committed
'description' => "Node id of the owner feed, if available.",
),
),
'primary key' => array('tid'),
'indexes' => array(
'id_feed_nid' => array('id', 'feed_nid'),
'feed_nid' => array('feed_nid'),
),
);
db_create_table($ret, 'feeds_term_item', $schema);
return $ret;
}
Alex Barth
committed
/**
* Drop schedule table and reschedule all tasks, install Job Scheduler module.
*/
function feeds_update_6012() {
$ret = array();
// Only attempt installation if module is present, otherwise we would leave
// the system table in a limbo.
$modules = module_rebuild_cache();
if (isset($modules['job_scheduler'])) {
if (!$modules['job_scheduler']->status) {
drupal_install_modules(array('job_scheduler'));
drupal_set_message(t('Installed Job Scheduler module.'));
}
}
else {
drupal_set_message(t('NOTE: Please install new dependency of Feeds: !job_scheduler module.', array('!job_scheduler' => l(t('Job Scheduler'), 'http://drupal.org/project/job_scheduler'))), 'warning');
}
db_drop_table($ret, 'feeds_schedule');
feeds_reschedule(TRUE);
return $ret;
}